From 9c2e5955e5f8164917f5e5dce0988e1be9c24638 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=88=B1=E7=BC=96=E7=A8=8B=E7=9A=84=E5=8F=B6=E4=B8=80?=
=?UTF-8?q?=E7=AC=91?=
<92030377+love-code-yeyixiao@users.noreply.github.com>
Date: Sat, 20 Apr 2024 17:47:37 +0800
Subject: [PATCH 001/122] Update OptionsWindow.ui
---
SandboxiePlus/SandMan/Forms/OptionsWindow.ui | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
index cfca8ba4..1f221f5d 100644
--- a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
@@ -823,7 +823,7 @@
Prevent move mouse, bring in front, and simmilar operations.
- Prevent interference with the unser interface (Experimental, see tooltop)
+ Prevent interference with the user interface (Experimental, see tooltop)
From c953a38b5c7f7043aa91a1da2970bd41eae496fa Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 20 Apr 2024 13:01:24 +0200
Subject: [PATCH 002/122] fix
---
CHANGELOG.md | 4 ++++
Sandboxie/core/dll/gdi.c | 20 +++++--------------
Sandboxie/core/dll/gui.c | 4 ++--
SandboxiePlus/SandMan/Forms/OptionsWindow.ui | 8 ++++----
.../SandMan/Windows/OptionsAdvanced.cpp | 8 ++++----
.../SandMan/Windows/OptionsGeneral.cpp | 4 ++--
6 files changed, 21 insertions(+), 27 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d9f0c0ea..d4ffc64c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,6 +18,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Changed
- improved Avast template [#3777](https://github.com/sandboxie-plus/Sandboxie/pull/3777)
+- renamed a bunch of experimental options and marked them as experimental in the UI
+ - "IsBlockCapture=y" -> "BlockScreenCapture=y"
+ - "IsProtectScreen=>" -> "CoverBoxedWindows=y"
### Fixed
- fixed When I change the BlockDNS and BlockPorts options, the Apply button is not activated [#3807](https://github.com/sandboxie-plus/Sandboxie/issues/3807)
@@ -25,6 +28,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed Settings dialog now showing the right ram disk letter
- fixed issues with updater broke with new qt due to missing SSL support [3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
- fixed Enabling "DropAdminRights/FakeAdminRights" adds "BlockInterferePower and ForceProtectionOnMount" to the INI [#3825](https://github.com/sandboxie-plus/Sandboxie/issues/3825)
+- fixed KeePass "Out of Memory" crash due to "BlockScreenCapture=y" [#3768](https://github.com/sandboxie-plus/Sandboxie/issues/3768)
diff --git a/Sandboxie/core/dll/gdi.c b/Sandboxie/core/dll/gdi.c
index 233f46e3..503dd054 100644
--- a/Sandboxie/core/dll/gdi.c
+++ b/Sandboxie/core/dll/gdi.c
@@ -312,7 +312,7 @@ _FX BOOL Gdi_DeleteDC(HDC hdc)
// HDC hdcSrc, int x1, int y1, DWORD rop
//) {
// int ret = __sys_BitBlt(hdc, x, y, cx, cy, hdcSrc, x1, y1, rop);
-// /*if (SbieApi_QueryConfBool(NULL, L"IsBlockCapture", FALSE)) {
+// /*if (Gui_UseBlockCapture) {
//
// typedef int (*P_GetDeviceCaps)(_In_opt_ HDC hdc, _In_ int index);
// P_GetDeviceCaps GetDeviceCaps = Ldr_GetProcAddrNew(DllName_gdi32, "GetDeviceCaps", "GetDeviceCaps"); if (!GetDeviceCaps) return ret;
@@ -337,7 +337,7 @@ _FX BOOL Gdi_DeleteDC(HDC hdc)
//)
//{
// int ret = __sys_StretchBlt(hdcDest, xDest, yDest, wDest, hDest, hdcSrc, xSrc, ySrc, wSrc, hSrc, rop);
-// /*if (SbieApi_QueryConfBool(NULL, L"IsBlockCapture", FALSE)) {
+// /*if (Gui_UseBlockCapture) {
//
// typedef int (*P_GetDeviceCaps)(_In_opt_ HDC hdc, _In_ int index);
// P_GetDeviceCaps GetDeviceCaps = Ldr_GetProcAddrNew(DllName_gdi32, "GetDeviceCaps", "GetDeviceCaps"); if (!GetDeviceCaps) return ret;
@@ -922,7 +922,7 @@ _FX BOOLEAN Gdi_Full_Init_impl(HMODULE module, BOOLEAN full)
InitializeCriticalSection(&Gdi_CritSec);
- Gui_UseBlockCapture = SbieApi_QueryConfBool(NULL, L"IsBlockCapture", FALSE);
+ Gui_UseBlockCapture = SbieApi_QueryConfBool(NULL, L"BlockScreenCapture", FALSE);
if (Gui_UseBlockCapture)
Gdi_InitDCCache();
@@ -1112,7 +1112,6 @@ static CRITICAL_SECTION Gui_DCCache_CritSec;
typedef struct _DUMMY_DC{
- BOOLEAN bDelete;
HBITMAP hBmp;
} DUMMY_DC;
@@ -1157,13 +1156,6 @@ _FX HDC Gdi_GetDummyDC(HDC dc, HWND hWnd)
if (!dummy)
dummy = map_insert(&Gui_DCCache, ret, NULL, sizeof(DUMMY_DC));
- //
- // Note: GetDC GetDCEx GetWindowDC must use ReleaseDC, while CreateDC must use DeleteDC
- // We set bDelete = TRUE to make Gdi_OnFreeDC delete the DC and return NULL
- // then Gui_ReleaseDC will not call __sys_ReleaseDC
- //
-
- dummy->bDelete = !!hWnd;
dummy->hBmp = bmp;
LeaveCriticalSection(&Gui_DCCache_CritSec);
@@ -1190,10 +1182,8 @@ _FX HDC Gdi_OnFreeDC(HDC dc)
DeleteObject(dummy->hBmp);
- if (dummy->bDelete) {
- __sys_DeleteDC(dc);
- ret = NULL;
- }
+ __sys_DeleteDC(dc);
+ ret = NULL; // we return NULL to notify the caller that there is nothing left to do
map_remove(&Gui_DCCache, dc);
}
diff --git a/Sandboxie/core/dll/gui.c b/Sandboxie/core/dll/gui.c
index b776b279..cb8f6ecd 100644
--- a/Sandboxie/core/dll/gui.c
+++ b/Sandboxie/core/dll/gui.c
@@ -372,9 +372,9 @@ _FX BOOLEAN Gui_Init(HMODULE module)
const UCHAR *ProcName;
- Gui_UseProtectScreen = SbieApi_QueryConfBool(NULL, L"IsProtectScreen", FALSE);
+ Gui_UseProtectScreen = SbieApi_QueryConfBool(NULL, L"CoverBoxedWindows", FALSE);
- Gui_UseBlockCapture = SbieApi_QueryConfBool(NULL, L"IsBlockCapture", FALSE);
+ Gui_UseBlockCapture = SbieApi_QueryConfBool(NULL, L"BlockScreenCapture", FALSE);
if (Gui_UseBlockCapture)
Gdi_InitDCCache();
diff --git a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
index 1f221f5d..19f1d0e0 100644
--- a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
@@ -45,7 +45,7 @@
QTabWidget::North
- 1
+ 0
@@ -696,7 +696,7 @@
- Prevent sandboxed processes from interfering with power operations
+ Prevent sandboxed processes from interfering with power operations (Experimental)
@@ -820,7 +820,7 @@
- Prevent move mouse, bring in front, and simmilar operations.
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.Prevent interference with the user interface (Experimental, see tooltop)
@@ -833,7 +833,7 @@
This feature does not block all means of optaining a screen capture only some common once, also it may cause UI glitches
- Prevent sandboxed processes from capturing window images (Experimental unstable, see tooltip)
+ Prevent sandboxed processes from capturing window images (Experimental, see tooltip)
diff --git a/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp b/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
index 008dcbf7..4e298342 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
@@ -264,9 +264,9 @@ void COptionsWindow::LoadAdvanced()
ui.chkLessConfidential->setChecked(m_BoxTemplates.contains("LessConfidentialBox"));
ui.chkNotifyProtect->setChecked(m_pBox->GetBool("NotifyBoxProtected", false));
- ui.chkProtectWindow->setChecked(m_pBox->GetBool("IsProtectScreen"));
+ ui.chkProtectWindow->setChecked(m_pBox->GetBool("CoverBoxedWindows"));
QString str = m_pBox->GetText("OpenWinClass", "");
- ui.chkBlockCapture->setChecked(m_pBox->GetBool("IsBlockCapture") && QString::compare(str, "*") != 0);
+ ui.chkBlockCapture->setChecked(m_pBox->GetBool("BlockScreenCapture") && QString::compare(str, "*") != 0);
ui.chkBlockCapture->setCheckable(QString::compare(str, "*") != 0);
/*ui.chkLockWhenClose->setChecked(m_pBox->GetBool("LockWhenClose", false));
@@ -476,8 +476,8 @@ void COptionsWindow::SaveAdvanced()
WriteAdvancedCheck(ui.chkConfidential, "ConfidentialBox", "y", "");
WriteAdvancedCheck(ui.chkNotifyProtect, "NotifyBoxProtected", "y", "");
- WriteAdvancedCheck(ui.chkProtectWindow, "IsProtectScreen", "y", "");
- WriteAdvancedCheck(ui.chkBlockCapture, "IsBlockCapture", "y", "");
+ WriteAdvancedCheck(ui.chkProtectWindow, "CoverBoxedWindows", "y", "");
+ WriteAdvancedCheck(ui.chkBlockCapture, "BlockScreenCapture", "y", "");
//WriteAdvancedCheck(ui.chkLockWhenClose, "LockWhenClose", "y", "");
QStringList Users;
diff --git a/SandboxiePlus/SandMan/Windows/OptionsGeneral.cpp b/SandboxiePlus/SandMan/Windows/OptionsGeneral.cpp
index c68b6b41..63137400 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsGeneral.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsGeneral.cpp
@@ -286,7 +286,7 @@ void COptionsWindow::LoadGeneral()
ui.chkOpenProtectedStorage->setChecked(m_BoxTemplates.contains("OpenProtectedStorage"));
ui.chkOpenCredentials->setChecked(!ui.chkOpenCredentials->isEnabled() || m_pBox->GetBool("OpenCredentials", false));
ui.chkCloseClipBoard->setChecked(!m_pBox->GetBool("OpenClipboard", true));
- //ui.chkBlockCapture->setChecked(m_pBox->GetBool("IsBlockCapture", false));
+ //ui.chkBlockCapture->setChecked(m_pBox->GetBool("BlockScreenCapture", false));
ui.chkProtectPower->setChecked(m_pBox->GetBool("BlockInterferePower", false));
ui.chkVmReadNotify->setChecked(m_pBox->GetBool("NotifyProcessAccessDenied", false));
//ui.chkOpenSmartCard->setChecked(m_pBox->GetBool("OpenSmartCard", true));
@@ -426,7 +426,7 @@ void COptionsWindow::SaveGeneral()
if (ui.chkOpenCredentials->isEnabled())
WriteAdvancedCheck(ui.chkOpenCredentials, "OpenCredentials", "y", "");
WriteAdvancedCheck(ui.chkCloseClipBoard, "OpenClipboard", "n", "");
- //WriteAdvancedCheck(ui.chkBlockCapture, "IsBlockCapture", "y", "");
+ //WriteAdvancedCheck(ui.chkBlockCapture, "BlockScreenCapture", "y", "");
WriteAdvancedCheck(ui.chkProtectPower, "BlockInterferePower", "y", "");
WriteAdvancedCheck(ui.chkForceProtection, "ForceProtectionOnMount", "y", "");
WriteAdvancedCheck(ui.chkUserOperation, "BlockInterferenceControl", "y", "");
From 57f464df653f45da4aabb79accb6359aaac57b6c Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 20 Apr 2024 13:37:58 +0200
Subject: [PATCH 003/122] fix
---
CHANGELOG.md | 1 +
Sandboxie/core/dll/gui_p.h | 2 +-
SandboxiePlus/SandMan/Forms/OptionsWindow.ui | 8 ++++----
3 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d4ffc64c..77fe66e8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -29,6 +29,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed issues with updater broke with new qt due to missing SSL support [3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
- fixed Enabling "DropAdminRights/FakeAdminRights" adds "BlockInterferePower and ForceProtectionOnMount" to the INI [#3825](https://github.com/sandboxie-plus/Sandboxie/issues/3825)
- fixed KeePass "Out of Memory" crash due to "BlockScreenCapture=y" [#3768](https://github.com/sandboxie-plus/Sandboxie/issues/3768)
+- fixed Sandboxie 1.13.4 with IsBlockCapture=y brakes on Windows 7 [#3769](https://github.com/sandboxie-plus/Sandboxie/issues/3769)
diff --git a/Sandboxie/core/dll/gui_p.h b/Sandboxie/core/dll/gui_p.h
index 03afd243..8f2c3edf 100644
--- a/Sandboxie/core/dll/gui_p.h
+++ b/Sandboxie/core/dll/gui_p.h
@@ -57,7 +57,7 @@
#define WM_DDE_LAST (WM_DDE_FIRST+8)
#define GET_WIN_API(name, lib) \
- P_##name name = Ldr_GetProcAddrNew(lib, #name, #name); \
+ P_##name name = Ldr_GetProcAddrNew(lib, L#name, #name); \
if(!name) return NULL;
//---------------------------------------------------------------------------
diff --git a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
index 19f1d0e0..1e848ff7 100644
--- a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
@@ -7,7 +7,7 @@
00785
- 539
+ 557
@@ -823,17 +823,17 @@
Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
- Prevent interference with the user interface (Experimental, see tooltop)
+ Prevent interference with the user interface (Experimental)
- This feature does not block all means of optaining a screen capture only some common once, also it may cause UI glitches
+ This feature does not block all means of optaining a screen capture only some common once.
- Prevent sandboxed processes from capturing window images (Experimental, see tooltip)
+ Prevent sandboxed processes from capturing window images (Experimental, may cause UI glitches)
From e1c46bb269e6db18c14496783815be7bee09631f Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 20 Apr 2024 14:09:16 +0200
Subject: [PATCH 004/122] 3742
---
CHANGELOG.md | 1 +
.../SandMan/Windows/OptionsAdvanced.cpp | 78 +++++++++++++++----
SandboxiePlus/SandMan/Windows/OptionsWindow.h | 2 +-
3 files changed, 65 insertions(+), 16 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 77fe66e8..84e41d97 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Note: this option may cause issues in games hence do not enable it for gaming boxes.
- added support for hardlinks [#3826](https://github.com/sandboxie-plus/Sandboxie/issues/3826)
- added mechanism to terminate stuck sandboxed processes from the driver
+- added Sandman: Make the trigger list editable [#3742](https://github.com/sandboxie-plus/Sandboxie/issues/3742)
### Changed
- improved Avast template [#3777](https://github.com/sandboxie-plus/Sandboxie/pull/3777)
diff --git a/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp b/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
index 4e298342..4a1d9026 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
@@ -83,7 +83,7 @@ void COptionsWindow::CreateAdvanced()
connect(ui.chkDbgTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
connect(ui.chkErrTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
- connect(ui.treeTriggers, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(OnTriggerChanged(QTreeWidgetItem *, int)));
+ connect(ui.treeTriggers, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(OnTriggerChanged()));
connect(ui.btnAddAutoRun, SIGNAL(clicked(bool)), this, SLOT(OnAddAutoRun()));
connect(ui.btnAddAutoSvc, SIGNAL(clicked(bool)), this, SLOT(OnAddAutoSvc()));
connect(ui.btnAddAutoExec, SIGNAL(clicked(bool)), this, SLOT(OnAddAutoExec()));
@@ -238,6 +238,19 @@ void COptionsWindow::LoadAdvanced()
foreach(const QString & Value, m_pBox->GetTextList("OnBoxTerminate", m_Template))
AddTriggerItem(Value, eTerminateCmd);
+ foreach(const QString & Value, m_pBox->GetTextList("StartProgramDisabled", m_Template))
+ AddTriggerItem(Value, eOnStartCmd, true);
+ foreach(const QString & Value, m_pBox->GetTextList("StartServiceDisabled", m_Template))
+ AddTriggerItem(Value, eOnStartSvc, true);
+ foreach(const QString & Value, m_pBox->GetTextList("AutoExecDisabled", m_Template))
+ AddTriggerItem(Value, eAutoExec, true);
+ foreach(const QString & Value, m_pBox->GetTextList("OnFileRecoveryDisabled", m_Template))
+ AddTriggerItem(Value, eRecoveryCheck, true);
+ foreach(const QString & Value, m_pBox->GetTextList("OnBoxDeleteDisabled", m_Template))
+ AddTriggerItem(Value, eDeleteCmd, true);
+ foreach(const QString & Value, m_pBox->GetTextList("OnBoxTerminateDisabled", m_Template))
+ AddTriggerItem(Value, eTerminateCmd, true);
+
ShowTriggersTmpl();
//
@@ -304,17 +317,17 @@ void COptionsWindow::ShowTriggersTmpl(bool bUpdate)
foreach(const QString& Template, m_pBox->GetTemplates())
{
foreach(const QString & Value, m_pBox->GetTextListTmpl("StartProgram", Template))
- AddTriggerItem(Value, eOnStartCmd, Template);
+ AddTriggerItem(Value, eOnStartCmd, false, Template);
foreach(const QString & Value, m_pBox->GetTextListTmpl("StartService", Template))
- AddTriggerItem(Value, eOnStartSvc, Template);
+ AddTriggerItem(Value, eOnStartSvc, false, Template);
foreach(const QString & Value, m_pBox->GetTextListTmpl("AutoExec", Template))
- AddTriggerItem(Value, eAutoExec, Template);
+ AddTriggerItem(Value, eAutoExec, false, Template);
foreach(const QString & Value, m_pBox->GetTextListTmpl("OnFileRecovery", Template))
- AddTriggerItem(Value, eRecoveryCheck, Template);
+ AddTriggerItem(Value, eRecoveryCheck, false, Template);
foreach(const QString & Value, m_pBox->GetTextListTmpl("OnBoxDelete", Template))
- AddTriggerItem(Value, eDeleteCmd, Template);
+ AddTriggerItem(Value, eDeleteCmd, false, Template);
foreach(const QString & Value, m_pBox->GetTextListTmpl("OnBoxTerminate", Template))
- AddTriggerItem(Value, eTerminateCmd, Template);
+ AddTriggerItem(Value, eTerminateCmd, false, Template);
}
}
else if (bUpdate)
@@ -428,24 +441,55 @@ void COptionsWindow::SaveAdvanced()
QStringList DeleteCommand;
QStringList AutoExec;
QStringList TerminateCommand;
+
+ QStringList StartProgramDisabled;
+ QStringList StartServiceDisabled;
+ QStringList RecoveryCheckDisabled;
+ QStringList DeleteCommandDisabled;
+ QStringList AutoExecDisabled;
+ QStringList TerminateCommandDisabled;
+
for (int i = 0; i < ui.treeTriggers->topLevelItemCount(); i++) {
QTreeWidgetItem* pItem = ui.treeTriggers->topLevelItem(i);
- switch (pItem->data(0, Qt::UserRole).toInt())
+ if (pItem->checkState(0) == Qt::Checked)
{
- case eOnStartCmd: StartProgram.append(pItem->text(2)); break;
- case eOnStartSvc: StartService.append(pItem->text(2)); break;
- case eAutoExec: AutoExec.append(pItem->text(2)); break;
- case eRecoveryCheck: RecoveryCheck.append(pItem->text(2)); break;
- case eDeleteCmd: DeleteCommand.append(pItem->text(2)); break;
- case eTerminateCmd: TerminateCommand.append(pItem->text(2)); break;
+ switch (pItem->data(0, Qt::UserRole).toInt())
+ {
+ case eOnStartCmd: StartProgram.append(pItem->text(2)); break;
+ case eOnStartSvc: StartService.append(pItem->text(2)); break;
+ case eAutoExec: AutoExec.append(pItem->text(2)); break;
+ case eRecoveryCheck: RecoveryCheck.append(pItem->text(2)); break;
+ case eDeleteCmd: DeleteCommand.append(pItem->text(2)); break;
+ case eTerminateCmd: TerminateCommand.append(pItem->text(2)); break;
+ }
+ }
+ else
+ {
+ switch (pItem->data(0, Qt::UserRole).toInt())
+ {
+ case eOnStartCmd: StartProgramDisabled.append(pItem->text(2)); break;
+ case eOnStartSvc: StartServiceDisabled.append(pItem->text(2)); break;
+ case eAutoExec: AutoExecDisabled.append(pItem->text(2)); break;
+ case eRecoveryCheck: RecoveryCheckDisabled.append(pItem->text(2)); break;
+ case eDeleteCmd: DeleteCommandDisabled.append(pItem->text(2)); break;
+ case eTerminateCmd: TerminateCommandDisabled.append(pItem->text(2)); break;
+ }
}
}
+
WriteTextList("StartProgram", StartProgram);
WriteTextList("StartService", StartService);
WriteTextList("AutoExec", AutoExec);
WriteTextList("OnFileRecovery", RecoveryCheck);
WriteTextList("OnBoxDelete", DeleteCommand);
WriteTextList("OnBoxTerminate", TerminateCommand);
+
+ WriteTextList("StartProgramDisabled", StartProgramDisabled);
+ WriteTextList("StartServiceDisabled", StartServiceDisabled);
+ WriteTextList("AutoExecDisabled", AutoExecDisabled);
+ WriteTextList("OnFileRecoveryDisabled", RecoveryCheckDisabled);
+ WriteTextList("OnBoxDeleteDisabled", DeleteCommandDisabled);
+ WriteTextList("OnBoxTerminateDisabled", TerminateCommandDisabled);
//
@@ -874,7 +918,7 @@ void COptionsWindow::CloseOptionEdit(QTreeWidgetItem* pItem, bool bSave)
//
// triggers
-void COptionsWindow::AddTriggerItem(const QString& Value, ETriggerAction Type, const QString& Template)
+void COptionsWindow::AddTriggerItem(const QString& Value, ETriggerAction Type, bool disabled, const QString& Template)
{
QTreeWidgetItem* pItem = new QTreeWidgetItem();
pItem->setData(0, Qt::UserRole, Template.isEmpty() ? Type : -1);
@@ -906,6 +950,10 @@ void COptionsWindow::AddTriggerItem(const QString& Value, ETriggerAction Type, c
}
pItem->setText(2, Value);
pItem->setFlags(pItem->flags() | Qt::ItemIsEditable);
+
+ if (Template.isEmpty())
+ pItem->setCheckState(0, disabled ? Qt::Unchecked : Qt::Checked);
+
ui.treeTriggers->addTopLevelItem(pItem);
}
diff --git a/SandboxiePlus/SandMan/Windows/OptionsWindow.h b/SandboxiePlus/SandMan/Windows/OptionsWindow.h
index 2687d328..318c2300 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsWindow.h
+++ b/SandboxiePlus/SandMan/Windows/OptionsWindow.h
@@ -473,7 +473,7 @@ protected:
void SaveAdvanced();
void UpdateBoxIsolation();
void ShowTriggersTmpl(bool bUpdate = false);
- void AddTriggerItem(const QString& Value, ETriggerAction Type, const QString& Template = QString());
+ void AddTriggerItem(const QString& Value, ETriggerAction Type, bool disabled = false, const QString& Template = QString());
void ShowHiddenProcTmpl(bool bUpdate = false);
void ShowHostProcTmpl(bool bUpdate = false);
void AddHiddenProcEntry(const QString& Name, const QString& Template = QString());
From cc63194b5f797e06622895f83fdfef420643e5de Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 20 Apr 2024 14:32:15 +0200
Subject: [PATCH 005/122] 3739
---
CHANGELOG.md | 3 +-
SandboxiePlus/MiscHelpers/Common/Common.cpp | 24 +--
SandboxiePlus/MiscHelpers/Common/Common.h | 2 +-
.../Common}/MultiErrorDialog.cpp | 15 +-
.../Common}/MultiErrorDialog.h | 7 +-
SandboxiePlus/MiscHelpers/MiscHelpers.pri | 2 +
SandboxiePlus/SandMan/Forms/SettingsWindow.ui | 167 +++++++++---------
SandboxiePlus/SandMan/Helpers/WinHelper.cpp | 10 ++
SandboxiePlus/SandMan/Helpers/WinHelper.h | 4 +-
SandboxiePlus/SandMan/SandMan.cpp | 25 ++-
SandboxiePlus/SandMan/SandMan.h | 1 +
SandboxiePlus/SandMan/SandMan.pri | 2 -
SandboxiePlus/SandMan/Views/SbieView.cpp | 6 +-
SandboxiePlus/SandMan/Views/TraceView.h | 4 +-
.../SandMan/Windows/OptionsWindow.cpp | 2 +-
SandboxiePlus/SandMan/Windows/PopUpWindow.cpp | 2 +-
.../SandMan/Windows/RecoveryWindow.cpp | 2 +-
.../SandMan/Windows/SettingsWindow.cpp | 8 +-
18 files changed, 162 insertions(+), 124 deletions(-)
rename SandboxiePlus/{SandMan/Dialogs => MiscHelpers/Common}/MultiErrorDialog.cpp (69%)
rename SandboxiePlus/{SandMan/Dialogs => MiscHelpers/Common}/MultiErrorDialog.h (52%)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 84e41d97..89e3d90a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,7 +15,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Note: this option may cause issues in games hence do not enable it for gaming boxes.
- added support for hardlinks [#3826](https://github.com/sandboxie-plus/Sandboxie/issues/3826)
- added mechanism to terminate stuck sandboxed processes from the driver
-- added Sandman: Make the trigger list editable [#3742](https://github.com/sandboxie-plus/Sandboxie/issues/3742)
+- added Make the trigger list editable [#3742](https://github.com/sandboxie-plus/Sandboxie/issues/3742)
+- added Optionally extend the screenshot protection to the UI [#3739](https://github.com/sandboxie-plus/Sandboxie/issues/3739)
### Changed
- improved Avast template [#3777](https://github.com/sandboxie-plus/Sandboxie/pull/3777)
diff --git a/SandboxiePlus/MiscHelpers/Common/Common.cpp b/SandboxiePlus/MiscHelpers/Common/Common.cpp
index 542d9142..a6c7aef0 100644
--- a/SandboxiePlus/MiscHelpers/Common/Common.cpp
+++ b/SandboxiePlus/MiscHelpers/Common/Common.cpp
@@ -617,16 +617,16 @@ bool InitConsole(bool bCreateIfNeeded)
// avoid flashing a bright white window when in dark mode
//
-void SafeShow(QWidget* pWidget) {
- static bool Lock = false;
- pWidget->setProperty("windowOpacity", 0.0);
- if (Lock == false) {
- Lock = true;
- pWidget->show();
- QApplication::processEvents(QEventLoop::ExcludeSocketNotifiers);
- Lock = false;
- } else
- pWidget->show();
- pWidget->setProperty("windowOpacity", 1.0);
-}
+//void SafeShow(QWidget* pWidget) {
+// static bool Lock = false;
+// pWidget->setProperty("windowOpacity", 0.0);
+// if (Lock == false) {
+// Lock = true;
+// pWidget->show();
+// QApplication::processEvents(QEventLoop::ExcludeSocketNotifiers);
+// Lock = false;
+// } else
+// pWidget->show();
+// pWidget->setProperty("windowOpacity", 1.0);
+//}
diff --git a/SandboxiePlus/MiscHelpers/Common/Common.h b/SandboxiePlus/MiscHelpers/Common/Common.h
index febbff92..c30b1455 100644
--- a/SandboxiePlus/MiscHelpers/Common/Common.h
+++ b/SandboxiePlus/MiscHelpers/Common/Common.h
@@ -115,7 +115,7 @@ MISCHELPERS_EXPORT void SetPaleteTexture(QPalette& palette, QPalette::ColorRole
MISCHELPERS_EXPORT bool InitConsole(bool bCreateIfNeeded = true);
#endif
-MISCHELPERS_EXPORT void SafeShow(QWidget* pWidget);
+//MISCHELPERS_EXPORT void SafeShow(QWidget* pWidget);
template
QSet ListToSet(const QList& qList) { return QSet(qList.begin(), qList.end()); }
diff --git a/SandboxiePlus/SandMan/Dialogs/MultiErrorDialog.cpp b/SandboxiePlus/MiscHelpers/Common/MultiErrorDialog.cpp
similarity index 69%
rename from SandboxiePlus/SandMan/Dialogs/MultiErrorDialog.cpp
rename to SandboxiePlus/MiscHelpers/Common/MultiErrorDialog.cpp
index a7375298..c976211a 100644
--- a/SandboxiePlus/SandMan/Dialogs/MultiErrorDialog.cpp
+++ b/SandboxiePlus/MiscHelpers/Common/MultiErrorDialog.cpp
@@ -1,22 +1,21 @@
#include "stdafx.h"
-#include "../../MiscHelpers/Common/Settings.h"
+#include "Settings.h"
#include "MultiErrorDialog.h"
-#include "..\SandMan.h"
-CMultiErrorDialog::CMultiErrorDialog(const QString& Message, const QStringList& Errors, QWidget* parent)
+CMultiErrorDialog::CMultiErrorDialog(const QString& Title, const QString& Message, const QStringList& Errors, QWidget* parent)
: QDialog(parent)
{
- this->setWindowTitle(tr("Sandboxie-Plus - Error"));
+ this->setWindowTitle(Title);
m_pMainLayout = new QGridLayout(this);
int Row = 0;
m_pMainLayout->addWidget(new QLabel(Message), Row++, 0, 1, 4);
m_pErrors = new CPanelWidgetEx();
- m_pErrors->GetTree()->setItemDelegate(new CTreeItemDelegate());
+ //m_pErrors->GetTree()->setItemDelegate(new CTreeItemDelegate());
- m_pErrors->GetTree()->setHeaderLabels(tr("Message").split("|"));
+ //m_pErrors->GetTree()->setHeaderLabels(tr("Message").split("|"));
m_pErrors->GetView()->setSelectionMode(QAbstractItemView::ExtendedSelection);
m_pErrors->GetView()->setSortingEnabled(false);
@@ -31,7 +30,7 @@ CMultiErrorDialog::CMultiErrorDialog(const QString& Message, const QStringList&
connect(m_pButtonBox,SIGNAL(accepted()),this,SLOT(accept()));
connect(m_pButtonBox,SIGNAL(rejected()),this,SLOT(reject()));
- restoreGeometry(theConf->GetBlob("ErrorWindow/Window_Geometry"));
+ //restoreGeometry(theConf->GetBlob("ErrorWindow/Window_Geometry"));
foreach(const QString& Error, Errors)
@@ -47,5 +46,5 @@ CMultiErrorDialog::CMultiErrorDialog(const QString& Message, const QStringList&
CMultiErrorDialog::~CMultiErrorDialog()
{
- theConf->SetBlob("ErrorWindow/Window_Geometry", saveGeometry());
+ //theConf->SetBlob("ErrorWindow/Window_Geometry", saveGeometry());
}
diff --git a/SandboxiePlus/SandMan/Dialogs/MultiErrorDialog.h b/SandboxiePlus/MiscHelpers/Common/MultiErrorDialog.h
similarity index 52%
rename from SandboxiePlus/SandMan/Dialogs/MultiErrorDialog.h
rename to SandboxiePlus/MiscHelpers/Common/MultiErrorDialog.h
index d9bde152..4689f9e8 100644
--- a/SandboxiePlus/SandMan/Dialogs/MultiErrorDialog.h
+++ b/SandboxiePlus/MiscHelpers/Common/MultiErrorDialog.h
@@ -1,13 +1,12 @@
#pragma once
-#include "../../MiscHelpers/Common/PanelView.h"
-#include "../../QSbieAPI/SbieStatus.h"
+#include "PanelView.h"
-class CMultiErrorDialog : public QDialog
+class MISCHELPERS_EXPORT CMultiErrorDialog : public QDialog
{
Q_OBJECT
public:
- CMultiErrorDialog(const QString& Message, const QStringList& Errors, QWidget* parent = 0);
+ CMultiErrorDialog(const QString& Title, const QString& Message, const QStringList& Errors, QWidget* parent = 0);
virtual ~CMultiErrorDialog();
private:
diff --git a/SandboxiePlus/MiscHelpers/MiscHelpers.pri b/SandboxiePlus/MiscHelpers/MiscHelpers.pri
index bd82b14e..0584df96 100644
--- a/SandboxiePlus/MiscHelpers/MiscHelpers.pri
+++ b/SandboxiePlus/MiscHelpers/MiscHelpers.pri
@@ -35,6 +35,7 @@ HEADERS += ./MiscHelpers.h \
./Common/NeonEffect.h \
./Common/NetworkAccessManager.h \
./Common/MT/ThreadLock.h \
+ ./Common/MultiErrorDialog.h \
./Archive/Archive.h \
./Archive/ArchiveFS.h \
./Archive/ArchiveExtractor.h \
@@ -70,6 +71,7 @@ SOURCES += ./MiscHelpers.cpp \
./Common/TreeItemModel.cpp \
./Common/Xml.cpp \
./Common/MT/ThreadLock.cpp \
+ ./Common/MultiErrorDialog.cpp \
./Archive/Archive.cpp \
./Archive/ArchiveFS.cpp \
./Archive/ArchiveExtractor.cpp \
diff --git a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
index 558c368c..40e89c82 100644
--- a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
@@ -1088,20 +1088,64 @@
-
-
-
-
-
+
+
- Font Scaling
+ High DPI ScalingQt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
+
+
+
+ %
+
+
+
+
+
+
+ External Ini Editor
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+
+
+
+
+ Ini Editor Font
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+
+
+
+
+ true
+
+
+
+
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+
@@ -1138,8 +1182,11 @@
-
-
+
+
+
+
+ Qt::Horizontal
@@ -1155,7 +1202,6 @@
- 75truetrue
@@ -1165,18 +1211,8 @@
-
-
-
- High DPI Scaling
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
-
-
-
+
+ Qt::Horizontal
@@ -1188,28 +1224,7 @@
-
-
-
-
- 75
- true
- true
-
-
-
- Ini Options
-
-
-
-
-
-
- %
-
-
-
-
+ Qt::Horizontal
@@ -1222,17 +1237,24 @@
-
-
+
+
- Ini Editor Font
+ Font ScalingQt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
+
+
+
+ #
+
+
+
+ Qt::Vertical
@@ -1245,19 +1267,8 @@
-
-
-
- #
-
-
-
-
-
-
- true
-
-
+
+
@@ -1266,29 +1277,23 @@
-
-
-
- Qt::Horizontal
+
+
+
+
+ true
+ true
+
-
-
- 40
- 20
-
-
-
-
-
-
-
-
-
- External Ini Editor
+ Ini Options
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+
+
+
+ Hide SandMan windows from screen capture (UI restart required)
diff --git a/SandboxiePlus/SandMan/Helpers/WinHelper.cpp b/SandboxiePlus/SandMan/Helpers/WinHelper.cpp
index 8a946309..da2b1b9c 100644
--- a/SandboxiePlus/SandMan/Helpers/WinHelper.cpp
+++ b/SandboxiePlus/SandMan/Helpers/WinHelper.cpp
@@ -117,4 +117,14 @@ bool PickWindowsIcon(QWidget* pParent, QString& Path, quint32& Index)
BOOL Ret = PickIconDlg((HWND)pParent->window()->winId(), iconPath, MAX_PATH, (int*)&Index);
Path = QString::fromWCharArray(iconPath);
return !!Ret;
+}
+
+void ProtectWindow(void* hWnd)
+{
+ typedef BOOL(*LPSETWINDOWDISPLAYAFFINITY)(HWND, DWORD);
+ static LPSETWINDOWDISPLAYAFFINITY pSetWindowDisplayAffinity = NULL;
+ if (!pSetWindowDisplayAffinity)
+ pSetWindowDisplayAffinity = (LPSETWINDOWDISPLAYAFFINITY)GetProcAddress(LoadLibraryA("user32.dll"), "SetWindowDisplayAffinity");
+ if (pSetWindowDisplayAffinity)
+ pSetWindowDisplayAffinity((HWND)hWnd, 0x00000011);
}
\ No newline at end of file
diff --git a/SandboxiePlus/SandMan/Helpers/WinHelper.h b/SandboxiePlus/SandMan/Helpers/WinHelper.h
index 3b734df7..91bbf372 100644
--- a/SandboxiePlus/SandMan/Helpers/WinHelper.h
+++ b/SandboxiePlus/SandMan/Helpers/WinHelper.h
@@ -4,4 +4,6 @@ QVariantMap ResolveShortcut(const QString& LinkPath);
QPixmap LoadWindowsIcon(const QString& Path, quint32 Index);
-bool PickWindowsIcon(QWidget* pParent, QString& Path, quint32& Index);
\ No newline at end of file
+bool PickWindowsIcon(QWidget* pParent, QString& Path, quint32& Index);
+
+void ProtectWindow(void* hWnd);
\ No newline at end of file
diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp
index 92fbb5f6..9a84071d 100644
--- a/SandboxiePlus/SandMan/SandMan.cpp
+++ b/SandboxiePlus/SandMan/SandMan.cpp
@@ -6,7 +6,7 @@
#include "Views/SbieView.h"
#include "../MiscHelpers/Common/CheckableMessageBox.h"
#include
-#include "./Dialogs/MultiErrorDialog.h"
+#include "../MiscHelpers/Common/MultiErrorDialog.h"
#include "../QSbieAPI/SbieUtils.h"
#include "../QSbieAPI/Sandboxie/BoxBorder.h"
#include "../QSbieAPI/Sandboxie/SbieTemplates.h"
@@ -119,7 +119,7 @@ CSandMan::CSandMan(QWidget *parent)
: QMainWindow(parent)
{
#if defined(Q_OS_WIN)
- MainWndHandle = (HWND)QWidget::winId();
+ MainWndHandle = (HWND)winId();
QApplication::instance()->installNativeEventFilter(new CNativeEventFilter);
#endif
@@ -1596,6 +1596,23 @@ bool CSandMan::IsSilentMode()
return IsFullScreenMode();
}
+void CSandMan::SafeShow(QWidget* pWidget)
+{
+ if(theConf->GetBool("Options/CoverWindows", false))
+ ProtectWindow((HWND)pWidget->winId());
+
+ static bool Lock = false;
+ pWidget->setProperty("windowOpacity", 0.0);
+ if (Lock == false) {
+ Lock = true;
+ pWidget->show();
+ QApplication::processEvents(QEventLoop::ExcludeSocketNotifiers);
+ Lock = false;
+ } else
+ pWidget->show();
+ pWidget->setProperty("windowOpacity", 1.0);
+}
+
QWidget* g_GUIParent = NULL;
int CSandMan::SafeExec(QDialog* pDialog)
@@ -3992,8 +4009,8 @@ void CSandMan::CheckResults(QList Results, QWidget* pParent, bool bAs
else if (Errors.count() == 1)
QMessageBox::warning(pParent ? pParent : this, tr("Sandboxie-Plus - Error"), Errors.first());
else if (Errors.count() > 1) {
- CMultiErrorDialog Dialog(tr("Operation failed for %1 item(s).").arg(Errors.size()), Errors, pParent ? pParent : this);
- Dialog.exec();
+ CMultiErrorDialog Dialog("Sandboxie-Plus", tr("Operation failed for %1 item(s).").arg(Errors.size()), Errors, pParent ? pParent : this);
+ theGUI->SafeExec(&Dialog);
}
}
diff --git a/SandboxiePlus/SandMan/SandMan.h b/SandboxiePlus/SandMan/SandMan.h
index c5f84d00..451f8c33 100644
--- a/SandboxiePlus/SandMan/SandMan.h
+++ b/SandboxiePlus/SandMan/SandMan.h
@@ -88,6 +88,7 @@ public:
QString FormatSbieMessage(quint32 MsgCode, const QStringList& MsgData, QString ProcessName, QString* pLink = NULL);
QString MakeSbieMsgLink(quint32 MsgCode, const QStringList& MsgData, QString ProcessName);
+ static void SafeShow(QWidget* pWidget);
int SafeExec(QDialog* pDialog);
bool RunSandboxed(const QStringList& Commands, QString BoxName = QString(), const QString& WrkDir = QString());
diff --git a/SandboxiePlus/SandMan/SandMan.pri b/SandboxiePlus/SandMan/SandMan.pri
index 9e65518a..5cda6208 100644
--- a/SandboxiePlus/SandMan/SandMan.pri
+++ b/SandboxiePlus/SandMan/SandMan.pri
@@ -16,7 +16,6 @@ HEADERS += ./stdafx.h \
./Views/FileView.h \
./Views/TraceView.h \
./Views/StackView.h \
- ./Dialogs/MultiErrorDialog.h \
./Helpers/FindTool.h \
./Helpers/FullScreen.h \
./Helpers/WinAdmin.h \
@@ -65,7 +64,6 @@ SOURCES += ./main.cpp \
./Views/FileView.cpp \
./Views/TraceView.cpp \
./Views/StackView.cpp \
- ./Dialogs/MultiErrorDialog.cpp \
./Helpers/FindTool.cpp \
./Helpers/FullScreen.cpp \
./Helpers/WinAdmin.cpp \
diff --git a/SandboxiePlus/SandMan/Views/SbieView.cpp b/SandboxiePlus/SandMan/Views/SbieView.cpp
index 71f3b8e2..61e7e9d3 100644
--- a/SandboxiePlus/SandMan/Views/SbieView.cpp
+++ b/SandboxiePlus/SandMan/Views/SbieView.cpp
@@ -1334,7 +1334,7 @@ void CSbieView::OnSandBoxAction(QAction* Action, const QList& SandB
connect(pSnapshotsWindow, &CSnapshotsWindow::Closed, [this, pBox]() {
SnapshotWindows.remove(pBox.data());
});
- SafeShow(pSnapshotsWindow);
+ CSandMan::SafeShow(pSnapshotsWindow);
}
else {
pSnapshotsWindow->setWindowState((pSnapshotsWindow->windowState() & ~Qt::WindowMinimized) | Qt::WindowActive);
@@ -1725,7 +1725,7 @@ void CSbieView::ShowOptions(const CSandBoxPtr& pBox)
connect(pBoxEx->m_pOptionsWnd, &COptionsWindow::Closed, [pBoxEx]() {
pBoxEx->m_pOptionsWnd = NULL;
});
- SafeShow(pBoxEx->m_pOptionsWnd);
+ CSandMan::SafeShow(pBoxEx->m_pOptionsWnd);
}
else {
pBoxEx->m_pOptionsWnd->setWindowState((pBoxEx->m_pOptionsWnd->windowState() & ~Qt::WindowMinimized) | Qt::WindowActive);
@@ -1749,7 +1749,7 @@ void CSbieView::ShowBrowse(const CSandBoxPtr& pBox)
connect(pFileBrowserWindow, &CFileBrowserWindow::Closed, [this, pBox]() {
FileBrowserWindows.remove(pBox.data());
});
- SafeShow(pFileBrowserWindow);
+ CSandMan::SafeShow(pFileBrowserWindow);
}
else {
pFileBrowserWindow->setWindowState((pFileBrowserWindow->windowState() & ~Qt::WindowMinimized) | Qt::WindowActive);
diff --git a/SandboxiePlus/SandMan/Views/TraceView.h b/SandboxiePlus/SandMan/Views/TraceView.h
index b06b967b..cfcbf1bd 100644
--- a/SandboxiePlus/SandMan/Views/TraceView.h
+++ b/SandboxiePlus/SandMan/Views/TraceView.h
@@ -105,15 +105,13 @@ protected:
};
QMapm_PidMap;
+ bool m_FullRefresh;
quint64 m_LastID;
int m_LastCount;
bool m_bUpdatePending;
QVector m_TraceList;
QMap m_MonitorMap;
-protected:
- bool m_FullRefresh;
-
quint32 m_FilterPid;
quint32 m_FilterTid;
QList m_FilterTypes;
diff --git a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
index c64c319b..965a2602 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
@@ -1080,7 +1080,7 @@ void COptionsWindow::showTab(const QString& Name)
else
m_pStack->setCurrentWidget(pWidget);
- SafeShow(this);
+ CSandMan::SafeShow(this);
}
void COptionsWindow::SetProgramItem(QString Program, QTreeWidgetItem* pItem, int Column, const QString& Suffix, bool bList)
diff --git a/SandboxiePlus/SandMan/Windows/PopUpWindow.cpp b/SandboxiePlus/SandMan/Windows/PopUpWindow.cpp
index 77cafebb..16b2142e 100644
--- a/SandboxiePlus/SandMan/Windows/PopUpWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/PopUpWindow.cpp
@@ -104,7 +104,7 @@ void CPopUpWindow::Show()
this->move(scrRect.width() - 600 - 20, scrRect.height() - 200 - 50);
}
- SafeShow(this);
+ CSandMan::SafeShow(this);
}
void CPopUpWindow::Poke()
diff --git a/SandboxiePlus/SandMan/Windows/RecoveryWindow.cpp b/SandboxiePlus/SandMan/Windows/RecoveryWindow.cpp
index b7a36d8b..5551174f 100644
--- a/SandboxiePlus/SandMan/Windows/RecoveryWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/RecoveryWindow.cpp
@@ -160,7 +160,7 @@ int CRecoveryWindow::exec()
{
//QDialog::setWindowModality(Qt::WindowModal);
ui.btnDeleteAll->setVisible(true);
- SafeShow(this);
+ CSandMan::SafeShow(this);
return QDialog::exec();
}
diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
index a04171f7..eaeb00bc 100644
--- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
@@ -362,6 +362,8 @@ CSettingsWindow::CSettingsWindow(QWidget* parent)
connect(ui.cmbFontScale, SIGNAL(currentIndexChanged(int)), this, SLOT(OnChangeGUI()));
connect(ui.cmbFontScale, SIGNAL(currentTextChanged(const QString&)), this, SLOT(OnChangeGUI()));
+ connect(ui.chkHide, SIGNAL(stateChanged(int)), this, SLOT(OnOptChanged()));
+
connect(ui.txtEditor, SIGNAL(textChanged(const QString&)), this, SLOT(OnOptChanged()));
m_bRebuildUI = false;
@@ -680,7 +682,7 @@ void CSettingsWindow::showTab(const QString& Name, bool bExclusive)
}
}
- SafeShow(this);
+ CSandMan::SafeShow(this);
}
void CSettingsWindow::closeEvent(QCloseEvent *e)
@@ -905,6 +907,8 @@ void CSettingsWindow::LoadSettings()
//ui.cmbFontScale->setCurrentIndex(ui.cmbFontScale->findData(theConf->GetInt("Options/FontScaling", 100)));
ui.cmbFontScale->setCurrentText(QString::number(theConf->GetInt("Options/FontScaling", 100)));
+ ui.chkHide->setChecked(theConf->GetBool("Options/CoverWindows", false));
+
ui.txtEditor->setText(theConf->GetString("Options/Editor", "notepad.exe"));
@@ -1552,6 +1556,8 @@ void CSettingsWindow::SaveSettings()
else if (Scaling > 500)
Scaling = 500;
theConf->SetValue("Options/FontScaling", Scaling);
+
+ theConf->SetValue("Options/CoverWindows", ui.chkHide->isChecked());
theConf->SetValue("Options/Editor", ui.txtEditor->text());
From 0c58926ee77609dcc5e9f40abafeac1279e0c63d Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 20 Apr 2024 14:43:30 +0200
Subject: [PATCH 006/122] 3738
---
CHANGELOG.md | 1 +
SandboxiePlus/SandMan/Forms/OptionsWindow.ui | 172 ++++++++++--------
SandboxiePlus/SandMan/Forms/SettingsWindow.ui | 98 ++++++----
.../SandMan/Windows/OptionsTemplates.cpp | 7 +
.../SandMan/Windows/OptionsWindow.cpp | 1 +
SandboxiePlus/SandMan/Windows/OptionsWindow.h | 1 +
.../SandMan/Windows/SettingsWindow.cpp | 8 +
.../SandMan/Windows/SettingsWindow.h | 1 +
8 files changed, 180 insertions(+), 109 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 89e3d90a..97fec82a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,6 +17,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- added mechanism to terminate stuck sandboxed processes from the driver
- added Make the trigger list editable [#3742](https://github.com/sandboxie-plus/Sandboxie/issues/3742)
- added Optionally extend the screenshot protection to the UI [#3739](https://github.com/sandboxie-plus/Sandboxie/issues/3739)
+- added a button to edit local/custom templates [#3738](https://github.com/sandboxie-plus/Sandboxie/issues/3738)
### Changed
- improved Avast template [#3777](https://github.com/sandboxie-plus/Sandboxie/pull/3777)
diff --git a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
index 1e848ff7..8ba0cd31 100644
--- a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
@@ -4753,9 +4753,100 @@ instead of "*".
+
+
+
+ Filter Categories
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 23
+
+
+
+ Remove
+
+
+
+
+
+
+ QAbstractItemView::ExtendedSelection
+
+
+ true
+
+
+
+ Category
+
+
+
+
+ Name
+
+
+
+
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 23
+
+
+
+ Add Template
+
+
+
+
+
+
+ Text Filter
+
+
+
+
+
+
+
+
+
+
+ 0
+ 0
+
+
+
+ Open Template
+
+
+
@@ -4779,83 +4870,18 @@ instead of "*".
-
-
-
- Text Filter
+
+
+
+ Qt::Vertical
-
-
-
-
-
-
-
-
-
- 0
- 0
-
-
-
+
- 0
- 23
+ 20
+ 40
-
- Add Template
-
-
-
-
-
-
- Filter Categories
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
-
-
-
-
- QAbstractItemView::ExtendedSelection
-
-
- true
-
-
-
- Category
-
-
-
-
- Name
-
-
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 0
- 23
-
-
-
- Remove
-
-
+
diff --git a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
index 40e89c82..94cb2953 100644
--- a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
@@ -2528,22 +2528,36 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
-
-
- 0
- 0
-
+
+
+
+
+
+
+ Qt::Vertical
-
+
- 0
- 23
+ 20
+ 40
+
+
+
+
- Remove
+ Text Filter
+
+
+
+
+
+
+ This list contains user created custom templates for sandbox options
+
+
+ true
@@ -2566,30 +2580,20 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
-
- Qt::Vertical
+
+
+
+
+ 0
+ 0
+
-
-
- 20
- 40
-
-
-
-
-
-
- Text Filter
+ Open Template
-
-
-
-
+ QAbstractItemView::ExtendedSelection
@@ -2601,16 +2605,38 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
-
- This list contains user created custom templates for sandbox options
+
+
+
+
+ 0
+ 0
+
-
- true
+
+
+ 0
+ 23
+
+
+
+ Remove
+
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 40
+
+
+
+
diff --git a/SandboxiePlus/SandMan/Windows/OptionsTemplates.cpp b/SandboxiePlus/SandMan/Windows/OptionsTemplates.cpp
index c9496e63..212c2c44 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsTemplates.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsTemplates.cpp
@@ -217,6 +217,13 @@ void COptionsWindow::OnTemplateWizard()
}
}
+void COptionsWindow::OnOpenTemplate()
+{
+ QTreeWidgetItem* pItem = ui.treeTemplates->currentItem();
+ if (pItem)
+ OnTemplateDoubleClicked(pItem, 0);
+}
+
void COptionsWindow::OnDelTemplates()
{
if (QMessageBox("Sandboxie-Plus", tr("Do you really want to delete the selected local template(s)?"), QMessageBox::Question, QMessageBox::Yes, QMessageBox::No | QMessageBox::Default | QMessageBox::Escape, QMessageBox::NoButton, this).exec() != QMessageBox::Yes)
diff --git a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
index 965a2602..ac547328 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
@@ -543,6 +543,7 @@ COptionsWindow::COptionsWindow(const QSharedPointer& pBox, const QStri
pTmplBtnMenu->addAction(tr("Add %1 Template").arg(CTemplateWizard::GetTemplateLabel((CTemplateWizard::ETemplateType)i)), this, SLOT(OnTemplateWizard()))->setData(i);
ui.btnAddTemplate->setPopupMode(QToolButton::MenuButtonPopup);
ui.btnAddTemplate->setMenu(pTmplBtnMenu);
+ connect(ui.btnOpenTemplate, SIGNAL(clicked(bool)), this, SLOT(OnOpenTemplate()));
connect(ui.btnDelTemplate, SIGNAL(clicked(bool)), this, SLOT(OnDelTemplates()));
connect(ui.chkScreenReaders, SIGNAL(clicked(bool)), this, SLOT(OnScreenReaders()));
//
diff --git a/SandboxiePlus/SandMan/Windows/OptionsWindow.h b/SandboxiePlus/SandMan/Windows/OptionsWindow.h
index 318c2300..76247a68 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsWindow.h
+++ b/SandboxiePlus/SandMan/Windows/OptionsWindow.h
@@ -217,6 +217,7 @@ private slots:
void OnTemplateDoubleClicked(QTreeWidgetItem* pItem, int Column);
void OnAddTemplates();
void OnTemplateWizard();
+ void OnOpenTemplate();
void OnDelTemplates();
void OnFolderChanged();
void OnScreenReaders();
diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
index eaeb00bc..524d9a23 100644
--- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
@@ -477,6 +477,7 @@ CSettingsWindow::CSettingsWindow(QWidget* parent)
pTmplBtnMenu->addAction(tr("Add %1 Template").arg(CTemplateWizard::GetTemplateLabel((CTemplateWizard::ETemplateType)i)), this, SLOT(OnTemplateWizard()))->setData(i);
ui.btnAddTemplate->setPopupMode(QToolButton::MenuButtonPopup);
ui.btnAddTemplate->setMenu(pTmplBtnMenu);
+ connect(ui.btnOpenTemplate, SIGNAL(clicked(bool)), this, SLOT(OnOpenTemplate()));
connect(ui.btnDelTemplate, SIGNAL(clicked(bool)), this, SLOT(OnDelTemplates()));
//
@@ -2239,6 +2240,13 @@ void CSettingsWindow::OnTemplateWizard()
}
}
+void CSettingsWindow::OnOpenTemplate()
+{
+ QTreeWidgetItem* pItem = ui.treeTemplates->currentItem();
+ if (pItem)
+ OnTemplateDoubleClicked(pItem, 0);
+}
+
void CSettingsWindow::OnDelTemplates()
{
if (QMessageBox("Sandboxie-Plus", tr("Do you really want to delete the selected local template(s)?"), QMessageBox::Question, QMessageBox::Yes, QMessageBox::No | QMessageBox::Default | QMessageBox::Escape, QMessageBox::NoButton, this).exec() != QMessageBox::Yes)
diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.h b/SandboxiePlus/SandMan/Windows/SettingsWindow.h
index 1bc7c7ba..ab11cfa6 100644
--- a/SandboxiePlus/SandMan/Windows/SettingsWindow.h
+++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.h
@@ -120,6 +120,7 @@ private slots:
void OnFilterTemplates() { LoadTemplates(); }
void OnAddTemplates();
void OnTemplateWizard();
+ void OnOpenTemplate();
void OnDelTemplates();
void SetIniEdit(bool bEnable);
From c90340a0a5df46cb45a0b6946e139264ba9e24a4 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 20 Apr 2024 15:09:52 +0200
Subject: [PATCH 007/122] #3697
---
CHANGELOG.md | 1 +
SandboxiePlus/SandMan/Forms/SelectBoxWindow.ui | 2 +-
SandboxiePlus/SandMan/Windows/SelectBoxWindow.cpp | 6 ++----
SandboxiePlus/SandMan/Wizards/BoxAssistant.cpp | 1 +
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 97fec82a..a8f51a3f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,6 +18,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- added Make the trigger list editable [#3742](https://github.com/sandboxie-plus/Sandboxie/issues/3742)
- added Optionally extend the screenshot protection to the UI [#3739](https://github.com/sandboxie-plus/Sandboxie/issues/3739)
- added a button to edit local/custom templates [#3738](https://github.com/sandboxie-plus/Sandboxie/issues/3738)
+- asses Permanently Re-sizable or Larger "Run Sandboxed" Window [#3697](https://github.com/sandboxie-plus/Sandboxie/issues/3697)
### Changed
- improved Avast template [#3777](https://github.com/sandboxie-plus/Sandboxie/pull/3777)
diff --git a/SandboxiePlus/SandMan/Forms/SelectBoxWindow.ui b/SandboxiePlus/SandMan/Forms/SelectBoxWindow.ui
index 0f31c89a..4b04b6e1 100644
--- a/SandboxiePlus/SandMan/Forms/SelectBoxWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/SelectBoxWindow.ui
@@ -6,7 +6,7 @@
00
- 263
+ 290430
diff --git a/SandboxiePlus/SandMan/Windows/SelectBoxWindow.cpp b/SandboxiePlus/SandMan/Windows/SelectBoxWindow.cpp
index 2a8b5df6..b3fc3fdc 100644
--- a/SandboxiePlus/SandMan/Windows/SelectBoxWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/SelectBoxWindow.cpp
@@ -27,8 +27,6 @@ CBoxPicker::CBoxPicker(QString DefaultBox, QWidget* parent)
pLayout->setContentsMargins(0, 0, 0, 0);
pLayout->addWidget(new CFinder(this, this, 0));
pLayout->insertWidget(0, m_pTreeBoxes);
-
- this->setMaximumWidth(300);
if(DefaultBox.isEmpty() && theAPI->IsConnected())
DefaultBox = theAPI->GetGlobalSettings()->GetText("DefaultBox", "DefaultBox");
@@ -197,12 +195,12 @@ CSelectBoxWindow::CSelectBoxWindow(const QStringList& Commands, const QString& B
m_pBoxPicker->setFocus();
- //restoreGeometry(theConf->GetBlob("SelectBoxWindow/Window_Geometry"));
+ restoreGeometry(theConf->GetBlob("SelectBoxWindow/Window_Geometry"));
}
CSelectBoxWindow::~CSelectBoxWindow()
{
- //theConf->SetBlob("SelectBoxWindow/Window_Geometry", saveGeometry());
+ theConf->SetBlob("SelectBoxWindow/Window_Geometry", saveGeometry());
}
void CSelectBoxWindow::closeEvent(QCloseEvent *e)
diff --git a/SandboxiePlus/SandMan/Wizards/BoxAssistant.cpp b/SandboxiePlus/SandMan/Wizards/BoxAssistant.cpp
index a38512c9..0c238694 100644
--- a/SandboxiePlus/SandMan/Wizards/BoxAssistant.cpp
+++ b/SandboxiePlus/SandMan/Wizards/BoxAssistant.cpp
@@ -698,6 +698,7 @@ void CRunPage::OnStateChanged(int state, const QString& Text)
QString Name = name;
//if(!Name.isEmpty()) pForm->addRow(new QLabel(Name));
CBoxPicker* pPicker = new CBoxPicker(value.toString());
+ pPicker->setMaximumWidth(300);
pWidget = pPicker;
pForm->addRow(Name, pPicker);
}
From 585210423ba621587729c6d03f9f2e3d5101a6ad Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Sat, 20 Apr 2024 17:33:19 +0300
Subject: [PATCH 008/122] Update guiclass.c
---
Sandboxie/core/dll/guiclass.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Sandboxie/core/dll/guiclass.c b/Sandboxie/core/dll/guiclass.c
index 3ed96f65..360e6c52 100644
--- a/Sandboxie/core/dll/guiclass.c
+++ b/Sandboxie/core/dll/guiclass.c
@@ -193,7 +193,7 @@ _FX BOOLEAN Gui_InitClass(HMODULE module)
}
}
- Gui_UseProtectScreen = SbieApi_QueryConfBool(NULL, L"IsProtectScreen", FALSE);
+ Gui_UseProtectScreen = SbieApi_QueryConfBool(NULL, L"CoverBoxedWindows", FALSE);
//
// hook functions
From c40fb91c1c7f71c97ae8012e40f66e074e6ead93 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 20 Apr 2024 20:17:51 +0200
Subject: [PATCH 009/122] #3638
---
CHANGELOG.md | 1 +
Sandboxie/core/dll/dll.h | 3 +++
Sandboxie/core/dll/proc.c | 6 ++++++
Sandboxie/core/dll/secure.c | 17 ++++++++++-------
Sandboxie/install/Templates.ini | 1 +
5 files changed, 21 insertions(+), 7 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a8f51a3f..ae91a73a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -34,6 +34,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed Enabling "DropAdminRights/FakeAdminRights" adds "BlockInterferePower and ForceProtectionOnMount" to the INI [#3825](https://github.com/sandboxie-plus/Sandboxie/issues/3825)
- fixed KeePass "Out of Memory" crash due to "BlockScreenCapture=y" [#3768](https://github.com/sandboxie-plus/Sandboxie/issues/3768)
- fixed Sandboxie 1.13.4 with IsBlockCapture=y brakes on Windows 7 [#3769](https://github.com/sandboxie-plus/Sandboxie/issues/3769)
+- fixed explorer.exe issue "FakeAdminRights=y" [#3638](https://github.com/sandboxie-plus/Sandboxie/issues/3638)
diff --git a/Sandboxie/core/dll/dll.h b/Sandboxie/core/dll/dll.h
index 32bb818d..e7ffe69c 100644
--- a/Sandboxie/core/dll/dll.h
+++ b/Sandboxie/core/dll/dll.h
@@ -200,6 +200,7 @@ typedef struct _THREAD_DATA {
BOOLEAN proc_create_process_capture_image;
BOOLEAN proc_create_process_force_elevate;
BOOLEAN proc_create_process_as_invoker;
+ BOOLEAN proc_create_process_fake_admin;
BOOLEAN proc_image_is_copy;
WCHAR *proc_image_path;
WCHAR *proc_command_line;
@@ -310,6 +311,8 @@ extern ULONG Dll_Windows;
extern PSECURITY_DESCRIPTOR Secure_NormalSD;
extern PSECURITY_DESCRIPTOR Secure_EveryoneSD;
+extern BOOLEAN Secure_FakeAdmin;
+
extern BOOLEAN Ldr_BoxedImage;
extern WCHAR *Ldr_ImageTruePath;
diff --git a/Sandboxie/core/dll/proc.c b/Sandboxie/core/dll/proc.c
index 589afd92..4ac427b9 100644
--- a/Sandboxie/core/dll/proc.c
+++ b/Sandboxie/core/dll/proc.c
@@ -1335,12 +1335,16 @@ _FX BOOL Proc_CreateProcessInternalW(
lpProcessAttributes = NULL;
}
+ TlsData->proc_create_process_fake_admin = (Secure_FakeAdmin == FALSE && SbieApi_QueryConfBool(NULL, L"FakeAdminRights", FALSE));
+
ok = __sys_CreateProcessInternalW(
hToken, lpApplicationName, lpCommandLine,
lpProcessAttributes, lpThreadAttributes, bInheritHandles,
dwCreationFlags, lpEnvironment, lpCurrentDirectory,
lpStartupInfo, lpProcessInformation, hNewToken);
+ TlsData->proc_create_process_fake_admin = FALSE;
+
err = GetLastError();
goto finish;
@@ -1410,6 +1414,7 @@ _FX BOOL Proc_CreateProcessInternalW(
}
}
+ TlsData->proc_create_process_fake_admin = (Secure_FakeAdmin == FALSE && SbieApi_QueryConfBool(NULL, L"FakeAdminRights", FALSE));
ok = __sys_CreateProcessInternalW(
NULL, lpApplicationName, lpCommandLine,
@@ -1419,6 +1424,7 @@ _FX BOOL Proc_CreateProcessInternalW(
err = GetLastError();
+ TlsData->proc_create_process_fake_admin = FALSE;
//
// restore the original owner pointers in the security descriptors
diff --git a/Sandboxie/core/dll/secure.c b/Sandboxie/core/dll/secure.c
index cee61709..ec95269a 100644
--- a/Sandboxie/core/dll/secure.c
+++ b/Sandboxie/core/dll/secure.c
@@ -1003,8 +1003,9 @@ _FX NTSTATUS Ldr_NtQueryInformationToken(
ULONG TokenInformationLength,
ULONG *ReturnLength)
{
+ THREAD_DATA *TlsData = Dll_GetTlsData(NULL);
+
NTSTATUS status = 0;
- THREAD_DATA *TlsData = NULL;
HANDLE hTokenReal = NULL;
BOOLEAN FakeAdmin = FALSE;
@@ -1019,7 +1020,7 @@ _FX NTSTATUS Ldr_NtQueryInformationToken(
// we also ensure that the token belongs to the current process
//
- if (Secure_FakeAdmin && (SbieApi_QueryProcessInfoEx(0, 'ippt', (LONG_PTR)(hTokenReal ? hTokenReal : TokenHandle))))
+ if ((Secure_FakeAdmin || TlsData->proc_create_process_fake_admin) && (SbieApi_QueryProcessInfoEx(0, 'ippt', (LONG_PTR)(hTokenReal ? hTokenReal : TokenHandle))))
{
FakeAdmin = TRUE;
}
@@ -1039,8 +1040,6 @@ _FX NTSTATUS Ldr_NtQueryInformationToken(
// we are running as Administrator
//
- TlsData = Dll_GetTlsData(NULL);
-
if (Secure_Is_IE_NtQueryInformationToken && !TlsData->proc_create_process)
{
FakeAdmin = TRUE;
@@ -1150,10 +1149,12 @@ NTSTATUS Ldr_NtAccessCheckByType(PSECURITY_DESCRIPTOR SecurityDescriptor, PSID P
_FX NTSTATUS Ldr_NtAccessCheck(PSECURITY_DESCRIPTOR SecurityDescriptor, HANDLE ClientToken, ACCESS_MASK DesiredAccess, PGENERIC_MAPPING GenericMapping, PPRIVILEGE_SET RequiredPrivilegesBuffer, PULONG BufferLength, PACCESS_MASK GrantedAccess, PNTSTATUS AccessStatus)
{
+ THREAD_DATA *TlsData = Dll_GetTlsData(NULL);
+
NTSTATUS status = 0;
HANDLE hTokenReal = NULL;
- if (Secure_FakeAdmin && SecurityDescriptor) {
+ if ((Secure_FakeAdmin || TlsData->proc_create_process_fake_admin) && SecurityDescriptor) {
BOOLEAN Fake = FALSE;
PSID Group, Owner;
@@ -1352,7 +1353,7 @@ _FX NTSTATUS Secure_RtlQueryElevationFlags(ULONG *Flags)
BOOLEAN fake = FALSE;
- if (Secure_FakeAdmin)
+ if (Secure_FakeAdmin || TlsData->proc_create_process_fake_admin)
{
fake = TRUE;
}
@@ -1446,7 +1447,9 @@ NTSTATUS Secure_RtlCheckTokenMembershipEx(
DWORD flags,
PUCHAR isMember)
{
- if (Secure_FakeAdmin && RtlEqualSid(sidToCheck, AdministratorsSid)) {
+ THREAD_DATA *TlsData = Dll_GetTlsData(NULL);
+
+ if ((Secure_FakeAdmin || TlsData->proc_create_process_fake_admin) && RtlEqualSid(sidToCheck, AdministratorsSid)) {
if (isMember) *isMember = TRUE;
return STATUS_SUCCESS;
}
diff --git a/Sandboxie/install/Templates.ini b/Sandboxie/install/Templates.ini
index 3f15a8da..e54452da 100644
--- a/Sandboxie/install/Templates.ini
+++ b/Sandboxie/install/Templates.ini
@@ -1034,6 +1034,7 @@ Tmpl.ScanService=edgeupdate
# SBIE fix for MS Edge WebView2
#ExternalManifestHack=msedgewebview2.exe,y
NormalFilePath=msedge.exe,%LocalAppData%\Microsoft\Edge\User Data\Default\Secure Preferences
+FakeAdminRights=msedge.exe,n
#
# Vivaldi
From 0274074298131f758d7c4c19c5b8aae2175c798e Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 20 Apr 2024 20:27:15 +0200
Subject: [PATCH 010/122] fix
---
CHANGELOG.md | 1 +
SandboxiePlus/SandMan/Windows/OptionsForce.cpp | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ae91a73a..5de7e848 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -35,6 +35,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed KeePass "Out of Memory" crash due to "BlockScreenCapture=y" [#3768](https://github.com/sandboxie-plus/Sandboxie/issues/3768)
- fixed Sandboxie 1.13.4 with IsBlockCapture=y brakes on Windows 7 [#3769](https://github.com/sandboxie-plus/Sandboxie/issues/3769)
- fixed explorer.exe issue "FakeAdminRights=y" [#3638](https://github.com/sandboxie-plus/Sandboxie/issues/3638)
+- fixed Make it possible to disable forced folder warning [#3569](https://github.com/sandboxie-plus/Sandboxie/issues/3569)
diff --git a/SandboxiePlus/SandMan/Windows/OptionsForce.cpp b/SandboxiePlus/SandMan/Windows/OptionsForce.cpp
index 244ad215..f52be6d9 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsForce.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsForce.cpp
@@ -294,7 +294,7 @@ bool COptionsWindow::CheckForcedItem(const QString& Value, int type)
}
else
{
- if (Value.left(3).compare(winPath.left(3), Qt::CaseInsensitive) == 0)
+ if (Value.compare(winPath.left(3), Qt::CaseInsensitive) == 0)
bDangerous = true; // SystemDrive (C:\)
else if (Value.compare(winPath, Qt::CaseInsensitive) == 0)
bDangerous = true; // SystemRoot (C:\Windows)
From fe7aafc4b0ba6624eaee30938f4834285140fa6f Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Sat, 20 Apr 2024 23:36:54 +0300
Subject: [PATCH 011/122] Update Templates.ini
#3077 #3271
---
Sandboxie/install/Templates.ini | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/Sandboxie/install/Templates.ini b/Sandboxie/install/Templates.ini
index e54452da..4d5a9793 100644
--- a/Sandboxie/install/Templates.ini
+++ b/Sandboxie/install/Templates.ini
@@ -3693,6 +3693,13 @@ ClosedKeyPath=,HKEY_CURRENT_USER\Software\Microsoft\Windows\Sh
ClosedKeyPath=,HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\https\UserChoice
ProcessGroup=,chrome.exe
+[Template_NotepadPlusPlus_fix]
+Tmpl.Title=#4342,Notepad++
+Tmpl.Class=Misc
+Tmpl.Url=https://github.com/search?q=repo%3Asandboxie-plus%2FSandboxie+NppShell.dll&type=issues
+Tmpl.ScanScript=if(system.version().major != 11) return false; return system.checkRegKey("\\REGISTRY\\MACHINE\\SOFTWARE\\CLASSES\\CLSID\\{B298D29A-A6ED-11DE-BA8C-A68E55D89593}")
+ClosedFilePath=explorer.exe,*\contextMenu\NppShell.dll
+
From 693da11c954bec7846a322d961d87021538fd3b0 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 21 Apr 2024 01:29:20 +0000
Subject: [PATCH 012/122] Sync SBIE Plus language files (lupdate)
---
SandboxiePlus/SandMan/sandman_de.ts | 1565 +++++++++++------------
SandboxiePlus/SandMan/sandman_en.ts | 1580 ++++++++++++------------
SandboxiePlus/SandMan/sandman_es.ts | 1567 +++++++++++------------
SandboxiePlus/SandMan/sandman_fr.ts | 1567 +++++++++++------------
SandboxiePlus/SandMan/sandman_hu.ts | 1573 +++++++++++------------
SandboxiePlus/SandMan/sandman_it.ts | 1573 +++++++++++------------
SandboxiePlus/SandMan/sandman_ja.ts | 1580 ++++++++++++------------
SandboxiePlus/SandMan/sandman_ko.ts | 1567 +++++++++++------------
SandboxiePlus/SandMan/sandman_nl.ts | 1573 +++++++++++------------
SandboxiePlus/SandMan/sandman_pl.ts | 1573 +++++++++++------------
SandboxiePlus/SandMan/sandman_pt_BR.ts | 1573 +++++++++++------------
SandboxiePlus/SandMan/sandman_pt_PT.ts | 1573 +++++++++++------------
SandboxiePlus/SandMan/sandman_ru.ts | 1567 +++++++++++------------
SandboxiePlus/SandMan/sandman_sv_SE.ts | 1567 +++++++++++------------
SandboxiePlus/SandMan/sandman_tr.ts | 1567 +++++++++++------------
SandboxiePlus/SandMan/sandman_uk.ts | 1573 +++++++++++------------
SandboxiePlus/SandMan/sandman_vi.ts | 1573 +++++++++++------------
SandboxiePlus/SandMan/sandman_zh_CN.ts | 1565 +++++++++++------------
SandboxiePlus/SandMan/sandman_zh_TW.ts | 1570 +++++++++++------------
19 files changed, 15158 insertions(+), 14688 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts
index 4867f1c5..5bd773a6 100644
--- a/SandboxiePlus/SandMan/sandman_de.ts
+++ b/SandboxiePlus/SandMan/sandman_de.ts
@@ -824,12 +824,12 @@ Fehler: %1
CCompletePage
-
+ Problembehebung abgeschlossen
-
+
@@ -1168,14 +1168,12 @@ Sie können %USER% verwenden, um für jeden Benutzer die Sandbox in einem eigene
CMultiErrorDialog
-
- Sandboxie-Plus - Fehler
+ Sandboxie-Plus - Fehler
-
- Nachricht
+ Nachricht
@@ -1430,76 +1428,76 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Sandbox IPCquelle
-
+ Füge spezielle Option hinzu:
-
-
+
+ Beim Start
-
-
-
-
-
+
+
+
+
+ Kommando ausführen
-
+ Dienst starten
-
+ Beim Initialisieren
-
+ Bei Dateiwiederherstellung
-
+ Beim Löschen von Inhalten
-
+ Beim Beenden
-
-
-
-
-
+
+
+
+
+ Bitte geben Sie die Kommandozeile ein, die ausgeführt werden soll
-
+ Bitte geben Sie einen Programmdateinamen ein, um Zugriff auf diese Sandbox zu erlauben
-
+ Bitte geben Sie einen Programmdateinamen ein, um Zugriff auf diese Sandbox zu verbieten
-
+ Verweigern
-
+ %1 (%2)
@@ -1721,37 +1719,37 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Füge %1 Vorlage hinzu
-
+ Nach Optionen suchen
-
+ Box: %1
-
+ Vorlage: %1
-
+ Global: %1
-
+ Standard: %1
-
+ Diese Sandbox wurde gelöscht, daher kann die Konfiguration nicht gespeichert werden.
-
+ Einige Änderungen wurden bisher nicht gespeichert, möchten Sie dieses Einstellungsfenster wirklich schließen?
@@ -1777,7 +1775,7 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Ausführbare Dateien (*.exe *.cmd)
-
+ Bitte geben Sie eine Dienstbezeichnung ein
@@ -1793,8 +1791,8 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Bitte ein Kommando eingeben
-
-
+
+
@@ -1811,7 +1809,7 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Bitte einen Namen für die neue Gruppe eingeben
-
+ Programm eingeben:
@@ -1886,7 +1884,7 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Diese Vorlage ist global aktiv, um sie zu konfigurieren müssen die globalen Optionen genutzt werden.
-
+
-
+
-
-
+
+
@@ -2108,7 +2106,7 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
-
+
@@ -2142,12 +2140,12 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
Fehler: %1
-
+ Möchten Sie wirklich die ausgewählte(n) lokalen Vorlage(n) löschen?
-
+ Nur lokale Vorlagen können entfernt werden!
@@ -2191,7 +2189,7 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
Blockieren durch Zugriffsverweigerung auf Netzwerkgeräte
-
+
@@ -2564,12 +2562,12 @@ Vollständiger Pfad: %4
Die Problembehebungsprozedur konnte nicht gestartet werden. Sie können auf Weiter klicken um ein Problembericht zu übermitteln.
-
+ Etwas schlug innerhalb der Problembehebungsprozedur fehl und diese kann nicht fortgesetzt werden. Sie können auf Weiter klicken um ein Problembericht zu übermitteln.
-
+
@@ -2696,22 +2694,22 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
CSandBox
-
+ Warte auf Ordner: %1
-
+ Lösche Ordner: %1
-
+ Führe Ordner zusammen: %1 >> %2
-
+ Beende Schnappschuss Zusammenführung...
@@ -2789,27 +2787,27 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
CSandMan
-
+ Sandboxie-Plus v%1
-
+ Spalten zurücksetzen
-
+ Zelle kopieren
-
+ Spalte kopieren
-
+ Tafel kopieren
@@ -3168,7 +3166,7 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
-
+ Sandboxie-Plus Insider [%1]
@@ -3261,22 +3259,22 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
<br /><br />Diese Box <a href="sbie://docs/privacy-mode">verhindert Zugriff auf alle Nutzerdatenspeicherorte</a>, ausgenommen explizit gewährte Zugriffe in den Ressourcenzugriffsoptionen.
-
+ Unbekannter Vorgang '%1' angefragt per Kommandozeile
-
+ USB-Sandbox nicht gefunden; erzeuge: %1
-
+ Führe 'Beim Box Beenden' aus: %1
-
+
@@ -3285,218 +3283,218 @@ Ja wählt: %1
Nein wählt: %2
-
+ Standard Sandbox nicht gefunden; erstelle: %1
-
+ Konnte Hotkey %1 nicht einrichten, Fehler: %2
-
-
-
+
+
+ (%1)
-
+ Die Box %1 ist konfiguriert Funktionen zu nutzen, welche exklusiv für Projektunterstützer verfügbar sind.
-
+ Die Box %1 ist konfiguriert Funktionen zu nutzen, welche ein <b>erweitertes</b> Unterstützerzertifikat erfordern.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgraden Sie Ihr Zertifikat</a> um alle erweiterten Funktionen freizuschalten.
-
+ Diese Funktion erfordert ein <b>erweitertes</b> Unterstützerzertifikat.
-
+ Die ausgewählte(n) Funktion(en) ist/sind nur für Projektunterstützer verfügbar.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Werden Sie ein Projektunterstützer</a>, und erhalten Sie ein <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Unterstützerzertifikat</a>
-
+ Die ausgewählte(n) Funktion(en) ist/sind nur für Projektunterstützer verfügbar. Prozesse, die in einer Box mit diesen Funktionen ohne Unterstützerzertifikat gestartet werden, werden nach 5 Minuten beendet.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Werden Sie ein Projektunterstützer</a>, und erhalten Sie ein <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Unterstützerzertifikat</a>
-
+ Das Zertifikat, das Sie zu verwenden versuchen, wurde gesperrt, was bedeutet, dass es aus gutem Grund für ungültig erklärt wurde. Jeder Versuch es zu verwenden, stellt einen Verstoß gegen die Nutzungsbedingungen dar!
-
+ Die Zertifikatssignatur ist ungültig!
-
+ Das Zertifikat ist für dieses Produkt nicht geeignet.
-
+ Das Zertifikat ist an ein anderes Gerät gebunden (node-locked).
-
+ Das Unterstützerzertifikat ist nicht gültig.
Fehler: %1
-
-
+
+ Zukünftig nicht mehr fragen
-
+ Möchten Sie alle Prozesse in verschlüsselten Sandboxen beenden und diese aushängen?
-
+ ACHTUNG: Ein anderer Agent (vermutlich SbieCtrl.exe) verwaltet diese Sandboxiesitzung bereits, bitte schließen Sie diesen zuerst und verbinden sich erneut, um zu übernehmen.
-
+ Fehlerstatus: 0x%1 (%2)
-
+ Unbekannt
-
+ Alle Prozesse in einer Sandbox müssen beendet werden, bevor diese umbenannt werden kann.
-
+ Konnte Boxabbild '%1' nicht nach '%2' verschieben
-
+ Das Konfigurationspasswort darf nicht länger als 64 Zeichen sein
-
+ Der Inhalt einer nicht angeschlossenen Sandbox kann nicht gelöscht werden
-
+ %1
-
+ Unbekannter Fehlerstatus: 0x%1
-
+ Möchten Sie %1 in einem sandgeboxten oder nicht sandgeboxten Browser öffnen?
-
+ Sandgeboxt
-
+ Nicht sandgeboxt
-
+ Groß-/Kleinschreibung beachten
-
+ Regulärer Ausdruck (RegExp)
-
+ Hervorheben
-
+ Schließen
-
+ &Suchen ...
-
+ Alle Spalten
-
+ <h3>Über Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
-
+ Diese Kopie von Sandboxie+ ist zertifiziert für: %1
-
+ Sandboxie+ ist gratis für persönliche und nicht-kommerzielle Nutzung.
-
+ Sandboxie-Plus ist eine Open-Source Fortsetzung von Sandboxie.<br />Besuchen Sie <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> für mehr Informationen.<br /><br />%3<br /><br />Treiberversion: %1<br />Funktionen: %2<br /><br />Icons von <a href="https://icons8.com">icons8.com</a>
-
+ Das Unterstützerzertifikat ist für diese Version nicht gültig, bitte holen Sie sich ein aktuelles Zertifikat
-
+ Das Unterstützerzertifikat ist abgelaufen%1, bitte holen Sie sich ein aktuelles Zertifikat
-
+ , aber es bleibt für die aktuelle Version gültig
-
+ Das Unterstützerzertifikat wird in %1 Tagen ablaufen, bitte holen Sie sich ein aktuelles Zertifikat
@@ -3569,7 +3567,7 @@ Fehler: %1
-
+ Über Sandboxie-Plus
@@ -3613,42 +3611,42 @@ Möchten Sie die Bereinigung durchführen?
- Lösche Sandboxinhalt
-
+ Führe 'Beim Box Löschen' aus: %1
-
+ Automatisches Löschen des %1 Inhalts
-
+ Automatisches Löschen des Inhalts von %1
-
+ Konnte nicht alle Sandboxiekomponenten stoppen
-
+ Konnte nicht alle benötigten Sandboxiekomponenten starten
-
+ Einige Kompatibilitätsvorlagen (%1) fehlen, möglicherweise wurden sie gelöscht. Möchten Sie diese aus allen Boxen entfernen?
-
+ Entfernte Vorlagen aufgeräumt...
-
+ - NICHT verbunden
@@ -3698,112 +3696,112 @@ Möchten Sie die Bereinigung durchführen?
-
+ Möchten Sie alle Prozesse in allen Sandboxen beenden?
-
+ Sandboxie-Plus wurde im portablen Modus gestartet, nun müssen die benötigten Dienste erzeugt werden, was Adminrechte benötigt.
-
+ Möchten Sie auch die ausgeblendeten Mitteilungsboxen zurücksetzen (Ja) oder nur alle Protokollnachrichten (Nein)?
-
+ Die Änderungen werden automatisch angewendet, sobald die Datei gespeichert wird.
-
+ Die Änderungen werden automatisch angewendet, sobald der Editor geschlossen wird.
-
+ Kann keinen Schnappschuss von einer leeren Box erstellen
-
+ Es existiert bereits eine Sandbox mit diesem Namen
-
+ Fehler beim Ausführen von: %1
-
+ Fehler beim Kommunizieren mit Sandbox-Dienst: %1
-
+ Fehler beim Kopieren der Konfiguration von Sandbox %1: %2
-
+ Es existiert bereits eine Sandbox mit dem Namen %1
-
+ Fehler beim Löschen der Sandbox %1: %2
-
+ Der Name der Sandbox darf nicht länger als 32 Zeichen sein.
-
+ Der Name der Sandbox darf kein reservierter Gerätename (device name) sein.
-
+ Der Name der Sandbox darf nur Buchstaben, Zahlen und Unterstriche, welche als Leerstellen angezeigt werden, enthalten.
-
+ Konnte nicht alle Prozesse beenden
-
+ Löschschutz ist für diese Sandbox aktiviert
-
+ Fehler beim Löschen von Sandbox-Ordner: %1
-
+ Eine Sandbox muss geleert werden, bevor sie umbenannt werden kann.
-
+ Konnte Ordner '%1' nicht nach '%2' verschieben
-
+ Der Schnappschuss kann nicht erstellt werden, während Prozesse in dieser Box laufen.
-
+ Konnte den Ordner für den neuen Schnappschuss (Snapshot) nicht erstellen
@@ -3823,131 +3821,131 @@ Möchten Sie die Bereinigung durchführen?
Klicken zum Herunterladen des Updates
-
+ Kein erzwungener Prozess
-
+ Entferne Verknüpfung: %1
-
+ Aktualisiere Verknüpfung zu: %1
-
+ Verknüpfung hinzugefügt zu: %1
-
+ Automatisches Entfernen von Sandbox %1
-
+ %1 Ordner: %2
-
+ Applikation
-
+ Installation
-
+ Sandboxie-Plus Version: %1 (%2)
-
+ Aktuelle Konfiguration: %1
-
+ für persönliche Nutzung
-
+ - NUR für nicht-kommerzielle Nutzung
-
+ Ihre Windowsversion %1 übersteigt die aktuell bekannten Unterstützungsmöglichkeiten Ihrer Sandboxieversion, daraus resultiert die Deaktivierung der tokenbasierten Sicherheitsisolation. Folglich werden alle Applikationen ohne Sicherheitsisolation im Applikationsunterteilungsmodus laufen.
Bitte überprüfen Sie, ob es ein Update für Sandboxie gibt.
-
+ Diese Nachricht für die aktuelle Windowsversion nicht mehr anzeigen.
-
+ Ihre Windowsversion %1 übersteigt die aktuell bekannten Unterstützungsmöglichkeiten Ihrer Sandboxieversion, Sandboxie wird versuchen die zuletzt bekannten Versätze (Offsets) zu verwenden, was möglicherweise Systeminstabilität verursachen kann.
-
+ Möchten Sie den Einrichtungsassistenten auslassen?
-
+ Die Evaluierungsphase ist abgelaufen!!!
-
+ Schnappschuss (Snapshot) nicht gefunden
-
+ Fehler beim Zusammenführen der Schnappschuss Ordner: '%1' mit '%2', der Schnappschuss wurde nicht vollständig zusammengeführt.
-
+ Konnte alten Schnappschuss-Ordner '%1' nicht entfernen
-
+ Sie sind nicht berechtigt die Konfiguration in Sektion '%1' zu aktualisieren
-
+ Fehler beim Setzen der Konfigurationsoption %1 in Sektion %2: %3
-
-
-
-
-
+
+
+
+
+ Diese Nachricht nicht mehr anzeigen.
-
-
-
+
+
+ Sandboxie-Plus - Fehler
@@ -3974,25 +3972,25 @@ Bitte überprüfen Sie, ob es ein Update für Sandboxie gibt.
Aufräumen
-
+ Datenordner: %1
-
+ Das Programm %1 gestartet in Box %2 wird in 5 Minuten beendet, weil diese Box so konfiguriert ist Funktionen zu verwenden die exklusiv für Projektunterstützer sind.
-
+ Die Box %1 ist so konfiguriert, dass sie exklusive Funktionen nutzt, die nur für Projektunterstützer verfügbar sind, diese Vorgaben werden ignoriert.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Werden Sie ein Projektunterstützer</a>, und erhalten Sie ein <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Unterstützerzertifikat</a>
@@ -4002,154 +4000,154 @@ Bitte überprüfen Sie, ob es ein Update für Sandboxie gibt.
Stelle Datei %1 zu %2 wieder her
-
+ Nur Administratoren können die Konfiguration editieren.
-
+ Bitte Konfigurationspasswort eingeben.
-
+ Login fehlgeschlagen: %1
-
+ Bitte geben Sie die Dauer, in Sekunden, ein, zum Pausieren der erzwungenen Programmregeln.
-
+ Keine Wiederherstellung
-
+ Keine Nachrichten
-
+ <b>ERROR:</b> Der Sandboxie-Plus Manager (SandMan.exe) verfügt nicht über eine gültige Signatur (SandMan.exe.sig). Bitte laden Sie eine vertrauenswürdige Version von der <a href="https://sandboxie-plus.com/go.php?to=sbie-get">offiziellen Downloadseite</a>.
-
+ Wartungsvorgang fehlgeschlagen (%1)
-
+ Wartungsvorgang abgeschlossen
-
+ Führe Wartungsvorgang aus, bitte warten...
-
+ Im Plus-UI wurde diese Funktionalität in die Hauptlistenansicht der Sandboxen integriert.
-
+ Mit dem Box-/Gruppenkontextmenü können Sie Boxen und Gruppen zu anderen Gruppen bewegen. Sie können die Elemente auch per Ziehen und Loslassen bewegen. Alternativ können Sie die Pfeiltasten nutzen, während Sie ALT gedrückt halten, um die Elemente innerhalb ihrer Gruppe rauf und runter zu bewegen.<br />Sie können neue Boxen und Gruppen aus dem Sandboxmenü erstellen.
-
+ Sie sind im Begriff die Templates.ini zu bearbeiten, was grundsätzlich nicht empfohlen wird.
Diese Datei ist Teil von Sandboxie und alle vorgenommenen Änderungen an der Datei werden zurückgesetzt, wenn Sandboxie aktualisiert wird.
-
+ Sandboxiekonfiguration wurde neu geladen
-
+ Für diesen Vorgang werden Adminrechte benötigt.
-
+ Fehler beim Verbinden mit dem Treiber
-
+ Eine inkompatible Version von Sandboxie %1 wurde gefunden. Kompatible Versionen: %2
-
+ Kann Installationspfad von Sandboxie nicht finden.
-
+ Alle Sandboxprozesse müssen beendet sein, bevor der Boxinhalt gelöscht werden kann
-
+ Fehlschlag beim Kopieren der Boxdateien
-
+ Es kann kein Schnappschuss gelöscht werden der von mehreren späteren Schnappschüssen geteilt wird
-
+ Fehlschlag beim Entfernen der alten Boxdateien
-
+ Der Vorgang wurde durch den Nutzer abgebrochen
-
+ Import/Export nicht verfügbar, 7z.dll konnte nicht geladen werden
-
+ Konnte Boxarchiv nicht erzeugen
-
+ Konnte das 7z-Archiv nicht öffnen
-
+ Konnte das Boxarchiv nicht entpacken
-
+ Die ausgewählte 7z-Datei ist KEIN Boxarchiv
-
+ Vorgang für %1 Element(e) fehlgeschlagen.
-
+ Die Auswahl für später merken.
@@ -5070,17 +5068,17 @@ This file is part of Sandboxie and all change done to it will be reverted next t
CSelectBoxWindow
-
+ Sandboxie-Plus - In Sandbox starten
-
+ Sind Sie sich sicher, dass Sie dieses Programm außerhalb der Sandbox starten möchten?
-
+ Bitte wählen Sie eine Sandbox.
@@ -5171,193 +5169,193 @@ This file is part of Sandboxie and all change done to it will be reverted next t
%1
-
+ Füge %1 Vorlage hinzu
-
+ Bitte Nachricht eingeben
-
-
-
+
+
+ Starte &Sandgeboxt
-
+ Kilobytes (%1)
-
+ Datenträger nicht eingesteckt
-
+ Dieses Unterstützerzertifikat ist abgelaufen, bitte <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">holen Sie sich ein erneuertes Zertifikat</a>.
-
+ Dieses Unterstützerzertifikat wird <font color='red'>in %1 Tagen ablaufen</font>, bitte <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">holen Sie sich ein erneuertes Zertifikat</a>.
-
+ Dies sieht nicht nach einer Sandboxie-Plus Seriennummer aus.<br />Wenn Sie versucht haben, den Update-Schlüssel oder die Signatur von einem Zertifikat einzugeben, ist das nicht korrekt. Bitte geben Sie stattdessen das gesamte Zertifikat in das Textfeld oben ein.
-
+ Sie versuchen einen Funktions-Upgrade-Schlüssel zu verwenden, ohne ein bereits vorhandenes Unterstützerzertifikat eingegeben zu haben. Bitte beachten Sie, dass Sie für diese Art von Schlüssel (<b>wie auf der Website deutlich in Fettschrift angegeben</b>) ein bereits vorhandenes gültiges Unterstützerzertifikat benötigen, da er ohne ein solches nutzlos ist.<br />Wenn Sie die erweiterten Funktionen nutzen möchten, müssen Sie beides erwerben, ein Standardzertifikat und den Funktions-Upgrade-Schlüssel, um die erweiterte Funktionalität freizuschalten.
-
+ Sie versuchen einen Erneuerungsschlüssel zu verwenden, ohne ein bereits vorhandenes Unterstützerzertifikat eingegeben zu haben. Bitte beachten Sie, dass Sie für diese Art von Schlüssel (<b>wie auf der Website deutlich in Fettschrift angegeben</b>) ein bereits vorhandenes gültiges Unterstützerzertifikat benötigen, da er ohne ein solches nutzlos ist.
-
+ <br /><br /><u>Wenn Sie die Produktbeschreibung nicht gelesen haben und diesen Schlüssel versehentlich erworben haben, kontaktieren Sie uns bitte per E-Mail (auf unserer Website angegeben), um dieses Problem zu lösen.</u>
-
+ Fehler beim Abrufen des Zertifikats: %1
-
+ Unbekannter Fehler (wahrscheinlich ein Netzwerkproblem)
-
+ Certificate type: a translation could lead to confusion.Contributor
-
+ Certificate type: a translation could lead to confusion.Eternal
-
+ Certificate type: a translation could lead to confusion.Business
-
+ Certificate type: a translation could lead to confusion.Personal
-
+ Certificate type: a translation could lead to confusion.Great Patreon
-
+ Certificate type: a translation could lead to confusion.Patreon
-
+ Certificate type: a translation could lead to confusion.Family
-
+ Certificate type: a translation could lead to confusion.Evaluation
-
+ Typ %1
-
+ Erweitert
-
+ Maximale Stufe
-
+ Stufe %1
-
+ Unterstützerzertifikat notwendig für Zugriff
-
+ Unterstützerzertifikat notwendig zur Automatisierung
-
+ Dieses Zertifikat ist leider nicht für die aktuelle Version gültig. Sie müssen ein neues Zertifikat erwerben oder auf eine frühere Version zurückgehen.
-
+ Obwohl dieses Zertifikat abgelaufen ist, bleiben die Plus-Funktionen der aktuell installierten Version aktiviert. Sie haben jedoch keinen Zugang mehr zu den Sandboxie-Live-Diensten, einschließlich Kompatibilitäts-Updates und der Onlineproblemlösungsdatenbank.
-
+ Dieses Zertifikat ist leider abgelaufen, Sie müssen ein neues Zertifikat erwerben.
-
+ Sandgeboxter Internetbrowser
-
+ <br /><font color='red'>Plus-Funktionen werden in %1 Tagen deaktiviert.</font>
-
+ <br />Plus-Funktionen sind nicht länger aktiviert.
-
+ Starte &Nicht-Sandgeboxt
-
+ Dies scheint kein Zertifikat zu sein. Bitte geben Sie das ganze Zertifikat ein, nicht nur einen Teil davon.
-
+ Nach Einstellungen suchen
@@ -5420,150 +5418,150 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Herunterladen & Installieren
-
+ Zu Programm navigieren
-
+ Schriftart auswählen
-
+ Schriftart zurücksetzen
-
+ %0, %1 pt
-
+ Programm auswählen
-
+ Ausführbare Dateien (*.exe *.cmd)
-
-
+
+ Bitte einen Menütitel eingeben
-
+ Bitte ein Kommando eingeben
-
+ <br /><font color='red'>In der aktuellen Version bleiben die Plus-Funktionen aktiviert</font>, aber Sie haben keinen Zugang mehr zu den Sandboxie-Live-Diensten, einschließlich Kompatibilitäts-Updates und der Onlineproblemlösungsdatenbank.
-
+ Rufe Zertifikat ab...
-
+ Certificate type: a translation could lead to confusion.Home
-
+ Danke Ihnen für die Unterstützung der Entwicklung von Sandboxie-Plus.
-
+ Update verfügbar
-
+ Installiert
-
+ von %1
-
+ (Informationswebseite)
-
+ Diese Erweiterung ist notwendig und kann nicht entfernt werden.
-
+ <a href="check">Jetzt prüfen</a>
-
+ Bitte ein Passwort für die neue Konfiguration eingeben.
-
+ Bitte das neue Konfigurationspasswort wiederholen.
-
+ Passwörter stimmten nicht überein, bitte erneut versuchen.
-
+ Prozess
-
+ Ordner
-
+ Bitte den Dateinamen eines Programms eingeben
-
+ Bitte Vorlagen-Identifikation eingeben
-
+ Fehler: %1
-
+ Möchten Sie wirklich die ausgewählte(n) lokalen Vorlage(n) löschen?
-
+ %1 (Aktuell)
-
-
+
+ Ordner auswählen
@@ -5683,101 +5681,101 @@ This file is part of Sandboxie and all change done to it will be reverted next t
CSubmitPage
-
+ Problembericht übermitteln
-
+ Detaillierte Problembeschreibung
-
+ Sandboxie.ini anhängen
-
+ Die Kompatibilität von Sandboxen ist abhängig von der Konfiguration, daher ist das Anhängen der Sandboxie.ini Datei sehr hilfreich beim Finden der Problemursache.
-
+ Protokolle anhängen
-
+ Wählen Sie den teilweise angehakten Zustand, um nur das Nachrichtenprotokoll, aber kein Rückverfolgungsprotokoll zu senden.
Vor dem Absenden können Sie die Protokolle im Hauptfenster überprüfen.
-
+ Crashdumps anhängen
-
+ Eine Applikation ist während der Problembehebungsprozedur abgestürzt. Das Anhängen eines Crashdumps kann bei der Fehlersuche hilfreich sein.
-
+ Emailadresse
-
+ Sie haben die Möglichkeit eine Emailadresse anzugeben, um Informationen zu erhalten, sobald eine Lösung für Ihr Problem gefunden werden konnte.
-
+ Wie bitten für die Unannehmlichkeiten, die Sie gerade mit Sandboxie-Plus haben, um Entschuldigung.
-
+ Unglücklicherweise schlug die automatische Problembehebungsprozedur fehl.
-
+ Bedauerlicherweise gibt es keine automatisierte Problembehebungsprozedur für das von Ihnen beschriebene Problem.
-
+ Wenn Sie ein Problembericht übermitteln möchten, prüfen Sie den Bericht und klicken Sie auf "Abschließen".
-
+ Komprimiere Protokolle
-
+ Komprimiere Dumps
-
+ Übermittele Problembericht...
-
+ Konnte Problembericht nicht übermitteln, Fehler %1
Versuchen Sie die Übermittlung ohne die angehängten Protokolle.
-
+ Ihr Problembericht wurde erfolgreich übermittelt, vielen Dank.
@@ -6357,79 +6355,79 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
-
-
-
-
+
+
+
+
+ Schütze das System vor Prozessen in der Sandbox
-
+ Blockiere Netzwerkdateien und Ordner, außer diese wurden explizit geöffnet.
-
+ Die Rechte der Administratoren und Hauptbenutzergruppe einschränken
-
+ Startmenü
-
+ Sie können eigene Einträge in dem Startmenü der Sandbox einrichten.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Name
-
+ Kommandozeile
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Entfernen
@@ -6475,22 +6473,22 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Box Löschoptionen
-
+ Erhöhungsbeschränkungen
-
+ Lässt Programme denken, sie würden mit erhöhten Rechten laufen (Erlaubt das sichere Ausführen von Installern)
-
+ Netzwerkbeschränkungen
-
+ (Empfohlen)
@@ -6510,88 +6508,88 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Frage Benutzer bei Migration von großen Dateien
-
+ Programmgruppen
-
+ Gruppe hinzufügen
-
-
-
-
-
+
+
+
+
+ Programm hinzufügen
-
+ Erzwungene Ordner
-
-
-
+
+
+ Pfad
-
+ Erzwungenes Programm
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Zeige Vorlagen
-
+ Programme die hier gelistet sind oder von den angegebenen Ordnern gestartet werden, werden automatisch in dieser Sandbox ausgeführt, solange sie nicht explizit in einer anderen Sandbox gestartet werden.
-
-
+
+ Stoppverhalten
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Typ
-
+ Zugriff auf die Druckerwarteschlange blockieren
@@ -6606,17 +6604,17 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Zeige diese Box im 'In Sandbox starten' Auswahlmenü
-
+ Sicherheitsnotiz: Programme mit erhöhten Rechten, welche unter der Aufsicht von Sandboxie laufen, und ein Admintoken haben, haben mehr Möglichkeiten die Isolation zu umgehen und das System außerhalb der Sandbox zu verändern.
-
+ Erlaube MSIServer mit einem sandgeboxten Systemtoken zu starten und andere Ausnahmen zu gewähren, wenn benötigt
-
+ Notiz: MSI-Installer-Ausnahmen sollten nicht benötigt werden, aber wenn Sie auf Probleme bei der Installation eines MSI-Paketes haben, welchem Sie vertrauen, kann diese Option hilfreich sein die Installation erfolgreich abzuschließen. Sie können auch versuchen die Rechteabgabe zu deaktivieren.
@@ -6641,17 +6639,17 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
<b>Weitere Boxtypen</b> sind exklusiv verfügbar für <u>Projektunterstützer</u>, die verbesserten Privatsphäreboxen <b><font color='red'>schützen Nutzerdaten vor unbefugtem Zugriff</font></b> durch sandgeboxte Programme.<br />Falls Sie noch kein Unterstützer sind, erwägen Sie bitte <a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">das Projekt zu unterstützen</a>, um ein <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Unterstützerzertifikat</a> zu erhalten.<br />Sie können die anderen Boxtypen testen, indem Sie Boxen mit diesen Typen erstellen, jedoch werden die Prozesse in diesen Boxen nach 5 Minuten beendet.
-
+ Öffne Windows Anmeldeinformationsverwaltung (Nutzermodus)
-
+ Entferne Druckerwarteschlangenrestriktionen, Drucker können außerhalb der Sandbox installiert werden
-
+ Andere Beschränkungen
@@ -6661,276 +6659,276 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Druckerbeschränkungen
-
+ Verhindere Änderungen an Netzwerk und Firewall-Parametern (Nutzermodus)
-
+ Füge Programm hinzu
-
+ Sie können Programme gruppieren und ihnen einen Gruppennamen geben. Programmgruppen können in einigen Einstellungen an Stelle der Programmnamen genutzt werden. Gruppen, welche für eine Box definiert werden, übergehen Gruppen die in Vorlagen definiert wurden.
-
+ Starteinschränkungen
-
+ Gebe Nachricht 1308 aus, wenn ein Programmstart fehlschlägt
-
+ Erlaube nur ausgewählten Prozessen in dieser Sandbox zu starten. *
-
+ Verhindere die Ausführung von ausgewählten Programmen in dieser Sandbox.
-
+ Erlaube allen Programmen in dieser Sandbox zu starten.
-
+ * Notiz: Programme, welche in dieser Sandbox installiert werden, werden nicht in der Lage sein zu starten.
-
+ Prozessbeschränkungen
-
+ Gebe Nachricht 1307 aus, wenn einem Programm der Internetzugriff verweigert wurde
-
+ Hinweis: Programme, welche in dieser Sandbox installiert werden, werden nicht in der Lage sein auf das Internet zuzugreifen.
-
+ Den Nutzer fragen, ob er eine Ausnahme von dieser Blockade erlauben will.
-
+ Ressourcenzugriff
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Programm
-
-
-
-
-
-
+
+
+
+
+
+ Zugriff
-
+ Füge Registry-Schlüssel hinzu
-
+ Füge Datei/Ordner hinzu
-
+ Füge Fensterklasse hinzu
-
+ Füge COM-Objekt hinzu
-
+ Füge IPC-Pfad hinzu
-
+ Dateiwiederherstellung
-
+ Füge Ordner hinzu
-
+ Ignoriere Erweiterungen
-
+ Ignoriere Ordner
-
+ Aktivere Sofortwiederherstellungsabfrage, um alle Dateien sofort wiederherzustellen, sobald sie erzeugt werden.
-
+ Sie können Ordner und Dateitypen (oder Dateierweiterungen) von der Sofortwiederherstellung ausnehmen.
-
+ Wenn die Schnellwiederherstellungsfunktion aufgerufen wird, werden die folgenden Ordner in der Sandbox auf Inhalte geprüft.
-
+ Sofortwiederherstellung
-
+ Erweiterte Optionen
-
+ Diverses
-
+ Sandgeboxte Dienste nicht mit einem Systemtoken starten (empfohlen)
-
+ Blockiere Lesezugriff auf die Zwischenablage
-
+ Erzwinge die Verwendung von eigenen dummy Manifestdateien (veraltetes Verhalten)
-
+ Füge sandgeboxte Prozesse zu Job-Objekten hinzu (empfohlen)
-
+ Beschränke Zugriff auf emulierte Dienstkontrollmanager ausschließlich auf privilegierte Prozesse
-
+ Öffne systemgeschützten Speicherort
-
+ Fensterklassen von sandgeboxten Programmen nicht ändern
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Die Sandboxintegrität selbst schützen
-
-
+
+ Kompatibilität
-
+ ACHTUNG: Bei Ausführung unter dem eingebauten Administrator, können Prozesse ihre administrativen Rechten nicht abgeben.
-
+ Emuliere sandgeboxte 'Window Stations' für alle Prozesse
-
+ Öffne Zugriff auf Windows Security Account Manager
-
+ Verstecke Prozesse
-
+ Prozess hinzufügen
-
+ Verstecke Host-Prozesse vor Prozessen in der Sandbox.
-
+ Nicht erlauben, dass sandgeboxte Prozesse die Prozesse in anderen Boxen sehen können
-
+ Benutzer
-
+ Beschränke den Ressourcenzugriffsmonitor auf Administratoren
-
+ Benutzer hinzufügen
-
+
@@ -6939,22 +6937,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Notiz: Erzwungene Programme und Ordner für eine Sandbox finden keine Anwendung auf Konten, die diese Sandbox nicht nutzen können.
-
+ Rückverfolgung
-
+ Protokolliere alle SetError ins Rückverfolgungsprotokoll (Erzeugt große Ausgabemenge)
-
+ Pipe-Rückverfolgung
-
+
-
+ Zugriffsrückverfolgung
-
+ GUI-Rückverfolgung
-
+ Beim Box Beenden
-
+ API-Aufrufrückverfolgung (verfolgt alle SBIE-Hooks)
-
+ Schlüsselrückverfolgung
-
+ Dateirückverfolgung
-
+ IPC-Rückverfolgung
-
+ Protokolliere Debug-Ausgabe in das Rückverfolgungsprotokoll
-
+ COM-Klassenrückverfolgung
-
+ Debug
-
+ WARNUNG, diese Optionen können Kernsicherheitsgarantien deaktivieren und die Sandboxsicherheit zerstören!!!
-
+ Diese Optionen sind nur zur Fehlersuche bei Kompatibilitätsproblemen gedacht, bitte nicht im produktiven Einsatz verwenden.
-
+ Programmvorlagen
-
+ Filterkategorien
-
+ Textfilter
-
+ Füge Vorlage hinzu
-
+ Kategorie
-
+ Diese Liste enthält eine große Menge an Vorlagen, welche die Kompatibilität der Sandbox verbessern
-
+ Setze Netzwerk-/Internetzugriff für nicht aufgeführte Prozesse:
-
+ Testregeln, Programm:
-
+ Port:
-
+ IP:
-
+ Protokoll:
-
+ X
@@ -7108,136 +7106,134 @@ an Stelle von "*".
Boxstruktur
-
+ Nach oben verschieben
-
+ Nach unten verschieben
-
+ Sicherheitsoptionen
-
+ Sicherheitsverbesserung
-
+ Sicherheitsisolation
-
+ Verschiedene Isolationsfunktionen können die Kompatibilität mit einigen Programmen stören. Wenn Sie diese Sandbox <b>NICHT für Sicherheit</b>, sondern für einfache Übertragbarkeit von Programmen verwenden, können Sie mit Hilfe dieser Optionen Kompatibilität wiederherstellen, indem Sie etwas Sicherheit opfern.
-
+ Zugriffsisolation
-
+ Abbildschutz
-
+ Gebe Nachricht 1305 aus, wenn ein Programm versucht eine sandgeboxte DLL zu laden
-
+ Hindere sandgeboxte Programme, die auf dem Hostsystem installiert sind, daran, DLLs aus der Sandbox zu laden
-
+ DLLs && Erweiterungen
-
+ Beschreibung
-
+ Sandboxies Ressourcenzugriffsregeln benachteiligen häufiger Programme in der Sandbox. OpenFilePath und OpenKeyPath funktionieren nur für Programme, die sich auf dem Host befinden. Um eine Regel ohne diese Beschränkungen zu definieren, müssen OpenPipePath oder OpenConfPath verwendet werden. Ebenso werden alle Closed(File|Key|Ipc)Path Anweisungen, welche durch eine Negation definiert werden, z.B. ‘ClosedFilePath=! iexplore.exe,C:Users*’, immer für Programmdateien (Binaries), die sich innerhalb einer Sandbox befinden, geschlossen sein. Beide Beschränkungen lassen sich auf der “Zugriffsrichtlinien”-Seite ausschalten.
Dies wird gemacht um bösartige Prozesse in einer Sandbox daran zu hindern, eine umbenannte Kopie von sich selbst zu erstellen, um so auf geschützte Ressourcen zuzugreifen. Ein anderes Einfallstor ist die Injektion einer Programmbibliothek in einen befugten Prozess um Zugang zu allem zu erhalten, auf das dieser Prozess Zugriff hat. Mit der Verwendung des Abbildschutzes (Host Image Protection), kann dies verhindert werden, durch die Blockierung des Ladens von Programmbibliotheken innerhalb der Sandbox in Programme (installiert auf dem Hostrechner) die in einer Sandbox laufen.
-
+ Die Funktionalität von Sandboxie kann durch die Verwendung optionaler DLLs erweitert werden, die beim Start in jeden sandgeboxten Prozess durch die Datei SbieDll.dll geladen werden können. Der Erweiterungsmanager in den globalen Einstellungen bietet ein paar nützliche Erweiterungen, die, nachdem diese installiert wurden, hier für die aktuelle Box aktiviert werden können.
-
+ Erweiterte Sicherheit
-
+ Andere Isolation
-
+ Privilegien Isolation
-
+ Sandboxie Token
-
+ Die Verwendung eines eigenen Sandboxie Tokens erlaubt die bessere Isolation individueller Sandboxen zu einander und es zeigt in der Nutzerspalte des Taskmanagers den Namen der Box an zu der ein Prozess gehört. Einige Drittanbietersoftwarelösungen könnten jedoch Probleme mit den eigenen Token haben.
-
+ Erzwungene Programme
-
+ Deaktiviere erzwungene Prozesse und Ordner für diese Sandbox
-
+ Breakout Programme
-
+ Breakout Programm
-
+ Breakout Ordner
-
- Hindere sandgeboxte Prozesse daran, mittels allgemein bekannter Methoden, Screenshots zu erstellen
+ Hindere sandgeboxte Prozesse daran, mittels allgemein bekannter Methoden, Screenshots zu erstellen
-
- Hindere sandgeboxte Prozesse daran, Energievorgänge von Windows zu beeinträchtigen
+ Hindere sandgeboxte Prozesse daran, Energievorgänge von Windows zu beeinträchtigen
@@ -7245,259 +7241,258 @@ Dies wird gemacht um bösartige Prozesse in einer Sandbox daran zu hindern, eine
Erzwinge Schutz beim Einhängen
-
- Verhindere die Beeinträchtigung von Bedienvorgängen des Benutzers (Maus bewegen, nach vorne holen, usw...)
+ Verhindere die Beeinträchtigung von Bedienvorgängen des Benutzers (Maus bewegen, nach vorne holen, usw...)
-
+ Hindere Prozesse daran, Screenshots von sandgeboxten Fenstern zu erstellen
-
+ Erlaube nützlichen Windows-Prozessen Zugriff auf geschützte Prozesse
-
+ Programme die hier eingegeben werden, wird erlaubt aus dieser Box auszubrechen, wenn diese starten, sodass Sie diese in einer anderen Box einfangen können. Zum Beispiel um Ihren Browser immer in einer dafür gewidmeten Box zu öffnen.
-
+ Verweilende Programme
-
+ Verweilende Programme werden automatisch beendet, wenn diese noch laufen, nachdem alle anderen Prozesse bereits beendet wurden.
-
+ Primäre Programme
-
+ Falls primäre Programme/Prozesse definiert wurden, werden alle anderen als verweilende Prozesse behandelt.
-
+ Stoppoptionen
-
+ Verwende nachsichtiges Verweilen
-
+ Verweilende Programme mit Fenstern nicht beenden
-
+ Dateien
-
+ Konfiguriere welche Prozesse auf Dateien, Ordner und Pipes zugreifen können.
'Offener' Zugriff findet nur auf die Programme Anwendung die sich außerhalb der Sandbox befinden, Sie können stattdessen 'Offen für Alle' verwenden damit es Anwendung auf alle Programme findet oder Sie ändern dieses Verhalten im Richtlinienreiter.
-
+ Registry
-
+ Konfiguriere welche Prozesse auf die Registry zugreifen können.
'Offener' Zugriff findet nur auf die Programme Anwendung die sich außerhalb der Sandbox befinden, Sie können stattdessen 'Offen für Alle' verwenden damit es Anwendung auf alle Programme findet oder Sie ändern dieses Verhalten im Richtlinienreiter.
-
+ IPC
-
+ Konfiguriere welche Prozesse Zugriff auf NT IPC Objekte haben, wie ALPC-Ports und anderen Prozessspeicher und Kontext.
Um einen Prozess anzugeben verwenden Sie '$:program.exe' als Pfad.
-
+ Fenster
-
+ Fensterklasse
-
+ COM
-
+ Klassen-ID
-
+ Konfiguriere welche Prozesse Zugriff auf COMobjekte haben.
-
+ Nicht den virtualisierten COM verwenden, offener Zugriff auf die COMinfrastruktur des Hostsystems (nicht empfohlen)
-
+ Zugriffsrichtlinien
-
+ Wende 'Close...=!<program>,...' Regeln auch auf alle ausführbaren Binärcodes (Programme) innerhalb der Sandbox an.
-
+ Netzwerkoptionen
-
+ Regel hinzufügen
-
-
-
+
+
+ Aktion
-
+ Port
-
+ IP
-
+ Protokoll
-
+ ACHTUNG: Die Windows Filtering Platform wird nicht durch den Treiber ermöglicht, deshalb können diese Regeln nur im Nutzerkontext angewendet und nicht erzwungen werden!!! Dies bedeutet, dass ein bösartiges Programm diese umgehen könnte.
-
+ Schnellwiederherstellung
-
+ Verschiedene Optionen
-
+ Erlaube Verwendung von verschachtelten Jobobjekten (funktioniert ab Windows 8 und neuer)
-
+ Erlaube sandgeboxten Programmen Hardware/Geräte zu verwalten
-
+ Öffne Zugriff auf Windows Local Security Authority
-
+ Programmkontrolle
-
+ Die Regelgenauigkeit ist ein Maß wie genau eine gegebene Regel mit einem gewissen Pfad übereinstimmt; einfach gesagt ist die Genauigkeit die Länge der Zeichen vom Beginn des Pfades bis zu und inklusive des letzten übereinstimmenden Nicht-Wildcard-Zeichenkettenteils. Eine Regel, welche nur mit Dateitypen, wie "*.tmp" übereinstimmt, hätte die höchste Genauigkeit, da sie immer mit dem ganzen Pfad übereinstimmt.
Der Prozessübereinstimmungslevel hat eine höhere Priorität als die Genauigkeit und beschreibt wie eine Regel für einen gewissen Prozess anzuwenden ist. Regeln welche für Prozessnamen oder Gruppen gelten haben den höchsten Übereinstimmungslevel, gefolgt von der Übereinstimmung durchr Negation (z.B. Regeln werden auf alle Prozesse angewandt, außer auf bestimmte), während globale Übereinstimmungen den geringste Übereinstimmungslevel (z.B. Regel die auf jeden Prozess zutreffen) haben.
-
+ Priorisiere Regeln basierend ihrer Genauigkeit und Prozessübereinstimmungslevel
-
+ Privatsphärenmodus, blockiere Datei und Registryzugriff zu allen Orten außer den generischen des Systems
-
+ Zugriffsmodus
-
+ Wenn der Privatsphärenmodus angeschaltet ist, können sandgeboxte Prozesse nur C:\Windows\*, C:\Programme\*, und Teile der HKLM-Registry lesen, alle anderen Speicherorte benötigen die explizite Freigabe zum Lesen und/oder Schreiben. In diesem Modus ist die Regelgenauigkeit immer eingeschaltet.
-
+ Regel-Richtlinien
-
+ Wende Datei- und Schlüsselöffnungsanweisungen nur auf ausführbaren Binärcode außerhalb der Sandbox an.
-
+ Starte die sandgeboxten RpcSs als SYSTEM-Prozess (nicht empfohlen)
-
+ Verwerfe kritische Privilegien von Prozessen die mit einem SYSTEM-Token laufen
-
-
+
+ (Sicherheitskritisch)
-
+ Schütze sandgeboxte SYSTEM-Prozesse vor unprivilegierten Prozessen
@@ -7507,142 +7502,142 @@ Der Prozessübereinstimmungslevel hat eine höhere Priorität als die Genauigkei
Diese Sandbox immer in der Trayliste anzeigen (Angeheftet)
-
+ Sicherheitsverbesserungen
-
+ Nutze den originalen Token nur für genehmigte NT Systemaufrufe
-
+ Beschränke Treiber/Gerätezugriff nur auf genehmigte
-
+ Aktiviere alle Sicherheitsverbesserungen (mache eine sicherheitsgehärtete Box)
-
+ Erlaube das Lesen von nicht sandgeboxten Prozessen (nicht empfohlen)
-
+ Gebe Nachricht 2111 aus, falls ein Prozesszugriff abgelehnt wird
-
+ Deaktiviere standardmäßig die Benutzung von RpcMgmtSetComTimeout (Dies könnte Kompatibilitätsprobleme lösen)
-
+ Sicherheitsisolation durch die Verwendung von stark eingeschränkten Prozess-Token ist Sandboxie's hauptsächliches Mittel um Sandboxrestriktionen zu erzwingen; Falls dies deaktiviert ist wird die Box im Applikationsunterteilungs-Modus betrieben, bietet somit nicht länger verlässliche Sicherheit, sondern nur einfache Applikationsunterteilung.
-
+ Sicherheitsisolation & Filter
-
+ Deaktiviere Sicherheitsfilter (nicht empfohlen)
-
+ Sicherheitsfilter werden von Sandboxie verwendet um Dateisystem- und Registryzugriffsrestriktionen zu erzwingen und auch um Prozesszugriff zu beschränken.
-
+ Die unterstehenden Optionen können sicher genutzt werden, wenn Sie keine Adminrechte gewähren.
-
+ Auslöser
-
+ Vorgang
-
-
-
-
+
+
+
+ Kommando ausführen
-
+ Dienst starten
-
+ Diese Vorgänge werden jedes Mal ausgeführt, wenn eine Box gestartet wird
-
+ Beim Boxstart
-
-
+
+ Diese Kommandos werden NICHT-sandgeboxt ausgeführt, direkt bevor der Boxinhalt gelöscht wird
-
+ Diese Kommandos werden nur ausgeführt wenn eine Box initialisiert wird. Um diese erneut auszuführen, muss der Boxinhalt gelöscht werden.
-
+ Bei Boxinitialisierung
-
+ Hier können Sie Aktionen angeben, die automatisch bei bestimmten Boxvorgängen ausgeführt werden.
-
+ Deaktiviere Ressourcenzugriffsmonitor
-
+ Ressourcenzugriffsmonitor
-
-
+
+ Netzwerk-Firewall
-
+ Vorlagenordner
-
+
@@ -7651,23 +7646,23 @@ Please note that this values are currently user specific and saved globally for
Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global für alle Boxen gespeichert werden.
-
-
+
+ Wert
-
+ Barrierefreiheit
-
+ Zur Kompensation des verlorenen Schutzes, suchen Sie die Einstellungsseite der Rechteabgabe in der Gruppe der Beschränkungen auf.
-
+ Screenreader, JAWS, NVDA, Window-Eyes, Systemzugriff
@@ -7771,184 +7766,214 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Restriktionen
-
+ Deaktiviere Sicherheitsisolation
-
-
+
+ Boxschutz
-
+ Schütze Prozesse innerhalb dieser Box vor Hostprozessen
-
+ Prozess erlauben
-
+ Gebe Nachricht 1318/1317 aus, wenn ein Hostprozess versucht auf einen sandgeboxten Prozess oder die Boxquelle zuzugreifen
-
+ Sandboxie-Plus ist in der Lage vertrauliche Sandboxen zu erzeugen, die einen robusten Schutz gegen unautorisierte Überwachung oder Manipulation durch Hostprozesse bieten. Durch die Verwendung eines verschlüsselten Sandboxabbildes liefert diese Funktion das höchste Level von operativer Vertraulichkeit, stellt die Sicherheit und Integrität von sandgeboxten Prozessen sicher.
-
+ Prozess ablehnen
-
+ Verwende einen Sandboxie-Login anstelle eines anonymen Token
-
+ <b><font color='red'>SICHERHEITSWARNUNG</font>:</b> Die Verwendung von <a href="sbie://docs/breakoutfolder">BreakoutFolder</a> und/oder <a href="sbie://docs/breakoutprocess">BreakoutProcess</a> in Kombination mit Open[File/Pipe]Path-Regeln kann die Sicherheit kompromittieren, genau so wie die Verwendung von <a href="sbie://docs/breakoutdocument">BreakoutDocument</a> durch das Erlauben aller * oder unsicherer (*.exe;*.dll;*.ocx;*.cmd;*.bat;*.lnk;*.pif;*.url;*.ps1;etc…) Dateiendungen. Bitte sehen Sie sich den Sicherheitsabschnitt für jede Option in der Dokumentation an, bevor Sie diese verwenden.
-
+ Konfiguriere welche Prozesse Zugriff auf Desktopobjekte wie Fenster und dergleichen haben.
-
+ Wende die ElevateCreateProcess-Problemumgehung an (veraltetes Verhalten)
-
+ Wende den Workaround für Desktopobjekt auf alle Prozesse an
-
+ Wenn der globale Hotkey 3x kurz hintereinander gedrückt wird, wird diese Ausnahme ignoriert.
-
+ Schließe diese Sandbox davon aus, dass sie beendet wird, wenn "Alle Prozesse beenden" aufgerufen wird.
-
+ Dieses Kommando wird ausgeführt bevor der Boxinhalt gelöscht wird
-
+ Bei Dateiwiederherstellung
-
+ Dieses Kommando wird ausgeführt bevor eine Datei wiederhergestellt wird und der Dateipfad wird als erstes Argument weitergegeben und falls dieses Kommando etwas anderes als den Wert 0 zurückgibt, wird die Wiederherstellung blockiert
-
+ Starte Dateiprüfer
-
+ Beim Löschen von Inhalten
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Schütze Prozesse in dieser Box vor Zugriff durch angegebene nicht sandgeboxte Prozesse des Hostsystems.
-
-
+
+ Prozess
-
+ Andere Optionen
-
+ Portblockade
-
+ Blockiere übliche SAMBA-Ports
-
+ Blockiere DNS, UPD Port 53
-
+ Füge Option hinzu
-
+ Hier können Sie pro Prozess Optionen konfigurieren, um die Kompatibilität zu verbessern und/oder das Sandboxverhalten zu personalisieren.
-
+ Option
-
+ Diese Befehle werden AUẞERHALB der Sandbox ausgeführt, nachdem alle Prozesse in der Sandbox beendet wurden.
-
+ Systemaufrufrückverfolgung (erzeugt große Ausgabemenge)
-
+ Vorlagen
-
+
+
+
+
+
+ Die folgenden Einstellungen ermöglichen die Verwendung von Sandboxie in Verbindung mit Barrierefreiheitssoftware. Bitte beachten Sie, dass ein gewisser Umfang des Schutzes von Sandboxie notwendigerweise verloren geht, wenn diese Einstellungen aktiv sind.
-
+ INI Sektion bearbeiten
-
+ INI bearbeiten
-
+ Abbrechen
-
+ Speichern
@@ -7980,27 +8005,27 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
QPlatformTheme
-
+ OK
-
+ Anwenden
-
+ Abbrechen
-
+ &Ja
-
+ &Nein
@@ -8154,62 +8179,67 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Füge 'Starte Sandgeboxt' zum Kontextmenü des Explorers hinzu
-
+ Nutze Windows Filtering Platform um den Netzwerkzugriff zu beschränken
-
+ In ausgewählte Win32k Systemaufrufe einklinken um (GPU-)Hardwarebeschleunigung zu ermöglichen (experimentell)
-
+ Standard Sandbox:
-
+ Programmbenachrichtigungen
-
+ Gebe Nachricht 1301 aus, wenn erzwungene Prozesse deaktiviert wurden
-
+
+
+
+
+
+ INI Sektion bearbeiten
-
+ Speichern
-
+ INI bearbeiten
-
+ Abbrechen
-
+ Zukünftig nicht über ablaufende Zertifikate informieren
-
+ Hier das Unterstützerzertifikat eingeben
-
+ Sandboxie.ini auf Änderungen überwachen
@@ -8219,17 +8249,17 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Öffne URLs aus dieser Benutzerschnittstelle in einer Sandbox
-
+ Nur Administratoren können Änderungen vornehmen
-
+ Erweiterte Konfiguration
-
+ Sandboxingfunktionen
@@ -8330,7 +8360,7 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Verwende große Icons in der Boxliste *
-
+ Hohe DPI-Skalierung
@@ -8345,12 +8375,12 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Nutze dunklen Modus
-
+ Schriftartenskalierung
-
+ (Erfordert Neustart)
@@ -8365,7 +8395,7 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Zeige das Dateiwiederherstellungsfenster immer im Vordergrund an
-
+ %
@@ -8380,62 +8410,62 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Nutze Fusion Thema
-
+ Aktiviere Kernelmodus-Objektfilterung
-
+ Sandboxie-Konfiguration
-
+ Konfigurationsschutz
-
+ Nur Administratoren können das Kommando zum Pausieren von erzwungenen Programmen verwenden
-
+ Passwort muss für Änderungen eingegeben werden
-
+ Passwort ändern
-
+ Inkrementelle Updates
-
+ Hotpatches für die installierte Version, Updates für die Templates.ini und Übersetzungen.
-
+ Der Vorschaukanal enthält die aktuellsten GitHub-Vorabveröffentlichungen.
-
+ Der Stabilkanal enthält die aktuellsten stabilen GitHub-Veröffentlichungen.
-
+ Suche im Stabilkanal
-
+ Suche im Vorschaukanal
@@ -8445,12 +8475,12 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Verwende das neue Konfigurationsdialogslayout *
-
+ Sandboxstandard
-
+ Sandbox <a href="sbie://docs/filerootpath">Dateisystemquelle</a>:
@@ -8541,8 +8571,8 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
-
-
+
+ Entfernen
@@ -8557,52 +8587,52 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Verstecke die Sandboxie-eigenen Prozesse in der Aufgabenliste
-
+ Ini Editor Schriftart
-
+ Schriftart auswählen
-
+ Schriftart zurücksetzen
-
+ #
-
+ Unterstützer des Sandboxie-Plus Projektes können ein <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Unterstüzerzertifikat</a> erhalten. Es ist wie ein Lizenzschlüssel, aber für großartige Menschen die Freie Software verwenden. :-)
-
+ Sandboxie auf dem neusten Stand mit den laufenden Veröffentlichungen von Windows und kompatibel mit allen Webbrowsern zu halten, ist eine niemals endende Aufgabe. Sie können die Entwicklung durch <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">direkte Beteiligung am Projekt unterstützen</a>, Ihre Unterstützung zeigen, <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">durch den Kauf eines Unterstützerzertifikates</a>, als Patron durch ein <a href="https://sandboxie-plus.com/go.php?to=patreon">Patreon-Abonnement</a>, oder durch eine <a href="https://sandboxie-plus.com/go.php?to=donate">PayPal Spende</a>.<br />Ihre Unterstützung spielt eine wichtige Rolle beim Fortschritt und der Instandhaltung von Sandboxie.
-
+ Lokale Vorlagen
-
+ Füge Vorlage hinzu
-
+ Textfilter
-
+ Diese Liste enthält eigene nutzererzeugte Vorlagen für Sandboxoptionen
@@ -8612,22 +8642,22 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Kommandozeile
-
+ Unterstützung && Updates
-
+ Sandbox <a href="sbie://docs/ipcrootpath">IPC-Quelle</a>:
-
+ Sandbox <a href="sbie://docs/keyrootpath">Registy-Quelle</a>:
-
+ Leere Passwort, wenn das Hauptfenster versteckt wird
@@ -8647,51 +8677,51 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Zeige das Dateiwiederherstellungsfenster vor dem Leeren der Sandboxen an
-
+ Portabler Quellordner
-
+ ...
-
-
-
-
+
+
+
+ Name
-
+ Pfad
-
+ Programm entfernen
-
+ Programm hinzufügen
-
+ Wenn eines der folgenden Programme außerhalb einer Sandbox gestartet wird, wird Sandboxie die Nachricht SBIE1301 ausgeben.
-
+ Ordner hinzufügen
-
+ Verhindere den Start der aufgeführten Programme auf diesem System
@@ -8706,87 +8736,87 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Deaktiviere SBIE Nachrichten Popups (sie werden weiterhin im Nachrichtenreiter erfasst)
-
+ Grafikoptionen
-
+ Ini-Optionen
-
+ Externer Ini-Editor
-
+ Erweiterungsmanager
-
+ Optionale Erweiterungen
-
+ Sandboxie-Plus bietet zahlreiche Optionen und unterstützt eine weite Auswahl von Erweiterungen. Auf dieser Seite können Sie die Integration von Erweiterungen, Plugins und anderen Drittanbieterkomponenten einrichten. Optionale Komponenten können aus dem Netz geladen werden. Bestimmte Installationen erfordern administrative Rechte.
-
+ Status
-
+ Version
-
+ Beschreibung
-
+ <a href="sbie://addons">Erweiterungsliste jetzt aktualisieren</a>
-
+ Installieren
-
+ Erweiterungskonfiguration
-
+ Aktiviere Ramdiskerzeugung
-
+ Kilobytes
-
+ Diskabbildunterstützung
-
+ RAM Grenze
-
+ <a href="addon://ImDisk">Installiere ImDisk</a> Treiber zur Aktivierung von Ramdisk- und Diskabbildunterstützung.
@@ -8836,179 +8866,184 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
In den System-Tray minimieren
-
+
+
+
+
+
+ Der Ramdisk einen Laufwerksbuchstaben zuweisen
-
+ Wenn eine Ramdisk bereits eingehängt ist, müssen Sie sie aushängen, damit diese Option wirksam wird.
-
+ * wird bei der Erstellung der Ramdisk wirksam
-
+ Sandboxie Unterstützung
-
+ Dieses Unterstützerzertifikat ist abgelaufen, bitte <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">holen Sie sich ein erneuertes Zertifikat</a>.
-
+ Erhalten
-
+ Abrufen/Aufwerten/Erneuern des Zertifikats unter Verwendung der Seriennummer
-
+ SBIE_-_____-_____-_____-_____
-
+ <a href="https://sandboxie-plus.com/go.php?to=sbie-use-cert">Zertifikatsverwendungsanleitung</a>
-
+ Sandboxie Updater
-
+ Erweiterungsliste aktuell halten
-
+ Update Einstellungen
-
+ Der Insiderkanal bietet frühen Zugriff auf neue Funktionen und Bugfixes, die irgendwann allgemein veröffentlicht werden sollen, als auch alle relevanten Verbesserungen des Stabilkanals.
Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fehlerhaften oder experimentellen Änderungen, welche möglicherweise einer breiten Verwendung entgegenstehen.
-
+ Suche im Insiderkanal
-
+ Neue vollständige Installer aus dem ausgewählten Veröffentlichungskanal.
-
+ Vollständige Upgrades
-
+ Periodisch nach Updates für Sandboxie-Plus suchen
-
+ Mehr über den <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">Insiderkanal</a>
-
+ Problembehebungsskripte aktuell halten
-
+ Update-Prüfintervall
-
+ Verwende einen Sandboxie-Login anstelle eines anonymen Token
-
+ Sandboxie.ini Vorlagen
-
+ Programmkontrolle
-
+ Gebe Nachricht 1308 aus, wenn ein Programmstart fehlschlägt
-
+ USB-Laufwerk Sandboxing
-
+ Datenträger
-
+ Information
-
+ Sandbox für USB-Laufwerke:
-
+ Automatisch alle eingesteckten USB-Laufwerke sandboxen
-
+ Programmvorlagen
-
+ Programmkompatibilität
-
+ Zukünftig nicht auf Softwarekompatibilität prüfen
-
+ Aktiveren
-
+ Deaktivieren
-
+ Sandboxie hat die folgenden Anwendungen auf dem System gefunden. OK klicken zur Anwendung der Konfigurationseinstellungen, welche die Softwarekompatibilität mit diesen Anwendungen verbessert. Diese Konfigurationseinstellungen haben Auswirkungen auf alle existierenden und neuen Sandboxen.
diff --git a/SandboxiePlus/SandMan/sandman_en.ts b/SandboxiePlus/SandMan/sandman_en.ts
index 4f96fd60..37d53000 100644
--- a/SandboxiePlus/SandMan/sandman_en.ts
+++ b/SandboxiePlus/SandMan/sandman_en.ts
@@ -829,12 +829,12 @@ Error: %1
CCompletePage
-
+
-
+
@@ -1169,19 +1169,6 @@ You can use %USER% to save each users sandbox to an own fodler.
-
- CMultiErrorDialog
-
-
-
-
-
-
-
-
-
-
-CNewBoxWizard
@@ -1533,11 +1520,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
-
-
+
+
@@ -1547,8 +1534,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1586,7 +1573,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1657,76 +1644,76 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
@@ -1965,7 +1952,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -2035,7 +2022,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -2137,17 +2124,17 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -2560,13 +2547,13 @@ Full path: %4
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.
-
+
@@ -2698,22 +2685,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+
-
+
-
+
-
+
@@ -2790,27 +2777,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+
-
+
-
+
-
+
-
+
@@ -3073,7 +3060,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+
@@ -3155,11 +3142,11 @@ Do you want to do the clean up?
-
-
-
-
-
+
+
+
+
+
@@ -3189,7 +3176,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
-
+
@@ -3209,59 +3196,59 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
-
+
-
+
@@ -3271,34 +3258,34 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
-
+
-
+
-
+
-
+
-
+
-
+
@@ -3353,153 +3340,153 @@ No will choose: %2
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
-
+
-
+
-
+
-
+
@@ -3538,7 +3525,7 @@ No will choose: %2
-
+
@@ -3672,52 +3659,52 @@ No will choose: %2
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3725,37 +3712,37 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
-
-
+
+
+
-
+
-
+
-
-
-
-
+
+
+
+
@@ -3788,131 +3775,131 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ The evaluation periode has expired!!!
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3920,225 +3907,225 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ A all processes in a sandbox must be stopped before it can be renamed.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ The content of an un mounted sandbox can not be deleted
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ The supporter certificate is expired %1 days ago, please get an updated certificate
-
+
-
+
@@ -5078,17 +5065,17 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSelectBoxWindow
-
+
-
+
-
+
@@ -5222,164 +5209,164 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Error retriving certificate: %1
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -5402,174 +5389,174 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -5689,32 +5676,32 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSubmitPage
-
+
-
+
-
+
-
+
-
+
-
+ Select partially checked state to sends only message log but no trace log.
@@ -5722,69 +5709,69 @@ Before sending you can review the logs in the main window.
-
+
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Your issue report have been successfully submitted, thank you.
@@ -6374,32 +6361,32 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
@@ -6409,12 +6396,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+
-
+
@@ -6424,7 +6411,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+
@@ -6496,27 +6483,27 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+
-
+
-
+
-
+
-
+
@@ -6526,160 +6513,160 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
@@ -6709,88 +6696,88 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -6887,183 +6874,177 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
- Block process from taking screenshots of windows not belonging to the containing sandbox
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandbox
-
+
-
+
-
+
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
-
+ Adcanced Security
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -7073,581 +7054,595 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
-
-
- Prevents processes in the sandbox from interfering with power operation
-
-
-
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.
-
+
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -7657,132 +7652,132 @@ The process match level has a higher priority than the specificity and describes
-
+
-
+
-
+
-
+
-
+
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -7985,27 +7985,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+
-
+
-
+
-
+
-
+
@@ -8200,42 +8200,42 @@ Please note that this values are currently user specific and saved globally for
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -8318,208 +8318,208 @@ Please note that this values are currently user specific and saved globally for
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Only Administrator user accounts can use Pause Forced Programs Rules command
-
+
@@ -8539,12 +8539,12 @@ Please note that this values are currently user specific and saved globally for
-
+
-
+
@@ -8580,7 +8580,7 @@ Please note that this values are currently user specific and saved globally for
-
+
@@ -8595,12 +8595,12 @@ Please note that this values are currently user specific and saved globally for
-
+
-
+
@@ -8616,7 +8616,7 @@ Please note that this values are currently user specific and saved globally for
-
+
@@ -8632,45 +8632,45 @@ Please note that this values are currently user specific and saved globally for
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -8710,22 +8710,22 @@ Please note that this values are currently user specific and saved globally for
-
+
-
+
-
+
-
+ Config Protection
@@ -8762,8 +8762,8 @@ Please note that this values are currently user specific and saved globally for
-
-
+
+
@@ -8818,209 +8818,219 @@ Please note that this values are currently user specific and saved globally for
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+ Version Updates
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/SandboxiePlus/SandMan/sandman_es.ts b/SandboxiePlus/SandMan/sandman_es.ts
index 41963c5b..ef4aab25 100644
--- a/SandboxiePlus/SandMan/sandman_es.ts
+++ b/SandboxiePlus/SandMan/sandman_es.ts
@@ -860,12 +860,12 @@ Error: %1
CCompletePage
-
+ Solución de problemas completada
-
+
@@ -1227,14 +1227,12 @@ Puedes usar %USER% para guardar la sandbox de cada usuario en su propia carpeta.
CMultiErrorDialog
-
- Sandboxie-Plus - Error
+ Sandboxie-Plus - Error
-
- Mensaje
+ Mensaje
@@ -1576,47 +1574,47 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Raiz del ipc de la sandbox
-
+ Añadir opción especial:
-
-
+
+ Al comenzar
-
-
-
-
-
+
+
+
+
+ Ejecutar comando
-
+ Iniciar servicio
-
+ Al inicializar
-
+ Al Recuperar Archivo
-
+ Al Borrar Contenido
-
+ Al Finalizar
@@ -1625,31 +1623,31 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Al eliminar
-
-
-
-
-
+
+
+
+
+ Por favor ingrese la linea de comandos a ser ejecutada
-
+ Por favor introduzca un nombre de archivo de programa para permitir acceso a esta sandbox
-
+ Por favor introduzca un nombre de archivo de programa para denegar acceso a esta sandbox
-
+ Denegar
-
+ %1 (%2)
@@ -1874,37 +1872,37 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Añadir Plantilla %1
-
+ Buscar opciones
-
+ Caja: %1
-
+ Plantilla: %1
-
+ Global: %1
-
+ Predeterminado: %1
-
+ Esta sandbox ha sido eliminada por lo que la configuración no se puede guardar.
-
+ Algunos cambios aún no se han guardado, ¿desea realmente cerrar esta ventana de opciones?
@@ -1932,7 +1930,7 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Ejecutables (*.exe *.cmd);;Todos los archivos (*.*)
-
+ Por vavor ingrese un identificador de servicio
@@ -1957,8 +1955,8 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Por favor ingrese un comando
-
-
+
+
@@ -1975,7 +1973,7 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Por favor ingrese un nombre para el nuevo grupo
-
+ Ingrese programa:
@@ -2176,11 +2174,11 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Todos los archivos (*.*)
-
+
-
-
+
+
@@ -2216,7 +2214,7 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
-
+
@@ -2317,17 +2315,17 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Error: %1
-
+ ¿Realmente desea eliminar la(s) plantilla(s) locales seleccionadas?
-
+ ¡Solo las plantillas locales puede ser eliminados!
-
+
-
+
@@ -2795,13 +2793,13 @@ Ruta completa: %4
Este procedimiento de resolución de problemas no se pudo iniciar. Puede pulsar en siguiente para enviar un informe de error.
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.Algo falló internamente, este procedimiento de resolución de problemas no puede continuar. Puede pulsar en siguiente para enviar un informe de error.
-
+
@@ -2936,22 +2934,22 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
CSandBox
-
+ Esperando a carpeta: %1
-
+ Borrando carpeta: %1
-
+ Fusionando carpetas: %1 >> %2
-
+ Terminando fusionado de instantánea...
@@ -3040,7 +3038,7 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
CSandMan
-
+ Sandboxie-Plus v%1
@@ -3050,62 +3048,62 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
Pulsa para descargar actualización
-
+ No Forzar Proceso
-
+ Acceso directo eliminado: %1
-
+ Acceso directo actualizado a: %1
-
+ Acceso directo añadido a: %1
-
+ Auto eliminando sandbox %1
-
+ Directorio %1: %2
-
+ Aplicación
-
+ Instalación
-
+ Reestablecer Columnas
-
+ Copiar Celda
-
+ Copiar Fila
-
+ Copiar Panel
@@ -3390,7 +3388,7 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
-
+ Sobre Sandboxie-Plus
@@ -3419,7 +3417,7 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
-
+ Sandboxie-Plus Interno [%1]
@@ -3593,165 +3591,165 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
Esta caja se <a href="sbie://docs/boxencryption">encriptará</a> y <a href="sbie://docs/black-box">el acceso a los procesos aislados estará protegido</a>.
-
+ Sandbox USB no encontrada; creando: %1
-
+ Ejecutando OnBoxTerminate: %1
-
+ Error al configurar tecla rápida %1, error: %2
-
-
-
+
+
+ (%1)
-
+ La caja %1 está configurada para usar funciones exclusivas disponibles para patrociandores del proyecto.
-
+ La caja %1 está configurada para usar funciones que requieren un certificado de patrocinador <b>avanzado</b>.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Actualice su certificado</a> para desbloquear funciones avanzadas.
-
+ La función seleccionada requiere un certificado de patrocinador <b>avanzado</b>.
-
+ El conjunto de características seleccionado solo está disponible para los patrocinadores del proyecto.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Conviértete en un patrocinador del proyecto</a> y recibe un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de patrocinador</a>
-
+ El certificado que está intentando usar ha sido bloqueado, lo que significa que ha sido invalidado por alguna causa. ¡Cualquier intento de usarlo constituye una violación de sus términos de uso!
-
+ ¡La firma del certificado es inválida!
-
+ El certificado no es apto para este producto.
-
+ El certificado está bloqueado en el nodo.
-
+ El certificado de patrocinador es inválido.
Error: %1
-
-
+
+ No preguntar en el futuro
-
+ ¿Desea realmente finalizar todos los procesos en sandboxes encriptadas, y desmontarlos?
-
+ <b>ERROR:</b> El Administrador de Sandboxie-Plus (SandMan.exe) no tiene una firma válida (SandMan.exe.sig). Por favor, descargue una versión de confianza de la <a href="https://sandboxie-plus.com/go.php?to=sbie-get">página oficial de Descargas</a>.
-
+ A all processes in a sandbox must be stopped before it can be renamed.Todos los procesos en una sandbox deben ser parados antes de que se pueda renombrar.
-
+ Error al mover imagen de caja '%1' a '%2'
-
+ The content of an un mounted sandbox can not be deletedLos contenidos de una sandbox desmontada no se pueden borrar
-
+ %1
-
+ ¿Desea abrir %1 en un navegador web aislado o no aislado?
-
+ Aislado
-
+ No aislado
-
+ Sensible a mayúsculas y minúsculas
-
+ RegExp
-
+ Resaltar
-
+ Cerrar
-
+ &Buscar ...
-
+ Todas las columnas
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>Sobre Sandboxie-Plus</h3><p>Versión %1</p><p>Copyright (c) 2020-2024 por DavidXanatos</p>
@@ -3819,11 +3817,11 @@ Desea hacer la limpieza?
-
-
-
-
-
+
+
+
+
+ No motrar este mensaje nuevamente.
@@ -3853,7 +3851,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
<br /><br />Esta caja <a href="sbie://docs/privacy-mode">previene el acceso a todas las ubicaciones de datos de usaurio</a>, expectuando las permitidas en las opciones de Acceso a Recursos.
-
+ Operación desconocida '%1' requerida por linea de comandos
@@ -3873,17 +3871,17 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
- Borrando Contenido de la Sandbox
-
+ Ejecutando OnBoxDelete: %1
-
+ Auto Borrando Contenido de %1
-
+ Auto eliminando contenido de %1
@@ -3892,19 +3890,19 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Auto eliminando %1 contenido
-
-
-
+
+
+ Sandboxie-Plus - Error
-
+ Fallo al intentar detener todos los componentes de Sandboxie
-
+ Fallo al intentar iniciar los componentes requerido por Sandboxie
@@ -3917,22 +3915,22 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Operación de mantenimiento Satisfactoria
-
+ El certificado de patrocinador no es valido para esta version, por favor obtenga una actualización de certificado
-
+ El certificado de patrocinador ha expirado%1, por favor obtenga una actualización de certificado
-
+ , pero permanece valido para la actual version
-
+ El certificado de patrocinador expirará en %1 días, por favor obtenga una actualización de certificado
@@ -3949,7 +3947,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
No hay ninguna actualización de certificado.
-
+ La característica seleccionadad esta solo disponible a los patrocinadores del proyecto. Procesos comenzados en esta caja con esta característica habilitada sin un certificado de patrocinador serí terminada luego de 5 minutos.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Conviertase en un patrocinador del proyecto</a>, y obtenga un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de patrocinador</a>
@@ -3962,32 +3960,32 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Directorio de instalación: %1
-
+ Sandboxie-Plus Version: %1 (%2)
-
+ Configuración actual: %1
-
+ Directorio de datos: %1
-
+ para uso Personal
-
+ - SOLO para uso No-Comercial
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3996,130 +3994,130 @@ Please check if there is an update for sandboxie.
Por favor, verifique si hay una actualización para Sandboxie.
-
+ No mostrar este mensaje de nuevo para la versión actual.
-
+ Su versión de Windows %1 supera las capacidades de soporte actuales conocidas de su versión de Sandboxie, Sandboxie intentará utilizar los últimos desplazamientos conocidos, lo cual podría causar inestabilidad en el sistema.
-
+ ¿Desea omitir el asistente de instalación?
-
+ The evaluation periode has expired!!!¡El periodo de evaluación ha expirado!
-
+ Por favor ingrese la duración, en segundos, para deshabilitar las reglas de programas forzados.
-
+ Sin Recuperación
-
+ Sin Mensajes
-
+ Operación de mantenimiento falló (%1)
-
+ Operación de mantenimiento completada
-
+ En la IU Plus, esta funcionalidad se ha integrado en el listado principal del sandbox.
-
+ Usando el menú contextual de caja/grupo, puedes mover cajas y grupos a otros grupos. También puedes usar arrastrar y soltar para mover los elementos. Además, puedes usar las teclas de flecha mientras mantienes presionada la tecla ALT para mover elementos hacia arriba y hacia abajo dentro de su grupo.<br />Puedes crear nuevas cajas y grupos desde el menú Sandbox.
-
+ Estás a punto de editar el archivo Templates.ini, esto generalmente no se recomienda.
Este archivo es parte de Sandboxie y todos los cambios realizados en él serán revertidos la próxima vez que se actualice Sandboxie.
-
+ La configuración de Sandboxie se ha recargado
-
+ Error de estado: 0x%1 (%2)
-
+ Desconocido
-
+ Todos los procesos de la sandbox deben ser detenidos antes de que el contenido pueda ser eliminado
-
+ Fallo al copiar archivos de datos
-
+ Fallo al remover archivos de datos antiguos
-
+ La operación fue cancelada por el usuario
-
+ Importar/Exportar no disponible, 7z.dll no se pudo cargar
-
+ Error al crear el archivador de la caja
-
+ Error al abrir el archivador 7z
-
+ Error al desempaquetar el archivador de la caja
-
+ El archivo 7z seleccionado NO es un archivo de caja
-
+ Esatdo de error desconocido: 0x%1
@@ -4128,17 +4126,17 @@ Este archivo es parte de Sandboxie y todos los cambios realizados en él serán
<h3>Sobre Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2022 by DavidXanatos</p>
-
+ Esta copia de Sandboxie+ esta certificada para: %1
-
+ Sandboxie+ es libre para uso personal y no comercial.
-
+ Sandboxie-Plus es una continuación de Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para mas informacion.<br /><br />%3<br /><br />Driver versión: %1<br />Características: %2<br /><br />Íconos de <a href="https://icons8.com">icons8.com</a>
@@ -4147,7 +4145,7 @@ Este archivo es parte de Sandboxie y todos los cambios realizados en él serán
Seleccione sandbox:
-
+ Sandbox por defecto no encontrada, creando: %1
@@ -4174,12 +4172,12 @@ Este archivo es parte de Sandboxie y todos los cambios realizados en él serán
Programas de Pausa Forzada
-
+ Algunas plantillas de compatibilidad (%1) no se encuentran, probablemente fueron eliminadas, quieres eliminarlas de todas las sanboxes?
-
+ Llimpieza de plantillas eliminadas...
@@ -4204,7 +4202,7 @@ Este archivo es parte de Sandboxie y todos los cambios realizados en él serán
Sandboxie-Plus fue iniciado en modo portable, deseas poner el directorio de Sandbox dentro de su directorio padre?
-
+
@@ -4213,25 +4211,25 @@ SI seleccionará: %1
NO seleccionará: %2
-
+ - NO conectado
-
+ El programa%1 iniciado en la caja%2 será terminado en 5 minutos, la caja fue configurada para uso de características disponibles sólo para patrocinadores del proyecto.
-
+ La caja %1 está configurado para usar características disponibles exclusivamente a los patrocinadores del proyecto, estos ajustes se ignorarán.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Conviértase en patrocinador</a>, y obtenga un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de patrocinador</a>
@@ -4296,22 +4294,22 @@ NO seleccionará: %2
-
+ Solo Administradores pueden cambiar la configuracion.
-
+ Por favor ingrese la contraseña de configuracion.
-
+ Login incorrecto: %1
-
+ Desea terminar todos los procesos en todas las sandboxes?
@@ -4324,32 +4322,32 @@ NO seleccionará: %2
Por favor ingrese la duración para deshabilitar los programas forzados.
-
+ Sandboxie-Plus fue iniciado en modo portable y necesita crear los servicios requeridos. Esto pedira permisos administrativos.
-
+ PELIGRO: otro agente (probablemente SbieCtrl.exe) ya está administrando esta sesión de sandbox, por favor cierrela primero y reconectese para tomar el control.
-
+ Ejecutando operación de mantenimiento, por favor espere...
-
+ Desea tambien reestablecer los mensajes ocultos (si), o solo todos los mensajes del log (no)?
-
+ Los cambios serán aplicados automaticamente cuando el archivo sea guardado.
-
+ Los cambios seran aplicados automaticamente cuando cierre el editor.
@@ -4358,77 +4356,77 @@ NO seleccionará: %2
Status Error: %1
-
+ Permisos administrativos son necesarios para esta operacion.
-
+ Fallo al ejecutar: %1
-
+ Fallo al conectar al controlador
-
+ Fallo al comunicarse con el Servicio Sandboxie: %1
-
+ Una Sandboxie %1 incompatible fue encontrada. Versiones compatibles: %2
-
+ No se puede encontrar la ruta de instalación de Sandboxie.
-
+ Fallo al copiar la configuracin de la sandbox %1: %2
-
+ Una sandbox con el nombre %1 ya existe
-
+ Fallo al eliminar la sandbox %1: %2
-
+ El nombre de la sandbox no puede ser mas largo que 32 caracteres.
-
+ El nombre de la sandbox no puede ser el nombre de un dispositivo.
-
+ El nombre de la sandbox puede contener solo letras, digitos y guion bajo (se veran como espacios).
-
+ Fallo al terminar todos los procesos
-
+ Protección de eliminación esta habilitado para esta sandbox
-
+ Error borrando la carpeta sandbox: %1
@@ -4437,42 +4435,42 @@ NO seleccionará: %2
Una sandbox debe ser vaciada antes de que pueda ser renombrada.
-
+ Una sandbox debe ser vaciada antes de que pueda ser eliminada.
-
+ Fallo al mover el directorio '%1' to '%2'
-
+ Esta operación de Instantanea no puede ser realizada mientras procesos estan aun ejecutandose en la sandbox.
-
+ Fallo al crear el directorio para la nueva instantanea
-
+ Instantanea no fue encontrada
-
+ Error uniendo directorios de instantaneas '%1' with '%2', la instantanea no ha sido completamente unida.
-
+ Fallo al remover viejo directorio de instantenea '%1'
-
+ No es posible remover una instantanea que es compartida por multiples instantaneas posteriores
@@ -4481,27 +4479,27 @@ NO seleccionará: %2
Fallo al remover viejo RegHive
-
+ No estas autorizado a actualizar la configuración en la sección '%1'
-
+ Fallo al setear configuración %1 en sección %2: %3
-
+ No es posible crear instantanea de una sandbox vacia
-
+ La sandbox con ese nombre ya existe
-
+ La clave de configuración no debe ser mayor de 64 caracteres
@@ -4510,7 +4508,7 @@ NO seleccionará: %2
Estado de Error Desconocido: %1
-
+ La operación fallo para %1 item(s).
@@ -4519,7 +4517,7 @@ NO seleccionará: %2
Desea abrir %1 en sandbox (si) o fuera de sandbox (no) navegador Web?
-
+ Recordar selección para mas tarde.
@@ -5587,17 +5585,17 @@ NO seleccionará: %2
CSelectBoxWindow
-
+ Sandboxie-Plus - Ejecutar Aislado
-
+ ¿Está seguro que quiere ejecutar el programa fuera de la sandbox?
-
+ Por favor seleccione una sandbox.
@@ -5757,225 +5755,225 @@ NO seleccionará: %2
%1
-
+ Buscar programa
-
+ Añadir Plantilla %1
-
+ Elegir fuente
-
+ Restablecer fuente
-
+ Buscar ajustes
-
+ %0, %1 pt
-
+ Por favor introduzca mensaje
-
+ Elegir Programa
-
+ Ejecutables (*.exe *.cmd)
-
-
+
+ Por favor introduzca un título de menú
-
+ Por favor ingrese un comando
-
-
-
+
+
+ Ejecutar &Sandboxed
-
+ kilobytes (%1)
-
+ Volumen no adjuntado
-
+ El certificado de patrocinador ha expirado, por favor <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">obten un certificado actualizado</a>.
-
+ <br /><font color='red'>Para la versión actual, las funciones Plus siguen estando activadas</font>, pero ya no tienes acceso a los servicios de Sandboxie-Live, incluyendo las actualizaciones de compatibilidad y la base de datos de solución de problemas.
-
+ Este certificado de patrocinador<font color='red'>expirará en %1 día(s)</font>, por favor <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">obtenga un certificado actualizado</a>.
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.Está intentando usar una Clave de Actualización de características sin haber ingresado un certificado de patrocinador preexistente. Tenga en cuenta que este tipo de clave (<b>como se indica claramente en negritas en el sitio web</b>) requiere que tenga un certificado de patrocinador válido preexistente; es inútil sin uno.<br />Si desea usar las características avanzadas, necesita obtener tanto un certificado estándar como la clave de actualización de características para desbloquear la funcionalidad avanzada.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.Está intentando usar una Clave de Renovación sin haber ingresado un certificado de patrocinador preexistente. Tenga en cuenta que este tipo de clave (<b>como se indica claramente en negritas en el sitio web</b>) requiere que tenga un certificado de patrocinador válido preexistente; es inútil sin uno.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u><br /><br /><u>Si no ha leído la descripción del producto y ha obtenido esta clave por error, por favor contáctanos por email (disponible en nuestra web) para resolver esta incidencia.</u>
-
+ Obteniendo certificado...
-
+ Error retriving certificate: %1Error obteniendo certificado: %1
-
+ Error Desconocido (probablemente un problema de red)
-
+ Contribuidor
-
+ Eterno
-
+ Negocio
-
+ Presonal
-
+ Gran Patreon
-
+ Patreon
-
+ Familia
-
+ Hogar
-
+ Evaluación
-
+ Tipo %1
-
+ Avanzado
-
+ Nivel máximo
-
+ Nivel %1
-
+ Certificado de patrocinador requerido para acceso
-
+ Certificado de patrocinador requerido para automatización
-
+ Este certificado es desafortunadamente inválido para la compilación actual, necesita obtener un nuevo certificado o volver a una compilación anterior.
-
+ Aunque este certificado ha caducado, las funciones adicionales de la versión actualmente instalada siguen habilitadas. Sin embargo, ya no tendrás acceso a los servicios de Sandboxie-Live, incluidas las actualizaciones de compatibilidad y la base de datos de solución de problemas en línea.
-
+ Este certificado ha desafortunadamente expirado, necesita obtener un nuevo certificado.
-
+ Navegador Web Aislado
@@ -5984,12 +5982,12 @@ NO seleccionará: %2
Este certificado de patrocinador ha expirado, por favor <a href="sbie://update/cert">obtenga un certificado actualizado</a>.
-
+ <br /><font color='red'>Características Plus se deshabilitarán en %1 días.</font>
-
+ <br />Características Plus ya no están disponibles.
@@ -5998,12 +5996,12 @@ NO seleccionará: %2
Este certificado de patrocinador <font color='red'>expirará en %1 días</font>, por favor <a href="sbie://update/cert">obtenga un certificado actualizado</a>.
-
+ Ejecutar &Sin-Sandbox
-
+ Esto no parece un certificado. Por favor introduzca el certificado entero, no solo una porción del mismo.
@@ -6016,7 +6014,7 @@ NO seleccionará: %2
Este certificado esta desactualizado.
-
+ Gracias por patrocinar el desarrollo de Sandboxie-Plus.
@@ -6025,88 +6023,88 @@ NO seleccionará: %2
Este certificado de patrocinador no es válido.
-
+ Actualización Disponible
-
+ Instalado
-
+ por %1
-
+ (web de información)
-
+ Esta extensión es obligatoria y no se puede eliminar.
-
-
+
+ Seleccionar Directorio
-
+ <a href="check">Comprobar Ahora</a>
-
+ Por favor ingrese la nueva clave de configuracion.
-
+ Por favor re-ingrese la nueva clave de configuracion.
-
+ Las contraseñas no son iguales, vuelva a intentarlo por favor.
-
+ Proceso
-
+ Carpeta
-
+ Por favor ingrese un nombre de archivo al programa
-
+ Por favor ingrese el identificador de plantilla
-
+ Error: %1
-
+ ¿Desea realmente borrar la(s) plantilla(s) local(es) seleccionada(s)?
-
+ %1 (Actual)
@@ -6226,32 +6224,32 @@ NO seleccionará: %2
CSubmitPage
-
+ Enviar Informe de Incidencia
-
+ Descripción detallada de la incidencia
-
+ Adjuntar Sandboxie.ini
-
+ La compatibilidad de la sandbox aislada depende de la configuración, por lo tanto, adjuntar el archivo Sandboxie.ini ayuda mucho a encontrar el problema.
-
+ Adjuntar Registros
-
+ Select partially checked state to sends only message log but no trace log.
@@ -6260,70 +6258,70 @@ Before sending you can review the logs in the main window.
Antes de enviar, puedes revisar los registros en la ventana principal.
-
+ Adjuntar Volcados de memoria tras un Error
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.Una aplicación falló durante el procedimiento de resolución de problemas, adjuntar un archivo de volcado de memoria puede ayudar con la depuración.
-
+ Dirección de correo
-
+ Tiene la opción de proporcionar una dirección de correo para recibir una notificación una vez que una solución para su incidencia se ha identificado.
-
+ Nos disculpamos por las molestias que está afrontando con Sandboxie-Plus.
-
+ Desafortunadamente, la resolución de problemas automatizada ha fracasado.
-
+ Lamentablemente, no hay un procedimiento de solución de problemas automatizado disponible para el problema específico que ha descrito.
-
+ Si desea enviar un informe de la incidencia, por favor compruebe el informe de debajo y pulse en 'Finalizar'.
-
+ Comprimiendo Registros
-
+ Comprimiendo Volcados
-
+ Enviando informe de error...
-
+ Falló el envío del informe de error, error %1
Pruebe a enviarlo sin adjuntar el registro.
-
+ Your issue report have been successfully submitted, thank you.Su informe de error se ha enviado con éxito, gracias.
@@ -6942,7 +6940,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Opciones de Sandbox
-
+ Precaución: Cuando es ejecutado con el administrador incluido, los procesos no pueden soltar los permisos administrativos.
@@ -6981,22 +6979,22 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Derechos administrativos
-
+ Hacer que las aplicaciones crean que son ejecutadas con permisos elevados (permite ejecutar instaladores con seguridad)
-
+ Nota de seguridad: aplicaciones ejecutadas con permisos elevados supervisados por Sandboxie, con un administrador o sistema o clave de sistema, tiene mas oportunidades de saltearse el aislamiento y modificar el sistema fuera de la sandbox.
-
+ Permitir MSIServer ejecutarse con una clave de sistema sandbox y aplicar otras excepciones si es requerido
-
+ Nota: Excepciones para instaladores MSI no deben ser requeridas, pero si encuentra problemas instalando paquetes MSI confiables, esta opción puede ayudar a que la instalación se complete satisfactoriamente. Tambien puede intentar deshabilitar Rebajar permisos de grupos Administradores y Usuarios Avanzados.
@@ -7010,7 +7008,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Restricciones de acceso
-
+ Bloquear acceso de lectura al portapapeles
@@ -7035,26 +7033,26 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
-
-
-
-
-
+
+
+
+
+ Protejer al sistema de procesos en sandboxes
-
+ Restricciones de Elevacion
-
+ Abrir Credenciales de Windows (modo usuario)
-
+ Bloquear archivos de red y carpetas, salvo especificamente abiertos.
@@ -7063,17 +7061,17 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Hace creer a las aplicaciones que son ejecutadas con permisos elevados (permite ejecutar instaladores con seguridad)
-
+ Restricciones de Red
-
+ Rebajar permisos de grupos Administradores y Usuarios Avanzados
-
+ (Recomendado)
@@ -7142,7 +7140,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Opciones de Acceso
-
+ Remover restricción de spooler, las impresoras pueden ser instaladas fuera de la sandbox
@@ -7152,12 +7150,12 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Permitir al spooler de impresion imprimir archivos fuera de la sandbox
-
+ Bloquear acceso al spooler de impresion
-
+ Otras restricciones
@@ -7167,7 +7165,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Restricciones de impresion
-
+ Abrir Almacenamiento de Sistema Protegido
@@ -7184,65 +7182,65 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Permitir acceso a Tarjetas Inteligentes
-
+ Ejecutar Menu
-
+ Ud. puede configurar entradas personalizadas para el menu de ejecución de sandbox.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Nombre
-
+ Linea de Comandos
-
+ Agregar programa
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Remover
@@ -7255,13 +7253,13 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Aqui puede especificar programas y/o servicios que seran iniciados automaticamente en la sandbox cuando se active
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Tipo
@@ -7270,21 +7268,21 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Agregar Servicio
-
+ Grupo de Programas
-
+ Agregar Grupo
-
-
-
-
-
+
+
+
+
+ Agregar Programa
@@ -7297,42 +7295,42 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Programas Forzados
-
+ Forzar Carpeta
-
-
-
+
+
+ Ruta
-
+ Forzar Programa
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mostrar Plantillas
@@ -7341,8 +7339,8 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Programas ingresados aqui, o programas iniciados desde ubicaciones ingresadas, seran puestos en esta sandbox automaticamente, salvo sean explicitamente iniciados en otra sandbox.
-
-
+
+ Comportamiento de Detencion
@@ -7367,32 +7365,32 @@ If leader processes are defined, all others are treated as lingering processes.<
Si los procesos lider son definidos, todos los demas son tratados como persistentes.
-
+ Restricciones de Inicio
-
+ Mostrar mensaje 1308 cuando un programa falle al iniciar
-
+ Permitir solo los programas seleccionados iniciar en esta sandbox. *
-
+ Prevenir los programas seleccionados de iniciar en esta sandbox.
-
+ Permitir todos los programas iniciar en esta sandbox.
-
+ * Nota: Programas instalados en esta sandbox no podran iniciarse.
@@ -7401,12 +7399,12 @@ Si los procesos lider son definidos, todos los demas son tratados como persisten
Restricciones de Internet
-
+ Restricciones de Procesos
-
+ Mostrar mensaje 1307 cuando un programa es denegado su acceso a internet
@@ -7415,44 +7413,44 @@ Si los procesos lider son definidos, todos los demas son tratados como persisten
Bloquear acceso a internet para todos los programas excepto aquellos agregados a esta lista.
-
+ Nota: Programas instalados en esta sandbox no podran acceder a internet.
-
+ Preguntar al usuario si desea permitir excepción al bloqueo.
-
+ Acceso a recursos
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Programa
-
+ Prevenir cambiar parametros de red y cortafuegos (modo usuario)
-
-
-
-
-
-
+
+
+
+
+
+ Acceso
@@ -7473,37 +7471,37 @@ You can use 'Open for All' instead to make it apply to all programs, o
Ud. puede usar 'Abrir para todos' en vez de aplicar a todos los programas, o cambiar este comportamiento en las Politicas.
-
+ Agregar clave de Registro
-
+ Agregar Archivo/Carpeta
-
+ Agregar Wnd Class
-
+ Agregar COM Object
-
+ Agregar IPC Path
-
+ Mover Arriba
-
+ Mover Abajo
@@ -7518,22 +7516,22 @@ Note que Cerrar todos los ...=!<program>,... exclusiones tienen la misma l
Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo aplicar a todos los programas.
-
+ Recuperación de archivos
-
+ Agregar Carpeta
-
+ Ignorar Extension
-
+ Ignorar Carpeta
@@ -7542,33 +7540,33 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
Habilitar consulta de Recuperación Inmediata que pueda recuperar archivos al momento de crearse.
-
+ Ud. puede excluir carpetas y tipos de archivos (o extensiones de archivos) de la Recuperación Instantanea.
-
+ Cuando la función de Recuperación Rapida es solicitada, las siguientes carpetas seran verificadas por contenido.
-
+ Opciones Avanzadas
-
+ Miscelaneas
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Protejer la integridad de la sandbox
@@ -7577,12 +7575,12 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
Aislamiento de Sandbox
-
+ No iniciar servicios en la sandbox usando token de sistema (recomendado)
-
+ Agregar procesos en la sandbox a objetos de trabajo (recomendado)
@@ -7591,23 +7589,23 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
Proteger procesos de sistema dentro de la sandbox contra procesos no privilegiados fuera de la sandbox
-
-
+
+ Compatibilidad
-
+ Forzar el uso de archivos de manifesto de prueba (comportamiento heredado)
-
+ No alterar nombres de clase de ventanas creadas por programas en sandboxes
-
+ Permitir solamente procesos privilegiados acceder al Administrador de Control de Servicios
@@ -7628,42 +7626,42 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
Aqui Ud. puede especificar una lista de comandos que son ejecutados cada vez que la sandbox es creada inicialmente.
-
+ Esconder Procesos
-
+ Agregar Proceso
-
+ Esconder procesos del anfitrion de procesos ejecutandose en la sandbox.
-
+ Este comando se ejecutará antes de que un archivo se recupere y la ruta del archivo se pasará como primer argumento. Si este comando devuelve algo distinto de 0, la recuperación será bloqueada
-
+ No permitir procesos en la sandbox ver procesos ejecutandose en otras sandboxes
-
+ Usuarios
-
+ Restringir monitor de acceso a recursos solo para administradores
-
+ Agregar Usuario
@@ -7680,27 +7678,27 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to u
Nota: Configuración de Programas Forzados y Carpetas Forzadas para una sandbox no aplican a cuentas de usuario que no pueden usar la sandbox.
-
+ Rastreo
-
+ Rastreo COM Class
-
+ Rastreo IPC
-
+ Rastreo de llave
-
+ Rastreo GUI
@@ -7709,34 +7707,34 @@ Nota: Configuración de Programas Forzados y Carpetas Forzadas para una sandbox
Políticas de Acceso a Recursos
-
+ La especificidad de una regla es la medida de cuan bien cierta regla coincide una ruta particular, para decirlo de otra forma la especificidad es el largo de caracteres desde el principio de la ruta hasta inclusive la ultima coincidencia sin comodin. Una regla que coincida solo los tipos de archivo como "*.tmp*" tendra la mayor especificidad ya que siempre coincidirá con la ruta completa.
El proceso de nivel de coincidencia tiene mayor prioridad que la especificidad y describe como una regla aplica a un proceso dado. Reglas aplicadas a un nombre de proceso o grupo tienen mayor nivel de coincidencia, seguido por la coincidencia por negación (ej. reglas aplicadas a todos los procesos menos a uno), mientras que las coincidencias de menor nivel tiene coincidencias globales, ej. reglas que aplican a cualquier proceso.
-
+ Priorizar reglas basado en su especificidad y nivel de coincidencia
-
+ Modo privacidad, bloquea el acceso al registro y archivos a todas las ubicaciones exceptuando las genéricas del sistema
-
+ Modo de acceso
-
+ Cuando el Modo Privacidad esta habilidato, los procesos en la sandbox podran solo leer C:\Windows\*, C:\Program Files\*, y partes del registro HKLM, todas las demas ubicaciones necesitan acceso explicito para poder ser leidas y/o escritas. En este modo, la Regla de Especificidad esta siempre habilitada.
-
+ Políticas de reglas
@@ -7745,12 +7743,12 @@ El proceso de nivel de coincidencia tiene mayor prioridad que la especificidad y
Aplicar Cerrar... =! <program>,... aplica tambien a todos los archivos binarios ubicados en la sandbox.
-
+ Aplica a directivas de Archivo y Abrir solo sobre binarios ubicados fuera de la sandbox.
-
+ Iniciar en sandbox RpcSs como un proceso de SISTEMA (no recomendado)
@@ -7759,28 +7757,28 @@ El proceso de nivel de coincidencia tiene mayor prioridad que la especificidad y
Acceso abierto a infraestructura COM (no recomendado)
-
+ Rebajar privilegios criticos de procesos ejecutandose con autentificación de SISTEMA
-
-
+
+ (Crítico para la seguridad)
-
+ Protejer procesos de SISTEMA en la sandbox de procesos no privilegiados
-
+ Control de Programa
-
+ El aislamiento de seguridad a travez del uso de procesos fuertemente restringidos es el principal significado de Sandboxie de reforzar restricciones, cuando esto esta deshabilitado la caja es operada en modo de compartimiento de aplicación, ej. no provee seguridad confiable, simplemente solo compartimentación de aplicacion.
@@ -7793,22 +7791,22 @@ El proceso de nivel de coincidencia tiene mayor prioridad que la especificidad y
Varias caracteristicas avanzadas de aislamiento pueden romper la compatibilidad con algunas aplicaciones. Si ud. esta usando esta sandbox <b>NO para Seguridad</b> pero para simple portabilidad de aplicacion, con cambiar estas opciones ud. puede restaurar la compatibilidad sacrificando algo de seguridad.
-
+ Aislamiento y Filtrado de Seguridad
-
+ Deshabilitar Filtrado de Seguridad (no recomendado)
-
+ Filtrado de Seguridad usado por Sandboxie para reforzar el sistema de archivos y las restricciones de acceso al registro, tanto como restringir el acceso a procesos.
-
+ Las siguientes opciones pueden ser usadas con seguridad cuando no se requiera garantizar derechos administrativos.
@@ -7818,22 +7816,22 @@ El proceso de nivel de coincidencia tiene mayor prioridad que la especificidad y
Rastreo de llamadas API (requiere logapi estar instalado en el directorio de sbie)
-
+ Registrar todos los SetErrors al Log de Rastreo (crea mucha salida de datos)
-
+ Rastreo de archivo
-
+ Rastreo Pipe
-
+ Rastreo de acceso
@@ -7842,12 +7840,12 @@ El proceso de nivel de coincidencia tiene mayor prioridad que la especificidad y
<- para esta lo de arriba no aplica
-
+ Registrar salida de depuración al log de Rastreo
-
+
-
+ Depuracion
-
+ ADVERTENCIA, estas opciones pueden deshabilitar garantias de seguridad de nucleo y romper la seguridad de la sandbox!!!
-
+ Estas opciones son para depurar problemas de compatibilidad, por favor no las use en produccion.
-
+ Plantillas de Aplicacion
-
+ Filtros de Categorias
-
+ Filtro de Texto
-
+ Categoria
-
+ Esta lista contiene gran cantidad de plantillas para mejorar la compatibilidad de la sandbox
@@ -7935,131 +7933,131 @@ en cambio de "*".
Estructura de la caja
-
+ Opciones de Seguridad
-
+ Endurecimiento de Seguridad
-
+ Aislamiento de Seguridad
-
+ Diversas características de aislamiento pueden romper la compatibilidad con algunas aplicaciones. Si estás utilizando esta sandbox <b>NO por Seguridad</b> sino por portabilidad de aplicaciones, al cambiar estas opciones puedes restaurar la compatibilidad sacrificando algo de seguridad.
-
+ Aislamiento de acceso
-
+ Cuando la tecla de acceso rápido global se presione 3 veces en rápida sucesión, esta excepción será ignorada.
-
+ Excluir esta sandbox de ser finalizada cuando se invoque "Terminar Todos los Procesos".
-
+ Protección de Imagen
-
+ Emitir el mensaje 1305 cuando un programa intenta cargar una dll en un entorno aislado
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandboxEvitar que los programas de sandbox instalados en el host carguen DLLs desde esta sandbox
-
+ DLLs y Extensiones
-
+ Descripción
-
+ Las reglas de acceso a recursos de Sandboxie a menudo discriminan contra los binarios de programas ubicados dentro de la sandbox. OpenFilePath y OpenKeyPath funcionan solo para binarios de aplicaciones ubicadas de manera nativa en el ordenador. Para definir una regla sin esta restricción, se debe usar OpenPipePath o OpenConfPath. De igual manera, todas las directivas Closed(File|Key|Ipc)Path que se definen por negación, por ejemplo, 'ClosedFilePath=! iexplore.exe,C:Users*' siempre estarán cerradas para binarios ubicados dentro de una sandbox. Ambas políticas de restricción pueden ser desactivadas en la página de "Políticas de acceso".
Esto se hace para evitar que procesos maliciosos dentro de la sandbox creen una copia renombrada de sí mismos y accedan a recursos protegidos. Otro vector de explotación es la inyección de una biblioteca en un proceso autorizado para obtener acceso a todo lo que se le permite acceder. Utilizando la Protección de Imagen del Host, esto puede prevenirse bloqueando a las aplicaciones (instaladas en el host) que se ejecuten dentro de una sandbox y que carguen bibliotecas desde la propia sandbox.
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.La funcionalidad de Sandboxie puede mejorarse mediante el uso de DLLs opcionales que pueden cargarse en cada proceso confinado en uns sandbox al iniciarse por el archivo SbieDll.dll. El administrador de extensiones en la configuración global ofrece un par de extensiones útiles; una vez instaladas, pueden activarse aquí para el sandbox actual.
-
+ Otro aislamiento
-
+ Aislamiento de privilegios
-
+ Token de Sandboxie
-
+ Usar un Token personalizado de Sandboxie permite aislar mejor las sandboxes unas de otras, y muestra en la columna del usuario de los administradores de tareas el nombre de la caja a la que pertenece un proceso. Sin embargo, algunas soluciones de seguridad de terceros pueden tener problemas con tokens personalizados.
-
+ Ud. puede agrupar programas juntos y darles un nombre de grupo. Grupos de programa pueden ser usados con algunas de las configuraciones en lugar de nombres de programas. Grupos definidos para la sandbox sobreescribe grupos definidos en plantillas/templates.
-
+ Forzar Programas
-
+ Programas ingresados aqui, o programas iniciados en las ubicaciones ingresadas, seran puestan en esta sandbox automaticamente, a menos que sean iniciadas especificamente en otra sandbox.
-
+ Desactivar el proceso forzado y la carpeta para esta sandbox
-
+ Programas Emergentes
-
+ Programa Emergente
-
+ Carpeta Emergente
@@ -8069,183 +8067,177 @@ Esto se hace para evitar que procesos maliciosos dentro de la sandbox creen una
Forzar protección al montar
- Prevents processes in the sandbox from interfering with power operation
- Evitar que los procesos aislados interfieran con operaciones de energía
+ Evitar que los procesos aislados interfieran con operaciones de energía
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.Evitar que los procesos realicen capturas de pantalla de las ventanas aisladas
-
+ Permitir que procesos útiles de Windows accedan a procesos protegidos
-
+ Programas persistentes
-
+ Los programas persistentes se terminarán automáticamente si todavía están en ejecución después de que todos los demás procesos se hayan terminado.
-
+ Programas Líder
-
+ Si se definen procesos líder, todos los demás se tratan como procesos rezagados.
-
+ Opciones de Detención
-
+ Usar Indulgencia Persistente
-
+ No detener procesos persistentes con ventanas
-
+ Archivos
-
+ Configure qué procesos pueden acceder a Archivos, Carpetas y Tuberías (Pipes).
El acceso 'Abrir' solo se aplica a los binarios de programas ubicados fuera de la sandbox, puedes utilizar 'Abrir para Todos' en su lugar para hacer que se aplique a todos los programas, o cambiar este comportamiento en la pestaña de Políticas.
-
+ Registro
-
+ Configure qué procesos pueden acceder al Registro.
'Open' access only applies to program binaries located outside the sandbox, you can use 'Open for All' instead to make it apply to all programs, or change this behavior in the Policies tab.
-
+ IPC
-
+ Configure qué procesos pueden acceder a objetos IPC de NT como puertos ALPC y la memoria y el contexto de otros procesos.
Para especificar un proceso, utiliza '$:program.exe' como ruta.
-
+ Wnd
-
+ Clase Wnd
-
+ COM
-
+ ID de Clase
-
+ Configura qué procesos pueden acceder a objetos COM.
-
+ No usa COM virtualizado, Abrir acceso a la infraestructura COM del ordenador (no recomendado)
-
+ Políticas de Acceso
-
+ Aplicar Cerrar...=!<program>,... reglas también a todos los archivos ejecutables localizados en la sandbox.
-
+ Opciones de Red
-
+ Setear acceso a red/internet para procesos sin listar:
-
+ Reglas de testeo, Programas:
-
+ Puerto:
-
+ IP:
-
+ Protocolo:
-
+ X
-
+ Agregar Regla
-
-
-
+
+
+ Acción
@@ -8339,134 +8331,158 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.Cuando un archivo no se pueda migrar, ábrelo en cambio en modo solo lectura
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Deshabilitar Aislamiento de Seguridad
-
-
+
+ Protección de Caja
-
+ Proteger procesos en esta caja de procesos del ordenador
-
+ Permitir Proceso
-
+ Emitir mensaje 1318/1317 cuando un proceso anfitrión intenta acceder a un proceso en una sandbox/la raíz de la sandbox
-
+ Sandboxie-Plus es capaz de crear áreas aisladas confidenciales que proporcionan una protección robusta contra la vigilancia no autorizada o la manipulación por parte de los procesos del ordenador. Al utilizar una imagen de área aislada cifrada, esta característica ofrece el mayor nivel de confidencialidad operativa, asegurando la seguridad y la integridad de los procesos de la sandbox.
-
+ Denegar Proceso
- Block process from taking screenshots of windows not belonging to the containing sandbox
- Evitar que los procesos aislados usen métodos públicos de captura de imágenes de ventanas
+ Evitar que los procesos aislados usen métodos públicos de captura de imágenes de ventanas
-
+ Seguridad Avanzada
-
+ Usar un inicio de sesión Sandboxie en vez de un token anónimo
-
+ Los programas introducidos aquí podrán salir de esta sandbox cuando se inicien. También es posible capturarlos en otra sandbox, por ejemplo, para que tu navegador web siempre se abra en una caja dedicado.
-
+ <b><font color='red'>ADVERTENCIA DE SEGURIDAD</font>:</b> Usar <a href="sbie://docs/breakoutfolder">BreakoutFolder</a> y/o <a href="sbie://docs/breakoutprocess">BreakoutProcess</a> en combinación con directivas Open[File/Pipe]Path puede comprometer la seguridad, como también lo puede hacer el uso de <a href="sbie://docs/breakoutdocument">BreakoutDocument</a> permitiendo cualquier extensión * o insegura (*.exe;*.dll;*.ocx;*.cmd;*.bat;*.lnk;*.pif;*.url;*.ps1; etc...). Por favor, revise la sección de seguridad para cada opción en la documentación antes de usarla.
-
+ Configura qué procesos pueden acceder objetos de Escritorio como Windows y semejantes.
-
+ Puerto
-
+ IP
-
+ Protocolo
-
+ Precaución: Plataforma de Filtrado de Windows no esta habilitada con el controlador, por lo tanto estas reglas seran aplicadas solo en modo usuario y no pueden ser reforzadas!!! Esto significa que aplicaciones maliciosas pueden saltearlas.
-
+ Otras Opciones
-
+ Bloqueo de Puerto
-
+ Bloquear puertos SAMBA comunes
-
+ Bloquear DNS, UDP puerto 53
-
+ Recuperación Rápida
-
+ Recuperación Inmediata
-
+ Habilitar que Recuperación Inmediata pueda recuperar archivos tan rapido como son creados.
-
+ Varias opciones
-
+ Emular ventanas de sandbox para todos los procesos
@@ -8475,13 +8491,13 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.COM/RPC
-
+ Allow use of nested job objects (experimental, works on Windows 8 and later)Permitir el uso de objetos de trabajos anidados (experimental, funciona en Windows 8 y posterior)
-
+ Deshabilitar el uso de RpcMgmtSetComTimeout por defecto (esto puede resolver temas de compatibilidad)
@@ -8490,47 +8506,47 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.Aislamiento
-
+ Permitir programas en la sandbox administrar Hardware/Dispositivos
-
+ Abrir acceso a Administrador de Seguridad de Cuentas de Windows
-
+ Abrir acceso a Autoridad de Seguridad Local de Windows
-
+ Mejoras de seguridad
-
+ Usar el token original solo para llamadas al sistema NT aprovadas
-
+ Restringir acceso al controlador/dispositivo a solo los aprobados
-
+ Habilitar todas las mejoras de seguridad (crear una caja endurecida en seguridad)
-
+ Permitir leer la memoria de un proceso no aislado (no recomendado)
-
+ Emitir mensaje 2111 cuando se deniega el acceso a un proceso
@@ -8539,46 +8555,46 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.Aislamiento de Acceso
-
+ Disparadores
-
+ Este comando se ejecutará antes de que el contenido de la caja sea borrado
-
+ Evento
-
-
-
-
+
+
+
+ Ejecutar Comando
-
+ Iniciar Servicio
-
+ Estos eventos son excluidos acada vez que la caja es iniciada
-
+ Al inicio de la caja
-
-
+
+ Estos comandos son ejecutados fuera de la Sandbox justo despues de que el contenido de la caja es eliminado
@@ -8587,27 +8603,27 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.Al eliminar la caja
-
+ Estos comandos son ejecutados solo cuando la caja es inicializada. Para hacer que se ejecuten de nuevo, el contenido de la caja debe ser eliminado.
-
+ Al inicializar la caja
-
+ Al finalizar la caja
-
+ Aqui puede especificar acciones a ser ejecutadas automaticamente en varios eventos de la caja.
-
+
@@ -8616,23 +8632,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: Las configuraciones de Programas Forzados y Carpetas Forzadas para una sandbox no se aplican a cuentas de usuario que no pueden usar la sandbox.
-
+ Rastreo de llamadas API (rastrea todos los ganchos de SBIE)
-
+ Deshabilitar Monitor de Acceso a Recursos
-
+ Monitor de Acceso a Recursos
-
-
+
+ Cortafuegos de Red
@@ -8641,7 +8657,7 @@ Nota: Las configuraciones de Programas Forzados y Carpetas Forzadas para una san
Plantillas/Templates de Compatibilidad
-
+ Agregar Plantilla
@@ -8650,12 +8666,12 @@ Nota: Las configuraciones de Programas Forzados y Carpetas Forzadas para una san
Remover Plantilla
-
+ Plantillas de Carpetas
-
+
@@ -8664,23 +8680,23 @@ Please note that this values are currently user specific and saved globally for
Por favor note que estos valores son especificos para usuario y guardados globalmente para todas las cajas.
-
-
+
+ Valor
-
+ Accesibilidad
-
+ Para compensar la perdida de protección, por favor consulte configuración de "Soltar Permisos"en la pagina de seteo de Restricciones de grupo.
-
+ Lector de pantallas: JAWS, NVDA, Window-Eyes, Acceso a Sistema
@@ -8690,59 +8706,59 @@ Por favor note que estos valores son especificos para usuario y guardados global
Restricciones
-
+ Aplicar solución alternativa para ElevateCreateProcess (comportamiento heredado)
-
+ Usar comportamiento alternativo de objetos de escritorio para todos los procesos
-
+ Al Recuperar Archivo
-
+ Estos comandos son ejecutados SIN AISLAR después de que todos los procesos en esta sandbox hayan finalizado.
-
+ Ejecutar Comprobador de Archivos
-
+ Al Borrar Contenido
-
+ Protege los procesos en esta caja para evitar que sean accedidos por procesos anfitriones no aislados especificados.
-
-
+
+ Proceso
-
+ Añadir Opción
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Aquí puedes configurar opciones avanzadas por proceso para mejorar la compatibilidad y/o personalizar el comportamiento del aislamiento.
-
+ Opción
@@ -8751,37 +8767,42 @@ Por favor note que estos valores son especificos para usuario y guardados global
Registro de peticiones DNS
-
+ Rastreo de Syscall (crea una gran cantidad de salida)
-
+ Plantillas
-
+
+
+
+
+
+ La configuración siguiente habilita el uso de Sandboxie en combinación con software de accesibilidad. Por favor note que algunas medidas de seguridad de Sandboxie se pierden cuando esta configuración esta activo.
-
+ Editar sección ini
-
+ Editar ini
-
+ Cancelar
-
+ Guardar
@@ -8814,27 +8835,27 @@ Por favor note que estos valores son especificos para usuario y guardados global
QPlatformTheme
-
+ OK
-
+ Aplicar
-
+ Cancelar
-
+ &Si
-
+ &No
@@ -9038,12 +9059,12 @@ Por favor note que estos valores son especificos para usuario y guardados global
Opciones de Interfaz
-
+ Fuente de editor Ini
-
+ Opciones gráficas
@@ -9088,212 +9109,222 @@ Por favor note que estos valores son especificos para usuario y guardados global
Minimizar a bandeja
-
+ Elegir fuente
-
+ Restablecer fuente
-
+ Opciones de Ini
-
+ #
-
+ Editor de ini externo
-
+ Gestor de extensiones
-
+ Extensiones opcionales
-
+ Sandboxie-Plus ofrece numerosas opciones y soporta una amplia gama de extensiones. En esta página, puede configurar la integración de extensiones, plugins y otros componentes de terceros. Los componentes opcionales se pueden descargar de la web, y ciertas instalaciones pueden requerir privilegios administrativos.
-
+ Estado
-
+ Versión
-
+ Descripción
-
+ <a href="sbie://addons">actualizar lista de extensiones ahora</a>
-
+ Instalar
-
+ Configuración de extensión
-
+ Habilitar la creación de Disco de Ram
-
+ kilobytes
-
+ Asignar letra de disco al Disco de Ram
-
+ Soporte de Imagen de Disco
-
+ Límite de RAM
-
+ <a href="addon://ImDisk">Instalar el controlador ImDisk</a> para habilitar el soporte para Disco de Ram e Imagen de Disco.
-
+
+
+
+
+
+ Cuando un Disco de Ram ya se ha montado necesita desmontarlo para que esta opción tenga efecto.
-
+ * se aplica en la creación de disco
-
+ Patrocinio de Sandoxie
-
+ Este certificado de patrocinador ha expirado, por favor <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">obtenga un certificado actualizado</a>.
-
+ Obtener
-
+ Obtener/Actualizar/Renovar certificando usando Número de Serie
-
+ SBIE_-_____-_____-_____-_____
-
+ <a href="https://sandboxie-plus.com/go.php?to=sbie-use-cert">Guía de uso de certificado</a>
-
+ Actualizador de Sandboxie
-
+ Mantener listado de extensiones actualizado
-
+ Ajustes de actualizaciones
-
+ El canal Interno ofrece acceso anticipado a nuevas funciones y correcciones de errores que eventualmente serán lanzadas al público, así como todas las mejoras relevantes del canal estable.
A diferencia del canal de vista previa, no incluye cambios no probados, potencialmente problemáticos o experimentales que podrían no estar listos para un uso más amplio.
-
+ Buscar en el canal Interno
-
+ Nuevos instaladores completos del canal de lanzamientos seleccionado.
-
+ Actualizaciones Completas
-
+ Comprobar periódicamente por nuevas versiones de Sandboxie-Plus
-
+ Más acerca del <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">Canal Interno</a>
-
+ Mantener scripts de resolución de problemas actualizados
-
+ Intervalo de búsqueda de actualizaciones
-
+ Activar Modo Filtrado de Objeto Kernel
-
+ Enganchar llamadas de sistema Win32k seleccionadas para habilitar acceleración de GPU (experimental)
+
+
+
+
+
@@ -9341,7 +9372,7 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Usar íconos largos el lista de cajas *
-
+ Gran escalado DPI
@@ -9356,12 +9387,12 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Usar tema oscuro
-
+ Escalado de fuente
-
+ (Reinicio requerido)
@@ -9377,7 +9408,7 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Mostrar fondo de pantalla de "Pizza" en el listado de cajas *
-
+ %
@@ -9487,62 +9518,62 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Mostrar iconos de superposición para cajas y procesos
-
+ Los patrocinadores del proyecto Sandboxie-Plus pueden recibir un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de patrocinador</a>. Es como una clave de licencia, pero para personas increíbles que usan software de código abierto. :-)
-
+ Aislamiento de unidades USB
-
+ Volumen
-
+ Información
-
+ Sandbox para dispositivos USB:
-
+ Aislar automáticamente todas las unidades USB conectadas
-
+ Plantillas de Aplicacion
-
+ Compatibilidad de aplicación
-
+ Plantillas locales
-
+ Agregar Plantilla
-
+ Filtro de Texto
-
+ Esta lista contiene plantillas personalizadas creadas por el usuario para las opciones de sandbox
@@ -9563,8 +9594,8 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
-
-
+
+ Eliminar
@@ -9574,68 +9605,68 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Línea de Comandos
-
+ Patrocinio y Actualizaciones
-
+ Mantener Sandboxie actualizado con las versiones continuas de Windows y compatible con todos los navegadores web es una tarea interminable. Puede apoyar el desarrollo <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">contribuyendo directamente al proyecto</a>, mostrando su apoyo <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">comprando un certificado de patrocinador</a>, convirtiéndose en patrocinador al <a href="https://sandboxie-plus.com/go.php?to=patreon">suscribirse en Patreon</a>, o mediante una <a href="https://sandboxie-plus.com/go.php?to=donate">donación por PayPal</a>.<br />Su apoyo juega un papel crucial en el avance y mantenimiento de Sandboxie.
-
+ Parches rápidos para la versión instalada, actualizaciones del Templates.ini y traducciones.
-
+ Version UpdatesActualizaciones Incrementales
-
+ El canal previo incluye los últimos prelanzamientos de GitHub.
-
+ El canal estable incluye los últimos lanzamientos estales de GitHub.
-
+ Buscar en el canal Estable
-
+ Sandbox predeterminada:
-
+ Configuración de Sandboxie
-
+ Usar un inicio de sesión de Sandboxie en vez de un token anónimo
-
+ Ajustes de Sandboxie.ini
-
+ Alertas de programa
-
+ Emitir mensaje 1301 cuando un proceso forzado se ha deshabilitado
@@ -9644,22 +9675,22 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Compatibilidad
-
+ Editar Sección ini
-
+ Guardar
-
+ Editar ini
-
+ Cancelar
@@ -9668,7 +9699,7 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Soporte
-
+ Buscan en el canal Previo
@@ -9685,7 +9716,7 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Verificar periodicamente por actualizaciones de Sandboxie-Plus
-
+ En el futuro, no notificar sobre certificados al exprirar
@@ -9726,33 +9757,33 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Opciones Avanzadas
-
+ Protección de configuración
-
+ Sandbox <a href="sbie://docs/ipcrootpath">ipc root</a>:
-
+ Sandbox <a href="sbie://docs/keyrootpath">registry root</a>:
-
+ Borrar contraseña cuando la ventana principal se oculta
-
+ Only Administrator user accounts can use Pause Forced Programs Rules commandSolo cuentas de usuario de Administrador puede usar el comando Desactivar Programas Forzados
-
+ Sandbox <a href="sbie://docs/filerootpath">file system root</a>:
@@ -9792,12 +9823,12 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Iniciar Administrador de Sandbox
-
+ Configuración avanzada
-
+ Usar Plataforma de Filtrado de Windows para restringir acceso a red
@@ -9806,7 +9837,7 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Carpetas de usuario separadas
-
+ Características de Sandbox
@@ -9815,7 +9846,7 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Patrocinadores de el projecto Sandboxie-Plus reciben un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de patrocinador</a>. Es como una llave de licencia pero para gente maravillosa que usa software libre. :-)
-
+ Control de Programa
@@ -9824,17 +9855,17 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Configuración de Protección
-
+ Solo usuarios Administrador pueden hacer cambios
-
+ Para realizar cambios debe ingresar contraseña
-
+ Cambiar contraseña
@@ -9843,7 +9874,7 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Mantener Sandboxie actualizado con lanzamientos de actualizaciones de Windows y compatibilidad con navegadores es una tarea que nunca termina. Por favor considere patrocinar este trabajo con una donación.<br />Ud. puede patrocinar el desarrollo con una <a href="https://sandboxie-plus.com/go.php?to=donate">donación PayPal</a>, tambien con tarjetas de credito.<br />O puede proveer de patrocinamiento continuo con <a href="https://sandboxie-plus.com/go.php?to=patreon">Suscripción Patreon</a>.
-
+ Ingrese el certificado de patrocinador aqui
@@ -9852,17 +9883,17 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Configuración de soporte
-
+ Carpeta raiz portable
-
+ ...
-
+ Sandbox por defecto
@@ -9871,7 +9902,7 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Otras configuraciones
-
+ Observar cambios en Sandboxie.ini
@@ -9881,45 +9912,45 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
-
-
-
-
+
+
+
+ Nombre
-
+ Ruta
-
+ Remover Programa
-
+ Agregar Programa
-
+ Cuando cualquiera de estos programas es ejecutado fuera de cualquier sandbox, Sandboxie mostrara el mensaje SBIE1301.
-
+ Agregar Carpeta
-
+ Prevenir los programas listados de iniciarse en este sistema
-
+ Mostrar mensaje 1308 cuando un programa falla al iniciar
@@ -9928,22 +9959,22 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Compatibilidad de Software
-
+ El el futuro, no verificar compatibilidad de software
-
+ Habilitar
-
+ Deshabilitar
-
+ Sandboxie ha detectado los siguientes programas en su sistemas. Haga click en OK para aplicar la configuracion, lo cual mejora la compatibilidad de esos programas. Estas configuraciones afectan a todas las sandboxes existentes y nuevas.
diff --git a/SandboxiePlus/SandMan/sandman_fr.ts b/SandboxiePlus/SandMan/sandman_fr.ts
index 057c3b87..eb2e30ba 100644
--- a/SandboxiePlus/SandMan/sandman_fr.ts
+++ b/SandboxiePlus/SandMan/sandman_fr.ts
@@ -874,12 +874,12 @@ Erreur : %1
CCompletePage
-
+ Dépannage terminé
-
+
@@ -1254,15 +1254,13 @@ Utilisez « %USER% » pour enregistrer le bac de chaque utilisateur dans son pro
CMultiErrorDialog
- Nom de la fenêtre.
- Sandboxie-Plus - Erreur
+ Sandboxie-Plus - Erreur
-
- Message
+ Message
@@ -1734,11 +1732,11 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Sélectionner le répertoire
-
+
-
-
+
+
@@ -1748,8 +1746,8 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Tous les programmes
-
-
+
+
@@ -1787,7 +1785,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
+
@@ -1862,57 +1860,57 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Racine IPC du bac à sable.
-
+ Ajouter une option particulière :
-
-
+
+ Au démarrage
-
-
-
-
-
+
+
+
+
+ Lancer une commande
-
+ Démarrer un service
-
+ Lors de l'initialisation
-
+ Lors de la récupération de fichiers
-
+ Lors de la suppression de contenu
-
+ Lors de l'arrêt
-
+ Veuillez saisir un nom de fichier de programme pour lequel autoriser l'accès à ce bac à sable
-
+ Veuillez saisir un nom de fichier de programme pour lequel empêcher l'accès à ce bac à sable
@@ -1921,11 +1919,11 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
À la suppression
-
-
-
-
-
+
+
+
+
+ Saisir la ligne de commande à exécuter
@@ -1934,12 +1932,12 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Veuillez saisir le nom de fichier d'un programme
-
+ Refuser
-
+ %1 (%2)
@@ -2195,7 +2193,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Exécutables (*.exe *.cmd);;Tous les fichiers (*.*)
-
+ Veuillez saisir un identifiant de service
@@ -2273,7 +2271,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Bloquer en refusant l'accès aux périphériques réseaux
-
+
@@ -2387,17 +2385,17 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Erreur : %1
-
+ Voulez-vous vraiment supprimer le ou les modèles locaux sélectionnés ?
-
+ Seuls les modèles locaux peuvent être supprimés !
-
+
-
+ Search for OptionsRechercher dans les options
-
+ Bac : %1
-
+ Modèle : %1
-
+ Global : %1
-
+ Par défaut : %1
-
+ Ce bac à sable a été supprimé par conséquent la configuration ne peut pas être sauvegardée.
-
+ Certains changements n'ont pas encore été enregistrés, voulez-vous vraiment fermer cette fenêtre d'options ?
-
+ Saisir le programme :
@@ -2830,13 +2828,13 @@ Chemin complet : %4
Cette procédure de dépannage n'a pas pu être initialisée. Vous pouvez appuyer sur « Suivant » pour soumettre un rapport de problème.
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.Un problème interne est survenu ; cette procédure de dépannage ne peut pas continuer. Vous pouvez appuyer sur « Suivant » pour soumettre un rapport de problème.
-
+
@@ -2971,22 +2969,22 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
CSandBox
-
+ Dossier en attente : %1
-
+ Suppression du dossier : %1
-
+ Fusion des dossiers : %1 >> %2
-
+ Finalisation de la fusion des instantanés...
@@ -3075,7 +3073,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
CSandMan
-
+ Sandboxie-Plus v%1
@@ -3093,62 +3091,62 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Appuyer pour télécharger la mise à jour
-
+ Pas de processus forcé
-
+ Raccourci supprimé : %1
-
+ Raccourci vers %1 mis à jour
-
+ Raccourci vers %1 ajouté
-
+ Exécution d'OnBoxTerminate: %1
-
+ Suppression auto. du bac à sable %1
-
+ Répertoire d'%1 : %2
-
+ application
-
+ installation
-
+ pour un usage personnel
-
+ - pour un usage non commercial UNIQUEMENT
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3157,27 +3155,27 @@ Please check if there is an update for sandboxie.
Veuillez vérifier s'il y a une mise à jour pour Sandboxie.
-
+ Ne plus afficher ce message pour la version actuelle.
-
+ Votre version de Windows %1 excède les capacités de prise en charge actuellement connues de votre version de Sandboxie. Par conséquent, Sandboxie essaiera d'utiliser les derniers offsets connus, ce qui peut entrainer une instabilité du système.
-
+ Voulez-vous ignorer l'assistant d'installation ?
-
+ Échec de configuration du raccourci %1 ; erreur : %2
-
+ The evaluation periode has expired!!!La période d'évaluation a expiré !!!
@@ -3200,17 +3198,17 @@ Veuillez vérifier s'il y a une mise à jour pour Sandboxie.
Importation : %1
-
+ Pas de récupération
-
+ Pas de message
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3219,47 +3217,47 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera annulée la prochaine fois que Sandboxie sera mis à jour.
-
+ Importation/Exportation non disponible ; 7z.dll n'a pas pu être chargé
-
+ Échec de création de l'archive du bac
-
+ Échec d'ouverture de l'archive 7z
-
+ Échec de décompression de l'archive du bac
-
+ Le fichier 7z choisi n'est PAS une archive de bac
-
+ Réinitialiser les colonnes
-
+ Copier la cellule
-
+ Copier la rangée
-
+ Copier le tableau
@@ -3536,7 +3534,7 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
-
+ Initié Sandboxie-Plus [%1]
@@ -3567,7 +3565,7 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
-
+ À propos de Sandboxie-Plus
@@ -3749,7 +3747,7 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
Ce bac sera <a href="sbie://docs/boxencryption">chiffré</a> et <a href="sbie://docs/black-box">l'accès aux processus du bac sera surveillé</a>.
-
+ Bac à sable USB introuvable ; création : %1
@@ -3764,145 +3762,145 @@ Veuillez vérifier s'il y a une mise à jour pour Sandboxie.
Votre version de Windows excède les capacités de prise en charge de votre version de Sandboxie. Par conséquent, Sandboxie essaiera d'utiliser les derniers offsets connus, ce qui peut entrainer une instabilité du système.
-
-
-
+
+
+ (%1)
-
+ Le bac %1 est configuré pour utiliser des fonctions disponibles exclusivement aux adhérents au projet.
-
+ Le bac %1 est configuré pour utiliser des fonctions qui nécessitent un certificat d'adhérent <b>avancé</b>.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Mettez à jour votre certificat</a> afin de débloquer les fonctions avancées.
-
+ La fonction choisie nécessite un certificat d'adhérent <b>avancé</b>.
-
+ La fonction choisie est uniquement disponible aux adhérents au projet.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Devenez un adhérent au projet</a>, et recevez un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificat d'adhérent</a>.
-
+ Le certificat que vous essayez d'utiliser a été bloqué, ce qui veut dire qu'il a été invalidé pour une bonne raison. Toute tentative de l'utiliser constitue une violation de ses conditions d'utilisation !
-
+ La signature du certificat est invalide !
-
+ Le certificat ne convient pas à ce produit.
-
+ Le certificat est verrouillé par nœud.
-
+ Le certificat d'adhérent est invalide.
Erreur : %1
-
-
+
+ Ne plus demander
-
+ Voulez-vous arrêter tous les processus dans les bacs à sable chiffrés, puis démonter ces derniers ?
-
+ <b>ERREUR :</b> Le gestionnaire de Sandboxie-Plus (SandMan.exe) n'a pas une signature valide (SandMan.exe.sig). Veuillez télécharger une version fiable depuis la <a href="https://sandboxie-plus.com/go.php?to=sbie-get">page de téléchargement officielle</a>.
-
+ A all processes in a sandbox must be stopped before it can be renamed.Tous les processus du bac à sable doivent être arrêtés avant qu'il puisse être renommé.
-
+ Échec du déplacement de l'image du bac « %1 » vers « %2 »
-
+ The content of an un mounted sandbox can not be deletedLe contenu d'un bac à sable non monté ne peut pas être supprimé
-
+ %1
-
+ Voulez-vous ouvrir %1 dans un navigateur web dans un bac à sable ou en dehors ?
-
+ Dans un bac à sable
-
+ En dehors d'un bac à sable
-
+ Sensible à la casse
-
+ Regex
-
+ Surligner
-
+ Fermer
-
+ &Rechercher...
-
+ Toutes les colonnes
@@ -3967,11 +3965,11 @@ Voulez-vous faire la purge ?
-
-
-
-
-
+
+
+
+
+ Ne plus afficher ce message
@@ -4001,7 +3999,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
<br /><br />Ce bac <a href="sbie://docs/privacy-mode">empêche l'accès à tous les emplacements contenant les données de l'utilisateur</a>, sauf si spécifiquement autorisé dans les options d'accès aux ressources.
-
+ Opération inconnue '%1' demandée via la ligne de commande
@@ -4021,17 +4019,17 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
- Suppression du contenu du bac à sable
-
+ Exécution de OnBoxDelete : %1
-
+ Suppression automatisée du contenu de %1
-
+ Suppression automatisée du contenu de %1
@@ -4040,19 +4038,19 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Supression automatisée du contenu de %1
-
-
-
+
+
+ Sandboxie-Plus - Erreur
-
+ Échec de l'arrêt de tous les composants de Sandboxie
-
+ Impossible de démarrer les composants requis de Sandboxie
@@ -4092,12 +4090,12 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
<a href="sbie://update/apply" style="color: red;">Une nouvelle mise à jour de Sandboxie-Plus (%1) est prête</a>
-
+ Certains modèles de compatibilité (%1) sont manquants, probablement supprimés, voulez-vous les supprimer de tous les bacs ?
-
+ Purge des modèles supprimés...
@@ -4114,7 +4112,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Configuration chargée : %1
-
+ Dossier des données : %1
@@ -4123,7 +4121,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
- Portable
-
+
@@ -4132,27 +4130,27 @@ No will choose: %2
« Non » choisira : %2
-
+ Veuillez saisir la durée (en secondes) de suspension du forçage des programmes.
-
+ Le certificat d'adhérent n'est pas valide pour cette version, veuillez obtenir un certificat à jour
-
+ Ce certificat d'adhérent a expiré%1, veuillez obtenir un certificat à jour
-
+ , mais il reste valide pour la version actuelle
-
+ Le certificat d'adhérent expirera dans %1 jour(s), veuillez obtenir un certificat mis à jour
@@ -4173,30 +4171,30 @@ No will choose: %2
Le certificat d'adhérent est expiré
-
+ Bac à sable par défaut non trouvé ; création : %1
-
+ - NON connecté
-
+ Le programme %1 lancé dans le bac %2 sera arrêté dans 5 minutes car le bac a été configuré pour utiliser des fonctions uniquement disponibles aux adhérents du projet.
-
+ Le bac %1 est configuré pour utiliser des fonctions uniquement disponibles aux adhérents du projet ; ces réglages seront donc ignorés.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Devenez un adhérent du projet</a>, et recevez un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificat d'adhérent</a>.
@@ -4213,7 +4211,7 @@ No will choose: %2
%1 (%2) :
-
+ La fonction sélectionnée n'est disponible qu'aux adhérents au projet. Les processus lancés dans un bac à sable avec cette fonction activée sans certificat d'adhérent seront arrêtés après 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Devenez un adhérent du projet</a>, et recevez un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificat d'adhérent</a>.
@@ -4276,22 +4274,22 @@ No will choose: %2
-
+ Seuls les administrateurs peuvent modifier la configuration.
-
+ Veuillez saisir le mot de passe de la configuration.
-
+ Échec de la connexion : %1
-
+ Voulez-vous arrêter tous les processus dans tous les bacs à sable ?
@@ -4304,92 +4302,92 @@ No will choose: %2
Veuillez saisir la durée de désactivation du forçage des programmes.
-
+ Sandboxie-Plus a été démarré en mode portable et doit maintenant créer les services nécessaires. Cela demandera des privilèges d'administrateur.
-
+ ATTENTION : Un autre agent (probablement SbieCtrl.exe) gère déjà cette session de Sandboxie, veuillez le fermer d'abord et vous reconnecter pour prendre le contrôle.
-
+ Échec de l'opération de maintenance (%1)
-
+ Opération de maintenance terminée
-
+ Exécution de l'opération de maintenance, veuillez patienter...
-
+ Dans l'interface utilisateur de la version Plus, cette fonction a été intégrée à l'affichage principal de la liste des bacs à sable.
-
+ En utilisant le menu contextuel Bac/Groupe, vous pouvez déplacer les bacs et les groupes vers d'autres groupes. Vous pouvez également utiliser le glisser-déposer pour déplacer les éléments. Alternativement, vous pouvez aussi utiliser les touches fléchées tout en maintenant ALT enfoncée pour déplacer les éléments vers le haut ou le bas au sein de leur groupe.<br />Vous pouvez créer de nouveaux bacs et groupes depuis le menu du bac à sable.
-
+ Voulez-vous également réinitialiser les messages masqués des bacs (oui), ou seulement tous les messages du journal (non) ?
-
+ Les changements seront appliqués automatiquement à chaque fois que le fichier sera enregistré.
-
+ Les changements seront appliqués automatiquement dès que l'éditeur sera fermé.
-
+ La configuration de Sandboxie a été rechargée
-
+ Statut de l'erreur : 0x%1 (%2)
-
+ Inconnu
-
+ Tous les processus du bac à sable doivent être arrêtés pour que le contenu du bac puisse être supprimé
-
+ Échec de la copie des fichiers de données du bac
-
+ Échec de la suppression des fichiers de données de l'ancien bac
-
+ L'opération a été annulée par l'utilisateur
-
+ Code erreur inconnu : 0x%1
@@ -4406,23 +4404,23 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
<p>Une nouvelle version de Sandboxie-Plus a été téléchargée à l'emplacement suivant : </p><p><a href="%2">%1</a></p><p>Procéder à l'installation ? Si des programmes tournent dans les bacs à sable, ils seront arrêtés.</p>
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>À propos de Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 par DavidXanatos</p>
-
+ Cette copie de Sanboxie+ est certifiée pour : %1
-
+ Sandboxie+ est gratuit pour un usage personnel et non commercial.
-
+ Sandboxie-Plus est la poursuite en code source ouvert de Sandboxie.<br />Visitez <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> pour plus d'informations.<br /><br />%3<br /><br />Version du pilote : %1<br />Fonctions : %2<br /><br />Icônes provenant de <a href="https://icons8.com">icons8.com</a>
@@ -4431,77 +4429,77 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Statut d'erreur : %1
-
+ Les droits d'administrateur sont nécessaires pour cette opération.
-
+ Échec de l'exécution : %1
-
+ Échec de la connexion au pilote
-
+ Échec de la communication avec le service Sandboxie : %1
-
+ Un bac à sable incompatible %1 a été trouvé. Versions compatibles : %2
-
+ Impossible de trouver le chemin d'installation de Sandboxie.
-
+ Échec de la copie de la configuration du bac à sable %1 : %2
-
+ Un bac à sable du nom de %1 existe déjà
-
+ Échec de la suppression du bac à sable %1 : %2
-
+ Le nom du bac à sable ne peut pas comporter plus de 32 caractères.
-
+ Le nom du bac à sable ne peut pas être un nom de périphérique.
-
+ Le nom du bac à sable ne peut contenir que des lettres, des chiffres et des traits de soulignement qui seront affichés comme des espaces.
-
+ Échec de l'arrêt de tous les processus.
-
+ La protection contre la suppression est activée pour ce bac à sable.
-
+ Erreur lors de la suppression du dossier du bac à sable : %1
@@ -4510,22 +4508,22 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Un bac à sable doit être vidé avant de pouvoir être renommé.
-
+ Un bac à sable doit être vidé avant de pouvoir être supprimé.
-
+ Impossible de déplacer le dossier « %1 » vers « %2 »
-
+ Cette opération d’instantané ne peut pas être effectuée lorsque des processus sont encore en cours dans le bac.
-
+ Impossible de créer un répertoire pour le nouvel instantané
@@ -4538,32 +4536,32 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Dossier d'installation : %1
-
+ Version de Sandboxie-Plus : %1 (%2)
-
+ Configuration actuelle : %1
-
+ Instantané introuvable
-
+ Erreur de fusion des répertoires de l'instantané « %1 » avec « %2 », l'instantané n'a pas été entièrement fusionné.
-
+ Impossible de supprimer l'ancien répertoire de l'instantané « %1 »
-
+ Impossible de supprimer un instantané qui est partagé par plusieurs autres instantanés
@@ -4572,27 +4570,27 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Impossible de supprimer l'ancienne base de données
-
+ Vous n'êtes pas autorisé à mettre à jour la configuration dans la section « %1 »
-
+ Échec de la définition du paramètre de configuration %1 dans la section %2 : %3
-
+ Impossible de créer un instantané d'un bac à sable vide.
-
+ Un bac à sable portant ce nom existe déjà
-
+ Le mot de passe de la configuration ne doit pas comporter plus de 64 caractères
@@ -4601,7 +4599,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Statut d'erreur inconnu : %1
-
+ L'opération a échoué pour %1 objet.
@@ -4610,7 +4608,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Voulez-vous ouvrir %1 dans un navigateur web dans le bac à sable (oui) ou en dehors (non) ?
-
+ Mémoriser ce choix pour plus tard.
@@ -5680,17 +5678,17 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
CSelectBoxWindow
-
+ Sandboxie-Plus - Exécuter dans un bac à sable
-
+ Êtes-vous sûr de vouloir exécuter le programme en dehors d'un bac à sable ?
-
+ Veuillez sélectionner un bac à sable.
@@ -5817,15 +5815,15 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
%1 %
-
-
-
+
+
+ Exécuter dans un bac à &sable
-
+ Navigateur web dans un bac à sable
@@ -5834,7 +5832,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Ce certificat d'adhérent a expiré, veuillez <a href="sbie://update/cert">obtenir un certificat à jour</a>.
-
+ <br /><font color='red'>Pour la version actuelle, les fonctions Plus demeurent activées</font>, mais vous n'avez plus accès aux services Sandboxie-Live, incluant les mises à jour de compatibilité et la base de données de dépannage.
@@ -5843,12 +5841,12 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Ce certificat d'adhérent va <font color='red'>expirer dans %1 jour(s)</font>, veuillez <a href="sbie://update/cert">obtenir une mise à jour du certificat</a>.
-
+ Exécuter &en dehors d'un bac à sable
-
+ Cela ne semble pas être un certificat. Veuillez saisir le certificat dans son intégralité, et non uniquement une partie.
@@ -5858,7 +5856,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Cela ne semble pas être un certificat, veuillez entrer le certificat dans son intégralité.
-
+ Search for SettingsRechercher dans les paramètres
@@ -5902,78 +5900,78 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Télécharger & installer
-
+ Rechercher un programme
-
+ Ajouter un modèle pour : %1
-
+ Choisir la police
-
+ Réinitialiser la police
-
+ %0, %1 pt
-
+ Veuillez saisir l'identifiant du message
-
+ Sélectionner le programme
-
+ Exécutables (*.exe *.cmd)
-
-
+
+ Veuillez saisir un titre de menu
-
+ Veuillez saisir une commande
-
+ kilo-octets (%1)
-
+ Volume non branché
-
+ Ce certificat d'adhérent a expiré, veuillez <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">obtenir un certificat à jour</a>.
-
+ <br /><font color='red'>Les fonctions « Plus » seront désactivées dans %1 jour(s).</font>
-
+ Ce certificat d'adhérent va <font color='red'>expirer dans %1 jour(s)</font>, veuillez <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">obtenir une mise à jour du certificat</a>.
@@ -5982,87 +5980,87 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Récupération du certificat...
-
+ Contributeur
-
+ Éternel
-
+ Entreprise
-
+ Personnel
-
+ Grand contributeur Patreon
-
+ Contributeur Patreon
-
+ Famille
-
+ Évaluation
-
+ Type %1
-
+ Avancé
-
+ Niveau max
-
+ Niveau %1
-
+ Certificat d'adhérent nécessaire pour l'accès
-
+ Certificat d'adhérent nécessaire pour l'automatisation
-
+ Ce certificat est malheureusement invalide pour la version actuelle, vous avez besoin d'obtenir un nouveau certificat ou de rétrograder à une version moins récente.
-
+ Bien que ce certificat ait expiré, les fonctions Plus demeurent activées pour la version actuellement installée. Cependant, vous n'aurez plus accès aux services Sandboxie-Live, incluant les mises à jour de compatibilité et la base de données de dépannage en ligne.
-
+ Ce certificat a malheureusement expiré, vous avez besoin d'en obtenir un nouveau.
@@ -6071,51 +6069,51 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
<br /><font color='red'>Pour cette version, les fonctions « Plus » demeurent activées.</font>
-
+ <br />Les fonctions « Plus » ne sont plus activées.
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.Vous essayez d'utiliser une fonction « Clé de mise à jour » sans avoir saisi un certificat d'adhérent pré-existant. Veuillez remarquer que ce genre de clé (<b>comme clairement indiqué en gras sur le site web</b) nécessite que vous ayez un certificat d'adhérent pré-existant valide ; c'est inutile sans lui.<br />Si vous voulez utiliser les fonctions avancées, vous devez obtenir à la fois un certificat standard et la clé de mise à jour de fonction pour débloquer la fonction avancée.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.Vous essayez d'utiliser une clé de renouvellement sans avoir saisi un certificat d'adhérent pré-existant. Veuillez remarquer que ce genre de clé (<b>comme clairement indiqué en gras sur le site web</b) nécessite que vous ayez un certificat d'adhérent pré-existant valide ; c'est inutile sans lui.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u><br /><br /><u>Si vous n'avez pas lu la description du produit et obtenu cette clé par erreur, veuillez nous contacter par courriel (fourni sur notre site web) afin de résoudre ce problème.</u>
-
+ Récupération du certificat...
-
+ Error retriving certificate: %1Erreur lors de la récupération du certificat : %1
-
+ Erreur inconnue (probablement un problème de réseau)
-
+ Accueil
@@ -6133,7 +6131,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Ce certificat est malheureusement obsolète.
-
+ Merci pour votre soutien au développement de Sandboxie-Plus.
@@ -6142,88 +6140,88 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Ce certificat d'adhérent n'est pas valide.
-
+ Mise à jour disponible
-
+ Installé
-
+ par %1
-
+ (site web d'information)
-
+ Ce module est obligatoire et ne peut pas être supprimé.
-
-
+
+ Sélectionner le dossier
-
+ <a href="check">Vérifier maintenant</a>
-
+ Veuillez saisir le nouveau mot de passe de configuration.
-
+ Veuillez saisir à nouveau le mot de passe de la configuration.
-
+ Les mots de passe ne correspondent pas, veuillez réessayer.
-
+ Processus
-
+ Dossier
-
+ Veuillez saisir le nom de fichier du programme
-
+ Veuillez saisir l'identifiant du modèle
-
+ Erreur : %1
-
+ Voulez-vous vraiment supprimer le ou les modèles locaux sélectionnés ?
-
+ %1 (Actuel)
@@ -6355,32 +6353,32 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
CSubmitPage
-
+ Soumettre un rapport de problème
-
+ Description détaillée du problème
-
+ Joindre Sandboxie.ini
-
+ La compatibilité de bac à sable est liée à la configuration, joindre le fichier Sandboxie.ini file aide donc beaucoup à trouver le problème.
-
+ Joindre les journaux
-
+ Select partially checked state to sends only message log but no trace log.
@@ -6389,70 +6387,70 @@ Before sending you can review the logs in the main window.
Avant l'envoi, vous pouvez consulter les journaux dans la fenêtre principale.
-
+ Joindre les fichiers de vidage des plantages
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.Une application a planté pendant la procédure de dépannage ; joindre un fichier de vidage de plantage peut aider avec le débogage.
-
+ Adresse électronique
-
+ Vous avez la possibilité de fournir une adresse électronique afin de recevoir une alerte une fois qu'une solution à votre problème a été trouvée.
-
+ Nous nous excusons pour le désagrément auquel vous êtes actuellement confronté avec Sandboxie-Plus.
-
+ Malheureusement, le répannage automatique a échoué.
-
+ Malheureusement, il n'y a pas de procédure de dépannage automatique disponible pour le problème particulier que vous avez décrit.
-
+ Si vous voulez soumettre un rapport de problème, veuillez consulter le rapport ci-dessous et appuyer sur « Terminer ».
-
+ Compression des journaux
-
+ Compression des fichiers de vidage
-
+ Soumission du rapport de problème...
-
+ Échec de soumission du rapport de problème ; erreur %1
Veuillez le soumettre à nouveau, sans joindre le journal.
-
+ Your issue report have been successfully submitted, thank you.Votre rapport de problème a été soumis avec succès, merci.
@@ -7127,32 +7125,32 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Structure de bac
-
+ Options de sécurité
-
+ Renforcement de la sécurité
-
-
-
-
-
+
+
+
+
+ Protège le système des processus du bac à sable
-
+ Restrictions d'élévation des privilèges
-
+ Retirer les droits des groupes Administrateurs et Utilisateurs Avancés
@@ -7162,12 +7160,12 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
px de large
-
+ Faire croire aux applications qu'elles fonctionnent en mode administrateur (permet d'exécuter les installeurs en toute sécurité)
-
+ ATTENTION : Lors de l'exécution sous l'administrateur intégré, les processus ne peuvent pas abandonner les privilèges d''administrateur.
@@ -7177,7 +7175,7 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Apparence
-
+ (Recommandé)
@@ -7252,22 +7250,22 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Sécurité
-
+ Améliorations de sécurité
-
+ Utiliser le jeton d'origine uniquement pour les appels système NT approuvés
-
+ Restreindre l'accès au pilote/périphérique uniquement à ceux approuvés
-
+ Activer toutes les améliorations de sécurité (créer un bac à sécurité renforcée)
@@ -7285,27 +7283,27 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Autoriser le spouleur d'impression à imprimer vers des fichiers situés en dehors du bac
-
+ Supprimer la restriction du spouleur ; les imprimantes peuvent être installées en dehors du bac
-
+ Bloquer l'accès en lecture au presse-papiers
-
+ Autoriser le stockage protégé du système
-
+ Bloquer l'accès au spouleur d'imprimantes
-
+ Autres restrictions
@@ -7315,12 +7313,12 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Restrictions d'impression
-
+ Restrictions de réseau
-
+ Bloquer les fichiers et dossiers du réseau, sauf s'ils sont spécifiquement ouverts
@@ -7329,65 +7327,65 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Empêcher la modification des paramètres du réseau et du pare-feu
-
+ Menu Exécuter
-
+ Vous pouvez configurer des entrées personnalisées pour le menu Exécuter du bac à sable.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Nom
-
+ Ligne de commande
-
+ Ajouter un programme
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Supprimer
@@ -7401,13 +7399,13 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Ici, vous pouvez spécifier les programmes ou les services qui doivent être lancés automatiquement dans le bac à sable lorsqu'il est activé
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Type
@@ -7420,21 +7418,21 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Ajouter un service
-
+ Groupes de programmes
-
+ Ajouter un groupe
-
-
-
-
-
+
+
+
+
+ Ajouter un programme
@@ -7443,57 +7441,57 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Programmes forcés
-
+ Ajouter un dossier
-
-
-
+
+
+ Chemin
-
+ Ajouter un programme
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Afficher les modèles
-
+ Remarque de sécurité : Les applications avec des droits étendus exécutées sous la supervision de Sandboxie, avec un jeton administrateur ou système, ont plus de possibilités de contourner l'isolation et de modifier le système en dehors du bac à sable.
-
+ Permettre à MSIServer de s'exécuter avec un jeton de système dans un bac à sable et d'appliquer d'autres exceptions si nécessaire
-
+ Remarque : Les exemptions de l'installeur MicroSoft (MSI) ne devraient pas être nécessaires, mais si vous rencontrez des problèmes lors de l'installation d'un paquetage MSI auquel vous faites confiance, cette option peut aider l'installation à se terminer avec succès. Vous pouvez également essayer de désactiver la suppression des droits d'administrateur.
@@ -7527,32 +7525,32 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Droits d'administrateur
-
+ Ouvrir le magasin d'identifiants Windows (mode utilisateur)
-
+ Empêcher les changements aux paramètres réseaux et règles du pare-feu (mode utilisateur)
-
+ Autoriser la lecture de la mémoire des processus hors des bacs à sable
-
+ Émettre un message 2111 lorsque l'accès à un processus est refusé
-
+ Isolation de sécurité
-
+ Adcanced SecuritySécurité avancée
@@ -7562,54 +7560,54 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Utiliser un identifiant de Sandboxie au lieu d'un jeton anonyme (expérimental)
-
+ Autres isolations
-
+ Isolation des privilèges
-
+ Jeton de Sandboxie
-
+ L'utilisation d'un jeton de Sandboxie personnalisé permet de mieux isoler les bacs à sable individuels, et d'afficher dans la colonne Utilisateurs des gestionnaires des tâches le nom du bac dans lequel un processus s'exécute. Certaines solutions de sécurité tierces peuvent cependant avoir des problèmes avec les jetons personnalisés.
-
+ Vous pouvez regrouper des programmes ensemble et leur donner un nom de groupe. Les groupes de programmes peuvent être utilisés avec certains des paramètres à la place des noms de programmes. Les groupes définis pour le bac remplacent les groupes définis dans les modèles.
-
+ Programmes forcés
-
+ Les programmes saisis ici, ou les programmes lancés à partir des emplacements saisis, seront placés dans ce bac à sable automatiquement, à moins qu'ils ne soient explicitement lancés dans un autre bac à sable.
-
+ Programmes d'évasion
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.Les programmes saisis ici seront autorisés à s'évader de ce bac lors de leur démarrage, de sorte que vous puissiez les capturer dans un autre bac, par exemple pour que votre navigateur web s'ouvre toujours dans un bac dédié. Cette fonction nécessite qu'un certificat d'adhérent valide soit installé.
-
-
+
+ Comportement d'arrêt
@@ -7634,32 +7632,32 @@ If leader processes are defined, all others are treated as lingering processes.<
Si des processus directeurs sont définis, tous les autres sont traités comme des processus persistants.
-
+ Restrictions de démarrage
-
+ Émettre un message 1308 lorsqu'un programme échoue à démarrer
-
+ Autoriser uniquement les programmes sélectionnés à démarrer dans ce bac *
-
+ Empêcher les programmes sélectionnés de démarrer dans ce bac
-
+ Autoriser tous les programmes à démarrer dans ce bac
-
+ * Remarque : Les programmes installés dans ce bac ne pourront pas démarrer du tout.
@@ -7668,37 +7666,37 @@ Si des processus directeurs sont définis, tous les autres sont traités comme d
Restrictions réseau
-
+ Restrictions de processus
-
+ Émettre un message 1307 lorsqu'un programme se voit refuser l'accès à Internet
-
+ Demander à l'utilisateur s'il doit autoriser une exemption du blocus
-
+ Remarque : Les programmes installés dans ce bac à sable ne pourront pas accéder à Internet du tout.
-
-
-
-
-
-
+
+
+
+
+
+ Accès
-
+ Définir l'accès réseau/Internet pour les processus non listés :
@@ -7707,44 +7705,44 @@ Si des processus directeurs sont définis, tous les autres sont traités comme d
Restrictions réseau
-
+ Règles de test ; Programme :
-
+ Port :
-
+ IP :
-
+ Protocole :
-
+ X
-
+ Ajouter une règle
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Programme
@@ -7753,13 +7751,13 @@ Si des processus directeurs sont définis, tous les autres sont traités comme d
Restrictions diverses
-
+ Normalement « Programme d'évasion »Ajouter un programme
-
+ Normalement « Dossier d'évasion »Ajouter un dossier
@@ -7790,38 +7788,38 @@ Si des processus directeurs sont définis, tous les autres sont traités comme d
Définir le mot de passe
-
+ Désactiver l'isolation de sécurité
-
-
+
+ Protection du bac
-
+ Protéger les processus de ce bac des processus de l'hôte
-
+ Autoriser un processus
-
+ Émettre un message 1318/1317 lorsqu'un processus de l'hôte tente d'accéder à un processus dans un bac ou à la racine du bac
-
+ Sandboxie-Plus est capable de créer des bacs à sable confidentiels qui fournissent une protection robuste contre la surveillance non autorisée ou la falsification par des processus de l'hôte. En utilisant une image de bac à sable chiffrée, cette fonction fournit le plus haut niveau de confidentialité opérationnelle, assurant la sécurité et l'intégrité des processus des bacs.
-
+ Bloquer un processus
@@ -7831,115 +7829,109 @@ Si des processus directeurs sont définis, tous les autres sont traités comme d
Forcer la protection lors du montage
- Prevents processes in the sandbox from interfering with power operation
- Empêcher les processus dans le bac à sable d'interférer avec des opérations d'alimentation
+ Empêcher les processus dans le bac à sable d'interférer avec des opérations d'alimentation
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.Empêcher les processus de capturer des images de la fenêtre depuis des fenêtres dans le bac à sable
-
+ Autoriser les processus Windows utiles à accéder aux processus protégés
-
+ Utiliser un identifiant de Sandboxie au lieu d'un jeton anonyme
-
+ <b><font color='red'>AVERTISSEMENT DE SÉCURITÉ</font> :</b> L'utilisation de <a href="sbie://docs/breakoutfolder">BreakoutFolder</a> et/ou <a href="sbie://docs/breakoutprocess">BreakoutProcess</a> en combinaison avec des directives Open[File/Pipe]Path peut compromettre la sécurité, de même que l'utilisation de <a href="sbie://docs/breakoutdocument">BreakoutDocument</a> autorisant tout (*) ou autorisant des extensions potentiellement non fiables (*.exe;*.dll;*.ocx;*.cmd;*.bat;*.lnk;*.pif;*.url;*.ps1 ; etc…). Veuillez consulter la section de sécurité de chaque option dans la documentation avant utilisation.
-
+ Programmes persistants
-
+ Les programmes persistants seront automatiquement arrêtés s'ils sont toujours actifs après que tous les autres processus ont été arrêtés.
-
+ Programmes chefs
-
+ Si des processus chefs sont définis, tous les autres sont traités comme des processus persistants.
-
+ Options d'arrêt
-
+ Être clément envers les programmes persistants
-
+ Ne pas arrêter les processus persistants en même temps que les fenêtres
-
+ Fichiers
-
+ Configure quels processus peuvent accéder aux fichiers, dossiers et Pipes (« | »).
L'accès « Autorisé » s'applique uniquement aux binaires des programmes situés en dehors du bac à sable, vous pouvez utiliser « Autorisé pour tous » à la place pour l'appliquer à tous les programmes, ou modifier ce comportement dans l'onglet Politiques.
-
+ Registre
-
+ Configure quels processus peuvent accéder au registre.
L'accès « Autorisé » s'applique uniquement aux binaires des programmes situés en dehors du bac à sable, vous pouvez utiliser « Autorisé pour tous » à la place pour l'appliquer à tous les programmes, ou modifier ce comportement dans l'onglet Politiques.
-
+ IPC
-
+ Configure quels processus peuvent accéder aux objets NT IPC comme les ports ALPC et le contexte et la mémoire des autres processus.
Pour définir un processus, utiliser « $:programme.exe » comme chemin.
-
+ Wnd
-
+ Classe Wnd
@@ -7949,70 +7941,70 @@ Pour définir un processus, utiliser « $:programme.exe » comme chemin.Configure quels processus peuvent accéder aux objets de bureau tels que les fenêtres et similaires.
-
+ COM
-
+ Id de classe
-
+ Configure quels processus peuvent accéder aux objets COM.
-
+ Ne pas utiliser de COM virtualisé ; ouvrir l'accès à l'infrastructure COM de l'hôte (non recommandé)
-
+ Politiques d'accès
-
+ Appliquer les règles « Close...=!<program>,... » également à tous les binaires situés dans le bac à sable
-
+ Options de réseau
-
-
-
+
+
+ Action
-
+ Port
-
+ IP
-
+ Protocole
-
+ ATTENTION : La plateforme de filtrage Windows n'est pas activée avec le pilote, par conséquent ces règles seront exécutées uniquement en mode utilisateur et ne pourront pas être imposées !!! Cela signifie que les applications malveillantes peuvent les contourner.
-
+ Accès aux ressources
@@ -8029,37 +8021,37 @@ L'accès « Autorisé » aux fichiers et aux clés ne s'applique qu&ap
Pour l'accès aux fichiers, vous pouvez utiliser « Autorisé pour tous » pour qu'il s'applique à tous les programmes.
-
+ Ajouter un fichier ou un dossier
-
+ Ajouter une classe Wnd
-
+ Descendre
-
+ Ajouter un chemin IPC
-
+ Ajouter une clé de registre
-
+ Ajouter un objet COM
-
+ Monter
@@ -8076,84 +8068,84 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Toujours direct » pour
Appliquer ferme les directives de...=!<programme>,... ainsi que tous les binaires situés dans le bac à sable.
-
+ Récupération de fichiers
-
+ Ajouter un dossier
-
+ Ignorer une extension
-
+ Ignorer un dossier
-
+ Activer l'invite de récupération immédiate pour pouvoir récupérer les fichiers dès leur création
-
+ Vous pouvez exclure des dossiers, des types de fichiers, ou des extensions de fichiers de la récupération immédiate.
-
+ Lorsque la fonction de récupération rapide est invoquée, les dossiers suivants sont contrôlés pour vérifier la présence de contenu dans le bac à sable.
-
+ Options avancées
-
+ Divers
-
+ Ne pas modifier les noms des classes de fenêtres créées par des programmes en bac à sable
-
+ Ne pas démarrer les services en bac à sable en utilisant un jeton système (recommandé)
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Protège la propre intégrité du bac à sable
-
+ Retirer les privilèges critiques des processus tournant avec un jeton SYSTÈME
-
-
+
+ (Sécurité critique)
-
+ Protéger les processus SYSTÈME du bac à sable des processus non privilégiés
@@ -8162,12 +8154,12 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Toujours direct » pour
Isolation du bac à sable
-
+ Forcer l'utilisation de fichiers Manifest factices personnalisés (ancien comportement)
-
+ Contrôle des programmes
@@ -8180,34 +8172,34 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Toujours direct » pour
Politiques d'accès aux ressources
-
+ La spécificité de la règle est une mesure de l'efficacité avec laquelle une règle donnée correspond à un chemin d'accès particulier. En d'autres termes, la spécificité est la longueur en caractère depuis le début du chemin d'accès jusqu'à la dernière sous-chaîne non générique (wildcard) correspondante. Une règle qui ne correspondrait qu'à des types de fichiers tels que "*.tmp" aurait la spécificité la plus élevée, car elle correspondrait toujours à l'intégralité du chemin d'accès au fichier.
Le niveau de correspondance du processus a une priorité plus élevée que la spécificité et décrit comment une règle s'applique à un processus donné. Les règles s'appliquant par nom ou groupe de processus ont le niveau de correspondance le plus fort, suivi par la correspondance par négation (c'est-à-dire les règles s'appliquant à tous les processus sauf celui donné), tandis que les niveaux de correspondance les plus bas sont des correspondances globales, c'est-à-dire des règles qui s'appliquent à n'importe quel processus.
-
+ Hiérarchiser les règles en fonction de leur spécificité et du niveau de correspondance des processus
-
+ Mode confidentialité ; bloquer tous les accès aux emplacements de fichiers et de registre à l'exception des génériques du système
-
+ Mode d'accès
-
+ Lorsque le mode Confidentialité est activé, les processus du bac à sable ne peuvent lire que C:\Windows\*, C:\Program Files\* et certaines parties du registre HKLM. Tous les autres emplacements nécessitent un accès explicite pour pouvoir être lus et/ou écrits. Dans ce mode, la spécificité des règles est toujours activée.
-
+ Politiques des règles
@@ -8216,23 +8208,23 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Appliquer également les directives Close...=!<program>,... à tous les binaires situés dans le bac à sable.
-
+ Appliquer les directives « Autorisé » concernant les fichiers et les clés seulement aux binaires situés en dehors du bac à sable
-
+ Démarrer le RpcSs du bac à sable en tant que processus SYSTÈME (non recommandé)
-
+ Autoriser uniquement les processus privilégiés à accéder au gestionnaire des services
-
-
+
+ Compatibilité
@@ -8241,7 +8233,7 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Ouvrir l'accès à l'infrastructure COM (non recommandé)
-
+ Ajouter les processus du bac à des objets de traitement (job objects) (recommandé)
@@ -8250,7 +8242,7 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Isolation COM
-
+ Émuler une Station Windows en bac à sable pour tous les processus
@@ -8259,13 +8251,13 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
COM/RPC
-
+ Allow use of nested job objects (experimental, works on Windows 8 and later)Autoriser l'utilisation d'objets de travail imbriqués (fonctionne sur Windows 8 et plus)
-
+ Désactiver l'utilisation de RpcMgmtSetComTimeout par défaut (cela peut résoudre des problèmes de compatibilité)
@@ -8274,12 +8266,12 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Isolation
-
+ L'isolation de sécurité par l'utilisation d'un jeton de processus fortement restreint est le principal moyen utilisé par Sandboxie pour appliquer les restrictions du bac à sable. Lorsque cette fonction est désactivée, le bac fonctionne en mode conteneur d'applications, c'est-à-dire qu'il ne fournit plus de sécurité fiable, mais seulement une simple compartimentation des applications.
-
+ Allow sandboxed programs to managing Hardware/DevicesAutoriser les programmes en bac à sable à gérer le matériel/les périphériques
@@ -8293,32 +8285,32 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
De multiples fonctions avancées d'isolation peuvent casser la compatibilité avec certaines applications. Si vous utilisez ce bac à sable <b>NON par sécurité</b>, mais uniquement pour de la portabilité d'application, changer ces options permettra de restaurer la compatibilité en sacrifiant un peu de sécurité.
-
+ Autoriser l'accès au gestionnaire de comptes de sécurité Windows (WSAM)
-
+ Autoriser l'accès à l'autorité de sécurité locale de Windows (WLSA)
-
+ Isolation et filtrage de sécurité
-
+ Désactiver le filtrage de sécurité (non recommandé)
-
+ Le filtrage de sécurité est utilisé par Sandboxie pour imposer des restrictions d'accès au système de fichiers, au registre, et également aux processus.
-
+ Les options ci-dessous peuvent être utilisées sans risque si vous n'accordez pas de droits d'administrateur.
@@ -8343,41 +8335,41 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Ici, vous pouvez spécifier une liste de commandes qui sont exécutées chaque fois que le bac à sable est initialement rempli.
-
+ Déclencheurs
-
+ Évènements
-
-
-
-
+
+
+
+ Lancer une commande
-
+ Démarrer un service
-
+ Ces évènements sont exécutés à chaque fois qu'un bac à sable est démarré.
-
+ Au démarrage du bac
-
-
+
+ Ces commandes sont lancées EN DEHORS DU BAC juste avant que le contenu du bac soit supprimé.
@@ -8386,52 +8378,52 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
À la suppression
-
+ Ces commandes sont exécutées lorsqu'un bac à sable est initialisé. Pour les lancer à nouveau, le contenu du bac doit être supprimé.
-
+ À l'initialisation du bac
-
+ Vous pouvez spécifier ici des actions à exécuter automatiquement lors de divers évènements.
-
+ Masquage des processus
-
+ Ajouter un processus
-
+ Masquer les processus de l'hôte des processus s'exécutant dans le bac à sable.
-
+ Ne pas permettre aux processus en bac à sable de voir les processus en cours d'exécution dans d'autres bacs
-
+ Utilisateurs
-
+ Restreindre le moniteur d'accès aux ressources aux administrateurs uniquement
-
+ Ajouter un utilisateur
@@ -8440,7 +8432,7 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Supprimer l'utilisateur
-
+
@@ -8449,7 +8441,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Remarque : Les paramètres Programmes forcés et Dossiers forcés d'un bac à sable ne s'appliquent pas aux comptes utilisateurs qui ne peuvent pas utiliser le bac.
-
+ Traçage
@@ -8459,22 +8451,22 @@ Remarque : Les paramètres Programmes forcés et Dossiers forcés d'un bac
Tracer les appels API (nécessite que LogAPI soit installé dans le répertoire de Sandboxie)
-
+ Tracer les Pipes
-
+ Enregistrer toutes les SetError dans le journal de traçage (crée beaucoup de sorties)
-
+ Enregistrer la sortie de débogage dans le journal de traçage
-
+
-
+ Tracer les fichiers
-
+ Désactiver le moniteur d'accès aux ressources
-
+ Tracer IPC
-
+ Tracer l'interface graphique
-
+ Moniteur d'accès aux ressources
-
+ Traçage des accès
-
+ Tracer les classes COM
-
+ Tracer les clés
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Pare-feu réseau
-
+ Ces commandes s'exécutent EN DEHORS DU BAC après que tous les processus dans le bac à sable se soient arrêtés.
-
+ Tracer les appels API (trace tous les crochets SBIE)
-
+ Débogage
-
+ ATTENTION, ces options peuvent désactiver les garanties de sécurité de base et briser la sécurité du bac à sable !!!
-
+ Ces options sont destinées à déboguer les problèmes de compatibilité, veuillez ne pas les utiliser en production.
-
+ Modèles d'applications
@@ -8577,22 +8594,22 @@ au lieu de « * ».
Modèles de compatibilité
-
+ Filtre de catégorie :
-
+ Filtre de texte :
-
+ Ajouter un modèle
-
+ Cette liste contient un grand nombre de modèles améliorant la compatibilité du bac à sable.
@@ -8601,17 +8618,17 @@ au lieu de « * ».
Supprimer le modèle
-
+ Catégorie
-
+ Dossiers des modèles
-
+
@@ -8620,23 +8637,23 @@ Please note that this values are currently user specific and saved globally for
Veuillez noter que ces valeurs sont actuellement spécifiques à l'utilisateur et enregistrées globalement pour tous les bacs.
-
-
+
+ Valeur
-
+ Accessibilité
-
+ Pour compenser la perte de protection, veuillez consulter la page d'abandon des droits dans le groupe de paramètres Restrictions.
-
+ Lecteurs d'écran : JAWS, NVDA, Window-Eyes, System Access
@@ -8718,122 +8735,121 @@ Veuillez noter que ces valeurs sont actuellement spécifiques à l'utilisat
Icône
-
+ Des fonctions d'isolation diverses peuvent casser la compatibilité avec certaines applications. Si vous utilisez ce bac à sable <b>NON par sécurité</b> mais pour la portabilité des applications, en modifiant ces options vous pouvez restaurer la compatibilité en sacrifiant un peu de sécurité.
-
+ Isolation d'accès
-
+ Protection d'image
-
+ Émettre un message 1305 lorsqu'un programme essaye de charger une DLL dans un bac à sable
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandboxEmpêcher les programmes dans un bac à sable installé sur l'hôte de charger des DLL depuis le bac à sable
-
+ DLL && extensions
-
+ Description
-
+ Les règles d'accès aux ressources de Sandboxie discriminent souvent les binaires des programmes situés dans le bac à sable. OpenFilePath et OpenKeyPath fonctionnent uniquement pour les binaires des applications situées nativement sur l'hôte. Afin de définir une règle sans cette restriction, OpenPipePath et OpenConfPath doivent être utilisés. De même, toutes les directives Closed(File|Key|Ipc)Path qui sont définies par une négation (par exemple « ClosedFilePath=! iexplore.exe,C:Users* ») seront toujours fermées aux binaires situés dans un bac à sable. Les deux politiques de restriction peuvent être désactivées sur la page « Politiques d'accès ».
Ceci est fait pour empêcher les processus malveillants à l'intérieur du bac à sable de créer une copie renommée d'eux-mêmes et d'accéder aux ressources protégées. Un autre vecteur d'exploit est l'injection d'une bibliothèque dans un processus autorisé afin d'accéder à tout ce qu'il est autorisé d'accéder. En utilisant la Protection d'Image de l'Hôte, cela peut être empêché en bloquant les applications (installées sur l'hôte) lancées dans un bac à sable de charger des bibliothèques depuis le bac à sable lui-même.
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Les fonctions de Sandboxie peuvent être améliorées en utilisant des DLL optionnels qui peuvent être chargés dans chaque processus dans un bac à sable lors de leur démarrage par SbieDll.dll. Le gestionnaire de modules dans les paramètres généraux offre quelques extensions utiles ; une fois installées, celles-ci peuvent être activées ici pour le bac à sable actuel.
-
+ Désactiver les processus et les dossiers forcés pour ce bac à sable
- Block process from taking screenshots of windows not belonging to the containing sandbox
- Empêcher les processus dans un bac à sable d'utiliser des méthodes publiques afin de capturer des images de la fenêtre
+ Empêcher les processus dans un bac à sable d'utiliser des méthodes publiques afin de capturer des images de la fenêtre
-
+ Configure quels processus peuvent accéder aux objets de bureau tels que les fenêtres et similaires.
-
+ Autres options
-
+ Blocage des ports
-
+ Bloquer les ports SAMBA habituels
-
+ Bloquer le DNS (UDP port 53)
-
+ Récupération rapide
-
+ Récupération immédiate
-
+ Options diverses
-
+ Appliquer le palliatif ElevateCreateProcess (ancien comportement)
-
+ Utiliser le palliatif d'objet de bureau pour tous les processus
-
+ Lorsque le raccourci général est utilisé 3 fois rapidement et successivement, cette exception sera ignorée.
-
+ Empêcher ce bac à sable d'être arrêté lorsque « Arrêter tous les processus » est invoqué.
@@ -8842,44 +8858,44 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Cette commande s'exécute après que tous les processus dans le bac à sable se soient arrêtés.
-
+ Lors de l'arrêt du bac
-
+ Cette commande sera exécutée avant que le contenu du bac ne soit supprimé.
-
+ Lors de la récupération de fichiers
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedCette commande sera exécutée avant qu'un fichier ne soit récupéré et le chemin du fichier sera transmis en tant que premier argument ; si cette commande retourne autre chose que « 0 », la récupération sera bloquée.
-
+ Exécuter la vérification de fichiers
-
+ Lors de la suppression de contenu
-
+ Protège les processus de ce bac contre leur accès par des processus hôtes définis qui s'exécutent en dehors des bacs.
-
-
+
+ Processus
@@ -8888,17 +8904,17 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Bloquer également l'accès en lecture des processus de ce bac à sable
-
+ Ajouter une option
-
+ Ici vous pouvez configurer des options en fonction des processus, pour améliorer la compatibilité et/ou personnaliser le comportement de mise en bac à sable.
-
+ Option
@@ -8908,37 +8924,42 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Enregistrer les requêtes DNS dans le journal
-
+ Tracer les appels système (crée beaucoup de sorties)
-
+ Modèles
-
+
+
+
+
+
+ Les paramètres suivants permettent l'utilisation de Sandboxie en combinaison avec un logiciel d'accessibilité. Veuillez noter que certaines mesures de protection de Sandboxie sont nécessairement perdues lorsque ces paramètres sont en vigueur.
-
+ Édition de la section ini
-
+ Éditer l'ini
-
+ Annuler
-
+ Enregistrer
@@ -8970,27 +8991,27 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
QPlatformTheme
-
+ OK
-
+ Appliquer
-
+ Annuler
-
+ &Oui
-
+ &Non
@@ -9262,7 +9283,7 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Utiliser de grandes icônes dans la liste des bacs *
-
+ Mise à l'échelle haute résolution :
@@ -9360,17 +9381,17 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Afficher les superpositions d'icônes pour les bacs et les processus
-
+ Mise à l'échelle des polices :
-
+ (Redémarrage requis)
-
+ Options graphiques
@@ -9391,12 +9412,12 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Masquer les propres processus de Sandboxie de la liste des tâches
-
+ Police de l'éditeur ini :
-
+ Choisir la police
@@ -9436,147 +9457,147 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Réduire dans la zone de notification
-
+ Réinitialiser la police
-
+ Options ini
-
+ #
-
+ Éditeur ini externe :
-
+ Gestionnaire de modules
-
+ Modules optionnels
-
+ Sandboxie-Plus offre de nombreuses options et prend en charge un large éventail d'extensions. Sur cette page, vous pouvez configurer l'intégration des modules, extensions et autres composants de tierce partie. Les composants optionnels peuvent être téléchargés depuis le web, et certaines installations peuvent demander des privilèges d'administrateur.
-
+ État
-
+ Version
-
+ Description
-
+ <a href="sbie://addons">Mettre à jour la liste des modules</a>
-
+ Installation
-
+ Configuration des modules
-
+ Activer la création d'un disque de mémoire vive
-
+ kilo-octets
-
+ Assigner une lettre de lecteur au disque de mémoire vive
-
+ Prise en charge d'image disque
-
+ Limite de mémoire vive :
-
+ <a href="addon://ImDisk">Installer le pilote ImDisk</a> pour activer la prise en charge de disque de mémoire vive et d'image disque.
-
+ Soutien technique de Sandboxie
-
+ Ce certificat d'adhérent a expiré ; veuillez <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">obtenir un certificat mis à jour</a>.
-
+ Les adhérents au projet Sandboxie-Plus peuvent recevoir un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificat d'adhérent</a>. C'est comme une clé de licence mais pour les personnes fantastiques qui utilisent des logiciels à code source ouvert. :-)
-
+ Obtenir
-
+ Récupérer/Mettre à jour/Renouveler un certificat en utilisant son numéro de série
-
+ Maintenir Sandboxie à jour avec les nouvelles versions de Windows et compatible avec tous les navigateurs web est un effort sans fin. Vous pouvez soutenir le développement en <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">contribuant directement au projet</a>, en montrant votre soutien grâce à <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">l'achat d'un certificat d'adhérent</a>, en devenant un mécène grâce à une <a href="https://sandboxie-plus.com/go.php?to=patreon">souscription sur Patreon</a>, ou à travers un <a href="https://sandboxie-plus.com/go.php?to=donate">don PayPal</a>.<br />Votre soutien joue un rôle vital dans le progrès et l'entretien de Sandboxie.
-
+ SBIE_-_____-_____-_____-_____
-
+ Configuration avancée
-
+ Activer le filtrage d'objet au niveau du noyau
-
+ <a href="sbie://docs/filerootpath">Racine du système de fichiers</a> des bacs :
@@ -9586,124 +9607,129 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Vérifier l'état d'auto-suppression des bacs à sable lors du démarrage de Sandman
-
+
+
+
+
+
+ Lorsqu'un disque de mémoire vive est déjà monté, vous devez le démonter pour que cette option prenne effet.
-
+ * prend effet lors de la création du disque
-
+ <a href="https://sandboxie-plus.com/go.php?to=sbie-use-cert">Guide d'utilisation du certificat</a>
-
+ Mise à jour de Sandboxie
-
+ Conserver la liste des modules à jour
-
+ Paramètres de mise à jour
-
+ Le canal des Initiés offre un accès anticipé aux nouvelles fonctions et corrections de bogues qui finalement seront fournies au public, de même que toutes les améliorations pertinentes du canal Stable.
Contrairement au canal des Aperçus, cela n'inclut pas les changements non testés, potentiellement dangereux ou expérimentaux qui peuvent ne pas être prêts pour une utilisation à grande échelle.
-
+ Rechercher dans le canal des Initiés
-
+ Nouveaux installeurs complets depuis le canal de la version choisie.
-
+ Mises à jour complètes
-
+ Vérifier régulièrement les mises à jour de Sandboxie-Plus
-
+ En savoir plus concernant le <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">canal des Initiés</a>
-
+ Conserver les scripts de dépannage à jour
-
+ Intervalle de vérification de mise à jour
-
+ Utiliser un identifiant de Sandboxie au lieu d'un jeton anonyme
-
+ Préréglages de Sandboxie.ini
-
+ Effacer le mot de passe lorsque la fenêtre principale est masquée
-
+ Mise en bac à sable des lecteurs USB
-
+ Volume
-
+ Informations
-
+ Bac à sable pour les lecteurs USB :
-
+ Placer automatiquement en bac à sable tous les lecteurs USB branchés
-
+ Modèles d'applications
-
+ Compatibilité d'applications
@@ -9712,32 +9738,32 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Dossiers utilisateurs séparés
-
+ <a href="sbie://docs/ipcrootpath">Racine IPC</a> des bacs :
-
+ Paramètres par défaut des bacs à sable
-
+ Protection de la configuration
-
+ ...
-
+ <a href="sbie://docs/keyrootpath">Racine du registre</a> des bacs :
-
+ Fonctions d'isolation
@@ -9746,33 +9772,33 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Utiliser la plateforme de filtrage Windows pour restreindre l'accès au réseau (expérimental)
-
+ Changer le mot de passe
-
+ Demander un mot de passe pour pouvoir effectuer des modifications
-
+ Autoriser seulement les comptes administrateurs à effectuer des modifications
-
+ Surveiller les changements dans Sandboxie.ini
-
+ Only Administrator user accounts can use Pause Forced Programs Rules commandAutoriser seulement les comptes administrateurs à utiliser « Suspension du forçage des programmes »
-
+ Dossier racine portable
@@ -9797,7 +9823,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
* Une case partiellement cochée laissera le comportement être déterminé par le mode d'affichage.
-
+ %
@@ -9812,7 +9838,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Utiliser le thème Fusion
-
+ Utiliser la plateforme de filtrage Windows pour restreindre l'accès au réseau
@@ -9822,7 +9848,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Activer le filtrage d'objet au niveau du noyau (Kernel Mode Object Filtering)
-
+ Accrocher les appels systèmes Win32k sélectionnés pour permettre l'accélération du processeur graphique (expérimental)
@@ -9831,51 +9857,51 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Utiliser un identifiant de Sandboxie au lieu d'un jeton anonyme (expérimental)
-
+ Contrôle des programmes
-
-
-
-
+
+
+
+ Nom
-
+ Chemin
-
+ Supprimer le programme
-
+ Ajouter un programme
-
+ Lorsqu'un des programmes suivants est lancé en dehors de tout bac à sable, Sandboxie émettra le message SBIE1301.
-
+ Ajouter un dossier
-
+ Empêcher les programmes listés de démarrer sur ce système
-
+ Émettre un message 1308 lorsqu'un programme ne parvient pas à démarrer
@@ -9909,17 +9935,17 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Utiliser la nouvelle disposition de configuration *
-
+ Alertes concernant les programmes
-
+ Émettre un message 1301 lorsqu'un processus forcé a été désactivé
-
+ Config ProtectionConfiguration de Sandboxie
@@ -9956,8 +9982,8 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
-
-
+
+ Supprimer
@@ -9967,7 +9993,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Ligne de commande
-
+ Soutien et mises à jour
@@ -9976,7 +10002,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Configuration des bacs à sable
-
+ Bac à sable par défaut :
@@ -9985,62 +10011,67 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Compatibilité
-
+ Ne plus vérifier la compatibilité des logiciels
-
+ Activer
-
+ Désactiver
-
+ Sandboxie a détecté les applications logicielles suivantes dans votre système. Appuyez sur OK pour appliquer les paramètres de configuration, qui amélioreront la compatibilité avec ces applications. Ces paramètres de configuration auront un effet dans tous les bacs à sable existants et dans tous les nouveaux.
-
+ Modèles locaux
-
+ Ajouter un modèle
-
+ Filtre de texte :
-
+ Cette liste contient des modèles personnalisés créés par l'utilisateur pour les options de bac à sable.
-
+
+
+
+
+
+ Édition de la section ini
-
+ Enregistrer
-
+ Éditer l'ini
-
+ Annuler
@@ -10049,7 +10080,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Soutien
-
+ Version UpdatesMises à jour incrémentielles
@@ -10059,7 +10090,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Nouvelles versions complètes du canal de parution choisi.
-
+ Correctifs pour la version installée, mises à jour de Templates.ini et traductions.
@@ -10068,7 +10099,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Ce certificat d'adhérent a expiré, veuillez <a href="sbie://update/cert">obtenir un certificat à jour</a>.
-
+ Le canal des Aperçus contient les dernières pré-versions GitHub.
@@ -10077,12 +10108,12 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Nouvelles versions :
-
+ Le canal Stable contient les dernières parutions stables de GitHub.
-
+ Rechercher dans le canal Stable
@@ -10091,7 +10122,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Maintenir Sandboxie à jour avec les nouvelles versions de Windows et compatible avec tous les navigateurs web est un effort sans fin. Veuillez envisager de soutenir ce travail par un don.<br />Vous pouvez soutenir le développement avec un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">don PayPal</a>, fonctionnant également avec les cartes de crédit.<br />Ou vous pouvez offrir un soutien régulier avec une <a href="https://sandboxie-plus.com/go.php?to=patreon">souscription Patreon</a>.
-
+ Rechercher dans le canal des Aperçus
@@ -10112,12 +10143,12 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Maintenir Sandboxie à jour avec les nouvelles versions de Windows et compatible avec tous les navigateurs web est un effort sans fin. Veuillez envisager de soutenir ce travail par un don.<br />Vous pouvez soutenir le développement avec un <a href="https://sandboxie-plus.com/go.php?to=donate">don PayPal</a>, fonctionnant également avec des cartes de crédit.<br />Ou vous pouvez fournir un soutien récurrent avec un <a href="https://sandboxie-plus.com/go.php?to=patreon">abonnement à Patreon</a>.
-
+ Ne plus alerter à propos de l'expiration des certificats
-
+ Saisir le certificat d'adhérent ici
diff --git a/SandboxiePlus/SandMan/sandman_hu.ts b/SandboxiePlus/SandMan/sandman_hu.ts
index 2b313829..68b94217 100644
--- a/SandboxiePlus/SandMan/sandman_hu.ts
+++ b/SandboxiePlus/SandMan/sandman_hu.ts
@@ -837,12 +837,12 @@ Error: %1
CCompletePage
-
+
-
+
@@ -1185,14 +1185,12 @@ A %USER% segítségével minden felhasználót saját mappába menthet.
CMultiErrorDialog
-
- Sandboxie-Plus - hiba
+ Sandboxie-Plus - hiba
-
- Üzenet
+ Üzenet
@@ -1601,11 +1599,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
Mappa kiválasztása
-
+
-
-
+
+
@@ -1615,8 +1613,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
Minden program
-
-
+
+
@@ -1654,7 +1652,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1725,66 +1723,66 @@ Note: The update check is often behind the latest GitHub release to ensure that
Sandbox ipc gyökér
-
+ Speciális opció hozzáadása:
-
-
+
+ Indításkor
-
-
-
-
-
+
+
+
+
+ Parancs futtatása
-
+ Szolgáltatás indítása
-
+ Inicializáskor
-
+ Fájl helyreállításakor
-
+ Tartalom törlésekor
-
+
-
-
-
-
-
+
+
+
+
+ Kérjük, írja be a végrehajtandó parancssort
-
+
-
+
@@ -1793,12 +1791,12 @@ Note: The update check is often behind the latest GitHub release to ensure that
Kérjük, adja meg a programfájl nevét
-
+ Tagadás
-
+ %1 (%2)
@@ -2045,7 +2043,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Kérjük, adja meg a szolgáltatás azonosítóját
@@ -2115,7 +2113,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
Letiltás a hálózati eszközökhöz való hozzáférés megtagadásával
-
+
@@ -2217,17 +2215,17 @@ Note: The update check is often behind the latest GitHub release to ensure that
Hiba: %1
-
+
-
+ Csak helyi sablonokat lehet eltávolítani!
-
+
-
+ Opciók keresése
-
+ Homokozó: %1
-
+ Sablon: %1
-
+ Globál: %1
-
+ Alapértelmezett: %1
-
+ Ezt a homokozót törölték, ezért a konfigurációt nem lehet menteni.
-
+ Néhány változtatás még nincs elmentetve. Valóban bezárja ezt az opcióablakot?
-
+ Program megadása:
@@ -2648,13 +2646,13 @@ Teljes útvonal: %4
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.
-
+
@@ -2786,22 +2784,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Várakozás a mappára: %1
-
+ Mappa törlése: %1
-
+ Mappák egyesítése: %1 >> %2
-
+ Pillanatkép-egyesítés befejezése...
@@ -2882,27 +2880,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1
-
+ Oszlopok visszaállítása
-
+ Cella másolása
-
+ Sor másolása
-
+ Panel másolása
@@ -3165,7 +3163,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Sandboxie-Plus névjegye
@@ -3249,11 +3247,11 @@ Elvégzi a takarítást?
-
-
-
-
-
+
+
+
+
+ Ne jelenjen meg többet ez az üzenet.
@@ -3283,7 +3281,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Ez a homokozó megakadályozza a hozzáférést az összes felhasználói adathelyhez, kivéve az erőforrás-hozzáférési beállításokban kifejezetten engedélyezetteket.
-
+ Ismeretlen '%1' művelet parancssoron keresztül
@@ -3303,42 +3301,42 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Sandox tartalom törlése
-
+ OnBoxDelet végrehajtása: %1
-
+ %1 tartalom automatikus törlése
-
+ %1 tartlmának automatikus törlése
-
+ %1 könyvtár: %2
-
+ Alkalmazás
-
+ Telepítés
-
+ Jelenlegi konfiguráció: %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3346,60 +3344,60 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+ A jövőben ne kérdezzen
-
+
-
-
-
+
+
+ Sandboxie-Plus - Hiba
-
+ Nem sikerült leállítani minden Sandboxie komponenst
-
+ A szükséges Sandboxie komponensek elindítása sikertelen
@@ -3409,17 +3407,17 @@ Please check if there is an update for sandboxie.
FIGYELEM: %1 Sandboxie-Plus.ini fájlba nem lehet írni, a beállítások nem kerülnek mentésre.
-
+ Néhány kompabilitási sablon (%1) hiányzik, feltehetően törlésre kerültek. Eltávolítja őket minden boxból?
-
+ Eltávolított sablonok törlése...
-
+
@@ -3428,12 +3426,12 @@ Igen választás: %1
Nem választás: %2
-
+ Az alapértelmezett homokozó nem található; létrehozás: %1
-
+ - NINCS Kapcsolat
@@ -3446,7 +3444,7 @@ Nem választás: %2
%1 (%2):
-
+ A kiválasztott funkciókészlet csak a projekt támogatói számára érhető el. A támogatói tanúsítvány nélkül engedélyezett funkciókészlettel elindított folyamatok 5 perc múlva leállnak.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Legyen támogatónk</a>, és kap egy <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">támogatói tanúsítványt</a>
@@ -3505,22 +3503,22 @@ Nem választás: %2
Néhány fájlt nem sikerült helyreállítani:
-
+ Csak a rendszergazda módosíthatja a konfigurációt.
-
+ Kérjük, adja meg a konfigurációs jelszót.
-
+ Belépés sikertelen: %1
-
+ Leállít minden folyamatot az összes homokozóban?
@@ -3529,133 +3527,133 @@ Nem választás: %2
Leállít mindent kérés nélkül
-
+ A Sandboxie-Plus hordozható módban indult, és létre kell hoznia a szükséges szolgáltatásokat. Ez adminisztrátori jogosultságokat kér.
-
+ VIGYÁZAT: Egy másik ügynök (valószínűleg SbieCtrl.exe) már kezeli ezt a Sandboxie-munkamenetet. Kérjük, előbb zárja be, majd csatlakozzon újra, hogy átvegye az irányítást.
-
+ Karbantartási művelet van folyamatban. Kérjük, várjon...
-
+ Visszaállítja a rejtett üzenet mezőket (Igen) vagy csak az összes naplóüzenetet (Nem)?
-
+ A változtatások automatikusan érvénybe lépnek, amikor a fájl mentésre kerül.
-
+ A módosítások automatikusan érvénybe lépnek, amikor a szerkesztő bezárul.
-
+ Állapot hiba: 0x%1 (%2)
-
+ Ismeretlen
-
+ A homokozót a törlés előtt ki kell üríteni.
-
+ A homokó adatfájljainak másolása sikertelen
-
+ A régi homokozó adatfájljainak eltávolítása sikertelen
-
+ Ismeretlen hiba állapot: 0x%1
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Bezárás
-
+
-
+
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>Sandboxie-Plus névjegye</h3><p>Verzió %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
-
+ A Sandboxie+ ezen példánya a következőre van hitelesítve: %1
-
+ Sandboxie+ ingyenes személyes és nem kereskedelmi használatra.
-
+ SandboxiePlus a nyilt forráskodú Sandboxie folytatása. <br />Keresse fel a <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> weblapot több információért. <br /><br />%3<br /><br />Driver verzió: %1<br />Funkciók: %2<br /><br />Ikonok: <a href="https://icons8.com">icons8.com</a>
-
+ Ehhez a művelethez rendszergazdai jogosultság szükséges.
@@ -3694,7 +3692,7 @@ Nem választás: %2
-
+
@@ -3856,129 +3854,129 @@ Nem választás: %2
-
+ Nincs kényszerítés
-
+
-
+ Eltávolított parancsikon: %1
-
+ Parancsikon fissítve erre: %1
-
+ Parancsikon hozzáadva ehhez: %1
-
+
-
+ %1 homokozó automatikus eltávolítása
-
+ Sandboxie-Plus verzió: %1 (%2)
-
+ Adatkönyvtár: %1
-
+ személyes használatra
-
+ – CSAK nem kereskedelmi használatra
-
+
-
-
-
+
+
+ (%1)
-
+
-
+
-
-
+
+
-
+ %1 program, amely %2 homokozóban indult, 5 percen belül leáll, mert a homokozó úgy lett beállítva, hogy kizárólag a projekttámogatók számára elérhető szolgáltatásokat használja.
-
+ %1 homokozó úgy van beállítva, hogy kizárólag a projekt támogatói számára elérhető szolgáltatásokat használja, ezeket az előre beállított értékeket figyelmen kívül hagyja.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Legyen támogatónk</a>, és kap egy <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">támogatói anúsítványt</a>
-
+
-
+
-
+
-
+
-
+ The evaluation periode has expired!!!A próbaidőszak időszak lejárt!!!
@@ -4001,47 +3999,47 @@ Error: %1
Importálás: %1
-
+ Kérjük, adja meg a "Kényszerített programok" szabályainak letiltásához szükséges időtartamot másodpercben.
-
+ Nind hrlyreállítás
-
+ Nincsenek üzenetek
-
+
-
+ Karbantartási művelet sikertelen (%1)
-
+ A karbantartási művelet befejeződött
-
+ A Plus felhasználói felületen ez a funkció a fő sandbox listanézetbe integrálva lett.
-
+ A homokozó/csoport helyi menü használatával áthelyezhet homokozókat és csoportokat más csoportokba. A fogd és vidd módszerrel is mozgathatja az elemeket. Alternatív megoldásként használhatja a nyílbillentyűket, miközben lenyomva tartja az ALT billentyűt, hogy fel-le mozgassa az elemeket a csoporton belül.<br />Új homokozókat és csoportokat hozhat létre a Sandbox menüből.
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4050,199 +4048,199 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza lesz állítva a Sandboxie következő frissítésekor.
-
+ A Sandboxie konfigurációja újratöltve
-
+ Végrehajtás sikertelen: %1
-
+ Kapcsolódás a driverhez sikertelen
-
+ Kommunikáció a homokozó szolgáltatással sikertelen: %1
-
+ %1 nem-kompatibilis Sandboxie verzió található. Kompatibilis verziók: %2
-
+ Sandboxie telepítési útvonala nem található.
-
+ Nem sikerült másolni a konfigurációt a %1 homokozóból: %2
-
+ %1 néven már létezik egy homokozó
-
+ ínem sikerült törölni %1 homokozót: %2
-
+ A homokozó neve nem lehet hosszabb 32 karakternél.
-
+ A homokozó neve nem lehet egy eszköz neve.
-
+ A homokozó neve csak betűket, számokat és aláhúzásokat tartalmazhat, amelyek szóközként jelennek meg.
-
+ Nem sikerült minden folyamatot leállítani
-
+ A törlésvédelem engedélyezve van a homokozóban
-
+ Minden homokozói folyamatot le kell állítani a homokozó tartalmának törlése előtt
-
+ Hiba történt a homokozó mappa törlésekor: %1
-
+ A all processes in a sandbox must be stopped before it can be renamed.
-
+ '%1' könyvtár átmozgatása sikertelen ide: '%2'
-
+
-
+ Ez a pillanatkép nem hajtható végre, amíg a folyamat még fut a homokozóban.
-
+ Könyvtár létrehozása az új pillanatkép részére sikertelen
-
+ Pillanatkép nem található
-
+ Hiba történt a pillanatkép könyvtárak egyesítésekor: '%1' ezzel: '%2', a pillanatkép nincs teljesen összevonva.
-
+ A régi '%1' pillanatkép könyvtár eltávolítása sikertelen
-
+ Nem lehet eltávolítani azt a pillanatképet, amelyet több későbbi pillanatkép is megoszt
-
+ Nem jogosult a konfiguráció frissítésére '%1' szakaszban
-
+ %1 konfigurációs beállítások beállítása sikertelen %2 szakaszban: %3
-
+ Nem lehet pillanatképet készíteni egy üres homokozóról
-
+ Már létezik ilyen nevű homokozó
-
+ A konfigurációs jelszó nem lehet 64 karakternél hosszabb
-
+ A műveletet a felhasználó törölte
-
+ The content of an un mounted sandbox can not be deleted
-
+ %1
-
+ Az importálás/exportálás nem érhető el, a 7z.dll nem tölthető be
-
+ Nem sikerült létrehozni a homokozó archívumot
-
+ Nem sikerült megnyitni a 7z archívumot
-
+ Nem sikerült kicsomagolni a homokozó archívumot
-
+ A kiválasztott 7z fájl NEM egy homokozó archívum
-
+ %1 elemre vonatkozó művelet sikertelen.
@@ -4251,28 +4249,28 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Megnyitja a %1 weblapot egy homokozóban (Igen) vagy azon kívül (Nem)?
-
+ A választás megjegyzése.
-
+ A támogatói tanúsítvány nem érvényes ehhez a buildhez, kérjük, szerezzen be frissített tanúsítványt
-
+ The supporter certificate is expired %1 days ago, please get an updated certificateA támogatói tanúsítvány %1 napja lejárt, kérjük, szerezzen be frissített tanúsítványt
-
+ , de érvényes marad a jelenlegi buildre
-
+ A támogatói tanúsítvány %1 nap múlva lejár. Kérjük, hosszabítsa meg
@@ -5220,17 +5218,17 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
CSelectBoxWindow
-
+ Sandboxie-Plus - izolált futtatás
-
+ Biztos benne, hogy a homokozón kívül futtatja a programo?
-
+ Kérjük, válasszon egy homokozót.
@@ -5364,174 +5362,174 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
%1
-
+ Keresés a beállításokban
-
-
-
+
+
+ Izolált módú futtatá&s
-
+ KB (%1)
-
+
-
+
-
+
-
+
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+
-
+ Error retriving certificate: %1
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Izolált web böngésző
@@ -5554,53 +5552,53 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Telepítés letöltése
-
+ Tallózás a programhoz
-
+
-
+
-
+
-
+
-
+
-
+ Program kiválasztása
-
+ Futtatható fájlok (*.exe *.cmd)
-
-
+
+ A menü címének megadása
-
+ Kérjük, adjon meg egy parancsot
@@ -5609,7 +5607,7 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Ez a tanúsítvány lejárt. Kérjük, <a href="sbie://update/cert">szerezzen egy frissített tanúsítványt</a>.
-
+ <br /><font color='red'>A plusz funkciók %1 napon belül le lesznek tiltva.</font>
@@ -5618,7 +5616,7 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
<br /><font color='red'>Ennél a buildnél a Plusz funkciók továbbra is engedélyezve maradnak.</font>
-
+ <br />A plusz funkciók már nincsenek engedélyezve.
@@ -5632,12 +5630,12 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Támogatói tanúsítvány szükséges
-
+ Futtatás &homokozón kívül
-
+ Ez nem úgy néz ki, mint egy tanúsítvány. Kérjük, adja meg a teljes tanúsítványt, ne csak egy részét.
@@ -5650,7 +5648,7 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Ez a tanúsítvány sajnos elavult.
-
+ Köszönjük, hogy támogatja a Sandboxie-Plus fejlesztését.
@@ -5659,88 +5657,88 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Ez a támogatói tanúsítvány nem érvényes.
-
+
-
+
-
+
-
+
-
+
-
-
+
+ Könyvtár kiválasztása
-
+ <a href="check">Ellenőrzés most</a>
-
+ Az új konfigurációs jelszó megadása.
-
+ Kérjük, adja meg újra a konfigurációs jelszót.
-
+ A jelszavak nem egyeznek. Kérjük, próbálja meg újra.
-
+ Folyamatok
-
+ Mappa
-
+ Egy program nevének megadása
-
+ Kérjük, adja meg a sablon azonosítóját
-
+ Hiba: %1
-
+
-
+ %1 (jelenlegi)
@@ -5860,32 +5858,32 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
CSubmitPage
-
+
-
+
-
+
-
+
-
+
-
+ Select partially checked state to sends only message log but no trace log.
@@ -5893,69 +5891,69 @@ Before sending you can review the logs in the main window.
-
+
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Your issue report have been successfully submitted, thank you.
@@ -6593,32 +6591,32 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Homokozó struktúra
-
+ Biztonsági opciók
-
+ Biztonsági szigorítás
-
-
-
-
-
+
+
+
+
+ A rendszer védelme a homokozóban futó folyamatoktól
-
+ Emelt szintű korlátozások
-
+ Rendszergazdai és fő felhasználói jogok törlése
@@ -6628,12 +6626,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
px szélesség
-
+ Az alkalmazások azt hiszik, hogy emelt szinten futnak (lehetővé teszi a telepítők biztonságos futtatását)
-
+ FIGYELMEZTETÉS: Ha a folyamatok a rejtett rendszergazdai fiók alatt futnak, nem tudja korlátozni a rendszergazdai jogosultságokat.
@@ -6643,7 +6641,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Láthatóság
-
+ (Ajánlott)
@@ -6715,27 +6713,27 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Engedélyezze, hogy a nyomtatási sorkezelő a homokozón kívüli fájlokba nyomtasson
-
+ Sorkezelő (spooler) korlátozások eltávolítása, a nyomtatók a homokozón kívül telepíthetők
-
+ A Windows vágólaphoz való hozzáférés blokkolása
-
+ Rendszer által védett tárhely megnyitása
-
+ Hozzáférés blokkolása a nyomtatási sorkezelőhöz
-
+ Egyéb korlátozások
@@ -6745,160 +6743,160 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Nyomtatási korlátozások
-
+ Hálózati korlátozások
-
+ Hálózati fájlok és mappák blokkolása, hacsak nincs külön megnyitva.
-
+ Futtatás menü
-
+ Konfigurálhatja az egyéni bejegyzéseket a homokozó futtatási menüjéhez.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Név
-
+ Parancssor
-
+ Program hozzáadása
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Eltávolítás
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Típus
-
+ Programcsoportok
-
+ Csoport hozzáadása
-
-
-
-
-
+
+
+
+
+ Program hozzáadása
-
+ Mappa kényszerítése
-
-
-
+
+
+ Útvonal
-
+ Program kényszerítése
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sablonok megjelenítése
-
+ Biztonsági megjegyzés: A Sandboxie felügyelete alatt futó, rendszergazdai vagy rendszerjogkivonattal rendelkező, emelt szintű alkalmazásoknak több lehetőségük van az elszigetelés megkerülésére és a rendszer módosítására a sandboxon kívül.
-
+ Engedélyezze az MSIServer futtatását egy sandbox rendszerjogkivonattal, és szükség esetén alkalmazzon egyéb kivételeket
-
+ Megjegyzés: Az Msi telepítői kivételekre nincs szükség, de ha problémákat tapasztal egy megbízható msi-csomag telepítése során, ez a beállítás segíthet a telepítés sikeres befejezésében. Megpróbálhatja letiltani a rendszergazdai jogok eltávolítását is (drop admin).
@@ -6953,145 +6951,139 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Nyissa meg a Windows hitelesítő adatok áruházát (felhasználói mód)
-
+ A hálózati és tűzfalparaméterek módosításának megakadályozása (felhasználói mód)
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
-
- Block process from taking screenshots of windows not belonging to the containing sandbox
-
-
-
-
+
-
+ Csoportosíthatja a programokat, és csoportnevet adhat nekik. A programcsoportok a programnevek helyett egyes beállításokkal használhatók. A homokozóhoz definiált csoportok felülírják a sablonokban meghatározott csoportokat.
-
+ Az ide beírt programok vagy a beírt helyekről indított programok automatikusan ebbe a homokozóba kerülnek, kivéve, ha ezeket kifejezetten egy másik homokozóban indítják el.
-
+
-
-
+
+ Viselkedés leállítása
-
+ Korlátozások elindítása
-
+ 1308-as üzenet kiadása, ha a program nem indul el
-
+ Csak a kiválasztott programok indításának engedélyezése ebben a homokozóban. *
-
+ A kiválasztott programok indításának megakadályozása ebben a homokozóban.
-
+ Minden program elindulásának engedélyezése ebben a homokozóban.
-
+ * Megjegyzés: az ebbe a homokozóba telepített programok egyáltalán nem indulnak el.
-
+
-
+ Folyamatkorlátozások
-
+ 1307-es üzenet kiadása, amikor egy programtól megtagadják az internet hozzáférést
-
+ A felhasználó megkérdezése, hogy engedélyez-e felmentést a blokkolás alól.
-
+ Megjegyzés: az ebbe a homokozóba telepített programok egyáltalán nem fognak tudni hozzáférni az internethez.
-
-
-
-
-
-
+
+
+
+
+
+ Hozzáférés
@@ -7174,137 +7166,126 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Ha egy fájlt nem lehet áttelepíteni, nyissa meg inkább csak olvasható módban
-
-
- Prevents processes in the sandbox from interfering with power operation
-
-
-
-
-
-
-
-
-
+ Mozgatás felfelé
-
+ Mozgatás lefelé
-
+ Biztonsági elkülönítés
-
+
-
+
-
+ Prevents getting an image of the window in the sandbox.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandbox
-
+
-
+
-
+
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
-
+ Adcanced SecuritySpeciális biztonság
@@ -7314,119 +7295,144 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
Anonim token helyett Sandboxie bejelentkezést használjon (kísérleti)
-
+ Egyéb elszigeteltség
-
+ Privilegizált elszigeteltség
-
+ Egyéni Sandboxie token használata lehetővé teszi az egyes sandboxok jobb elkülönítését egymástól, és a feladatkezelők felhasználói oszlopában megmutatja annak a homokozónak a nevét, amelyhez egy folyamat tartozik. Néhány harmadik féltől származó biztonsági megoldás azonban problémákat okozhat az egyéni tokenekkel.
-
+ Programvezérlés
-
+ Programok kényszerítése
-
+
-
+ Kitörési (Breakout) programok
-
+ Kitörési (Breakout) Program
-
+ Kitörési (Breakout) mappa
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.Az itt megadott programok induláskor kitörhetnek ebből a homokozóból. Lehetőség van arra is, hogy egy másik homokozóba rögzítse őket, például úgy, hogy a webböngészője mindig egy dedikált homokozóban nyíljon meg.
-
+ Elhúzódó programok
-
+ Az elhúzódó programok automatikusan leállnak, ha az összes többi folyamat leállítása után is futnak.
-
+ Vezető programok
-
+ Ha a vezető folyamatok meg vannak határozva, az összes többi elhúzódó folyamatként kezelendő.
-
+ Fájlok
-
+ Beállíthatja, hogy mely folyamatok férhetnek hozzá a fájlokhoz, mappákhoz és csövekhez.
A 'Megnyitás' hozzáférés csak a sandboxon kívül található programbinárisokra vonatkozik. Ehelyett használhatja a 'Megnyitás mindenkinek' lehetőséget, hogy minden programra vonatkozzon, vagy módosítsa ezt a viselkedést a Házirendek lapon.
-
+ Registry
-
+ Beállíthatja, hogy mely folyamatok férhetnek hozzá a rendszerleíró adatbázishoz.
A 'Megnyitás' hozzáférés csak a sandboxon kívül található programbinárisokra vonatkozik Ehelyett használhatja a 'Megnyitás mindenkinek' lehetőséget, hogy minden programra vonatkozzon, vagy módosítsa ezt a viselkedést a Házirendek lapon.
-
+ IPC
-
+ Beállíthatja, hogy mely folyamatok férhetnek hozzá az NT IPC objektumokhoz, például az ALPC portokhoz és más folyamatok memóriájához és környezetéhez.
A folyamat megadásához használja a '$:program.exe-t' útvonalként.
-
+ Wnd
-
+ Wnd osztály
@@ -7436,152 +7442,152 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
Beállíthatja, hogy mely folyamatok férhetnek hozzá az asztali objektumokhoz, például a Windowshoz és hasonlókhoz.
-
+ COM
-
+ Osztályazonosító
-
+ Beállíthatja, hogy mely folyamatok férhetnek hozzá a COM-objektumokhoz.
-
+ Ne használjon virtualizált COM-ot, nyílt hozzáférés a gazdagép COM-infrastruktúrájához (nem ajánlott)
-
+ Hozzáférési szabályzatok
-
+ Hálózati beállítások
-
+ Hálózati ill. internet hozzáférés beállítása a nem jegyzett folyamatokhoz:
-
+ Szabályok, program tesztelése:
-
+ Port:
-
+ IP:
-
+ Protokoll:
-
+ X
-
+ Szabály hozzáadása
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Program
-
-
-
+
+
+ Művelet
-
+ Port
-
+ IP
-
+ Protokoll
-
+ FIGYELEM: A Windows szűrőplatform nincs engedélyezve az illesztőprogrammal, ezért ezeket a szabályokat csak felhasználói módban kell alkalmazni, és nem lehet érvényesíteni !!! Ez azt jelenti, hogy a rosszindulatú alkalmazások megkerülhetik őket.
-
+ Erőforrás hozzáférés
-
+ Fájl, mappa hozzáadása
-
+ Ablak osztály hozzáadása
-
+ IPC útvonal hozzáadása
-
+ Csak jóváhagyott NT rendszerhívásokhoz használja az eredeti tokent
-
+ Minden biztonsági fejlesztés engedélyezése (biztonságilag erősített homokozó)
-
+ Az illesztőprogramokhoz/eszközökhöz való hozzáférés korlátozása csak a jóváhagyottakra
-
+ Biztonsági fejlesztések
-
+ 2111-es üzenet kiadása folyamathoz való hozzáférés megtagadásakor
@@ -7594,192 +7600,192 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
Hozzáférés elkülönítés
-
+ Sandboxie token
-
+ Reg-kulcs hozzáadása
-
+ COM objektum hozzáadása
-
+ Alkalmazza a Bezárás...=!<program>,... szabályokat a homokozóban található összes bináris fájlra is.
-
+ Fájl helyreállítás
-
+ Gyors helyreállítás
-
+ Mappa hozzáadása
-
+ Azonnali helyreállítás
-
+ Kiterjesztés kihagyása
-
+ Mappa kihagyása
-
+ Azonnali helyreállítási kérés engedélyezése, hogy a fájlokat a létrehozásuk után azonnal helyreállíthassa.
-
+ Az "Azonnali helyreállításból" kizárhat mappákat és fájltípusokat (vagy fájlkiterjesztéseket).
-
+ A "Gyors helyreállítás" funkció meghívása után a következő mappákat ellenőrzik a homokozós tartalom szempontjából.
-
+ Fejlett beállítások
-
+ Egyebek
-
+ Ne változtassa meg a homokozós programok által létrehozott ablakosztályok nevét
-
+ Ne indítsa el a homokozós szolgáltatásokat rendszer-tokennel (ajánlott)
-
-
-
-
-
-
-
+
+
+
+
+
+
+ A homokozó integritásának védelme
-
+ Hagyja el a SYSTEM tokennel futó folyamatok kritikus jogosultságait
-
-
+
+ (Biztonság kritikus)
-
+ Védje meg az izolált SYSTEM folyamatokat a nem privilegizált folyamatoktól
-
+ Egyéni dummy manifest fájlok használatának kikényszerítése (örökölt viselkedés)
-
+ A szabályspecifikusság annak mértéke, hogy egy adott szabály mennyire illeszkedik egy adott elérési úthoz. Egyszerűen fogalmazva, a specifikáció a karakterek hossza az elérési út elejétől az utolsó egyező nem helyettesítő karakterláncig bezárólag. Egy szabály, amely csak az olyan fájltípusoknak felel meg, mint a "*.tmp" a legmagasabb specifitású lenne, mivel mindig a teljes fájl elérési úttal egyezne.
A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leírja, hogy egy szabály hogyan vonatkozik egy adott folyamatra. A folyamatnév vagy csoport alapján érvényesülő szabályoknak van a legerősebb egyezési szintje, ezt követi a tagadással történő egyezés (vagyis az adott folyamaton kívül minden folyamatra érvényes szabályok), míg a legalacsonyabb egyezési szinteken globális egyezések, azaz bármely folyamatra érvényes szabályok.
-
+ A szabályokat sajátosságuk és folyamategyezési szintjük alapján rangsorolja
-
+ Adatvédelmi mód, blokkolja a fájlokhoz és a rendszerleíró adatbázishoz való hozzáférést az összes helyhez, kivéve az általános rendszerhelyeket
-
+ Hozzáférési mód
-
+ Ha az adatvédelmi mód engedélyezve van, a sandbox folyamatok a C:\Windows\*, C:\Program Files\*, és a HKLM registry egyes részeinek csak olvasására lesznek képesek , minden más helynek kifejezett hozzáférésre van szüksége ahhoz, hogy olvasható és/vagy írható legyen. Ebben a módban a Szabályspecifikusság mindig engedélyezve van.
-
+ Írányelv szabály
-
+ A fájl és kulcs megnyitása direktívákat csak a homokozón kívül található binárisokra alkalmazza.
-
+ Izolált RpcSs elindítása mint RENDSZER folyamat (nem ajánlott)
-
+ Csak a privilegizált folyamatok számára engedélyezze a szolgáltatásvezérlő menedzser (Service Control Manager) elérését
-
-
+
+ Kompatibilitás
-
+ Sandbox-folyamatok hozzáadása munkaobjektumokhoz (ajánlott)
-
+ A homokozós ablakállomás emulálása minden folyamathoz
-
+ Az erősen korlátozott folyamatjogkivonat használatával történő biztonsági elkülönítés a Sandboxie elsődleges eszköze a sandbox korlátozások érvényesítésére. Ha ez ki van kapcsolva, a homokozó alkalmazásrekesz módban működik, vagyis többé nem nyújt megbízható biztonságot, csak egyszerű alkalmazás-területekre bontás.
-
+ Engedélyezze sandboxos programok számára hardver ill. eszközök kezelését
@@ -7788,121 +7794,121 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
Biztonsági elkülönítés letiltása (kísérleti)
-
+ Windows biztonsági fiókkezelő megnyitása
-
+ Windows helyi biztonsági házirend (LSA) megnyitása
-
+ A nem homokozós folyamatok memóriájának olvasásának engedélyezése (nem ajánlott)
-
+ Alapértelmezés szerint tiltsa le az "RpcMgmtSetComTimeout" használatát (ez megoldhatja a kompatibilitási problémákat)
-
+ Biztonsági elkülönítés és szűrés
-
+ Biztonsági szűrés letiltása (nem ajánlott)
-
+ Biztonsági szűrő, amelyet a Sandboxie használ a fájlrendszerhez és a rendszerleíró adatbázishoz való hozzáférés korlátozására, valamint a folyamatokhoz való hozzáférés korlátozására.
-
+ Az alábbi lehetőségek biztonságosan használhatók, ha nem ad rendszergazdai jogokat.
-
+ Indítók
-
+ Esemény
-
-
-
-
+
+
+
+ Parancs futtatása
-
+ Szolgáltatás indítása
-
+ Ezek az események minden alkalommal végrehajtódnak, amikor egy homokozó elindul
-
+ Homokozó indításakor
-
-
+
+ Ezek a parancsok NEM IZOLÁLTAN futnak le közvetlenül a homokozó tartalmának törlése előtt
-
+ Beágyazott munkaobjektumok használatának engedélyezése (Windows 8 és újabb rendszeren működik)
-
+ Ezek a parancsok csak akkor hajtódnak végre, ha egy homokozó inicializálva van. Az újrafuttatáshoz a homokozó tartalmát törölni kell.
-
+ Homokozó inicializálásakor
-
+
-
+ Itt adhatja meg a különféle homokozó eseményeken automatikusan végrehajtandó műveleteket.
-
+ Folyamatok elrejtése
-
+ Folyamat hozzáadása
-
+ Gazdafolyamatok elrejtése a homokozóban futó folyamatok elől.
@@ -7912,59 +7918,59 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
Korlátozások
-
+ Különféle lehetőségek
-
+ Az "ElevateCreateProcess" megoldás alkalmazása (örökölt viselkedés)
-
+
-
+ Ez a parancs a homokozó tartalmának törlése előtt fut le
-
+ Fájl helyreállításkor
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedEz a parancs a fájl helyreállítása előtt fut le, és a fájl elérési útja lesz átadva első argumentumként. Ha ez a parancs a 0-tól eltérő értéket ad vissza, a helyreállítás blokkolva lesz
-
+ Fájlellenőrző futtatása
-
+ Tartalom törlésekor
-
+ Ne engedje, hogy a homokozós folyamatok más homokozóban futó folyamatokat lássák
-
+ Védje meg az ebben a mezőben lévő folyamatokat, hogy ne férhessenek hozzá meghatározott homokozó nélküli gazdagépfolyamatokhoz.
-
-
+
+ Folyamat
@@ -7973,45 +7979,45 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
A folyamatokhoz való olvasási hozzáférés letiltása ebben a sandboxban
-
+ Felhasználó
-
+ Az erőforrás-hozzáférés figyelőjét csak a rendszergazdákra korlátozhatja
-
+ Felhasználó hozzáadása
-
+ Adjon hozzá felhasználói fiókokat és felhasználói csoportokat az alábbi listához, hogy a homokozó használatát csak azokra a fiókokra korlátozza. Ha a lista üres, akkor a homokozót minden felhasználói fiók használhatja.
-
+ Opció hozzáadása
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Itt konfigurálhat speciális folyamatonkénti beállításokat a kompatibilitás javítása és/vagy a homokozó viselkedésének testreszabása érdekében.
-
+ Opció
-
+ Nyomkövetés
@@ -8020,22 +8026,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
API-hívás nyomkövetése (a LogAPI-t telepíteni kell az Sbie-könyvtárba)
-
+ Pipe nyomkövetés
-
+ Minden SetError rögzítése a nyomkövetési naplóban (sok kimeneti adatot generál)
-
+ Napló hibakeresési kimenete a nyomkövetési naplóba
-
+
-
+ Fájl nyomkövetés
-
+ Erőforrás-hozzáférés figyelő letiltása
-
+ IPC nyomok
-
+ GUI nyomkövetés
-
+ Erőforrás-hozzáférés figyelő
-
+ Hozzáférés nyomon követése
-
+ COM Class nyom
-
+ Kulcskövetés
-
+ Az elveszett védelem kompenzálásához tekintse meg a 'Drop Rights' beállítási oldalát a 'Korlátozások beállításai' csoportban.
-
-
+
+ Hálózati tűzfal
-
+
-
+ Hibakeresés
-
+ FIGYELEM, ezek az opciók letilthatják az alapvető biztonsági garanciákat és megszakíthatják a homokozó biztonságát!!!
-
+ Ezeket az opciókat a kompatibilitási problémák hibakeresésére tervezték. Kérjük, csak tesztelési célra használja.
-
+ Program sablonok
-
+ Szűrő kategóriák
-
+ Szöveg szűrő
-
+ Sablon hozzáadása
-
+ Ez a lista nagy mennyiségű homokozó kompatibilitást javító sablont tartalmaz
-
+ Kategória
-
+ Sablon mappák
-
+
@@ -8173,58 +8179,63 @@ Please note that this values are currently user specific and saved globally for
Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak és globálisan vannak mentve az összes homokozóhoz.
-
-
+
+ Érték
-
+
-
+
-
+ Sablonok
-
+
+
+
+
+
+ Hozzáférhetőség
-
+ Képernyőolvasók: JAWS, NVDA, Window-Eyes, System Acces
-
+ A következő beállítások lehetővé teszik a Sandboxie használatát akadálymentes szoftverrel kombinálva. Felhívjuk figyelmét, hogy a Sandboxie bizonyos mértékű védelme szükségszerűen elvész, amikor ezek a beállítások érvénybe lépnek.
-
+ Konfiguráció szerkesztése
-
+ INI szerkesztése
-
+ Mégse
-
+ Mentés
@@ -8256,27 +8267,27 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
QPlatformTheme
-
+ OK
-
+ Alkalmazás
-
+ Mégse
-
+ &Igen
-
+ &Nem
@@ -8485,42 +8496,42 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
* a részlegesen bejelölt jelölőnégyzet a viselkedést a nézetmódban határozza meg.
-
+ Speciális konfiguráció
-
+ Kernel módú objektumszűrés engedélyezése
-
+ Homokozó <a href="sbie://docs/filerootpath">fájlrendszer-gyökér</a>:
-
+ Jelszó törlése, ha a főablak rejtve van
-
+ Homokozó <a href="sbie://docs/ipcrootpath">IPC-gyökér</a>:
-
+ Alapértelmezett homokozó
-
+ Konfiguráció védelem
-
+ ...
@@ -8603,112 +8614,112 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
Interfész beállításai
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Állapot
-
+
-
+
-
+
-
+
-
+
-
+
-
+ KB
-
+
-
+
-
+
-
+
@@ -8758,153 +8769,158 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Homokozó <a href="sbie://docs/keyrootpath">Registry-gyökér</a>:
-
+ Homokozó funkciók
-
+
-
+ Jelszó módosítása
-
+ Jelszómódosításhoz meg kell adni a jelszót
-
+ Csak a rendszergazda felhasználói fiókok végezhetnek módosításokat
-
+ Sandboxie.ini fájl változásainak figyelése
-
+
-
+
-
+
-
+
-
+
-
+ Program sablonok
-
+
-
+ Only Administrator user accounts can use Pause Forced Programs Rules commandCsak a rendszergazda felhasználói fiókok használhatják a "Kényszerített programok szüneteltetése" parancsot
-
+ Hordozható gyökés mappa
@@ -8924,12 +8940,12 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
Ikon megjelenítése a rendszertálcán:
-
+ Windows szűrő platform használata a hálózati elérés korlátozásához
-
+ Kapcsolja be a kiválasztott Win32k rendszerhívásokat a GPU-gyorsítás engedélyezéséhez (kísérleti)
@@ -8965,7 +8981,7 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
Nagy ikonok használata a homokozólistában *
-
+ Magas DPI-skálázás
@@ -8980,12 +8996,12 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
Sötét téma használata
-
+ Betűméretezés
-
+ (újraindítás szükséges)
@@ -9001,7 +9017,7 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
"Pizza" háttér megjelenítése a homokozólistában*
-
+ %
@@ -9021,45 +9037,45 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
-
-
-
-
+
+
+
+ Név
-
+ Útvonal
-
+ Program eltávolítása
-
+ Program hozzáadása
-
+ Amikor a következő programok bármelyike elindul bármely homokozón kívül, a Sandboxie kiadja az SBIE1301 üzenetet.
-
+ Mappa hozzáadása
-
+ Akadályozza meg, hogy a felsorolt programok elinduljanak ezen a rendszeren
-
+ 1308-as üzenet kiadása, ha a program nem indul el
@@ -9089,63 +9105,63 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
Új konfigurációs párbeszédpanel-elrendezés használata *
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Programvezérlés
-
+ Programfigyelmeztetések
-
+ 1301-es üzenetet küld, ha a kényszerített folyamatok le vannak tiltva
-
+ Config ProtectionSandboxie konfiguráció
@@ -9182,8 +9198,8 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
+
+ Eltávolítás
@@ -9193,7 +9209,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Parancssor
-
+ Támogatás és frissítések
@@ -9202,7 +9218,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Homokozó konfiguráció
-
+ Alapértelmezett homokozó:
@@ -9211,67 +9227,72 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Kompatibilitás
-
+ A jövőben ne ellenőrizze a szoftverek kompatibilitását
-
+ Engedélyezés
-
+ Tiltás
-
+ A Sandboxie a következő szoftveralkalmazásokat észlelte a rendszerben. A konfigurációs beállítások alkalmazásához kattintson az OK gombra, ami javítja az ezen alkalmazásokkal való kompatibilitást. Ezek a konfigurációs beállítások érvényesek lesznek minden meglévő homokozóban és minden új homokozóban.
-
+
-
+ Sablon hozzáadása
-
+ Szöveg szűrő
-
+
-
+
+
+
+
+
+ Ini konfiguráció szerkesztése
-
+ Mentés
-
+ Ini szerkesztése
-
+ Mégse
-
+ Version UpdatesVerziófrissítések
@@ -9281,7 +9302,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Új teljes verziók a kiválasztott kiadási csatornáról.
-
+ Gyorsjavítás a telepített verzióhoz, a templates.ini és a fordítások frissítései.
@@ -9290,7 +9311,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Ez a tanúsítvány lejárt. Kérjük, <a href="sbie://update/cert">szerezzen egy frissített tanúsítványt</a>.
-
+ Az előnézeti csatorna a legújabb GitHub-előzetes kiadásokat tartalmazza.
@@ -9299,12 +9320,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Új verziók
-
+ A stabil csatorna tartalmazza a legújabb stabil GitHub-kiadásokat.
-
+ Keresés a stabil csatornán
@@ -9313,7 +9334,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
A Sandboxie naprakészen tartása a Windows gördülő kiadásaival és a minden webböngészőkkel való kompatibilitás véget nem érő törekvés. Kérjük, fontolja meg adományozással a munka támogatását.<br />A fejlesztést támogathatja <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">PayPal donation</a>, hitelkártyával is működik.<br />Vagy folyamatos támogatást is nyújthat <a href="https://sandboxie-plus.com/go.php?to=patreon">Patreon subscription</a>.
-
+ Keresés az előnézeti csatornában
@@ -9322,12 +9343,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
A Sandboxie-Plus projekt támogatói <a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">támogatói tanúsítványt</a> kaphatnak. Ez olyan, mint egy licenckulcs, de a nyílt forráskódú szoftvereket használó fantasztikus emberek számára. :-)
-
+ A jövőben ne értesítsen a tanúsítvány lejártáról
-
+ Itt adja meg a támogatói tanúsítványt
diff --git a/SandboxiePlus/SandMan/sandman_it.ts b/SandboxiePlus/SandMan/sandman_it.ts
index 8f4a8943..44847755 100644
--- a/SandboxiePlus/SandMan/sandman_it.ts
+++ b/SandboxiePlus/SandMan/sandman_it.ts
@@ -885,12 +885,12 @@ Errore: %1
CCompletePage
-
+ Risoluzione problemi completata
-
+
@@ -1234,14 +1234,12 @@ You can use %USER% to save each users sandbox to an own folder.
CMultiErrorDialog
-
- Sandboxie Plus - Errore
+ Sandboxie Plus - Errore
-
- Messaggio
+ Messaggio
@@ -1555,76 +1553,76 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Percorso IPC dell'area virtuale
-
+ Aggiungi opzione speciale:
-
-
+
+ All'avvio
-
-
-
-
-
+
+
+
+
+ Avvia comando
-
+ Avvia servizio
-
+ All'inizializzazione
-
+ Al recupero dei file
-
+ Alla rimozione del contenuto
-
+
-
-
-
-
-
+
+
+
+
+ Immettere la riga di comando da eseguire
-
+
-
+
-
+ Nega
-
+ %1 (%2)
@@ -1853,37 +1851,37 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Aggiungi modello %1
-
+ Cerca opzioni
-
+ Area virtuale: %1
-
+ Modello: %1
-
+ Globale: %1
-
+ Default: %1
-
+ Questa area virtuale è stata cancellata, quindi la configurazione non può essere salvata.
-
+ Alcune modifiche non sono state ancora salvate, vuoi chiudere la finestra opzioni?
@@ -1903,7 +1901,7 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Seleziona programma
-
+ Inserire un identificativo di servizio
@@ -1924,8 +1922,8 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Immetti un comando
-
-
+
+
@@ -1942,7 +1940,7 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Immetti un nome per il nuovo gruppo
-
+ Scegli il programma:
@@ -2123,11 +2121,11 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Tutti i file (*.*)
-
+
-
-
+
+
@@ -2163,7 +2161,7 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
+
@@ -2256,17 +2254,17 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Errore: %1
-
+ Eliminare i modelli locali selezionati?
-
+ Solo i modelli locali possono essere rimossi!
-
+ Blocca accesso ai dispositivi di rete
-
+
@@ -2692,13 +2690,13 @@ Percorso completo: %4
Impossibile inizializzare la procedura di risoluzione problemi. Clicca su Successivo per inviare una segnalazione del problema.
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.Si è verificato un problema interno e la procedura di risoluzione problemi non può continuare. Clicca su Successivo per inviare una segnalazione del problema.
-
+
@@ -2834,22 +2832,22 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
CSandBox
-
+ In attesa della cartella: %1
-
+ Eliminazione della cartella: %1
-
+ Unione cartelle: %1 >> %2
-
+ Completamento unione istantanea...
@@ -2930,7 +2928,7 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
CSandMan
-
+ Sandboxie Plus v%1
@@ -2945,22 +2943,22 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
<a href="sbie://update/apply" style="color: red;">Un nuovo aggiornamento %1 di Sandboxie Plus è pronto da installare</a>
-
+ Reimposta colonne
-
+ Copia cella
-
+ Copia riga
-
+ Copia riquadro
@@ -3215,7 +3213,7 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
-
+ Sandboxie Plus Insider [%1]
@@ -3246,7 +3244,7 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
-
+ Informazioni su Sandboxie Plus
@@ -3455,16 +3453,16 @@ Effettuare la pulizia?
-
-
-
-
-
+
+
+
+
+ Non mostrare più questo messaggio.
-
+ Operazione sconosciuta '%1' richiesta tramite riga di comando
@@ -3484,29 +3482,29 @@ Effettuare la pulizia?
- Eliminazione del contenuto dell'area virtuale
-
+ Eliminazione automatica del contenuto %1
-
+ Configurazione corrente: %1
-
-
-
+
+
+ Sandboxie Plus - Errore
-
+ Impossibile fermare tutti i componenti di Sandboxie
-
+ Impossibile avviare i componenti di Sandboxie richiesti
@@ -3534,55 +3532,55 @@ Effettuare la pulizia?
<a href="sbie://update/check" style="color: red;">Un nuovo aggiornamento di Sandboxie Plus v%1 è disponibile</a>
-
+ Versione di Sandboxie Plus: %1 (%2)
-
+ per uso personale
-
+ - SOLO per uso non commerciale
-
+ Area virtuale predefinita non trovata; in fase di creazione: %1
-
+ Si desidera saltare la configurazione guidata?
-
+ Il programma %1 avviato nell'area virtuale %2 verrà terminato tra 5 minuti poichè l'area virtuale utilizza funzioni disponibili esclusivamente ai sostenitori del progetto.
-
+ L'area virtuale %1 utilizza funzioni disponibili esclusivamente ai sostenitori del progetto, pertanto le seguenti impostazioni verranno ignorate.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Diventa un sostenitore di Sandboxie Plus</a> per ricevere un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificato di supporto</a>
-
+
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3590,138 +3588,138 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+ La firma del certificato non è valida!
-
+ Il certificato non è adatto a questo prodotto.
-
+ node-locked = hardware-lockedIl certificato è associato a un altro dispositivo.
-
+ Il certificato di supporto non è valido.
Errore: %1
-
+ Il periodo di valutazione è scaduto!
-
-
+
+ Non chiedere in futuro
-
+
-
+ Qui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaImmettere l'intervallo in secondi per la disattivazione<br />delle regole dei programmi ad avvio forzato.
-
+ Stato di errore: 0x%1 (%2)
-
+ Sconosciuto
-
+ Impossibile copiare i dati dell'area virtuale
-
+ Impossibile rimuovere i dati obsoleti dell'area virtuale
-
+ Stato di errore sconosciuto: 0x%1
-
+
-
+
-
+
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>Informazioni su Sandboxie Plus</h3><p>Versione %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
@@ -3778,80 +3776,80 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
<br /><br />Quest'area virtuale <a href="sbie://docs/privacy-mode"> impedisce l'accesso a tutti i percorsi dei dati utente</a>, tranne quelli esplicitamente consentiti nelle opzioni di Accesso risorse.
-
+ Sospensione processi forzati in corso
-
+ Alcuni modelli di compatibilità (%1) sono mancanti, probabilmente cancellati, vuoi rimuoverli da tutte le aree virtuali?
-
+ Pulizia dei modelli rimossi...
-
+
-
+ Esecuzione di OnBoxDelete: %1
-
+ Collegamento rimosso: %1
-
+ Collegamento aggiornato in: %1
-
+ Collegamento aggiunto in: %1
-
+ Eliminazione automatica del contenuto di %1
-
+ Autoeliminazione area virtuale %1
-
+ La posizione di %1 è intenzionale.Directory %1: %2
-
+ L'iniziale minuscola è intenzionaleapplicazione
-
+ L'iniziale minuscola è intenzionaledi installazione
-
+ Directory dei dati: %1
-
+
@@ -3860,14 +3858,14 @@ Scegliere Sì per selezionare: %1
Scegliere No per selezionare: %2
-
+ - NON connesso
-
-
-
+
+
+ (%1)
@@ -3880,7 +3878,7 @@ Scegliere No per selezionare: %2
%1 (%2):
-
+ Qui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaLa funzionalità selezionata è disponibile solo ai sostenitori del progetto.<br />I processi avviati nell'area virtuale con questa funzione senza un valido certificato di supporto verranno terminati dopo 5 minuti.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Diventa un sostenitore di Sandboxie Plus</a>, e ricevi un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificato di supporto</a>
@@ -3938,17 +3936,17 @@ Scegliere No per selezionare: %2
-
+ Solo gli amministratori possono cambiare la configurazione.
-
+ Immettere la password di configurazione.
-
+ Login non riuscito: %1
@@ -3969,7 +3967,7 @@ Scegliere No per selezionare: %2
Importazione: %1
-
+ Chiudere tutti i processi in tutte le aree virtuali?
@@ -3978,281 +3976,281 @@ Scegliere No per selezionare: %2
Terminali tutti senza chiedere
-
+ Sospensione recupero file in corso
-
+ Sospensione messaggi popup in corso
-
+ Sandboxie Plus è stato avviato in modalità portatile e deve creare i servizi necessari. Questa operazione richiederà privilegi amministrativi.
-
+ ATTENZIONE: Un altro processo (probabilmente SbieCtrl.exe) sta attualmente gestendo questa sessione Sandboxie, si prega di chiuderla e di riconnettersi.
-
+ <b>ERRORE:</b> Sandboxie Plus Manager (SandMan.exe) non ha una firma digitale valida (SandMan.exe.sig). Si prega di scaricare una versione attendibile dalla <a href="https://sandboxie-plus.com/go.php?to=sbie-get">pagina ufficiale di download</a>.
-
+ Operazione di manutenzione non riuscita (%1)
-
+ Operazione di manutenzione completata
-
+ Operazione di manutenzione in esecuzione, attendere...
-
+ Nell'interfaccia utente Plus, questa funzionalità è stata integrata nell'elenco principale delle aree virtuali.
-
+ Utilizzando il menu contestuale dell'area virtuale/gruppo, è possibile spostare aree virtuali e gruppi in altri gruppi. È inoltre prevista la possibilità di utilizzare il trascinamento per spostare gli elementi. In alternativa, è possibile utilizzare i tasti freccia tenendo premuto ALT per spostare gli elementi in alto e in basso all'interno del gruppo.<br />È possibile creare nuove aree virtuali e gruppi dal menu Area virtuale.
-
+ Vuoi reimpostare i messaggi nascosti (sì), o soltanto i log dei messaggi (no)?
-
+ Si sta per modificare il file Templates.ini, operazione generalmente sconsigliata.
Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno annullate al prossimo aggiornamento di Sandboxie.
-
+ Le modifiche verranno applicate automaticamente ogni volta che il file viene salvato.
-
+ Le modifiche verranno applicate automaticamente non appena l'editor viene chiuso.
-
+ La configurazione di Sandboxie è stata aggiornata
-
+ Questa operazione richiede privilegi amministrativi.
-
+ Impossibile eseguire: %1
-
+ Impossibile collegarsi al driver
-
+ Impossibile comunicare con Sandboxie Service: %1
-
+ La versione di Sandboxie %1 risulta incompatibile. Versioni compatibili: %2
-
+ Impossibile trovare il percorso di installazione di Sandboxie.
-
+ Impossibile copiare la configurazione dall'area virtuale %1: %2
-
+ Un'area virtuale %1 è già presente
-
+ Impossibile cancellare area virtuale %1: %2
-
+ Il nome dell'area virtuale non può superare i 32 caratteri.
-
+ Il nome dell'area virtuale non può essere quello di un dispositivo.
-
+ Il nome dell'area virtuale può contenere solo lettere, cifre e trattini bassi che vengono visualizzati come spazi.
-
+ Impossibile terminare tutti i processi
-
+ Blocco di eliminazione attivo per quest'area virtuale
-
+ Tutti i processi dell'area virtuale devono essere interrotti prima che il contenuto possa essere eliminato
-
+ Errore durante l'eliminazione della cartella: %1
-
+ A all processes in a sandbox must be stopped before it can be renamed.Tutti i processi dell'area virtuale devono essere interrotti prima che possa essere rinominata.
-
+ Occorre svuotare il contenuto dell'area virtuale prima di poterla rimuovere.
-
+ Impossibile spostare directory '%1' in '%2'
-
+ Impossibile spostare l'immagine dell'area virtuale '%1' in '%2'
-
+ Questa istantanea non può essere eseguita mentre i processi sono ancora in esecuzione nell'area virtuale.
-
+ Impossibile creare directory su nuova istantanea
-
+ Istantanea non trovata
-
+ Errore durante l'unione delle directory '%1' con '%2': unione delle istantanee non riuscita.
-
+ Impossibile rimuovere directory di istantanea '%1'
-
+ Impossibile rimuovere un'istantanea condivisa da istantanee successive
-
+ Non sei autorizzato ad aggiornare la configurazione nel punto '%1'
-
+ Salvataggio dell'impostazione di configurazione %1 fallito nel punto %2: %3
-
+ Impossibile creare istantanea di un'area virtuale vuota
-
+ Un'area virtuale con quel nome è già presente
-
+ La password non può superare i 64 caratteri
-
+ Operazione annullata dall'utente
-
+ The content of an un mounted sandbox can not be deletedIl contenuto di un'area virtuale non montata non può essere eliminato
-
+ %1
-
+ Importazione/esportazione non disponibile, 7z.dll non può essere caricato
-
+ Impossibile creare l'archivio dell'area virtuale
-
+ Impossibile aprire l'archivio 7z
-
+ Impossibile estrarre l'archivio dell'area virtuale
-
+ Il file 7z selezionato NON è un archivio relativo a un'area virtuale
-
+ Operazione fallita per %1 elemento(i).
@@ -4261,72 +4259,72 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Aprire %1 nel browser dell'area virtuale (sì) o all'esterno (no)?
-
+ Ricorda la scelta per dopo.
-
+ &Maiuscole/minuscole
-
+ Espressione regolare
-
+ Evidenzia
-
+ Chiudi
-
+ &Trova ...
-
+ Tutte le colonne
-
+ Questa copia di Sandboxie+ è certificata per: %1
-
+ Sandboxie+ è gratuito per uso personale e non commerciale.
-
+ Sandboxie Plus è la continuazione open source di Sandboxie.<br />Visita <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> per informazioni.<br /><br />%3<br /><br />Versione driver: %1<br />Funzioni attive: %2<br /><br />Icone by <a href="https://icons8.com">icons8.com</a><br /><br />Traduzione italiana a cura di <a href="https://eng2ita.altervista.org">Eng2ita</a><br />
-
+ Il certificato non è valido per questa build, si prega di ottenere un certificato aggiornato
-
+ Il certificato è scaduto%1, si prega di ottenere un certificato aggiornato
-
+ , ma resta valido per la build corrente
-
+ Il certificato scadrà fra %1 giorni, si prega di ottenere un certificato aggiornato
@@ -5272,17 +5270,17 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
CSelectBoxWindow
-
+ Sandboxie Plus - Avvia nell'area virtuale
-
+ Avviare il programma all'esterno dell'area virtuale?
-
+ Si prega di selezionare un'area virtuale.
@@ -5413,80 +5411,80 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
%1
-
+ Cerca impostazioni
-
-
-
+
+
+ Voce relativa al menu contestuale dei fileAvvia nell'&area virtuale
-
+ kilobyte (%1)
-
+
-
+ Questo certificato è scaduto, si prega di <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">ottenere un certificato aggiornato</a>.
-
+ Forse migliorabile<br /><font color='red'>Per la build corrente, le funzioni Plus rimangono attive</font>, ma non si ha più accesso ai servizi di Sandboxie Live, inclusi gli aggiornamenti di compatibilità e il database di risoluzione problemi.
-
+ Questo certificato <font color='red'>scadrà fra %1 giorni</font>, si prega di <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">ottenere un certificato aggiornato</a>.
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Recupero del certificato in corso...
-
+ Error retriving certificate: %1
-
+
@@ -5496,49 +5494,49 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Recupero del certificato in corso...
-
+ La traduzione dei tipi di certificati può generare confusione.Contributor
-
+ La traduzione dei tipi di certificati può generare confusione.Eternal
-
+ La traduzione dei tipi di certificati può generare confusione.Business
-
+ La traduzione dei tipi di certificati può generare confusione.Personal
-
+ La traduzione dei tipi di certificati può generare confusione.Great Patreon
-
+ La traduzione dei tipi di certificati può generare confusione.Patreon
-
+ La traduzione dei tipi di certificati può generare confusione.Family
-
+
@@ -5548,13 +5546,13 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Subscription
-
+ Penso sia meglio sottolineare che si tratta di una versione di provaValutazione (prova)
-
+ Tipo %1
@@ -5563,48 +5561,48 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Standard
-
+ Avanzato
-
+ Livello massimo
-
+ Livello %1
-
+
-
+
-
+ Sfortunatamente questo certificato non è valido per questa build, è necessario ottenere un nuovo certificato o tornare ad una build precedente.
-
+ Benché questo certificato sia scaduto, le funzionalità Plus rimangono attive per la versione attualmente installata. Tuttavia, non si avrà più accesso ai servizi di Sandboxie Live, inclusi gli aggiornamenti di compatibilità e il database di risoluzione problemi.
-
+ Sfortunatamente questo certificato è scaduto, è necessario ottenere un nuovo certificato.
-
+ Browser Web nell'area virtuale
@@ -5627,53 +5625,53 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Scarica e installa
-
+ Sfoglia programma
-
+ Aggiungi modello %1
-
+ Seleziona font
-
+ Reimposta font
-
+ %0, %1 pt
-
+ Inserire il messaggio SBIE
-
+ Seleziona programma
-
+ File eseguibili (*.exe *.cmd)
-
-
+
+ Immetti il nome da assegnare al menu
-
+ Immetti un comando
@@ -5682,7 +5680,7 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Questo certificato è scaduto, si prega di <a href="sbie://update/cert">ottenere un certificato aggiornato</a>.
-
+ <br /><font color='red'>Le funzioni Plus saranno disattivate tra %1 giorni.</font>
@@ -5691,7 +5689,7 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
<br /><font color='red'>Per questa build, le funzioni Plus resteranno attive.</font>
-
+ <br />Le funzioni Plus non sono più attive.
@@ -5704,13 +5702,13 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
È necessario un certificato di supporto
-
+ Voce relativa al menu contestuale dei file all'interno della sandboxAvvia all'&esterno dell'area virtuale
-
+ Si prega di inserire l'intero certificato, non solo una parte di esso.
@@ -5723,7 +5721,7 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Questo certificato è obsoleto.
-
+ Grazie per aver sostenuto lo sviluppo di Sandboxie Plus.
@@ -5732,89 +5730,89 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Certificato di supporto non valido.
-
+ Aggiornamento disponibile
-
+ Installato
-
+ Si tratta di un tooltip, perciò non ci sono problemi di lunghezzacomponente sviluppato da %1
-
+ (info sito web)
-
+ Questo componente aggiuntivo è necessario e non può essere rimosso.
-
-
+
+ Seleziona directory
-
+ <a href="check">Controlla ora</a>
-
+ Immettere la nuova password di configurazione.
-
+ Reimmettere la nuova password di configurazione.
-
+ Le password non corrispondono, si prega di riprovare.
-
+ Processo
-
+ Cartella
-
+ Immettere il nome del programma (es. nomefile.exe)
-
+ Inserire l'identificativo del modello
-
+ Errore: %1
-
+ Eliminare i modelli locali selezionati?
-
+ %1 (Attuale)
@@ -5934,32 +5932,32 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
CSubmitPage
-
+ Invia segnalazione problema
-
+ Descrizione dettagliata del problema
-
+ Allega Sandboxie.ini
-
+ La compatibilità dell'isolamento si basa sulla configurazione; allegare Sandboxie.ini aiuta notevolmente nella ricerca del problema.
-
+ Allega log
-
+ Select partially checked state to sends only message log but no trace log.
@@ -5969,70 +5967,70 @@ Before sending you can review the logs in the main window.
Prima di inviare, è possibile visualizzare i log nella schermata principale.
-
+ Allega dump di crash
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.Una applicazione è andata in crash durante la procedura di risoluzione problemi, allegare un dump del crash può aiutare con il debugging.
-
+ Indirizzo email
-
+ È possibile fornire un indirizzo email per ricevere una notifica una volta trovata una soluzione per il problema.
-
+ Ci scusiamo per il problema che si sta riscontrando con Sandboxie Plus.
-
+ Sfortunatamente, la procedura di risoluzione problemi automatica ha fallito.
-
+ Purtroppo non è disponibile alcuna procedura di risoluzione problemi automatica per il problema descritto.
-
+ Se si desidera inviare una segnalazione del problema, controllare il riassunto sottostante e cliccare su "Fine".
-
+ Compressione dei log
-
+ Compressione dei dump
-
+ Invio segnalazione problema...
-
+ Impossible inviare la segnalazione del problema, errore %1
Provare ad inviare senza allegare il log.
-
+ Your issue report have been successfully submitted, thank you.Segnalazione correttamente inviata, grazie.
@@ -6678,41 +6676,41 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
-
-
-
-
+
+
+
+
+ Proteggi il sistema dai processi avviati nell'area virtuale
-
+ Restrizioni di elevazione
-
+ Blocca i file e le cartelle di rete, a meno che non siano aperti individualmente.
-
+ Fai credere alle applicazioni di avviarsi con privilegi elevati (esegue gli installer in modo sicuro)
-
+ Restrizioni di rete
-
+ Limita i privilegi dei gruppi Administrators e Power Users
-
+ (Raccomandato)
@@ -6769,7 +6767,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Mostra messaggio 2102 quando la dimensione di un file è troppo grande
-
+ Rimuovi il blocco allo spooler di stampa, i driver di stampa possono essere installati all'esterno dell'area virtuale
@@ -6779,12 +6777,12 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Consenti allo spooler di stampa di stampare i file all'esterno dell'area virtuale
-
+ Blocca accesso allo spooler di stampa
-
+ Altre restrizioni
@@ -6794,7 +6792,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Restrizioni di stampa
-
+ Apri il servizio di archiviazione protetta (fino a Windows 7)
@@ -6804,155 +6802,155 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Mostra quest'area virtuale nella finestra di selezione delle aree virtuali da avviare
-
+ Avviso di sicurezza: Le applicazioni elevate sotto la supervisione di Sandboxie, con token amministrativo o di sistema, hanno maggiori possibilità di superare l'isolamento e di modificare il sistema all'esterno dell'area virtuale.
-
+ Consenti l'avvio di Windows Installer con un token di sistema nell'area virtuale e di applicare ulteriori eccezioni se richiesto
-
+ Nota: Le eccezioni a Windows Installer non dovrebbero essere necessarie, tranne che in caso di problemi nell'installare un eseguibile .msi di cui ci si fida. In caso contrario, si consiglia di disattivare la limitazione dei privilegi amministrativi.
-
+ Blocca accesso agli appunti di Windows
-
+ Menu Avvia
-
+ Qui è possibile inserire nuove voci personalizzate per il menu Avvia di Sandboxie Plus.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Nome
-
+ Riga di comando
-
+ Aggiungi programma
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Rimuovi
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Tipo
-
+ Gruppi dei programmi
-
+ Aggiungi gruppo
-
-
-
-
-
+
+
+
+
+ Aggiungi programma
-
+ Forza cartella
-
-
-
+
+
+ Percorso
-
+ Forza programma
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mostra modelli
@@ -7002,48 +7000,48 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
+ Apri il servizio di gestione credenziali di Windows (user mode)
-
+ Blocca la modifica dei parametri di rete e firewall (user mode)
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
@@ -7053,255 +7051,244 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
-
- Prevents processes in the sandbox from interfering with power operation
-
-
-
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.
-
+
-
+ Usa autenticazione di Sandboxie invece di un token anonimo
-
+ I seguenti programmi, o i programmi avviati dai seguenti percorsi, verranno avviati automaticamente in quest'area virtuale.
-
+
-
-
+
+ Chiusura dei processi
-
+
-
+
-
+
-
+ Restrizioni di avvio
-
+ Mostra messaggio 1308 quando un programma non viene avviato
-
+ Consenti l'avvio dei programmi selezionati nell'area virtuale. *
-
+ Blocca l'esecuzione dei programmi selezionati nell'area virtuale.
-
+ Consenti l'avvio di tutti i programmi nell'area virtuale.
-
+ * Nota: i programmi installati nell'area virtuale non potranno essere avviati o eseguiti.
-
+
-
+ Restrizioni dei processi
-
+ Mostra messaggio 1307 quando è negato l'accesso a Internet
-
+ Nota: i programmi installati nell'area virtuale non potranno accedere a Internet.
-
+ Chiedi all'utente se consentire un'esclusione dal blocco.
-
+ Accesso risorse
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Programma
-
-
-
-
-
-
+
+
+
+
+
+ Accesso
-
+ Aggiungi chiave di registro
-
+ Aggiungi file/cartella
-
+ Aggiungi classe finestra
-
+ Aggiungi oggetto COM
-
+ Aggiungi percorso IPC
-
+ Recupero file
-
+ Aggiungi cartella
-
+ Ignora estensione
-
+ Ignora cartella
-
+ Attiva notifica di Recupero immediato dei file, non appena questi vengono creati.
-
+ È possibile escludere estensioni di file e cartelle dal Recupero immediato.
-
+ Una volta richiamata la funzione di Recupero veloce, verrà analizzato il contenuto delle seguenti cartelle nell'area virtuale.
-
+ Opzioni avanzate
-
+ Opzioni varie
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Proteggi l'integrità dell'area virtuale
-
+ Non avviare servizi nell'area virtuale tramite token di sistema (raccomandato)
-
-
+
+ Compatibilità
-
+ Forza l'utilizzo dei file manifest fittizi (legacy)
-
+ Da attivare solo per motivi di compatibilitàBlocca la modifica dei nomi della classe finestra effettuata da Sandboxie
-
+ Consenti solo ai processi privilegiati di accedere al Service Control Manager
-
+ ATTENZIONE: Nel caso di processi in esecuzione tramite l'account amministratore nascosto, non sarà possibile limitare i privilegi amministrativi.
@@ -7311,47 +7298,47 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Avvisa l'utente durante la copia dei file
-
+ Emula window station per tutti i processi nell'area virtuale
-
+ Consenti ai programmi nell'area virtuale di gestire dispositivi hardware
-
+ È possibile riunire più programmi in un unico nome di gruppo. I gruppi dei programmi possono essere usati per interagire con alcune impostazioni al posto dei nomi dei programmi. I gruppi definiti nell'area virtuale sovrascrivono i gruppi definiti nei modelli.
-
+ Imposta accesso di rete/Internet per i processi non presenti in elenco:
-
+ Regole di prova, Programma:
-
+ Porta:
-
+ IP:
-
+ Protocollo:
-
+ X
@@ -7439,82 +7426,82 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Icona
-
+ Sposta in alto
-
+ Sposta in basso
-
+ Opzioni di sicurezza
-
+ Restrizioni di sicurezza
-
+ Isolamento di sicurezza
-
+ Diverse funzioni di isolamento possono interrompere la compatibilità con alcune applicazioni. Nel caso in cui si preferisce <b>NON</b> utilizzare quest'area virtuale <b>in modo sicuro</b> a favore della portabilità delle applicazioni, è possibile ripristinare la compatibilità abbassando le misure di sicurezza.
-
+ Isolamento degli accessi
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Protezione immagine
-
+ Mostra messaggio 1305 quando un programma tenta di caricare un file DLL nell'area virtuale
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandboxImpedisci ai programmi in esecuzione nell'area virtuale (installati sul sistema host) di caricare file DLL
@@ -7525,31 +7512,31 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
La selezione parziale impedisce la rimozione dell'area virtuale, ma non la cancellazione del contenuto.
-
+ DLL ed estensioni
-
+ Descrizione
-
+ Le regole di accesso alle risorse di Sandboxie spesso discriminano i programmi eseguibili all'interno dell'area virtuale. OpenFilePath e OpenKeyPath funzionano solo per gli eseguibili delle applicazioni situati sull'host in modo nativo. Per definire una regola senza questa restrizione, è necessario utilizzare OpenPipePath o OpenConfPath. Allo stesso modo, tutte le regole Closed(File|Key|Ipc)Path che sono definite per negazione, ad esempio ‘ClosedFilePath=!iexplore.exe,C:\Users*’ saranno sempre chiuse per gli eseguibili situati all'interno dell'area virtuale. Entrambi i criteri di restrizione possono essere disattivati dalla pagina “Criteri di accesso”.
In questo modo si impedisce che i processi dannosi all'interno dell'area virtuale creino una copia rinominata di se stessi e accedano alle risorse protette. Un altro vettore di exploit è l'iniezione di una libreria DLL in un processo autorizzato per ottenere l'accesso a tutto ciò a cui è consentito accedere. Utilizzando la protezione dell'immagine host, questo può essere evitato impedendo alle applicazioni (installate sull'host) in esecuzione nell'area virtuale di caricare le librerie DLL dalla stessa area virtuale.
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Segnalare eventuali errori di inglese direttamente all'autore di Sandboxie PlusLa funzionalità di Sandboxie può essere migliorata utilizzando delle DLL facoltative che possono essere caricate all'avvio in ogni processo dell'area virtuale tramite il file SbieDll.dll. La gestione dei componenti aggiuntivi nelle impostazioni globali offre un paio di utili estensioni che, una volta installate, possono essere attivate qui per l'area virtuale corrente.
-
+ Sicurezza avanzata
@@ -7558,129 +7545,123 @@ In questo modo si impedisce che i processi dannosi all'interno dell'ar
Usa autenticazione di Sandboxie invece di un token anonimo (sperimentale)
-
+ Isolamento aggiuntivo
-
+ Isolamento dei privilegi
-
+ Token di Sandboxie
-
+ L'uso di un token di Sandboxie personalizzato consente di isolare meglio le singole aree virtuali e di mostrare nella colonna utente del task manager il nome dell'area virtuale a cui appartiene un processo. Alcune soluzioni di sicurezza di terze parti potrebbero tuttavia avere problemi con i token personalizzati.
-
+ Controllo programmi
-
+ Forzatura programmi
-
+ Disattiva la forzatura di processi e cartelle per quest'area virtuale
-
+ Esclusione programmi
-
+ Escludi programma
-
+ Escludi cartella
-
-
- Block process from taking screenshots of windows not belonging to the containing sandbox
-
-
-
-
+ I programmi inseriti qui potranno uscire da questa area virtuale al momento del loro avvio. È anche possibile forzarli in un'altra area virtuale, ad esempio per avere il browser Web sempre aperto in una area virtuale dedicata.
-
+ Programmi secondari
-
+ I processi secondari verranno chiusi automaticamente qualora siano ancora in esecuzione, dopo aver terminato tutti gli altri processi.
-
+ Programmi principali
-
+ Una volta impostati i processi principali, tutti gli altri verranno trattati come processi secondari.
-
+ File
-
+ Configura i processi che possono accedere a file, cartelle e pipe.
L'accesso 'Consenti' su file e chiavi di registro si applica solo ai programmi eseguibili presenti all'esterno dell'area virtuale. È possibile utilizzare l'accesso 'Consenti tutto' per estenderlo a tutti i programmi o modificare questo aspetto nella scheda Criteri.
-
+ Registro
-
+ Configura i processi che possono accedere al Registro di sistema.
L'accesso 'Consenti' su file e chiavi di registro si applica solo ai programmi eseguibili presenti all'esterno dell'area virtuale. È possibile utilizzare l'accesso 'Consenti tutto' per estenderlo a tutti i programmi o modificare questo aspetto nella scheda Criteri.
-
+ IPC
-
+ Configura quali processi possono accedere agli oggetti NT IPC, come le porte ALPC, il contesto e la memoria dei processi.
Per specificare un processo, utilizza '$:program.exe' come percorso.
-
+ Finestre
-
+ Classe finestra
@@ -7689,173 +7670,198 @@ Per specificare un processo, utilizza '$:program.exe' come percorso.
Configurare i processi che possono accedere agli oggetti del desktop, come finestre e simili.
-
+ COM
-
+ Id classe
-
+ Configura i processi che possono accedere agli oggetti COM.
-
+ Non utilizzare COM virtualizzato, consenti accesso all'infrastruttura COM degli host (non raccomandato)
-
+ Criteri di accesso
-
+ Estendi le regole Close...=!<program>,... anche a tutti i programmi eseguibili presenti nell'area virtuale.
-
+ Opzioni di rete
-
+ Aggiungi regola
-
-
-
+
+
+ Azione
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Porta
-
+ IP
-
+ Protocollo
-
+ ATTENZIONE: La piattaforma di filtraggio di Windows non è attiva come impostazione predefinita. Qualora non venisse attivata manualmente, queste regole verranno applicate solo in user mode e le applicazioni dannose potrebbero bypassarle.
-
+ Recupero veloce
-
+ Recupero immediato
-
+ Opzioni varie
-
+ Consenti l'uso dei processi nidificati (per Windows 8 e versioni successive)
-
+ Consenti accesso al sistema di gestione degli account di sicurezza (SAM)
-
+ Consenti accesso al sottosistema dell'autorità di protezione locale (LSASS)
-
+ La specificità delle regole è una misura di quanto una determinata regola corrisponda a un particolare percorso, in poche parole la specificità è la lunghezza dei caratteri dall'inizio del percorso fino all'ultima sottostringa senza caratteri jolly. Una regola che corrisponde solo ai tipi di file come "*.tmp" avrebbe la più alta specificità in quanto corrisponderebbe sempre all'intero percorso del file.
Il livello di corrispondenza del processo ha una priorità più alta della specificità, e descrive come una regola si applica a un determinato processo. Le regole che si applicano per nome di processo o gruppo hanno il livello di corrispondenza più forte, seguito dalla corrispondenza per negazione (ovvero regole che si applicano a tutti i processi tranne quello specificato), mentre i livelli di corrispondenza più bassi hanno corrispondenze globali, ovvero regole che si applicano a qualsiasi processo.
-
+ Assegna priorità alle regole in base alla loro specificità e al livello di corrispondenza del processo
-
+ Modalità Privacy, blocca l'accesso ai file e al registro per tutti i percorsi eccetto quelli di sistema
-
+ Modalità di accesso
-
+ Quando la Modalità Privacy è attiva, i processi nell'area virtuale potranno soltanto leggere C:\Windows\*, C:\Program Files\* e parte del registro HKLM, mentre tutti gli altri percorsi avranno bisogno di un accesso esplicito per consentire la lettura e/o scrittura. In questa modalità, l'opzione di specificità rimane sempre attiva.
-
+ Criteri regole
-
+ Applica le regole di accesso 'Consenti' soltanto ai programmi eseguibili presenti all'esterno dell'area virtuale.
-
+ Avvia il servizio RpcSs come processo di sistema nell'area virtuale (non raccomandato)
-
+ Aggiungi processi in esecuzione nell'area virtuale agli oggetti Job (raccomandato)
-
+ Rimuovi i privilegi critici dai processi avviati con un token di sistema
-
-
+
+ (opzione di sicurezza)
-
+ Proteggi i processi di sistema nell'area virtuale dai processi senza privilegi
-
+ Disattiva l'utilizzo di RpcMgmtSetComTimeout per impostazione predefinita (potrebbe risolvere problemi di compatibilità)
-
+ L'isolamento di sicurezza che consiste nell'uso di un token di processo fortemente limitato è il metodo principale di Sandboxie di applicare restrizioni all'area virtuale. Quando questa opzione è disattivata, l'area virtuale viene gestita dalla modalità di compartimento delle applicazioni, in cui viene fornito un semplice compartimento delle applicazioni senza le normali misure di sicurezza.
@@ -7864,67 +7870,67 @@ Il livello di corrispondenza del processo ha una priorità più alta della speci
Disattiva isolamento di sicurezza (sperimentale)
-
+ Isolamento e filtraggio
-
+ Disattiva filtraggio di sicurezza (non raccomandato)
-
+ Il filtraggio di sicurezza viene usato da Sandboxie per applicare le restrizioni di accesso al file system e al registro, e per limitare l'accesso ai processi.
-
+ Le opzioni sottostanti possono essere usate senza rischi quando non si concedono privilegi amministrativi.
-
+ Nascondi processi
-
+ Aggiungi processo
-
+ Nascondi i processi di host dai processi in esecuzione nell'area virtuale.
-
+ Non consentire ai processi dell'area virtuale di vedere i processi avviati in altre aree virtuali
-
+
-
+ Utenti
-
+ Limita il log di accesso risorse ai soli amministratori
-
+ Aggiungi utente
-
+
@@ -7933,32 +7939,32 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: le impostazioni dei programmi e delle cartelle forzate nell'area virtuale non si applicano agli account utente non abilitati all'utilizzo dell'area virtuale.
-
+ Tracing
-
+
-
+ Traccia classe COM
-
+ Traccia IPC
-
+ Traccia chiavi di registro
-
+ Traccia GUI
@@ -7967,28 +7973,28 @@ Nota: le impostazioni dei programmi e delle cartelle forzate nell'area virt
Traccia chiamata API (richiede l'installazione di LogAPI nella cartella di Sandboxie Plus)
-
+ Sostituibile con "log di traccia", tuttavia "log di accesso" mi sembra più adatto per i non espertiRegistra tutti i SetError nel log di accesso (genera molto output)
-
+ Traccia file
-
+ Traccia pipe
-
+ Log di accesso
-
+ Sostituibile con "log di traccia", tuttavia "log di accesso" mi sembra più adatto per i non espertiRegistra output di debug nel log di accesso
@@ -7999,93 +8005,93 @@ Nota: le impostazioni dei programmi e delle cartelle forzate nell'area virt
Mostra sempre quest'area virtuale nell'area di notifica (in rilievo)
-
+ Miglioramenti di sicurezza
-
+ Usa il token originale solo per le chiamate di sistema NT approvate
-
+ Limita accesso ai soli driver/dispositivi approvati
-
+ Attiva tutti i miglioramenti di sicurezza (crea area virtuale ristretta)
-
+ Consenti di leggere la memoria dei processi all'esterno dell'area virtuale (non raccomandato)
-
+ Mostra messaggio 2111 quando è negato l'accesso a un processo
-
+ Attivazioni
-
+ Evento
-
-
-
-
+
+
+
+ Avvia comando
-
+ Avvia servizio
-
+ Questi eventi vengono eseguiti a ogni avvio di un'area virtuale
-
+ Qui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaAll'avvio<br />dell'area virtuale
-
-
+
+ Questi comandi vengono eseguiti FUORI dall'area virtuale poco prima dell'eliminazione del contenuto
-
+ Questi comandi vengono eseguiti solamente all'inizializzazione di un'area virtuale. Per eseguirli nuovamente, il contenuto dell'area virtuale dovrà essere rimosso.
-
+ Qui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaAll'inizializzazione<br />dell'area virtuale
-
+ È possibile specificare una lista di azioni che verranno eseguite automaticamente in base agli eventi dell'area virtuale.
-
+
-
+ Disattiva monitor di accesso risorse per quest'area virtuale
-
+ Monitor accesso risorse
-
-
+
+ Firewall di rete
-
+ Debug
-
+ ATTENZIONE! Queste opzioni possono disattivare le misure di sicurezza e compromettere la sicurezza dell'area virtuale!!!
-
+ Queste opzioni sono destinate al debug dei problemi di compatibilità, si prega di utilizzarle solo per scopi di test.
-
+ Modelli applicazioni
-
+ Filtra categorie
-
+ Cerca
-
+ Aggiungi modello
-
+ Categoria
-
+ Questo elenco contiene un gran numero di modelli di compatibilità software
-
+ Percorsi modelli
-
+
@@ -8182,23 +8188,23 @@ Please note that this values are currently user specific and saved globally for
I seguenti valori sono specifici per l'utente e salvati a livello globale per tutte le aree virtuali.
-
-
+
+ Valore
-
+ Accessibilità
-
+ Per compensare alla disabilitazione delle misure di protezione, consultare la pagina Limitazione dei diritti, nel gruppo Restrizioni.
-
+ Screen reader: JAWS, NVDA, Window-Eyes, System Access
@@ -8208,48 +8214,48 @@ I seguenti valori sono specifici per l'utente e salvati a livello globale p
Restrizioni
-
+ Applica il workaround ElevateCreateProcess (legacy)
-
+ Usa il workaround dell'oggetto desktop per tutti i processi
-
+ Questo comando verrà eseguito prima che il contenuto dell'area virtuale venga eliminato
-
+ Al recupero dei file
-
+ Questo comando verrà eseguito prima del recupero di un file e il percorso del file passato come primo argomento. Se questo comando restituisce qualcosa di diverso da 0, il recupero viene bloccato
-
+ Avvia controllo dei file
-
+ Alla rimozione del<br />contenuto
-
+ Proteggi i processi dell'area virtuale dall'accesso dei processi host.
-
-
+
+ Processo
@@ -8258,59 +8264,64 @@ I seguenti valori sono specifici per l'utente e salvati a livello globale p
Blocca anche l'accesso in lettura ai processi in questa area virtuale
-
+ Aggiungi opzione
-
+ Qui è possibile configurare opzioni avanzate per processo al fine di migliorare la compatibilità e/o personalizzare il comportamento dell'area virtuale.
-
+ Opzione
-
+
-
+
-
+ Modelli
-
+
+
+
+
+
+ Le seguenti impostazioni consentono di usare Sandboxie in combinazione con i programmi per l'accesso facilitato. Tuttavia, alcune misure di protezione di Sandboxie vengono disabilitate quando queste impostazioni sono attive.
-
+ Qui ho forzato di proposito un ritorno a capoModifica configurazione
area virtuale
-
+ Modifica Sandboxie.ini
-
+ Annulla
-
+ Salva
@@ -8342,27 +8353,27 @@ area virtuale
QPlatformTheme
-
+ OK
-
+ Applica
-
+ Annulla
-
+ &Sì
-
+ &No
@@ -8485,12 +8496,12 @@ area virtuale
Questo certificato è scaduto, si prega di <a href="sbie://update/cert">ottenere un certificato aggiornato</a>.
-
+ Il canale di anteprima contiene le ultime versioni di anteprima pubblicate su GitHub.
-
+ Inserire il certificato di supporto
@@ -8503,12 +8514,12 @@ area virtuale
Nuove versioni
-
+ Il canale stabile contiene le ultime versioni stabili pubblicate su GitHub.
-
+ Cerca nel canale stabile
@@ -8517,7 +8528,7 @@ area virtuale
Mantenere Sandboxie aggiornato con i rilasci continui di Windows e garantire la compatibilità con i browser moderni è uno sforzo senza fine. Si prega di supportare questo lavoro con una donazione.<br />È possibile supportare lo sviluppo con una <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">donazione PayPal</a>, che consente anche la donazione tramite carta di credito. Inoltre, è possibile fornire un supporto costante con un <a href="https://sandboxie-plus.com/go.php?to=patreon">abbonamento Patreon</a>.
-
+ Cerca nel canale di anteprima
@@ -8550,12 +8561,12 @@ area virtuale
Mostra la finestra di recupero file prima di svuotare le aree virtuali
-
+ Blocco della configurazione
-
+ <a href="sbie://docs/ipcrootpath">Percorso IPC</a> dell'area virtuale:
@@ -8677,7 +8688,7 @@ area virtuale
Opzioni di visualizzazione
-
+ %
@@ -8687,32 +8698,32 @@ area virtuale
Alterna il colore delle righe negli elenchi
-
+ <a href="sbie://docs/keyrootpath">Percorso del registro</a> dell'area virtuale:
-
+ Funzionalità di isolamento
-
+ Configurazione Sandboxie
-
+ Cancella la password non appena la finestra viene nascosta
-
+ Solo gli account Amministratore possono utilizzare la funzione «Sospendi programmi forzati»
-
+ <a href="sbie://docs/filerootpath">Percorso file system</a> dell'area virtuale:
@@ -8737,47 +8748,47 @@ area virtuale
Mostra notifica riguardante l'avvio delle operazioni automatiche nell'area virtuale
-
+ Configurazione avanzata
-
+ Attiva protezione processi in modalità kernel
-
+ Solo gli account Amministratore possono apportare modifiche
-
+ È necessario inserire la password per apportare modifiche
-
+ Modifica password
-
+ Percorso cartella portatile
-
+ ...
-
+ Impostazioni globali
-
+ Monitora Sandboxie.ini per eventuali modifiche
@@ -8823,12 +8834,12 @@ area virtuale
Nascondi i processi di Sandboxie dalla lista dei task
-
+ Font dell'editor
-
+ Opzioni grafiche
@@ -8878,198 +8889,203 @@ area virtuale
-
+ Seleziona font
-
+ Reimposta font
-
+ Qui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaOpzioni editor di<br />configurazione
-
+ #
-
+ Editor esterno
-
+ Gestione componenti aggiuntivi
-
+ Componenti aggiuntivi facoltativi
-
+ Sandboxie Plus offre numerose opzioni e un supporto ad una vasta gamma di estensioni. In questa pagina, è possibile configurare l'integrazione di componenti aggiuntivi, plugin, e altri componenti di terze parti. I componenti facoltativi possono essere scaricati dal Web, e l'installazione di alcuni potrebbe richiedere privilegi di amministratore.
-
+ Stato
-
+ Versione
-
+ Descrizione
-
+ <a href="sbie://addons">aggiorna la lista dei componenti aggiuntivi</a>
-
+ Installa
-
+
-
+
-
+ kilobyte
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
+ Supporto Sandboxie
-
+ Questo certificato è scaduto, si prega di <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">ottenere un certificato aggiornato</a>.
-
+ Ottieni
-
+ Recupera/aggiorna/rinnova il certificato utilizzando il numero di serie
-
+ Inutile da tradurre
-
+ Updater Sandboxie
-
+ Mantieni aggiornata la lista dei componenti aggiuntivi
-
+ Impostazioni aggiornamento
-
+ Il canale insider offre accesso anticipato alle nuove funzionalità e risoluzioni di bug che saranno successivamente rilasciate al pubblico, in aggiunta a tutti i miglioramenti rilevanti dal canale stabile.
A differenza del canale di anteprima, non contiene modifiche non testate, potenzialmente problematiche o sperimentali che potrebbero non essere pronte per l'uso comune.
-
+ Cerca nel canale insider
-
+ Controlla periodicamente gli aggiornamenti di Sandboxie Plus
-
+ Frasi più lunghe non entranoInfo sul <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">canale insider</a>
-
+ Mantieni aggiornati gli script per la risoluzione problemi
-
+ Frasi più lunghe non entranoControlla ogni
-
+ Usa la piattaforma di filtraggio di Windows per limitare accesso di rete
-
+ Usa chiamate di sistema Win32k per accelerazione GPU (sperimentale)
@@ -9105,7 +9121,7 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
Usa icone grandi nell'elenco delle aree virtuali *
-
+ Ridimensionamento DPI elevati
@@ -9140,12 +9156,12 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
Integrazione con il menu Start dell'host
-
+ Ridimensionamento caratteri
-
+ (Riavvio richiesto)
@@ -9171,51 +9187,51 @@ in modo diverso a seconda dell'interfaccia di visualizzazione.Usa autenticazione di Sandboxie invece di un token anonimo (sperimentale)
-
+ Avvisi dei programmi
-
-
-
-
+
+
+
+ Nome
-
+ Percorso
-
+ Rimuovi programma
-
+ Aggiungi programma
-
+ Quando uno dei seguenti programmi viene avviato all'esterno dell'area virtuale, Sandboxie mostrerà il messaggio SBIE1301.
-
+ Aggiungi cartella
-
+ Blocca l'esecuzione dei programmi elencati all'esterno dell'area virtuale
-
+ Mostra messaggio 1308 quando un programma non viene avviato
@@ -9251,8 +9267,8 @@ in modo diverso a seconda dell'interfaccia di visualizzazione.
-
-
+
+ Rimuovi
@@ -9267,159 +9283,164 @@ in modo diverso a seconda dell'interfaccia di visualizzazione.Disattiva le notifiche popup dei messaggi di Sandboxie
-
+ Supporto e aggiornamenti
-
+ I sostenitori del progetto Sandboxie Plus riceveranno un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificato di sostenitore</a>. È come un codice di licenza, ma dedicato alle persone straordinarie che utilizzano software open source. :-)
-
+ Mantenere Sandboxie aggiornato con i rilasci continui di Windows e garantire la compatibilità con i browser moderni è uno sforzo senza fine. È possibile supportare lo sviluppo <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">contribuendo direttamente al progetto</a>, <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">acquistando un certificato</a>, <a href="https://sandboxie-plus.com/go.php?to=patreon">sottoscrivendo un abbonamento Patreon</a>, o effettuando una <a href="https://sandboxie-plus.com/go.php?to=donate">donazione PayPal</a>.<br />Il supporto gioca un ruolo fondamentale per l'avanzamento e il mantenimento di Sandboxie.
-
+
-
+
-
+
-
+ Area virtuale predefinita:
-
+ Usa autenticazione di Sandboxie invece di un token anonimo
-
+ Opzioni Sandboxie.ini
-
+ Controllo programmi
-
+ Mostra messaggio 1301 quando i processi forzati sono stati disabilitati
-
+
-
+
-
+
-
+
-
+
-
+ Modelli applicazioni
-
+ Compatibilità applicazioni
-
+ Non controllare la compatibilità dei programmi in futuro
-
+ Attiva
-
+ Disattiva
-
+ È stata rilevata la presenza dei seguenti programmi nel sistema. Fare click su OK per applicare le configurazioni che miglioreranno la compatibilità con questi programmi. Le configurazioni verranno applicate a tutte le aree virtuali, esistenti e non.
-
+ Modelli locali
-
+ Aggiungi modello
-
+ Cerca
-
+ Questo elenco contiene i modelli personalizzati creati dall'utente per le opzioni dell'area virtuale
-
+
+
+
+
+
+ Qui ho forzato di proposito un ritorno a capoModifica configurazione
globale
-
+ Salva
-
+ Modifica Sandboxie.ini
-
+ Annulla
-
+ Version UpdatesAggiornamenti di versione
@@ -9429,12 +9450,12 @@ globale
Nuove versioni complete dal canale di rilascio selezionato.
-
+ Correzioni per la versione installata, aggiornamenti ai file Templates.ini e translations.7z.
-
+ Non notificare la scadenza del certificato in futuro
diff --git a/SandboxiePlus/SandMan/sandman_ja.ts b/SandboxiePlus/SandMan/sandman_ja.ts
index 35a1f941..e4fe66c6 100644
--- a/SandboxiePlus/SandMan/sandman_ja.ts
+++ b/SandboxiePlus/SandMan/sandman_ja.ts
@@ -807,12 +807,12 @@ Error: %1
CCompletePage
-
+
-
+
@@ -1139,19 +1139,6 @@ You can use %USER% to save each users sandbox to an own folder.
-
- CMultiErrorDialog
-
-
-
-
-
-
-
-
-
-
-CNewBoxWizard
@@ -1372,43 +1359,43 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
@@ -1420,11 +1407,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
-
-
+
+
@@ -1434,7 +1421,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1611,7 +1598,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1680,88 +1667,88 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -2158,17 +2145,17 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
-
+
-
+
-
+
-
+
@@ -2649,22 +2636,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+
-
+
-
+
-
+
@@ -2746,13 +2733,13 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+
-
+ Sandboxie-Plus v%1
@@ -2893,7 +2880,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Sandboxie-Plus について
@@ -3276,11 +3263,11 @@ Do you want to do the clean up?
-
-
-
-
-
+
+
+
+
+
@@ -3310,124 +3297,124 @@ Do you want to do the clean up?
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Sandboxie-Plus Version: %1 (%2)
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3435,579 +3422,579 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+ Forced Programs ルールを一時的に無効化する時間を秒単位で入力してください。
-
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Sandboxie 構成は再読み込みされました
-
+
-
+
-
+ この操作には管理者権限が必要です。
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ %1 をサンドボックス化した、または、していないブラウザで開きますか?
-
+
-
+
-
+
-
+ 列をリセット
-
+
-
+
-
+
-
+
-
+
-
+
-
+ 閉じる
-
+
-
+
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
-
+
-
+
-
+
@@ -5010,17 +4997,17 @@ This file is part of Sandboxie and all change done to it will be reverted next t
CSelectBoxWindow
-
+
-
+
-
+
@@ -5029,7 +5016,7 @@ This file is part of Sandboxie and all change done to it will be reverted next t
CSettingsWindow
-
+
@@ -5175,330 +5162,330 @@ This file is part of Sandboxie and all change done to it will be reverted next t
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+
-
+ Error retriving certificate: %1
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+ ディレクトリの選択
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -5618,101 +5605,101 @@ This file is part of Sandboxie and all change done to it will be reverted next t
CSubmitPage
-
+ 問題レポートを提出する
-
+ 問題の詳細な説明
-
+ Sandboxie.ini を添付する
-
+ サンドボックスの互換性は構成に依存するため、Sandboxie.ini ファイルを添付すると問題を確認するのに非常に役立ちます。
-
+ ログを添付する
-
+ 部分的にチェックされた状態を選択すると、メッセージログのみを送信し、トレースログは送信しません。
送信する前に、メインウィンドウでログを確認することができます。
-
+ クラッシュダンプを添付
-
+ トラブルシューティング手順中にアプリケーションがクラッシュしました。クラッシュダンプを添付するとデバッグに役立ちます。
-
+ メールアドレス
-
+ 問題の解決策が特定された時に、通知を受け取るための電子メールアドレスを提供するオプションがあります。
-
+ Sandboxie-Plus に関して現在ご迷惑をお掛けして申し訳ありません。
-
+ 残念ながら、自動トラブルシューティング手順は失敗しました。
-
+ 残念ながら、説明された特定の問題に対して利用できる自動トラブルシューティングの手順はありません。
-
+ 問題レポートを提出したい場合は、以下のレポートを確認して「完了」をクリックしてください。
-
+ ログを圧縮する
-
+ ダンプを圧縮する
-
+ レポートを提出しています...
-
+ 問題レポートの提出に失敗しました。エラー %1
ログ添付なしで、提出してみてください。
-
+ あなたの問題レポートは正常に提出されました。ありがとうございました。
@@ -6452,44 +6439,44 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
@@ -6524,27 +6511,32 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
@@ -6554,37 +6546,37 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -6594,274 +6586,268 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+
-
-
- Block process from taking screenshots of windows not belonging to the containing sandbox
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ 名前
-
+
-
+ 上に移動
-
+ 下に移動
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
@@ -6871,853 +6857,862 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
- Prevents processes in the sandbox from interfering with power operation
-
-
-
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+ プログラムを追加
-
+
-
+ プログラム制御
-
+
-
+
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ フォルダを追加
-
+ 直接リカバリ
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandbox
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ アプリテンプレート
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+ ini 編集セクション
-
+ ini を編集
-
+ キャンセル
-
+ 保存
@@ -7893,27 +7893,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+
-
+
-
+ キャンセル
-
+
-
+
@@ -8273,10 +8273,10 @@ Please note that this values are currently user specific and saved globally for
-
-
-
-
+
+
+
+ 名前
@@ -8307,8 +8307,8 @@ Please note that this values are currently user specific and saved globally for
-
-
+
+
@@ -8389,538 +8389,548 @@ Please note that this values are currently user specific and saved globally for
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+ アドオン管理
-
+
-
+
-
+ 状態
-
+
-
+
-
+
-
+
-
+ アドオン構成
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ サポートと更新
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ 高度な構成
-
+ Sandboxie 構成
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Sandboxie.ini プリセット
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ プログラム制御
-
+ プログラム アラート
-
+
-
+ プログラムを追加
-
+
-
+ 削除
-
+
-
+
-
+ サンドボックスの外で以下のプログラムが実行された時、Sandboxie はメッセージ SBIE 1301 を発行します。
-
+ フォルダを追加
-
+
-
+
-
+
-
+
-
+
-
+ アプリテンプレート
-
+ アプリケーション互換性
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+ ini 編集セクション
-
+ 保存
-
+ ini を編集
-
+ キャンセル
diff --git a/SandboxiePlus/SandMan/sandman_ko.ts b/SandboxiePlus/SandMan/sandman_ko.ts
index 1bbaaf86..dd69adff 100644
--- a/SandboxiePlus/SandMan/sandman_ko.ts
+++ b/SandboxiePlus/SandMan/sandman_ko.ts
@@ -926,12 +926,12 @@ Error: %1
CCompletePage
-
+ 문제 해결 완료
-
+
@@ -1288,14 +1288,12 @@ You can use %USER% to save each users sandbox to an own fodler.
CMultiErrorDialog
-
- Sandboxie-Plus - 오류
+ Sandboxie-Plus - 오류
-
- 메시지
+ 메시지
@@ -1736,11 +1734,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
디렉터리 선택
-
+
-
-
+
+
@@ -1750,8 +1748,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
모든 프로그램
-
-
+
+
@@ -1789,7 +1787,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1860,57 +1858,57 @@ Note: The update check is often behind the latest GitHub release to ensure that
샌드박스 ipc 루트
-
+ 특수 옵션 추가:
-
-
+
+ 시작 시
-
-
-
-
-
+
+
+
+
+ 명령 실행
-
+ 서비스 시작
-
+ 초기화 시
-
+ 파일 복구 시
-
+ 콘텐츠 삭제 시
-
+ 종료 시
-
+ 이 샌드박스에 액세스를 허용하려면 프로그램 파일 이름을 입력하십시오
-
+ 이 샌드박스에 액세스를 거부하려면 프로그램 파일 이름을 입력하십시오
@@ -1919,11 +1917,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
삭제 시
-
-
-
-
-
+
+
+
+
+ 실행할 명령줄을 입력하십시오
@@ -1932,12 +1930,12 @@ Note: The update check is often behind the latest GitHub release to ensure that
프로그램 파일 이름을 입력하십시오
-
+ 거부
-
+ %1 (%2)
@@ -2184,7 +2182,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
이미지 헤더 복원됨
-
+ 서비스 식별자를 입력하십시오
@@ -2254,7 +2252,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
네트워크 장치에 대한 액세스를 거부하여 차단
-
+
@@ -2360,17 +2358,17 @@ Note: The update check is often behind the latest GitHub release to ensure that
오류: %1
-
+ 선택한 로컬 템플릿을 삭제하시겠습니까?
-
+ 로컬 템플릿만 제거할 수 있습니다!
-
+ %1 템플릿 추가
-
+ 옵션 검색
-
+ 박스: %1
-
+ 템플릿: %1
-
+ 전역: %1
-
+ 기본값: %1
-
+ 이 샌드박스가 삭제되어 구성을 저장할 수 없습니다.
-
+ 일부 변경 사항이 아직 저장되지 않았습니다. 이 옵션 창을 닫으시겠습니까?
-
+ 프로그램 입력:
@@ -2809,13 +2807,13 @@ Full path: %4
이 문제 해결 절차를 초기화할 수 없습니다. 다음을 클릭하여 이슈 보고서를 제출할 수 있습니다.
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.내부적으로 일부 오류가 발생했습니다. 이 문제 해결 절차를 계속할 수 없습니다. 다음을 클릭하여 이슈 보고서를 제출할 수 있습니다.
-
+
@@ -2950,22 +2948,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ 폴더 대기 중: %1
-
+ 폴더 삭제 중: %1
-
+ 폴더 병합: %1 >> %2
-
+ 스냅샷 병합을 완료하는 중...
@@ -3046,27 +3044,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1
-
+ 열 초기화
-
+ 셀 복사
-
+ 행 복사
-
+ 패널 복사
@@ -3342,7 +3340,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Sandboxie-Plus 정보
@@ -3427,11 +3425,11 @@ Do you want to do the clean up?
-
-
-
-
-
+
+
+
+
+ 이 메시지를 다시 표시하지 않습니다.
@@ -3461,7 +3459,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
<br /><br />이 박스는 리소스 액세스 옵션에 명시적으로 부여된 경우를 제외하고 <a href="sbie://docs/privacy-mode">모든 사용자 데이터 위치에 대한 액세스</a>를 금지합니다.
-
+ 명령줄에서 알 수 없는 작업 '%1'이(가) 요청되었습니다
@@ -3481,42 +3479,42 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
- 샌드박스 내용 삭제
-
+ OnBoxDelete 실행 중: %1
-
+ %1 내용 자동 삭제
-
+ %1의 내용을 자동 삭제하는 중
-
+ %1 디렉터리: %2
-
+ 응용프로그램
-
+ 설치
-
+ 현재 구성: %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3525,55 +3523,55 @@ Please check if there is an update for sandboxie.
Sandboxie에 대한 업데이트가 있는지 확인 부탁드립니다.
-
+ 현재 빌드에 대해 이 메시지를 다시 표시하지 않습니다.
-
+ Windows 빌드 %1이 현재 알려진 Sandboxie 버전의 지원 기능을 초과합니다. Sandboxie는 시스템 불안정을 유발할 수 있는 마지막으로 알려진 오프셋을 사용하려고 합니다.
-
+ 선택한 기능에는 <b>고급</b> 지원자 인증서가 필요합니다.
-
+ 선택한 기능 세트는 프로젝트 후원자만 사용할 수 있습니다.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">프로젝트 후원자 되기</a>, 및 <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">후원자 인증서 받기</a>
-
+ 사용하려는 인증서가 차단되었습니다. 이는 해당 인증서가 원인으로 인해 무효화되었음을 의미합니다. 이 인증서를 사용하려는 시도는 사용 약관 위반에 해당합니다!
-
-
+
+ 앞으로 묻지 않기
-
+ 암호화된 샌드박스의 모든 프로세스를 종료하고 마운트 해제하시겠습니까?
-
-
-
+
+
+ Sandboxie-Plus - 오류
-
+ 모든 Sandboxie 구성 요소를 중지하지 못했습니다
-
+ 필수 Sandboxie 구성 요소를 시작하지 못했습니다
@@ -3622,17 +3620,17 @@ Sandboxie에 대한 업데이트가 있는지 확인 부탁드립니다.<a href="sbie://update/check" style="color: red;">사용 가능한 새 Sandboxie-Plus 업데이트 v%1이 있습니다</a>
-
+ 일부 호환성 템플릿(%1)이(가) 없거나 삭제되었을 수 있습니다. 모든 박스에서 제거하시겠습니까?
-
+ 제거된 템플릿을 정리했습니다...
-
+
@@ -3641,7 +3639,7 @@ No will choose: %2
아니요 선택: %2
-
+ 기본 샌드박스를 찾을 수 없습니다. 생성: %1
@@ -3650,7 +3648,7 @@ No will choose: %2
설치 마법사를 생략하시겠습니까?
-
+ - 연결되지 않음
@@ -3663,7 +3661,7 @@ No will choose: %2
%1 (%2):
-
+ 선택한 기능 세트는 프로젝트 후원자만 사용할 수 있습니다. 후원자 인증서 없이 이 기능 세트가 활성화된 박스에서 시작된 프로세스는 5분 후에 종료됩니다.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">프로젝트 후원자가 되어</a>, <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">후원 인증서</a>를 받습니다
@@ -3723,22 +3721,22 @@ No will choose: %2
-
+ 관리자만 구성을 변경할 수 있습니다.
-
+ 구성 암호를 입력하십시오.
-
+ 로그인 실패: %1
-
+ 모든 sandboxes의 모든 프로세스를 종료하시겠습니까?
@@ -3747,133 +3745,133 @@ No will choose: %2
묻지 않고 모두 종료
-
+ Sandboxie-Plus는 휴대용 모드로 시작되었으며 필요한 서비스를 만들어야 합니다. 관리 권한을 묻는 메시지가 나타납니다.
-
+ 주의: 다른 에이전트 (아마도 SbieCtrl.exe)가 이미 이 Sandboxie 세션을 관리하고 있습니다. 먼저 이 세션을 닫은 후 다시 연결하여 작업을 수행하십시오.
-
+ 유지 보수 작업을 실행하는 중입니다. 잠시 기다려 주십시오...
-
+ 숨겨진 메시지 박스 (예)를 재설정하시겠습니까, 아니면 모든 로그 메시지 (아니오)만 재설정하시겠습니까?
-
+ 파일이 저장될 때마다 변경 내용이 자동으로 적용됩니다.
-
+ 편집기가 닫히는 즉시 변경 내용이 자동으로 적용됩니다.
-
+ 오류 상태: 0x%1(%2)
-
+ 알 수 없음
-
+ 샌드박스를 삭제하려면 먼저 비워야 합니다.
-
+ 박스 데이터 파일을 복사하지 못했습니다
-
+ 이전 박스 데이터 파일을 제거하지 못했습니다
-
+ 알 수 없는 오류 상태: 0x%1
-
+ 샌드박스한 웹 브라우저 또는 샌드박스 안 한 웹 브라우저에서 %1을(를) 여시겠습니까?
-
+ 샌드박스함
-
+ 샌드박스 안 함
-
+ 대소문자 구분
-
+ 정규식
-
+ 강조
-
+ 닫기
-
+ 찾기(&F)...
-
+ 모든 열
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>Sandboxie-Plus 정보 - 한국어: VenusGirl</h3><p>버전 %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
-
+ Sandboxie+의 이 사본은 다음에 대해 인증되었습니다: %1
-
+ Sandboxie+는 개인 및 비상업적인 사용에 대해 무료입니다.
-
+ Sandboxie-Plus는 Sandboxie의 오픈 소스 연속입니다.<br />더 많은 정보는 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a>를 방문하세요.<br /><br />%3<br /><br />드라이버 버전: %1<br />기능: %2<br /><br />아이콘 제공은 <a href="https://icons8.com">icons8.com</a>
-
+ 이 작업을 수행하려면 관리자 권한이 필요합니다.
@@ -3912,7 +3910,7 @@ No will choose: %2
-
+ Sandboxie-Plus 내부자 [%1]
@@ -4062,135 +4060,135 @@ No will choose: %2
이 박스는 <a href="sbie://docs/boxencryption">암호화</a>되어<a href="sbie://docs/black-box"> 샌드박스 프로세스에 대한 액세스가 보호됩니다</a>.
-
+ 강제 프로세스 없음
-
+ USB 샌드박스를 찾을 수 없습니다: 만들기: %1
-
+ 바로 가기 제거: %1
-
+ 업데이트된 바로 가기: %1
-
+ 바로 가기 추가: %1
-
+ OnBoxTerminate 실행 중: %1
-
+ 샌드박스 %1 자동 제거 중
-
+ Sandboxie-Plus 버전: %1 (%2)
-
+ 데이터 디렉터리: %1
-
+ 개인 사용
-
+ - 비상업적 용도로만 사용
-
+ 설치 마법사를 생략하시겠습니까?
-
+ 단축키 %1을(를) 구성하지 못했습니다. 오류: %2
-
-
-
+
+
+ (%1)
-
+ %1 박스는 프로젝트 후원자들만 사용할 수 있는 기능을 사용하도록 구성되어 있습니다.
-
+ %1 박스는 <b>고급</b> 지원자 인증서가 필요한 기능을 사용하도록 구성되어 있습니다.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">인증서를 업그레이드</a> 하여 고급 기능의 잠금을 해제합니다.
-
+ %2 박스에서 시작한 프로그램 %1은 프로젝트 후원자가 독점적으로 사용할 수 있는 기능을 사용하도록 구성되었기 때문에 5분 후에 종료됩니다.
-
+ %1 박스는 프로젝트 후원자가 독점적으로 사용할 수 있는 기능을 사용하도록 구성되었으며, 이러한 사전 설정은 무시됩니다.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">프로젝트 후원자가 되어</a>, <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">후원자 인증서</a>를 받습니다
-
+ 인증서 서명이 잘못되었습니다!
-
+ 인증서가 이 제품에 적합하지 않습니다.
-
+ 인증서가 노드 잠금 상태입니다.
-
+ 지원 인증서가 잘못되었습니다.
오류: %1
-
+ The evaluation periode has expired!!!평가 기간이 만료되었습니다!!!
@@ -4213,47 +4211,47 @@ Error: %1
가져오기: %1
-
+ 강제 프로그램 규칙을 비활성화하는 기간을 초로 입력하십시오.
-
+ 복구 안 함
-
+ 메시지 없음
-
+ <b>오류:</b> Sandboxie-Plus Manager(SandMan.exe)에 유효한 서명(SandMan.exe.sig)이 없습니다. <a href="https://sandboxie-plus.com/go.php?to=sbie-get">공식 다운로드 페이지</a>에서 신뢰할 수 있는 릴리스를 다운로드하십시오.
-
+ 유지 관리 작업에 실패했습니다 (%1)
-
+ 유지 보수 작업이 완료되었습니다
-
+ Plus UI에서 이 기능은 기본 샌드박스 목록 보기에 통합되었습니다.
-
+ 박스/그룹의 상황에 맞는 메뉴를 사용하여 박스와 그룹을 다른 그룹으로 이동할 수 있습니다. 끌어서 놓기를 사용하여 항목을 이동할 수도 있습니다. 또는 ALT를 누른 상태에서 화살표 키를 사용하여 그룹 내에서 항목을 위아래로 이동할 수도 있습니다.<br />.샌드박스 메뉴에서 새 박스 및 그룹을 생성할 수 있습니다.
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4262,199 +4260,199 @@ This file is part of Sandboxie and all changed done to it will be reverted next
이 파일은 Sandboxie의 일부이며 다음에 Sandboxie가 업데이트될 때 변경된 모든 내용이 되돌아갑니다.
-
+ Sandboxie 구성을 다시 불러왔습니다
-
+ 실행하지 못했습니다: %1
-
+ 드라이버에 연결하지 못했습니다
-
+ Sandboxie Service와 통신하지 못했습니다: %1
-
+ 호환되지 않는 Sandboxie %1이(가) 발견되었습니다. 호환 버전: %2
-
+ Sandboxie 설치 경로를 찾을 수 없습니다.
-
+ %1에서 구성을 복사하지 못했습니다: %2
-
+ %1 이름의 샌드박스가 이미 있습니다
-
+ 샌드박스 %1을(를) 삭제하지 못했습니다: %2
-
+ 샌드박스 이름은 32자를 초과할 수 없습니다.
-
+ 샌드박스 이름은 장치 이름이 될 수 없습니다.
-
+ 샌드박스 이름에는 공백으로 표시되는 문자, 숫자 및 밑줄만 포함될 수 있습니다.
-
+ 모든 프로세스를 종료하지 못했습니다
-
+ 샌드박스에 대해 삭제 보호가 활성화되었습니다
-
+ 박스 내용을 삭제하려면 먼저 모든 샌드박스 프로세스를 중지해야 합니다
-
+ 샌드박스 폴더 삭제 중 오류 발생: %1
-
+ A all processes in a sandbox must be stopped before it can be renamed.샌드박스의 모든 프로세스를 중지해야 이름을 바꿀 수 있습니다.
-
+ '%1' 디렉터리를 '%2'로 이동하지 못했습니다
-
+ 박스 이미지 '%1'을(를) '%2'(으)로 이동하지 못했습니다
-
+ 프로세스가 박스에서 실행 중인 동안에는 이 스냅샷 작업을 수행할 수 없습니다.
-
+ 새 스냅샷에 대한 디렉터리를 생성하지 못했습니다
-
+ 스냅샷을 찾을 수 없음
-
+ '%1' 스냅샷 디렉터리를 '%2'과(와) 병합하는 동안 오류가 발생했습니다. 스냅샷이 완전히 병합되지 않았습니다.
-
+ 이전 스냅샷 디렉터리 '%1'을(를) 제거하지 못했습니다
-
+ 이후 여러 스냅샷이 공유하는 스냅샷을 제거할 수 없습니다
-
+ '%1' 섹션의 구성을 업데이트할 수 있는 권한이 없습니다
-
+ %2 섹션에서 구성 설정 %1을 설정하지 못했습니다: %3
-
+ 빈 샌드박스의 스냅샷을 생성할 수 없습니다
-
+ 같은 이름의 샌드박스가 이미 있습니다
-
+ 구성 암호는 64자를 초과할 수 없습니다
-
+ 사용자가 작업을 취소했습니다
-
+ The content of an un mounted sandbox can not be deleted마운트 해제된 샌드박스의 내용을 삭제할 수 없습니다
-
+ %1
-
+ 가져오기/내보내기 기능을 사용할 수 없습니다, 7z.dll을 불러올 수 없습니다
-
+ 박스 압축파일을 만들지 못했습니다
-
+ 7z 압축파일을 열지 못했습니다
-
+ 박스 압축파일의 압축을 풀지 못했습니다
-
+ 선택한 7z 파일이 박스 압축파일이 아닙니다
-
+ %1 항목에 대한 작업에 실패했습니다.
@@ -4463,28 +4461,28 @@ This file is part of Sandboxie and all changed done to it will be reverted next
샌드박스에서 (예) 또는 샌드박스가 없는 (아니오) 웹 브라우저에서 %1을 여시겠습니까?
-
+ 나중을 위해 선택을 기억합니다.
-
+ 후원자 인증서가 이 빌드에 유효하지 않습니다. 업데이트된 인증서를 받으십시오
-
+ The supporter certificate is expired %1 days ago, please get an updated certificate후원자 인증서가 %1일 전에 만료되었습니다. 업데이트된 인증서를 받으십시오
-
+ , 하지만 현재 빌드에 대해서는 유효합니다
-
+ 후원자 인증서가 %1일 후에 만료됩니다. 업데이트된 인증서를 받으십시오
@@ -5441,17 +5439,17 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSelectBoxWindow
-
+ Sandboxie-Plus - 샌드박스에서 실행
-
+ 샌드박스 외부에서 프로그램을 실행하시겠습니까?
-
+ 샌드박스를 선택하십시오.
@@ -5597,103 +5595,103 @@ This file is part of Sandboxie and all changed done to it will be reverted next
%1
-
+ %1 템플릿 추가
-
+ 글꼴 선택
-
+ 글꼴 재설정
-
+ 설정 검색
-
+ %0, %1 pt
-
+ 메시지를 입력하십시오
-
-
-
+
+
+ 샌드박스에서 실행(&S)
-
+ 킬로바이트 (%1)
-
+ 볼륨이 연결되지 않음
-
+ 이 후원자 인증서가 만료되었습니다. <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">업데이트된 인증서</a>를 받으십시오.
-
+ <br /><font color='red'>현재 빌드 Plus 기능은 활성화된 상태로 유지</font>되지만 호환성 업데이트 및 문제 해결 데이터베이스를 포함한 샌드박스 라이브 서비스에 더 이상 액세스할 수 없습니다.
-
+ 이 후원자 인증서는 <font color='red'>%1일 후에 만료</font>됩니다. <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">업데이트된 인증서</a>를 받으십시오.
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.기존 후원자 인증서를 입력하지 않고 기능 업그레이드 키를 사용하려고 합니다. (<b>웹 사이트에 굵은 글씨로 명시되어 있는</b) 이 유형의 키는 기존 후원자 인증서가 있어야 하며, 인증서가 없으면 쓸모가 없습니다.<br />고급 기능을 사용하려면 표준 인증서와 기능 업그레이드 키를 모두 받아야 합니다.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.기존 후원자 인증서를 입력하지 않고 갱신 키를 사용하려고 합니다. (<b>웹사이트에 굵은 글씨로 명시되어 있는</b) 이 유형의 키는 기존 지원자 인증서가 있어야 하며, 해당 인증서가 없으면 쓸모가 없습니다.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u><br /><br /><u>제품 설명을 읽지 않고 실수로 이 키를 얻으신 경우 이메일 (홈페이지 제공)로 연락하여 이 문제를 해결해 주시기 바랍니다.</u>
-
+ 인증서 검색 중...
-
+ Error retriving certificate: %1인증서를 검색하는 중 오류 발생: %1
-
+ 알 수 없는 오류 (아마도 네트워크 문제)
@@ -5702,42 +5700,42 @@ This file is part of Sandboxie and all changed done to it will be reverted next
인증서를 가져오는 중...
-
+ 기여자
-
+ 영구
-
+ 비지니스
-
+ 개인
-
+ Great Patreon
-
+ Patreon
-
+ 패밀리
-
+ 홈
@@ -5746,12 +5744,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
기부
-
+ 평가
-
+ 유형 %1
@@ -5760,48 +5758,48 @@ This file is part of Sandboxie and all changed done to it will be reverted next
표준
-
+ 고급
-
+ 최대 수준
-
+ 수준 %1
-
+ 접근에 필요한 후원자 인증서
-
+ 자동화에 필요한 후원자 인증서
-
+ 이 인증서는 현재 빌드에 유효하지 않습니다. 새 인증서를 가져오거나 이전 빌드로 다운그레이드해야 합니다.
-
+ 이 인증서는 만료되었지만 현재 설치된 버전 및 기능에 대해서는 사용 가능한 상태로 유지됩니다. 그러나 호환성 업데이트 및 온라인 문제 해결 데이터베이스를 포함한 Sandboxie-Live 서비스에 더 이상 액세스할 수 없습니다.
-
+ 이 인증서는 만료되었습니다. 새 인증서를 받아야 합니다.
-
+ 샌드박스 웹 브라우저
@@ -5824,28 +5822,28 @@ This file is part of Sandboxie and all changed done to it will be reverted next
다운로드하고 설치
-
+ 프로그램 찾아보기
-
+ 프로그램 선택
-
+ 실행 파일 (*.exe *.cmd)
-
-
+
+ 메뉴 제목을 입력하십시오
-
+ 명령을 입력하십시오
@@ -5854,7 +5852,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
이 후원자 인증서가 만료되었습니다, <a href="sbie://update/cert">에서 업데이트된 인증서를 받으십시오</a>.
-
+ <br /><font color='red'>%1일 후에 추가 기능이 비활성화됩니다.</font>
@@ -5863,7 +5861,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
<br /><font color='red'>이 빌드 Plus 기능은 계속 사용 가능합니다.</font>
-
+ <br />Plus 기능이 더 이상 사용되지 않습니다.
@@ -5881,12 +5879,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
후원자 인증서 필요
-
+ 샌드박스 없이 실행(&U)
-
+ 인증서로 보이지 않습니다. 인증서 일부가 아닌 전체 인증서를 입력하십시오.
@@ -5899,7 +5897,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
안타깝게도 이 인증서는 오래되었습니다.
-
+ Sandboxie-Plus 개발을 지원해 주셔서 감사합니다.
@@ -5908,88 +5906,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
이 후원 인증서는 유효하지 않습니다.
-
+ 사용 가능한 업데이트
-
+ 설치됨
-
+ %1까지
-
+ (정보 웹사이트)
-
+ 이 추가 기능은 필수 사항 제거할 수 없습니다.
-
-
+
+ 디렉터리 선택
-
+ <a href="check">지금 확인</a>
-
+ 새 구성 암호를 입력하십시오.
-
+ 새 구성 암호를 다시 입력하십시오.
-
+ 암호가 일치하지 않습니다. 다시 시도하십시오.
-
+ 프로세스
-
+ 폴더
-
+ 프로그램 파일 이름을 입력하십시오
-
+ 템플릿 식별자를 입력하십시오
-
+ 오류: %1
-
+ 선택한 로컬 템플릿을 삭제하시겠습니까?
-
+ %1 (현재)
@@ -6122,17 +6120,17 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSubmitPage
-
+ 문제 보고서 제출
-
+ 상세 문제 설명
-
+ Sandboxie.ini 첨부
@@ -6142,17 +6140,17 @@ This file is part of Sandboxie and all changed done to it will be reverted next
샌드박스 호환성은 구성에 따라 달라지므로 sandboxie.ini를 첨부하면 문제를 찾는 데 많은 도움이 됩니다.
-
+ 샌드박스 호환성은 구성에 따라 다르므로 Sandboxie.ini 파일을 첨부하면 문제를 찾는 데 많은 도움이 됩니다.
-
+ 로그 첨부
-
+ Select partially checked state to sends only message log but no trace log.
@@ -6161,70 +6159,70 @@ Before sending you can review the logs in the main window.
보내기 전에 기본 창에서 로그를 검토할 수 있습니다.
-
+ 충돌 덤프 연결
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.문제 해결 절차 중에 응용 프로그램이 충돌한 경우 충돌 덤프를 첨부하면 디버깅에 도움이 될 수 있습니다.
-
+ 이메일주소
-
+ 문제에 대한 해결책이 확인되면 알림을 받을 이메일 주소를 제공할 수 있습니다.
-
+ 현재 Sandboxie-Plus로 인해 불편을 끼쳐드린 점 사과드립니다.
-
+ 안타깝게도 자동화된 문제 해결 절차가 실패했습니다.
-
+ 유감스럽게도 귀하가 설명한 특정 문제에 대해 사용할 수 있는 자동화된 문제 해결 절차가 없습니다.
-
+ 문제 보고서를 제출하려면 아래 보고서를 검토하고 '완료'를 클릭하십시오.
-
+ 로그 압축
-
+ 덤프 압축
-
+ 문제 보고서 제출 중...
-
+ 문제 보고서를 제출하지 못했습니다. 오류 %1
로그를 첨부하지 않고 제출해 보십시오.
-
+ Your issue report have been successfully submitted, thank you.문제 보고서가 성공적으로 제출되었습니다. 감사합니다.
@@ -6941,11 +6939,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ 샌드박스 프로세스로부터 시스템 보호
@@ -6954,22 +6952,22 @@ If you are a great patreaon supporter already, sandboxie can check online for an
아이콘
-
+ 위로 이동
-
+ 아래로 이동
-
+ 권한 제한
-
+ 관리자 및 Power Users 그룹에서 권한 삭제
@@ -6979,12 +6977,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
px 너비
-
+ 응용 프로그램이 높은 수준으로 실행되고 있다고 생각하도록 함 (설치 프로그램을 안전하게 실행할 수 있음)
-
+ 주의: 기본 관리자에서 실행할 때 프로세스는 관리 권한을 삭제할 수 없습니다.
@@ -6994,7 +6992,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
모양
-
+ (추천)
@@ -7074,27 +7072,27 @@ If you are a great patreaon supporter already, sandboxie can check online for an
샌드박스 외부의 파일로 인쇄 스풀러 인쇄 허용
-
+ 스풀러 제한 제거, 샌드박스 외부에 프린터를 설치할 수 있음
-
+ 클립보드에 대한 읽기 액세스 차단
-
+ 시스템 보호 저장소 열기
-
+ 프린터 스풀러에 대한 액세스 차단
-
+ 기타 제한
@@ -7104,160 +7102,160 @@ If you are a great patreaon supporter already, sandboxie can check online for an
인쇄 제한
-
+ 네트워크 제한
-
+ 특별히 열지 않는 한 네트워크 파일 및 폴더를 차단합니다.
-
+ 실행 메뉴
-
+ 샌드박스 실행 메뉴에 대한 사용자 정의 항목을 구성할 수 있습니다.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ 이름
-
+ 명령 줄
-
+ 프로그램 추가
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 제거
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 유형
-
+ 프로그램 그룹
-
+ 그룹 추가
-
-
-
-
-
+
+
+
+
+ 프로그램 추가
-
+ 강제 폴더
-
-
-
+
+
+ 경로
-
+ 강제 프로그램
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 템플릿 표시
-
+ 보안 참고 사항: 관리자 또는 시스템 토큰을 사용하여 샌드박스의 감독 하에 실행되는 고급 응용 프로그램은 분리를 우회하고 샌드박스 외부에서 시스템을 수정할 수 있는 기회가 더 많습니다.
-
+ MSI 서버가 샌드박스 시스템 토큰으로 실행되도록 허용하고 필요한 경우 다른 예외를 적용합니다
-
+ 참고: Msi 설치 관리자 면제는 필요하지 않지만 신뢰할 수 있는 msi 패키지를 설치하는 데 문제가 발생할 경우 이 옵션을 사용하면 설치가 성공적으로 완료될 수 있습니다. 삭제 관리자 권한을 비활성화할 수도 있습니다.
@@ -7287,22 +7285,22 @@ If you are a great patreaon supporter already, sandboxie can check online for an
시스템 트레이 목록에 항상 이 샌드박스 표시 (고정)
-
+ Windows 자격 증명 저장소 열기 (사용자 모드)
-
+ 네트워크 및 방화벽 매개 변수 (사용자 모드) 변경 방지
-
+ 프로세스 액세스이 거부되면 메시지 2111 발행
-
+ 프로그램을 그룹화하고 그룹 이름을 지정할 수 있습니다. 프로그램 그룹은 프로그램 이름 대신 일부 설정과 함께 사용할 수 있습니다. 박스에 대해 정의된 그룹은 템플릿에 정의된 덮어쓰기 그룹입니다.
@@ -7311,13 +7309,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
강제 프로그램
-
+ 여기에 입력된 프로그램 또는 입력된 위치에서 시작된 프로그램은 다른 샌드박스에서 명시적으로 시작하지 않는 한 이 샌드박스에 자동으로 저장됩니다.
-
-
+
+ 동작 중지
@@ -7342,32 +7340,32 @@ If leader processes are defined, all others are treated as lingering processes.<
대표 프로세스가 정의되면 다른 모든 프로세스는 남아있는 프로세스로 취급됩니다.
-
+ 시작 제한
-
+ 프로그램 시작 실패 시 메시지 1308 발생
-
+ 이 샌드박스에서 선택한 프로그램만 시작하도록 허용합니다. *
-
+ 선택한 프로그램이 이 샌드박스에서 시작되지 않도록 합니다.
-
+ 이 샌드박스에서 모든 프로그램을 시작할 수 있습니다.
-
+ * 참고: 이 샌드박스에 설치된 프로그램은 시작할 수 없습니다.
@@ -7376,117 +7374,142 @@ If leader processes are defined, all others are treated as lingering processes.<
인터넷 제한
-
+ 프로세스 제한
-
+ 프로그램이 인터넷 액세스를 거부하면 메시지 1307 발행
-
+ 차단 면제를 허용할지 여부를 사용자에게 묻습니다.
-
+ 참고: 이 샌드박스에 설치된 프로그램은 인터넷에 전혀 액세스할 수 없습니다.
-
-
-
-
-
-
+
+
+
+
+
+ 액세스
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Windows 등 데스크톱 개체에 액세스할 수 있는 프로세스를 구성합니다.
-
+ 목록에 없는 프로세스에 대한 네트워크/인터넷 액세스 설정:
-
+ 테스트 규칙, 프로그램:
-
+ 포트:
-
+ IP:
-
+ 프로토콜:
-
+ X
-
+ 규칙 추가
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 프로그램
-
-
-
+
+
+ 동작
-
+ 포트
-
+ IP
-
+ 프로토콜
-
+ 주의: Windows 필터링 플랫폼이 드라이버에서 사용할 수 없으므로 이 규칙은 사용자 모드에서만 적용되며 강제 적용할 수 없습니다!!! 즉, 악성 프로그램이 이를 무시할 수 있습니다.
-
+ 리소스 액세스
@@ -7503,7 +7526,7 @@ You can use 'Open for All' instead to make it apply to all programs, o
대신 '모두 열기'를 사용하여 모든 프로그램에 적용하거나 정책 탭에서 이 동작을 변경할 수 있습니다.
-
+ 파일/폴더 추가
@@ -7512,104 +7535,104 @@ You can use 'Open for All' instead to make it apply to all programs, o
사용자 제거
-
+ 창 클래스 추가
-
+ IPC 경로 추가
-
+ Reg 키 추가
-
+ COM 개체 추가
-
+ 파일 복구
-
+ 폴더 추가
-
+ 확장자 무시
-
+ 폴더 무시
-
+ 파일이 생성되는 즉시 복구할 수 있도록 즉시 복구 프롬프트를 실행합니다.
-
+ 즉시 복구에서 폴더 및 파일 유형 (또는 파일 확장자)을 제외할 수 있습니다.
-
+ 빠른 복구 기능이 호출되면 샌드박스 내용에 대해 다음 폴더가 확인됩니다.
-
+ 고급 옵션
-
+ 기타
-
+ 샌드박스 프로그램에서 만든 창 클래스 이름 변경 안 함
-
+ 시스템 토큰을 사용하여 샌드박스 서비스를 시작하지 않음 (권장)
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 샌드박스 무결성 자체 보호
-
+ SYSTEM 토큰으로 실행 중인 프로세스에서 중요한 권한 삭제
-
-
+
+ (보안 중요)
-
+ 권한이 없는 프로세스로부터 샌드박스 SYSTEM 프로세스 보호
@@ -7618,7 +7641,7 @@ You can use 'Open for All' instead to make it apply to all programs, o
샌드박스 격리
-
+ 사용자 지정 더미 매니페스트 파일 강제 사용 (레거시 동작)
@@ -7631,34 +7654,34 @@ You can use 'Open for All' instead to make it apply to all programs, o
리소스 액세스 정책
-
+ 규칙 특수성은 지정된 규칙이 특정 경로와 얼마나 잘 일치하는지 측정하는 것으로, 단순하게 말해서 특수성은 경로 시작부터 마지막 일치하는 비 와일드카드 하위 문자열까지 포함한 문자 길이입니다. "*.tmp"와 같은 파일 형식만 일치하는 규칙은 항상 전체 파일 경로와 일치하므로 가장 높은 특수성을 가집니다.
프로세스 일치 수준은 특수성보다 높은 우선 순위를 가지며 규칙이 지정된 프로세스에 적용되는 방식을 설명합니다. 프로세스 이름 또는 그룹별로 적용되는 규칙은 일치 수준이 가장 강하고 부정에 의한 일치 수준 (즉, 지정된 프로세스를 제외한 모든 프로세스에 적용되는 규칙)이 그 뒤를 이으며, 가장 낮은 일치 수준에는 전역 일치, 즉 모든 프로세스에 적용되는 규칙이 있습니다.
-
+ 특수성 및 프로세스 일치 수준에 따라 규칙 우선 순위 지정
-
+ 개인 정보 보호 모드, 일반 시스템 위치를 제외한 모든 위치에 대한 파일 및 레지스트리 액세스 차단
-
+ 액세스 모드
-
+ 개인 정보 모드가 활성화된 경우 샌드박스 프로세스는 C:만 읽을 수 있습니다. \Windows\*, C:\Program Files\* 및 HKLM 레지스트리의 일부 다른 위치에서는 읽기 및/또는 쓰기 가능하려면 명시적 액세스 권한이 필요합니다. 이 모드에서는 규칙 특정성이 항상 활성화됩니다.
-
+ 규칙 정책
@@ -7667,23 +7690,23 @@ The process match level has a higher priority than the specificity and describes
닫기 적용...=!<프로그램>,... 또한 규칙은 샌드박스에 있는 모든 이진 파일에 적용됩니다.
-
+ 샌드박스 외부에 있는 이진 파일에만 파일 및 키 열기 지시문을 적용합니다.
-
+ SYSTEM 프로세스로 샌드박스 RpcS 시작 (권장하지 않음)
-
+ 권한 있는 프로세스만 서비스 제어 관리자에 액세스할 수 있도록 허용
-
-
+
+ 호환성
@@ -7692,17 +7715,17 @@ The process match level has a higher priority than the specificity and describes
COM 인프라에 대한 개방형 액세스 (권장하지 않음)
-
+ 작업 개체에 샌드박스 프로세스 추가 (권장)
-
+ 모든 프로세스에 대해 샌드박스 창 스테이션 에뮬레이트
-
+ 중첩된 작업 개체 사용 허용 (Windows 8 이상에서 작동)
@@ -7711,12 +7734,12 @@ The process match level has a higher priority than the specificity and describes
격리
-
+ 매우 제한된 프로세스 토큰의 사용을 통한 보안 격리는 샌드박스 제한을 시행하는 Sandboxie의 주요 수단이며, 이 기능이 비활성화되면 박스가 응용 프로그램 구획 모드에서 작동됩니다 (즉, 더 이상 신뢰할 수있는 보안을 제공하지 않고 간단한 응용 프로그램 구획화).
-
+ 샌드박스 프로그램에서 하드웨어/장치 관리 허용
@@ -7729,12 +7752,12 @@ The process match level has a higher priority than the specificity and describes
다양한 고급 격리 기능으로 인해 일부 응용 프로그램과의 호환성이 손상될 수 있습니다. 이 샌드박스를 <b>보안이 아닌</b> 단순한 응용프로그램 이식용으로 사용하는 경우 이러한 옵션을 변경하여 일부 보안을 희생하여 호환성을 복원할 수 있습니다.
-
+ Windows 보안 계정 관리자에 대한 액세스 열기
-
+ Windows 로컬 보안 기관에 대한 개방형 액세스 권한
@@ -7743,27 +7766,27 @@ The process match level has a higher priority than the specificity and describes
보안
-
+ 보안 강화
-
+ 승인된 NT 시스템 호출에만 원본 토큰 사용
-
+ 드라이버/장치 액세스만 승인된 것으로 제한
-
+ 모든 보안 향상 사용 (보안 강화 박스 만들기)
-
+ 샌드박스되지 않은 프로세스의 메모리 읽기 허용(권장하지 않음)
@@ -7772,27 +7795,27 @@ The process match level has a higher priority than the specificity and describes
COM/RPC
-
+ 기본적으로 RpcMgmtSetComTimeout 사용 안 함 (호환성 문제가 해결될 수 있음)
-
+ 보안 격리 및 필터링
-
+ 보안 필터링 사용 안 함 (권장하지 않음)
-
+ Sandboxie에서 사용하는 보안 필터링은 파일 시스템 및 레지스트리 액세스 제한을 적용하고 프로세스 액세스를 제한하는 데 사용됩니다.
-
+ 다음 옵션은 관리자 권한을 부여하지 않을 때 안전하게 사용할 수 있습니다.
@@ -7801,41 +7824,41 @@ The process match level has a higher priority than the specificity and describes
액세스 격리
-
+ 트리거
-
+ 이벤트
-
-
-
-
+
+
+
+ 명령 실행
-
+ 서비스 시작
-
+ 이 이벤트는 박스가 시작될 때마다 실행됩니다
-
+ 박스 시작 시
-
-
+
+ 이 명령은 박스 내용이 삭제되기 직전에 UNBOXED로 실행됩니다
@@ -7844,32 +7867,32 @@ The process match level has a higher priority than the specificity and describes
박스 삭제 시
-
+ 이러한 명령은 박스가 초기화될 때만 실행됩니다. 다시 실행하려면 박스 내용을 삭제해야 합니다.
-
+ 박스 초기화 시
-
+ 여기서 다양한 박스 이벤트에 대해 자동으로 실행할 동작을 지정할 수 있습니다.
-
+ 프로세스 숨기기
-
+ 프로세스 추가
-
+ 샌드박스에서 실행 중인 프로세스에서 호스트 프로세스를 숨깁니다.
@@ -7889,12 +7912,12 @@ The process match level has a higher priority than the specificity and describes
박스 구조
-
+ 보안 옵션
-
+ 보안 강화
@@ -7903,61 +7926,61 @@ The process match level has a higher priority than the specificity and describes
다양한 제한 사항
-
+ 보안 격리
-
+ 다양한 분리 기능은 일부 응용 프로그램과의 호환성을 손상시킬 수 있습니다. 이 샌드박스를 <b>보안이 아닌</b> 응용 프로그램 이동성을 위해 사용하는 경우 이러한 옵션을 변경하여 일부 보안을 희생하여 호환성을 복원할 수 있습니다.
-
+ 액세스 격리
-
+ 이미지 보호
-
+ 프로그램이 샌드박스된 dll을 로드하려고 할 때 1305 메시지 발생
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandbox호스트에 설치된 샌드박스 프로그램이 샌드박스에서 DLL을 로드하지 못하도록 방지
-
+ Dll 및 확장자
-
+ 설명
-
+ 샌드박스의 리소스 액세스 규칙은 샌드박스 내부에 있는 프로그램 이진 파일을 차별하는 경우가 많습니다. OpenFilePath 및 OpenKeyPath는 호스트에 기본적으로 있는 응용 프로그램 이진 파일에만 작동합니다. 이 제한이 없는 규칙을 정의하려면 OpenPipePath 또는 OpenConfPath를 사용해야 합니다. 마찬가지로 모두 닫힘 (파일|키|Ipc)예를 들어 ‘ClosedFilePath=! iexplore.exe,C:Users*'는 샌드박스 내에 있는 이진 파일의 경우 항상 닫혀 있습니다. 두 제한 정책 모두 "액세스 정책" 페이지에서 사용 불가능으로 설정할 수 있습니다.
이 작업은 샌드박스 내부의 악성 프로세스가 자신의 이름이 변경된 복사본을 생성하여 보호된 리소스에 액세스하는 것을 방지하기 위해 수행됩니다. 또 다른 공격 벡터는 라이브러리가 액세스할 수 있는 모든 항목에 액세스하기 위해 승인된 프로세스에 라이브러리를 주입하는 것입니다. 호스트 이미지 보호를 사용하면 샌드박스 내부에서 실행 중인 응용 프로그램 (호스트에 설치)이 샌드박스 자체에서 라이브러리를 로드하지 못하도록 차단하여 이러한 문제를 방지할 수 있습니다.
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Sandboxies 기능은 SbieDll.dll에 의해 시작할 때 각 샌드박스 프로세스에 로드될 수 있는 옵션 DLL을 사용하여 향상될 수 있습니다. 전역 설정의 애드온 관리자는 몇 가지 유용한 확장 기능을 제공합니다. 일단 설치되면 현재 박스에 대해 활성화할 수 있습니다.
-
+ Adcanced Security고급 보안
@@ -7967,52 +7990,52 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
익명 토큰 대신 샌드박스 로그인 사용 (실험적)
-
+ 기타 격리
-
+ 권한 분리
-
+ Sandboxie 토큰
-
+ 사용자 정의 Sandboxie 토큰을 사용하면 개별 Sandboxie를 서로 더 잘 분리할 수 있으며, 작업 관리자의 사용자 열에 프로세스가 속한 박스의 이름이 표시됩니다. 그러나 일부 타사 보안 솔루션에는 사용자 지정 토큰에 문제가 있을 수 있습니다.
-
+ 프로그램 제어
-
+ 강제 프로그램
-
+ 이 샌드박스에 대해 강제 프로세스 및 폴더 사용 안 함
-
+ 탈옥 프로그램
-
+ 탈옥 프로그램
-
+ 탈옥 폴더
@@ -8042,52 +8065,50 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
암호 설정
-
+ 보안 분리 사용 안 함
-
-
+
+ 박스 보호
-
+ 이 박스 내의 프로세스를 호스트 프로세스로부터 보호
-
+ 허용 프로세스
-
+ 호스트 프로세스가 샌드박스 프로세스/박스 루트에 액세스하려고 할 때 1318/1317 메시지를 발행합니다
-
+ Sandboxie-Plus는 호스트 프로세스에 의한 무단 감시 또는 변조로부터 강력한 보호를 제공하는 기밀 샌드박스를 만들 수 있습니다. 암호화된 샌드박스 이미지를 활용함으로써 이 기능은 최고 수준의 운영 기밀성을 제공하여 샌드박스 프로세스의 안전과 무결성을 보장합니다.
-
+ 거부 프로세스
- Block process from taking screenshots of windows not belonging to the containing sandbox
- 샌드박스화된 프로세스가 공개 방법을 사용하여 창 이미지를 캡처하는 것을 방지
+ 샌드박스화된 프로세스가 공개 방법을 사용하여 창 이미지를 캡처하는 것을 방지
- Prevents processes in the sandbox from interfering with power operation
- 샌드박스화된 프로세스가 전원 작업을 방해하는 것을 방지
+ 샌드박스화된 프로세스가 전원 작업을 방해하는 것을 방지
@@ -8095,113 +8116,108 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
마운트에 강제 보호
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.샌드박스로 처리된 창에서 창 이미지를 캡처하지 못하도록 방지
-
+ 보호된 프로세스에 대한 유용한 Windows 프로세스 액세스 허용
-
+ 익명 토큰 대신 샌드박스 로그인 사용
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.여기에 입력된 프로그램은 시작할 때 이 박스에서 벗어날 수 있습니다. 다른 박스에 캡처할 수 있습니다. 예를 들어 웹 브라우저를 항상 전용 박스에 열도록 합니다. 이 기능을 설치하려면 올바른 후원자 인증서를 설치해야 합니다.
-
+ <b><font color='red'>보안 권고</font>:</b> <a href="sbie://docs/breakoutfolder">BreakoutFolder</a> 및/또는 <a href="sbie://docs/breakoutprocess">BreakoutProcess</a>를 Open[파일/파이프]과 함께 사용하는 경로 지시어는 <a href="sbie://docs/breakoutdocument">BreakoutDocument</a>를 사용하여 * 또는 안전하지 않은 모든 확장자 (*.exe;*dll;*.ocx;*.cmd;*.bat;*lnk;*pif;url;*ps1; 등)를 허용할 수 있으므로 보안을 손상시킬 수 있습니다. 사용하기 전에 설명서의 각 옵션에 대한 보안 섹션을 검토하십시오.
-
+ 남은 프로그램
-
+ 남은 프로그램은 다른 모든 프로세스가 종료된 후에도 계속 실행 중인 경우 자동으로 종료됩니다.
-
+ 대표 프로그램
-
+ 대표 프로세스가 정의되어 있는 경우 다른 모든 프로세스는 계속 진행 중인 프로세스로 간주됩니다.
-
+ 중지 옵션
-
+ 지연 시간 사용
-
+ Windows에서 지속적인 프로세스 중지
-
+ 파일
-
+ 파일, 폴더 및 파이프에 액세스할 수 있는 프로세스를 구성합니다. '열기' 액세스은 샌드박스 외부에 위치한 프로그램 이진 파일에만 적용되며, 대신 '모두 열기'를 사용하여 모든 프로그램에 적용하거나 정책 탭에서 이 동작을 변경할 수 있습니다.
-
+ 레지스트리
-
+ 레지스트리에 액세스할 수 있는 프로세스를 구성합니다. '열기' 액세스은 샌드박스 외부에 위치한 프로그램 이진 파일에만 적용되며, 대신 '모두 열기'를 사용하여 모든 프로그램에 적용하거나 정책 탭에서 이 동작을 변경할 수 있습니다.
-
+ IPC
-
+ ALPC 포트 및 기타 프로세스 메모리 및 컨텍스트와 같은 NT IPC 개체에 액세스할 수 있는 프로세스를 구성합니다.
프로세스를 지정하려면 '$:program.exe'를 경로로 사용합니다.
-
+ 창
-
+ 창 클래스
@@ -8211,92 +8227,92 @@ To specify a process use '$:program.exe' as path.
Windows 등의 데스크탑 개체에 액세스스할 수 있는 프로세스를 구성합니다.
-
+ COM
-
+ 클래스 Id
-
+ COM 개체에 액세스할 수 있는 프로세스를 구성합니다.
-
+ 가상화된 COM 사용 안 함, 호스트 COM 인프라에 대한 액세스 열기 (권장하지 않음)
-
+ 액세스 정책
-
+ 닫기 적용...=!<프로그램>,... 또한 샌드박스에 있는 모든 이진 파일에 대한 규칙도 있습니다.
-
+ 네트워크 옵션
-
+ 기타 옵션
-
+ 포트 차단
-
+ 공통 SAMBA 포트 차단
-
+ DNS, UDP 포트 53 차단
-
+ 빠른 복구
-
+ 즉시 복구
-
+ 다양한 옵션
-
+ ElevateCreateProcess 해결 방법 적용 (레거시 동작)
-
+ 모든 프로세스에 대해 데스크톱 개체 해결 방법 사용
-
+ 전역 단축키를 짧게 3번 누르면 이 예외가 무시됩니다.
-
+ "모든 프로세스 종료"가 호출될 때 이 샌드박스가 종료되지 않도록 제외합니다.
@@ -8305,49 +8321,49 @@ To specify a process use '$:program.exe' as path.
이 명령은 샌드박스의 모든 프로세스가 완료된 후에 실행됩니다.
-
+ 박스 종료 시
-
+ 박스 내용이 삭제되기 전에 이 명령이 실행됩니다
-
+ 파일 복구 시
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked이 명령은 파일을 복구하기 전에 실행되며 파일 경로가 첫 번째 인수로 전달됩니다. 이 명령이 0이 아닌 다른 것을 반환하는 경우 복구가 차단됩니다
-
+ 파일 검사 실행
-
+ 콘텐츠 삭제 시
-
+ 샌드박스 프로세스에서 다른 박스에서 실행 중인 프로세스 보기 허용 안 함
-
+ 지정된 샌드박스되지 않은 호스트 프로세스가 이 박스에 액세스하지 못하도록 이 박스에 있는 프로세스를 보호합니다.
-
-
+
+ 프로세스
@@ -8356,22 +8372,22 @@ To specify a process use '$:program.exe' as path.
이 샌드박스의 프로세스에 대한 읽기 액세스도 차단
-
+ 사용자
-
+ 리소스 액세스 모니터를 관리자로만 제한
-
+ 사용자 추가
-
+
@@ -8380,23 +8396,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
참고: 샌드박스에 대한 강제 프로그램 및 강제 폴더 설정은 샌드박스를 사용할 수 없는 사용자 계정에는 적용되지 않습니다.
-
+ 옵션 추가
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.여기서 호환성 향상 및/또는 샌드박스 동작을 사용자 정의하도록 고급 프로세스별 옵션을 구성할 수 있습니다.
-
+ 옵션
-
+ 추적
@@ -8406,22 +8422,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
API 호출 추적 (Sbie 디렉터리에 LogAPI를 설치해야 함)
-
+ 파이프 추적
-
+ 모든 SetError를 추적 로그에 기록 (많은 출력을 생성)
-
+ 추적 로그에 디버그 출력 기록
-
+ Ntdll syscall 추적 (많은 출력을 생성합니다)
-
+ 파일 추적
-
+ 리소스 액세스 모니터 사용 안 함
-
+ IPC 추적
-
+ GUI 추적
-
+ 리소스 액세스 모니터
-
+ 액세스 추적
-
+ COM 클래스 추적
-
+ 키 추적
-
-
+
+ 네트워크 방화벽
-
+ 이러한 명령은 샌드박스의 모든 프로세스가 완료된 후 언박스 상태로 실행됩니다.
-
+ API 호출 추적 (모든 SBIE 후크 추적)
-
+ 디버그
-
+ 경고, 이러한 옵션은 핵심 보안 보장을 비활성화하고 샌드박스 보안을 파괴할 수 있습니다!!!
-
+ 이러한 옵션은 호환성 문제를 디버깅하기 위한 것이므로 프로덕션에서 사용하지 마십시오.
-
+ 앱 템플릿
@@ -8524,22 +8540,22 @@ instead of "*".
템플릿 호환성
-
+ 필터 범주
-
+ 텍스트 필터
-
+ 템플릿 추가
-
+ 이 목록에는 많은 양의 샌드박스 호환성 향상 템플릿이 포함되어 있습니다
@@ -8548,17 +8564,17 @@ instead of "*".
템플릿 제거
-
+ 범주
-
+ 템플릿 폴더
-
+
@@ -8567,23 +8583,23 @@ Please note that this values are currently user specific and saved globally for
이 값은 현재 사용자마다 다르며 모든 박스에 대해 전역으로 저장됩니다.
-
-
+
+ 값
-
+ 접근성
-
+ 손실된 보호를 보상하려면 제한 설정 그룹의 삭제 권한 설정 페이지를 참조하십시오.
-
+ 화면 판독기: JAWS, NVDA, Window-Eyes, 시스템 액세스
@@ -8593,37 +8609,42 @@ Please note that this values are currently user specific and saved globally for
DNS 요청 로깅
-
+ Syscall 추적 (출력이 많이 생성됨)
-
+ 템플릿
-
+
+
+
+
+
+ 다음 설정은 내게 필요한 옵션 소프트웨어와 함께 Sandboxie를 사용할 수 있도록 합니다. 이러한 설정이 적용되면 일부 Sandboxie 보호 기능이 손실됩니다.
-
+ 이 섹션 편집
-
+ ini 편집
-
+ 취소
-
+ 저장
@@ -8655,27 +8676,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ 확인
-
+ 적용
-
+ 취소
-
+ 예(&Y)
-
+ 아니오(&N)
@@ -8884,22 +8905,22 @@ Please note that this values are currently user specific and saved globally for
* 부분적으로 선택된 확인란은 보기 모드에서 확인할 동작을 남깁니다.
-
+ 고급 구성
-
+ 커널 모드 개체 필터링 활성화
-
+ 샌드박스 <a href="sbie://docs/filerootpath">파일 시스템 루트</a>:
-
+ 기본 창이 숨겨질 때 암호 지우기
@@ -8908,22 +8929,22 @@ Please note that this values are currently user specific and saved globally for
개별 사용자 폴더
-
+ 샌드박스 <a href="sbie://docs/ipcrootpath">ipc 루트</a>:
-
+ 샌드박스 기본값
-
+ 구성 보호
-
+ ...
@@ -9024,12 +9045,12 @@ Please note that this values are currently user specific and saved globally for
인터페이스 옵션
-
+ Ini 편집기 글꼴
-
+ 그래픽 옵션
@@ -9074,102 +9095,102 @@ Please note that this values are currently user specific and saved globally for
트레이로 최소화
-
+ 글꼴 선택
-
+ 글꼴 재설정
-
+ Ini 옵션
-
+ #
-
+ 외부 Ini 편집기
-
+ 추가 기능 관리자
-
+ 선택적 추가 기능
-
+ Sandboxie-Plus는 다양한 옵션을 제공하고 광범위한 확장을 지원합니다. 이 페이지에서 추가 기능, 플러그인 및 기타 타사 구성 요소의 통합을 구성할 수 있습니다. 선택적 구성 요소는 웹에서 다운로드할 수 있으며 특정 설치에는 관리자 권한이 필요할 수 있습니다.
-
+ 상태
-
+ 버전
-
+ 설명
-
+ <a href="sbie://addons">지금 추가 목록 업데이트</a>
-
+ 설치
-
+ 추가 기능 구성
-
+ 램 디스크 생성 사용
-
+ 킬로바이트
-
+ 램 디스크에 드라이브 문자 할당
-
+ 디스크 이미지 지원
-
+ RAM 제한
-
+ <a href="addon://ImDisk">ImDisk</a> 드라이버를 설치하여 RAM 디스크 및 디스크 이미지 지원을 사용하도록 설정합니다.
@@ -9179,148 +9200,153 @@ Please note that this values are currently user specific and saved globally for
샌드맨 시작 시 sandboxes의 자동 삭제 상태 확인
-
+
+
+
+
+
+ 램 디스크가 이미 마운트되어 있는 경우 이 옵션을 적용하려면 램 디스크를 마운트 해제해야 합니다.
-
+ * 디스크 생성 시 적용됩니다
-
+ Sandboxie 지원
-
+ 이 후원자 인증서가 만료되었습니다. <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">업데이트된 인증서</a>를 받으십시오.
-
+ Sandboxie-Plus 프로젝트의 후원는 <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">후원자 인증서</a>를 받을 수 있습니다. 이것은 라이선스 키와 비슷하지만 오픈 소스 소프트웨어를 사용하는 멋진 사람들을 위한 것입니다. :-
-
+ 받기
-
+ 일련 번호를 사용하여 인증서 검색/업그레이드/갱신
-
+ Sandboxie를 Windows의 롤링 릴리스로 최신 상태로 유지하고 모든 웹 브라우저와 호환되는 것은 끊임없는 노력입니다. <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">프로젝트에 직접적으로 기여</a>하거나, <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">후원자 인증서를 구매</a>하여 지지를 표시하거나, <a href="https://sandboxie-plus.com/go.php?to=patreon">Patreon에 가입</a>하여 후원자가 되거나, <a href="https://sandboxie-plus.com/go.php?to=donate">Pay-pal을 통해 개발을 지원</a>할 수 있습니다.<br />여러분의 지원은 샌드박스의 발전과 유지에 중요한 역할을 합니다.
-
+ SBIE_-_____-_____-_____-_____
-
+ <a href="https://sandboxie-plus.com/go.php?to=sbie-use-cert">인증서 사용 안내</a>
-
+ 선택한 릴리스 채널의 새 전체 설치 프로그램입니다.
-
+ 전체 업그레이드
-
+ 샌드박스 <a href="sbie://docs/keyrootpath">레지스트리 루트</a>:
-
+ 샌드박스 기능
-
+ 익명 토큰 대신 샌드박스 로그인 사용
-
+ 샌드박스.ini 프리셋
-
+ 암호 변경
-
+ 변경하려면 암호 입력
-
+ 관리자 사용자 계정만 변경할 수 있음
-
+ Sandboxie.ini에서 변경 내용 보기
-
+ USB 드라이브 샌드박스
-
+ 볼륨
-
+ 정보
-
+ USB 드라이브용 샌드박스:
-
+ 연결된 모든 USB 드라이브를 자동으로 샌드박스
-
+ 앱 템플릿
-
+ 앱 호환성
-
+ Only Administrator user accounts can use Pause Forced Programs Rules command관리자 사용자 계정만 프로그램 일시 중지 명령을 사용할 수 있음
-
+ 휴대용 루트 폴더
@@ -9340,59 +9366,59 @@ Please note that this values are currently user specific and saved globally for
시스템 트레이에 아이콘 표시:
-
+ Sandboxie 업데이터
-
+ 추가 목록을 최신 상태로 유지
-
+ 설정 업데이트
-
+ 내부자 채널은 최종적으로 대중에게 공개될 새로운 기능과 버그 수정에 대한 조기 액세스와 안정적인 채널의 모든 관련 개선 사항을 제공합니다.
미리 보기 채널과 달리 테스트되지 않았거나 손상되었거나 광범위하게 사용할 준비가 되지 않았을 수 있는 실험 변경 사항은 포함되지 않습니다.
-
+ 내부자 채널에서 검색
-
+ 새 Sandboxie-Plus 버전 주기적 검사
-
+ <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">내부자 채널</a>에 대해 자세히 알아보기
-
+ 문제 해결 스크립트를 최신 상태로 유지
-
+ 업데이트 확인 간격
-
+ Windows 필터링 플랫폼을 사용하여 네트워크 액세스 제한
-
+ 선택한 Win32k 시스템 호출을 후크하여 GPU 가속 (실험적) 사용
@@ -9428,7 +9454,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
박스 목록에서 큰 아이콘 사용 *
-
+ 높은 DPI 스케일링
@@ -9443,12 +9469,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
어두운 테마 사용
-
+ 글꼴 크기 조정
-
+ (재시작 필요)
@@ -9464,7 +9490,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
박스 목록에 "피자" 배경 표시 *
-
+ %
@@ -9483,51 +9509,51 @@ Unlike the preview channel, it does not include untested, potentially breaking,
선택한 Win32k 시스템 호출을 후크하여 GPU 가속 (실험적) 사용
-
+ 프로그램 제어
-
-
-
-
+
+
+
+ 이름
-
+ 경로
-
+ 프로그램 제거
-
+ 프로그램 추가
-
+ 다음 프로그램 중 하나가 샌드박스 외부에서 실행되면 샌드박스는 메시지 SBIE1301를 발행합니다.
-
+ 폴더 추가
-
+ 나열된 프로그램이 이 시스템에서 시작되지 않도록 합니다
-
+ 프로그램이 시작되지 않을 때 메시지 1308 발행
@@ -9561,17 +9587,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
새 구성 대화 상자 레이아웃 사용 *
-
+ 프로그램 경고
-
+ 강제 프로세스가 비활성화되면 메시지 1301을 발행
-
+ Config ProtectionSandboxie 구성
@@ -9608,8 +9634,8 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
+
+ 제거
@@ -9619,7 +9645,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
명령 줄
-
+ 지원 및 업데이트
@@ -9628,7 +9654,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
샌드박스 구성
-
+ 기본 샌드박스:
@@ -9637,62 +9663,67 @@ Unlike the preview channel, it does not include untested, potentially breaking,
호환성
-
+ 앞으로는 소프트웨어 호환성 검사 안 함
-
+ 사용함
-
+ 사용 안 함
-
+ Sandboxie가 시스템에서 다음 소프트웨어 응용 프로그램을 탐지했습니다. 확인을 클릭하여 구성 설정을 적용하면 해당 응용프로그램과의 호환성이 향상됩니다. 이러한 구성 설정은 모든 기존 샌드박스 및 새 샌드박스에 적용됩니다.
-
+ 로컬 템플릿
-
+ 템플릿 추가
-
+ 텍스트 필터
-
+ 이 목록에는 샌드박스 옵션에 대해 사용자가 생성한 사용자 지정 템플릿이 포함되어 있습니다
-
+
+
+
+
+
+ INI 섹션 편집
-
+ 저장
-
+ ini 편집
-
+ 취소
@@ -9701,7 +9732,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
지원
-
+ Version Updates증분 업데이트
@@ -9715,7 +9746,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
전체 업데이트
-
+ 설치된 버전의 핫패치, Templates.ini 및 변환에 대한 업데이트입니다.
@@ -9736,7 +9767,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
라이브 채널에서 검색
-
+ 미리보기 채널에는 최신 GitHub 사전 릴리스가 포함되어 있습니다.
@@ -9745,12 +9776,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
새 버전
-
+ 안정적인 채널에는 최신 안정적인 GitHub 릴리스가 포함되어 있습니다.
-
+ 안정적인 채널에서 검색
@@ -9759,7 +9790,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie를 Windows의 롤링 릴리스로 최신 상태로 유지하고 모든 웹 브라우저와 호환되도록 하는 것은 결코 끝나지 않는 노력입니다. 기부금으로 이 일을 후원하는 것을 고려해 주세요.<br /> <a href="https://sandboxie-plus.com/go.php?to=donate">PayPal 기부금</a>으로 개발을 지원할 수 있으며, 신용카드도 사용할 수 있습니다.<br />또는 <a href="https://sandboxie-plus.com/go.php?to=patreon">Patreon 구독을 통해 지속적인 지원을 제공할 수 있습니다.</a>.
-
+ 미리 보기 채널에서 검색
@@ -9776,12 +9807,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
릴리스 채널에서 검색
-
+ 이후 인증서 만료에 대해 알리지 않음
-
+ 여기에 후원 인증서를 입력하십시오
diff --git a/SandboxiePlus/SandMan/sandman_nl.ts b/SandboxiePlus/SandMan/sandman_nl.ts
index 16c37406..a7ecb7f9 100644
--- a/SandboxiePlus/SandMan/sandman_nl.ts
+++ b/SandboxiePlus/SandMan/sandman_nl.ts
@@ -837,12 +837,12 @@ Error: %1
CCompletePage
-
+
-
+
@@ -1200,14 +1200,12 @@ You can use %USER% to save each users sandbox to an own fodler.
CMultiErrorDialog
-
- Sandboxie-Plus - Fout
+ Sandboxie-Plus - Fout
-
- Bericht
+ Bericht
@@ -1628,11 +1626,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
Map selecteren
-
+
-
-
+
+
@@ -1642,8 +1640,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
Alle programma's
-
-
+
+
@@ -1681,7 +1679,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1752,57 +1750,57 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
-
-
+
+ Bij starten
-
-
-
-
-
+
+
+
+
+ Opdracht uitvoeren
-
+ Service starten
-
+ Bij initialisatie
-
+
-
+
-
+
-
+
-
+
@@ -1811,11 +1809,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
Bij verwijderen
-
-
-
-
-
+
+
+
+
+ Voer de uit te voeren opdrachtregel in
@@ -1824,12 +1822,12 @@ Note: The update check is often behind the latest GitHub release to ensure that
Voer een programma-bestandsnaam in
-
+
-
+ %1 (%2)
@@ -2072,7 +2070,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Een service-identifier invoeren
@@ -2142,7 +2140,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
Blokkeren door toegang tot netwerkapparaten te weigeren
-
+
@@ -2256,17 +2254,17 @@ Note: The update check is often behind the latest GitHub release to ensure that
Fout: %1
-
+
-
+ Alleen lokale sjablonen kunnen worden verwijderd!
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Deze sandbox is verwijderd, dus de configuratie kan niet worden opgeslagen.
-
+ Sommige wijzigingen zijn nog niet opgeslagen. Wilt u dit venster echt sluiten?
-
+ Programma invoeren:
@@ -2687,13 +2685,13 @@ Volledig pad: %4
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.
-
+
@@ -2825,22 +2823,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Wachten op map: %1
-
+ Map verwijderen: %1
-
+ Mappen samenvoegen: %1 >> %2
-
+ Samenvoegen van snapshot afwerken...
@@ -2925,7 +2923,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1
@@ -2935,47 +2933,47 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -2983,37 +2981,37 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
+
-
+ Kolommen herstellen
-
+ Cel kopiëren
-
+ Rij kopiëren
-
+ Deelvenster kopiëren
@@ -3308,7 +3306,7 @@ Please check if there is an update for sandboxie.
-
+ Over Sandboxie-Plus
@@ -3337,7 +3335,7 @@ Please check if there is an update for sandboxie.
-
+
@@ -3545,11 +3543,11 @@ Wilt u het opruimen uitvoeren?
-
-
-
-
-
+
+
+
+
+ Dit bericht niet meer weergeven
@@ -3581,7 +3579,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Deze box verhindert de toegang tot alle gegevenslocaties van gebruikers, behalve wanneer dit expliciet is toegestaan in de opties voor brontoegang.
-
+ Onbekende bewerking '%1' gevraagd via opdrachtregel
@@ -3601,17 +3599,17 @@ Deze box verhindert de toegang tot alle gegevenslocaties van gebruikers, behalve
-
+ OnBoxDelete uitvoeren: %1
-
+
-
+ Inhoud van %1 automatisch verwijderen
@@ -3620,19 +3618,19 @@ Deze box verhindert de toegang tot alle gegevenslocaties van gebruikers, behalve
Inhoud van %1 automatisch verwijderen
-
-
-
+
+
+ Sandboxie-Plus - Fout
-
+ Stoppen van alle Sadboxie-onderdelen mislukt
-
+ Starten van vereiste Sandboxie-onderdelen mislukt
@@ -3645,12 +3643,12 @@ Deze box verhindert de toegang tot alle gegevenslocaties van gebruikers, behalve
Wilt u controleren of er een nieuwe versie van Sandboxie-Plus is?
-
+ Sommige compatibiliteitssjablonen (%1) ontbreken. Vermoedelijk verwijderd. Wilt u ze verwijderen uit alle boxen?
-
+ Verwijderde sjablonen opgeruimd...
@@ -3663,7 +3661,7 @@ Deze box verhindert de toegang tot alle gegevenslocaties van gebruikers, behalve
- Portable
-
+
@@ -3672,12 +3670,12 @@ Ja zal %1 kiezen
Nee zal %2 kiezen
-
+ Standaard sandbox niet gevonden; aanmaken: %1
-
+ - NIET verbonden
@@ -3690,7 +3688,7 @@ Nee zal %2 kiezen
%1 (%2):
-
+ De geselecteerde functieset is alleen beschikbaar voor projectondersteuners. Processen die gestart zijn in een box met deze functieset ingeschakeld zonder ondersteunerscertificaat worden na 5 minuten beëindigd.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Word een projectondersteuner</a> en ontvang een <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">ondersteunerscertificaat</a>
@@ -3746,22 +3744,22 @@ Nee zal %2 kiezen
-
+ Alleen administrators kunnen de config wijzigen.
-
+ Voer het configuratiewachtwoord in
-
+ Aanmelden mislukt: %1
-
+ Wilt u alle processen in alle sandboxen beëindigen?
@@ -3770,133 +3768,133 @@ Nee zal %2 kiezen
Alles beëindigen zonder vragen
-
+ Sandboxie-Plus is gestart in portable modus en moet de nodige services aanmaken. Dit zal om administratieve rechten vragen.
-
+ LET OP: een andere agent (waarschijnlijk SbieCtrl.exe) beheert deze Sandboxie-sessie al. Sluit deze eerst en maak opnieuw verbinding om over te nemen.
-
+ Onderhoudsbewerking uitvoeren. Even geduld...
-
+ Wilt u ook de verborgen berichtvensters herstellen (ja) of alleen alle logberichten (nee)?
-
+ De wijzigingen worden automatisch toegepast wanneer het bestand opgeslagen wordt.
-
+ De wijzigingen worden automatisch toegepast van zodra de editor gesloten wordt.
-
+ Foutstatus: 0x%1 (%2)
-
+ Onbekend
-
+ Een sandbox moet leeggemaakt worden voordat hij kan verwijderd worden.
-
+ Kopiëren van gegevensbestanden van box mislukt
-
+ Verwijderen van oude gegevensbestanden van box mislukt
-
+ Onbekende foutstatus: 0x%1
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Sluiten
-
+
-
+
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>Over Sandboxie-Plus</h3><p>Versie %1</p><p>Auteursrecht (c) 2020-2022 door DavidXanatos</p>
-
+ Deze kopie van Sandboxie+ is gecertificeerd voor %1
-
+ Sandboxie+ is gratis voor persoonlijk en niet-commercieel gebruik.
-
+ Sandboxie-Plus is een open source verderzetting van Sandboxie.<br />Bezoek <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> voor meer informatie.<br /><br />%3<br /><br />Driver-versie: %1<br />Functies: %2<br /><br />Pictogrammen van <a href="https://icons8.com">icons8.com</a>
-
+ Administratorrechten zijn nodig voor deze bewerking
@@ -3909,52 +3907,52 @@ Nee zal %2 kiezen
Installatiemap: %1
-
+ Sandboxie-Plus versie %1 (%2)
-
+
-
+ Gegevensmap: %1
-
+
-
+
-
-
-
+
+
+ (%1)
-
+ Het programma %1 gestart in box %2 wordt over 5 minuten beëindigd omdat de box geconfigureerd was om functies te gebruiken die alleen beschikbaar zijn voor projectondersteuners.
-
+ Box %1 is geconfigureerd om functies te gebruiken die uitsluitend beschikbaar zijn voor projectondersteuners. Deze voorinstellingen zullen worden genegeerd.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Word projectondersteuner</a> en ontvang een <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">ondersteunerscertificaat</a>
@@ -3987,131 +3985,131 @@ Nee zal %2 kiezen
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ The evaluation periode has expired!!!
-
-
+
+
-
+
-
+ Geef de duur op, in seconden, voor het uitschakelen van regels voor geforceerde programma's.
-
+
-
+
-
+
-
+ Onderhoudsbewerking mislukt (%1)
-
+
-
+
-
+
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4119,199 +4117,199 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+
-
+ Uitvoeren mislukt: %1
-
+ Verbinden met de driver mislukt
-
+ Communiceren met Sandboxie-service mislukt: %1
-
+ Er is een incompatibele Sandboxie %1 gevonden. Compatibele versies: %2
-
+ Kan het Sandboxie-installatiepad niet vinden
-
+ Configuratie kopiëren uit sandbox %1 mislukt: %2
-
+ Er bestaat al een sandbox met de naam %1
-
+ Verwijderen van sandbox %1 mislukt: %2
-
+ De sandbox-naam mag niet langer zijn dan 32 tekens.
-
+ De sandbox-naam mag geen apparaatnaam zijn.
-
+ De sandbox-naam mag alleen letters, cijfers en underscores bevatten. Underscores worden als spaties weergegeven.
-
+ Beëindigen van alle processen mislukt
-
+ Beveiliging tegen verwijdering is ingeschakeld voor de sandbox
-
+ Alle sandbox-processen moeten worden gestopt voordat de inhoud van de box kan worden verwijderd
-
+ Fout bij het verwijderen van de sandbox-map: %1
-
+ A all processes in a sandbox must be stopped before it can be renamed.
-
+ Verplaatsen van map '%1' naar '%2' mislukt
-
+
-
+ Deze snapshot-bewerking kan niet uitgevoerd worden terwijl processen actief zijn in de box.
-
+ Aanmaken van map voor nieuwe snapshot mislukt
-
+ Snapshot niet gevonden
-
+ Fout bij samenvoegen van snapshot-map '%1' met '%2'. De snapshot is niet volledig samengevoegd.
-
+ Verwijderen van oude snapshot-map '%1' mislukt
-
+ Kan geen snapshot verwijderen die gedeeld is door meerdere latere snapshots
-
+ U hebt geen toestemming om de configuratie bij te werken in sectie '%1'
-
+ Instellen van configuratie-instelling %1 in sectie %2 mislukt: %3
-
+ Kan geen snapshot aanmaken van een lege sandbox
-
+ Er bestaat al een sandbox met die naam
-
+ Het configuratiewachtwoord mag niet langer zijn dan 64 tekens
-
+ De bewerking is geannuleerd door de gebruiker
-
+ The content of an un mounted sandbox can not be deleted
-
+ %1
-
+
-
+
-
+
-
+
-
+
-
+ Bewerking mislukt voor %1 item(s).
@@ -4320,7 +4318,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Wilt u %1 openen in een gesandboxte (ja) of niet-gesandboxte (nee) webbrowser?
-
+ Keuze onthouden voor later.
@@ -4377,23 +4375,23 @@ This file is part of Sandboxie and all changed done to it will be reverted next
<p>De nieuwe Sandboxie-Plus is naar de volgende locatie gedownload:</p><p><a href="%2">%1</a></p><p>Wilt u de installatie starten? Als er gesandboxte programma's draaien, worden die beëindigd.</p>
-
+ Het ondersteunerscertificaat is niet geldig voor deze build. Haal een bijgewerkt certificaat op
-
+ The supporter certificate is expired %1 days ago, please get an updated certificateHet ondersteunerscertificaat is vervallen%1. Haal een bijgewerkt certificaat op.
-
+ , maar het blijft geldig voor de huidige build
-
+ Het ondersteunerscertificaat vervalt over %1 dagen. Haal een bijgewerkt certificaat op.
@@ -5377,17 +5375,17 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSelectBoxWindow
-
+ Sandboxie-Plus - Gesandboxt uitvoeren
-
+ Weet u zeker dat u het programma buiten de sandbox wilt uitvoeren?
-
+ Selecteer een sandbox.
@@ -5504,69 +5502,69 @@ This file is part of Sandboxie and all changed done to it will be reverted next
%1
-
+
-
-
-
+
+
+ Ge&sandboxt uitvoeren
-
+
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+
-
+ Error retriving certificate: %1
-
+
-
+
-
+
@@ -5614,63 +5612,63 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Bladeren naar programma
-
+
-
+
-
+
-
+
-
+
-
+ Programma selecteren
-
+ Uitvoerbare bestanden (*.exe *.cmd)
-
-
+
+ Voer een menutitel in
-
+ Voer een opdracht in
-
+ kilobytes (%1)
-
+
@@ -5679,107 +5677,107 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Dit ondersteunerscertificaat is vervallen. <a href="sbie://update/cert">Haal een bijgewerkt certificaat op</a>.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -5788,12 +5786,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Dit ondersteunerscertificaat <font color='red'>vervalt over %1 dagen</font>. <a href="sbie://update/cert">Haal een bijgewerkt certificaat op</a>.
-
+ Niet-gesandboxt uitvoeren
-
+
@@ -5806,7 +5804,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Dit certificaat is spijtig genoeg verouderd.
-
+ Dank u voor uw steun aan de ontwikkeling van Sandboxie-Plus.
@@ -5815,88 +5813,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Dit ondersteuningscertificaat is niet geldig.
-
+
-
+
-
+
-
+
-
+
-
-
+
+ Map selecteren
-
+
-
+ Voer het nieuwe configuratiewachtwoord in
-
+ Voer het nieuwe configuratiewachtwoord opnieuw in
-
+ Wachtwoorden komen niet overeen. Probeer het opnieuw.
-
+ Proces
-
+ Map
-
+ Voer een programma-bestandsnaam in
-
+ Voer de sjabloon-identifier in
-
+ Fout: %1
-
+
-
+
@@ -6016,32 +6014,32 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSubmitPage
-
+
-
+
-
+
-
+
-
+
-
+ Select partially checked state to sends only message log but no trace log.
@@ -6049,69 +6047,69 @@ Before sending you can review the logs in the main window.
-
+
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Your issue report have been successfully submitted, thank you.
@@ -6737,32 +6735,32 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+
-
+
-
-
-
-
-
+
+
+
+
+ Het systeem beschermen tegen gesandboxte processen
-
+ Verheffing-beperkingen
-
+ Rechten ontnemen van administrator- en poweruser-groepen
@@ -6772,12 +6770,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
px-breedte
-
+ Laat toepassingen denken dat ze "verheven" uitgevoerd worden (laat toe om installatiebestanden veilig uit te voeren)
-
+ WAARSCHUWING: wanneer ze uitgevoerd worden onder de ingebouwde administrator, kunnen processen geen administratieve rechten ontnemen.
@@ -6787,7 +6785,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Uiterlijk
-
+ (aanbevolen)
@@ -6867,27 +6865,27 @@ If you are a great patreaon supporter already, sandboxie can check online for an
De print spooler toestaan om bestanden buiten de sandbox af te drukken
-
+ Spooler-beperking verwijderen. Printers kunnen buiten de sandbox geïnstalleerd worden
-
+ Leestoegang tot het klembord blokkeren
-
+ Beschermde opslag van systeem openen
-
+ Toegang tot de printer-spooler blokkeren
-
+ Andere beperkingen
@@ -6897,110 +6895,110 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Afdrukbeperkingen
-
+ Netwerkbeperkingen
-
+ Netwerkbestanden en -mappen blokkeren, tenzij ze specifiek worden geopend.
-
+ Uitvoeren-menu
-
+ U kunt aangepaste items voor het sandbox-uitvoeren-menu configureren
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Naam
-
+ Opdrachtregel
-
+ Programma toevoegen
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Verwijderen
-
+ Programma-bediening
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Type
-
+ Programmagroepen
-
+ Groep toevoegen
-
-
-
-
-
+
+
+
+
+ Programma toevoegen
@@ -7009,57 +7007,57 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Geforceerde programma's
-
+ Map forceren
-
-
-
+
+
+ Pad
-
+ Programma forceren
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sjablonen weergeven
-
+ Beveiligingsopmerking: "verheven" toepassingen die onder toezicht van Sandboxie uitgevoerd worden met een admin- of systeemtoken, hebben meer mogelijkheden om isolatie te omzeilen en het systeem buiten de sandbox te wijzigen.
-
+ MSIServer toestaan om te draaien met een gesandboxt systeemtoken en andere uitzonderingen toepassen indien nodig
-
+ Opmerking: Msi Installer Exemptions zou niet nodig moeten zijn, maar als u problemen ondervindt bij de installatie van een msi-pakket dat u vertrouwt, kan deze optie helpen de installatie tot een goed einde te brengen. U kunt ook proberen het laten vallen van administratorrechten uit te schakelen.
@@ -7093,33 +7091,33 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Administratorrechten
-
+ Windows Credentials Store openen (gebruikersmodus)
-
+ Wijziging aan netwerk- en firewall-parameters voorkomen (gebruikersmodus)
-
+
-
+ U kunt programma's samen groeperen en ze een groepsnaam geven. Programmagroepen kunnen gebruikt worden met een aantal instellingen in plaats van programma-namen. Groepen die gedefinieerd zijn voor de box overschrijven groepen die gedefinieerd zijn in sjablonen.
-
+ Programma's die hier ingevoerd worden of programma's die gestart worden vanaf ingevoerde locaties zullen automatisch in deze sandbox gestoken worden tenzij ze expliciet gestart worden in een andere sandbox.
-
-
+
+ Stop-gedrag
@@ -7144,32 +7142,32 @@ If leader processes are defined, all others are treated as lingering processes.<
Als leidende processen gedefinieerd zijn, worden alle andere als achterblijvende processen behandeld.
-
+ Start-beperkingen
-
+ Bericht 1308 weergeven wanneer een programma niet kan worden gestart
-
+ Alleen geselecteerde programma's toestaan om in deze sandbox te starten. *
-
+ Voorkomen dat geselecteerde programma's in deze sandbox starten.
-
+ Alle programma's toestaan om in deze sandbox te starten.
-
+ *Opmerking: programma's die in deze sandbox geïnstalleerd zijn zullen helemaal niet kunnen starten.
@@ -7178,32 +7176,32 @@ Als leidende processen gedefinieerd zijn, worden alle andere als achterblijvende
Internetbeperkingen
-
+ Proces-beperkingen
-
+ Bericht 1307 weergeven wanneer een programma internettoegang geweigerd is
-
+ Gebruiker vragen of een uitzondering van de blokkering toegestaan moet worden.
-
+ Opmerking: programma's die in deze sandbox geïnstalleerd zijn zullen helemaal geen toegang krijgen tot het internet.
-
-
-
-
-
-
+
+
+
+
+
+ Toegang
@@ -7300,183 +7298,177 @@ Als leidende processen gedefinieerd zijn, worden alle andere als achterblijvende
-
-
- Block process from taking screenshots of windows not belonging to the containing sandbox
-
-
-
-
+ Omhoog verplaatsen
-
+ Omlaag verplaatsen
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandbox
-
+
-
+
-
+
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
-
+ Adcanced Security
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -7486,223 +7478,212 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
-
-
- Prevents processes in the sandbox from interfering with power operation
-
-
-
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.
-
+
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Register
-
+
-
+
-
+
-
+
-
+ Wnd-klasse
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Netwerk-/internettoegang instellen processen die niet in de lijst zitten:
-
+ Testregels, programma:
-
+ Poort:
-
+ IP:
-
+ Protocol:
-
+ X
-
+ Regel toevoegen
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Programma
-
-
-
+
+
+ Actie
-
+ Poort
-
+ IP
-
+ Protocol
-
+ WAARSCHUWING: Windows Filtering Platform is niet ingeschakeld met de driver. Daardoor zullen deze regels alleen toegepast worden in gebruikersmodus en kunnen ze niet geforceerd worden! Dit betekent dat kwaadaardige toepassingen ze kunnen omzeilen.
-
+ Brontoegang
@@ -7719,119 +7700,119 @@ You can use 'Open for All' instead to make it apply to all programs, o
U kunt in plaats daarvan 'open voor iedereen' gebruiken om het op alle programma's van toepassing te laten zijn, of dit gedrag wijzigen in het tabblad Beleid.
-
+ Bestand/map toevoegen
-
+ Wnd Class toevoegen
-
+ IPC-pad toevoegen
-
+ Reg Key toevoegen
-
+ COM-object toevoegen
-
+ Bestandsherstel
-
+
-
+ Map toevoegen
-
+
-
+ Extensie negeren
-
+ Map negeren
-
+ Inschakelen dat onmiddellijk herstel bestanden kan herstellen van zodra ze aangemaakt worden.
-
+ U kunt mappen en bestandstypes (of bestandextensies) uitsluiten van onmiddellijk herstel.
-
+ Wanneer de snel-herstel-functie ingeroepen wordt, worden de volgende mappen gecontroleerd op gesandboxte inhoud.
-
+ Geavanceerde opties
-
+ Diverse
-
+ Vensterklasse-namen aangemaakt door gesandboxte programma's niet wijzigen
-
+ Gesandboxte services niet starten met een systeemtoken (aanbevolen)
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Integriteit van de sandbox zelf beschermen
-
+ Verwijder kritieke privileges van processen die draaien met een SYSTEM-token
-
-
+
+ (beveiliging kritiek)
-
+ Gesandboxte SYSTEM-processen beschermen tegen niet-geprivilegieerde processen
@@ -7840,7 +7821,7 @@ U kunt in plaats daarvan 'open voor iedereen' gebruiken om het op alle
Sandbox-isolatie
-
+ Gebruik van aangepaste dummy-manifest-bestanden forceren (oud gedrag)
@@ -7853,34 +7834,34 @@ U kunt in plaats daarvan 'open voor iedereen' gebruiken om het op alle
Brontoegang-beleid
-
+ De regel-specificiteit is een maatstaf voor hoe goed een gegeven regel overeenkomt met een bepaald pad. Eenvoudig gezegd is de specificiteit de lengte van de tekens vanaf het begin van het pad tot en met de laatste overeenstemmende substring zonder wildcard. Een regel die alleen overeenstemt met bestandstypes zoals "*.tmp" zou de hoogste specificiteit hebben omdat hij altijd overeenstemt met het volledige bestandspad.
Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificiteit en beschrijft hoe een regel van toepassing is op een gegeven proces. Regels die van toepassing zijn op procesnaam of groep hebben het sterkste overeenstemmingsniveau, gevolgd door het overeenstemmen door negatie (d.w.z. regels die van toepassing zijn op alle processen behalve het gegeven proces), terwijl de laagste overeenstemmingsniveaus globale overeenstemmingen hebben, d.w.z. regels die van toepassing zijn op gelijk welk proces.
-
+ Regels prioriteren op basis van hun specificiteit en procesovereenkomstniveau
-
+ Privacymodus, blokkeert de toegang tot bestanden en het register op alle locaties behalve de algemene systeemlocaties
-
+ Toegangmodus
-
+ Wanneer de privacymodus is ingeschakeld, kunnen gesandboxte processen alleen C:\Windows, C:\Program Files en delen van het HKLM-register lezen. Alle andere locaties hebben expliciete toegang nodig om leesbaar en/of schrijfbaar te zijn. In deze modus is regelspecificiteit altijd ingeschakeld.
-
+ Regel-beleid
@@ -7889,23 +7870,23 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Close...=!<program>,... regels ook toepassen op alle binaries die in de sandbox aanwezig zijn.
-
+ Bestand- en sleutel open directives alleen toepassen op binaries die zich buiten de sandbox bevinden.
-
+ De gesandboxte RpcS'en als een SYSTEM-proces starten (niet aanbevolen)
-
+ Alleen processen met rechten toegang geven tot de Service Control Manager
-
-
+
+ Compatibiliteit
@@ -7914,17 +7895,17 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Open toegang tot COM-infrastructuur (niet aanbevolen)
-
+ Gesandboxte processen aan job-objecten toevoegen (aanbevolen)
-
+ Gesandboxt venster station emuleren voor alle processen
-
+ Allow use of nested job objects (experimental, works on Windows 8 and later)Gebruik van geneste job-objecten toestaan (experimenteel, wekt op Windows 8 en later)
@@ -7934,12 +7915,12 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Isolatie
-
+ Beveiligingsisolatie door het gebruik van een zwaar beperkt procestoken is de primaire manier van Sandboxie om sandboxbeperkingen af te dwingen. Wanneer dit uitgeschakeld is, werkt de box in de toepassingscompartimentenmodus, d.w.z. hij biedt niet langer betrouwbare beveiliging, alleen eenvoudige toepassingscompartimentering.
-
+ Gesandboxte programma's toestaan om hardware/apparaten te beheren
@@ -7952,37 +7933,37 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Verschillende geavanceerde isolatiefuncties kunnen de compatibiliteit van sommige toepassingen verbreken als u deze sandbox <b>NIET voor beveiliging</b> gebruikt, maar voor eenvoudige portabiliteit van toepassingen door het veranderen van deze opties, kunt u de compatibiliteit herstellen door wat beveiliging op te offeren.
-
+ Toegang tot Windows security-account-manager openen
-
+ Toegang tot Windows local-security-authority openen
-
+
-
+
-
+
-
+
-
+
@@ -7991,27 +7972,27 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
COM/RPC
-
+ Het gebruik van RpcMgmtSetComTimeout standaard uitschakelen (dit kan compatibiliteitsproblemen oplossen)
-
+ Beveiligingsisolatie en filtering
-
+ Beveiligingsfiltering uitschakelen (niet aanbevolen)
-
+ Beveiligingsfiltering gebruikt door Sandboxie om beperkingen op te leggen aan de toegang tot het bestandssysteem en het register, en om de toegang tot processen te beperken.
-
+ De onderstaande opties kunnen veilig gebruikt worden als u geen administratorrechten toekent.
@@ -8020,41 +8001,41 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Toegangsisolatie
-
+ Triggers
-
+ Gebeurtenis
-
-
-
-
+
+
+
+ Opdracht uitvoeren
-
+ Service starten
-
+ Deze gebeurtenissen worden uitgevoerd telkens wanneer een box wordt gestart
-
+ Bij starten van box
-
-
+
+ Deze opdrachten worden NIET-GEBOXT uitgevoerd vlak voordat de inhoud van de box verwijderd wordt
@@ -8063,52 +8044,52 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Bij verwijderen van box
-
+ Deze opdrachten worden alleen uitgevoerd wanneer een box geïnitialiseerd wordt. Om ze opnieuw te laten uitvoeren, moet de inhoud van de box verwijderd worden.
-
+ Bij initialisatie van de box
-
+ Hier kunt u aangeven welke acties automatisch moeten worden uitgevoerd bij diverse boxgebeurtenissen.
-
+ Processen verbergen
-
+ Processen toevoegen
-
+ Host-processen verbergen van processen die in de sandbox worden uitgevoerd.
-
+ Gesandboxte processen niet toestaan om processen te zien die in andere boxen worden uitgevoerd
-
+ Gebruikers
-
+ Brontoegang-monitor beperken tot alleen administrators
-
+ Gebruiker toevoegen
@@ -8117,7 +8098,7 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Gebruiker verwijderen
-
+
@@ -8126,23 +8107,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Opmerking: Instellingen voor geforceerde programma's en geforceerde mappen voor een zandbak zijn niet van toepassing op gebruikersaccounts die de zandbak niet kunnen gebruiken.
-
+
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.
-
+
-
+ Traceren
@@ -8152,22 +8133,22 @@ Opmerking: Instellingen voor geforceerde programma's en geforceerde mappen
API call trace (logapi moet geïnstalleerd zijn in de sbie-map)
-
+ Pipe-trace
-
+ Alle SetErrors loggen naar trace-log (maakt veel uitvoer aan)
-
+ Debug-uitvoer naar de trace-log loggen
-
+
-
+ Bestand-trace
-
+ Brontoegang-monitor uitschakelen
-
+ IPC-trace
-
+ GUI-trace
-
+ Brontoegang-monitor
-
+ Toegang-tracing
-
+ COM Class trace
-
+ Key-trace
-
-
+
+ Netwerk-firewall
-
+
-
+
-
+ Debug
-
+ WAARSCHUWING, deze opties kunnen kernbeveiligingsgaranties uitschakelen en sandbox-beveiliging breken!
-
+ Deze opties zijn bedoeld voor het debuggen van compatibiliteitsproblemen, gebruik ze niet in productiegebruik.
-
+ App-sjablonen
@@ -8270,22 +8251,22 @@ in plaats van "*".
Compatibiliteit-sjablonen
-
+ Filter categorieën
-
+ Tekstfilter
-
+ Sjabloon toevoegen
-
+ Deze lijst bevat een groot aantal sjablonen om sandbox-compatibiliteit te verbeteren
@@ -8294,17 +8275,17 @@ in plaats van "*".
Sjabloon verwijderen
-
+ Categorie
-
+ Sjabloonmappen
-
+
@@ -8313,23 +8294,23 @@ Please note that this values are currently user specific and saved globally for
Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden opgeslagen voor alle boxen.
-
-
+
+ Waarde
-
+ Toegankelijkheid
-
+ Om te compenseren voor de verloren bescherming, raadpleeg de "rechten ontnemen"-instellingenpagina in de beperking-instellingen-groep.
-
+ Schermlezers: JAWS, NVDA, Window-Eyes, System Access
@@ -8339,114 +8320,144 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+
-
+
-
+
-
+
-
+
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+ Proces
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+ De volgende instellingen schakelen het gebruik van Sandboxie in combinatie met toegankelijkheidssoftware in. Merk op dat sommige beschermingsmaatregelen van Sandboxie noodzakelijk verloren gaan wanneer deze instellingen van toepassing zijn.
-
+ Ini-sectie bewerken
-
+ Ini bewerken
-
+ Annuleren
-
+ Opslaan
@@ -8478,27 +8489,27 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
QPlatformTheme
-
+ Ok
-
+ Toepassen
-
+ Annuleren
-
+ Ja
-
+ Nee
@@ -8720,22 +8731,22 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+ Geavanceerde configuratie
-
+ Kernel-mode objectfiltering inschakelen
-
+ Sandbox <a href="sbie://docs/filerootpath">bestandssysteem-root</a>:
-
+ Wachtwoord wissen wanneer het hoofdvenster verborgen wordt
@@ -8744,22 +8755,22 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
Gescheiden gebruikersmappen
-
+ Sandbox <a href="sbie://docs/ipcrootpath">ipc-root</a>:
-
+ Sandbox-standaard
-
+ Config-bescherming
-
+ ...
@@ -8842,112 +8853,112 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Status
-
+
-
+
-
+
-
+
-
+
-
+
-
+ kilobytes
-
+
-
+
-
+
-
+
@@ -8992,142 +9003,147 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Sandbox <a href="sbie://docs/keyrootpath">register-root</a>:
-
+ Sandboxing-functies
-
+
-
+ Wachtwoord wijzigen
-
+ Wachtwoord moet opgegeven worden om wijzigingen te maken
-
+ Alleen administrator-gebruikersaccounts kunnen wijzigingen maken
-
+ Wijzigingen in Sandboxie.ini opvolgen
-
+
-
+
-
+
-
+
-
+
-
+ App-sjablonen
-
+
@@ -9137,7 +9153,7 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
Alleen administrator-gebruikersaccounts kunnen de opdracht gebruiken om regels voor geforceerde programma's te pauzeren.
-
+ Draagbare root-map
@@ -9157,12 +9173,12 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
Pictogram in systeemvak weergeven:
-
+ Windows Filtering Platform gebruiken om netwerktoegang te beperken
-
+ Geselecteerde Win32k system calls hooken om GPU-versnelling in te schakelen (experimenteel)
@@ -9198,7 +9214,7 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+
@@ -9213,12 +9229,12 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+
-
+
@@ -9234,7 +9250,7 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+
@@ -9249,51 +9265,51 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+ Programma-bediening
-
-
-
-
+
+
+
+ Naam
-
+ Pad
-
+ Programma verwijderen
-
+ Programma toevoegen
-
+ Wanneer een van de volgende programma's gestart wordt buiten een sandbox, zal Sandboxie bericht SBIE1301 weergeven.
-
+ Map toevoegen
-
+ Voorkomen dat programma's in de lijst gestart worden op dit systeem
-
+ Bericht 1308 weergeven wanneer een programma niet kan worden gestart
@@ -9323,58 +9339,58 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Config ProtectionConfiguratiebescherming
@@ -9411,8 +9427,8 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
+
+ Verwijderen
@@ -9422,17 +9438,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Opdrachtregel
-
+
-
+
-
+
@@ -9441,62 +9457,67 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Compatibiliteit
-
+ Software-compatibiliteit in de toekomst niet controleren
-
+ Inschakelen
-
+ Uitschakelen
-
+ Sandboxie heeft de volgende softwaretoepassingen op uw systeem gedetecteerd. Klik op OK om configuratie-instellingen toe te passen die de compatibiliteit met deze toepassingen zullen verbeteren. Deze configuratie-instellingen zullen effect hebben in alle bestaande sandboxen en in alle nieuwe sandboxen.
-
+
-
+ Sjabloon toevoegen
-
+ Tekstfilter
-
+
-
+
+
+
+
+
+ Ini-sectie bewerken
-
+ Opslaan
-
+ Ini bewerken
-
+ Annuleren
@@ -9505,13 +9526,13 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Ondersteuning
-
+ Version Updates
-
+
@@ -9520,22 +9541,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Dit ondersteunerscertificaat is vervallen. <a href="sbie://update/cert">Haal een bijgewerkt certificaat op</a>.
-
+
-
+
-
+
-
+
@@ -9544,12 +9565,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie up-to-date houden met de voortschrijdende releases van Windows en compatibel houden met alle webbrowsers is een nooit eindigende onderneming. Overweeg om dit werk te steunen met een donatie.<br />U kunt de ontwikkeling steunen met een <a href="https://sandboxie-plus.com/go.php?to=donate">PayPal-donatie</a>, die ook met kredietkaarten werkt.<br />U kunt ook doorlopende ondersteuning bieden met een <a href="https://sandboxie-plus.com/go.php?to=patreon">Patreon-abonnement</a>.
-
+ In de toekomst geen melding maken over het verlopen van certificaten
-
+ Voer het ondersteuningscertificaat hier in
diff --git a/SandboxiePlus/SandMan/sandman_pl.ts b/SandboxiePlus/SandMan/sandman_pl.ts
index 3d29d8bf..38f1cdab 100644
--- a/SandboxiePlus/SandMan/sandman_pl.ts
+++ b/SandboxiePlus/SandMan/sandman_pl.ts
@@ -859,12 +859,12 @@ Błąd: %1
CCompletePage
-
+ Rozwiązywanie problemów zakończone
-
+
@@ -1240,14 +1240,12 @@ Możesz użyć %USER%, aby zapisać piaskownicę każdego użytkownika w jego w
CMultiErrorDialog
-
- Sandboxie-Plus - Błąd
+ Sandboxie-Plus - Błąd
-
- Wiadomość
+ Wiadomość
@@ -1599,47 +1597,47 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Główny ipc piaskownicy
-
+ Dodaj opcję specjalną:
-
-
+
+ Uruchom Start
-
-
-
-
-
+
+
+
+
+ Uruchom polecenie
-
+ Uruchom usługę
-
+ Uruchom Init
-
+ O odzyskiwaniu plików
-
+ Uruchom, Usuń zawartość
-
+
@@ -1648,31 +1646,31 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Uruchom kasowanie
-
-
-
-
-
+
+
+
+
+ Wprowadź wiersz polecenia do wykonania
-
+ Wprowadź nazwę pliku programu, aby zezwolić na dostęp do tej piaskownicy
-
+ Wprowadź nazwę pliku programu, aby odmówić dostępu do tej piaskownicy
-
+ Odmowa
-
+ %1 (%2)
@@ -1901,37 +1899,37 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Dodaj %1 szablon
-
+ Szukaj opcji
-
+ Boks: %1
-
+ Szablon: %1
-
+ Globalny: %1
-
+ Domyślny: %1
-
+ Ta piaskownica została usunięta, dlatego nie można zapisać konfiguracji.
-
+ Niektóre ustawienia nie zostały jeszcze zapisane, czy naprawdę chcesz zamknąć ustawienia?
@@ -1959,7 +1957,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Programy (*.exe *.cmd);;Wszystkie pliki (*.*)
-
+ Proszę wpisać identyfikator usługi
@@ -1988,8 +1986,8 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Proszę wpisać polecenie
-
-
+
+
@@ -2006,7 +2004,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Proszę wpisać nazwę nowej grupy
-
+ Podaj program:
@@ -2195,11 +2193,11 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Wszystkie pliki(*.*)
-
+
-
-
+
+
@@ -2235,7 +2233,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
-
+
@@ -2336,17 +2334,17 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Błąd: %1
-
+ Czy naprawdę chcesz usunąć wybrany lokalny szablon(-y)?
-
+ Można usunąć tylko szablony lokalne!
-
+
-
+
@@ -2780,13 +2778,13 @@ Full path: %4
Nie można zainicjować tej procedury rozwiązywania problemów. Możesz kliknąć dalej, aby przesłać raport o problemie.
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.Coś nie powiodło się wewnętrznie, ta procedura rozwiązywania problemów nie może być kontynuowana. Możesz kliknąć dalej, aby przesłać raport o problemie.
-
+
@@ -2929,22 +2927,22 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
CSandBox
-
+ Oczekiwanie na folder: %1
-
+ Usuwanie folderu: %1
-
+ Scalanie folderów: %1 >> %2
-
+ Kończenie scalania migawek...
@@ -3029,7 +3027,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
CSandMan
-
+ Sandboxie-Plus v%1
@@ -3069,42 +3067,42 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
<a href="sbie://update/check" style="color: red;">Dostępna jest nowa aktualizacja Sandboxie-Plus v%1</a>
-
+ Czy chcesz pominąć kreatora konfiguracji?
-
+ Czy chcesz otworzyć %1 w przeglądarce WWW w piaskownicy lub bez piaskownicy?
-
+ W piaskownicy
-
+ Bez piaskownicy
-
+ Zresetuj kolumny
-
+ Skopiuj komórkę
-
+ Skopiuj linijkę
-
+ Skopiuj wszystko
@@ -3277,7 +3275,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
-
+ Tester Sandboxie-Plus [%1]
@@ -3556,47 +3554,47 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
- Usuwanie zawartości piaskownicy
-
+ Automatyczne Usuwanie %1 Zawartości
-
+ Bieżąca konfiguracja: %1
-
+ Wybrany zestaw funkcji jest dostępny tylko dla sponsorów projektu. Procesy rozpoczęte w boksie z włączonym zestawem funkcji bez certyfikatu wsparcia zostaną zakończone po 5 minutach.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get- cert">Zostań sponsorem</a> i otrzymaj <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certyfikat wsparcia</a>
-
+ Proszę wpisać czas (w sekundach) wyłączenia reguł Programów wymuszonych.
-
+ Kod błędu: 0x%1 (%2)
-
+ Nieznane
-
+ Błąd przy kopiowaniu plików danych boksu
-
+ Błąd przy usuwaniu starych plików danych boksu
-
+ Nieznany kod błędu: 0x%1
@@ -3605,23 +3603,23 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
<p>Pobrano aktualizację Sandboxie-Plus do następującej lokalizacji:</p><p><a href="%2">%1</a></p><p>Czy chcesz rozpocząć instalację? Jeśli jakieś programy działają w trybie piaskownicy, zostaną zakończone.</p>
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>O Sandboxie-Plus</h3><p>Wersja %1</p><p>Prawo autorskie (c) 2020-2022 DavidXanatos</p>
-
+ Ta kopia Sandboxie+ jest certyfikowana dla: %1
-
+ Program Sandboxie+ jest bezpłatny do użytku osobistego i niekomercyjnego.
-
+ Sandboxie-Plus to kontynuacja Sandboxie o otwartym kodzie źródłowym.<br />Odwiedź stronę <a href="https://sandboxie-plus.com">sandboxie-plus.com</a>, aby uzyskać więcej informacji.<br />< br />%3<br /><br />Wersja sterownika: %1<br />Funkcje: %2<br /><br />Ikony z <a href="https://icons8.com"> icons8.com</a>
@@ -3716,7 +3714,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
-
+ O Sandboxie-Plus
@@ -3754,11 +3752,11 @@ Do you want to do the clean up?
-
-
-
-
-
+
+
+
+
+ Nie pokazuj ponownie tej wiadomości.
@@ -3768,72 +3766,72 @@ Do you want to do the clean up?
Ten boks będzie <a href="sbie://docs/boxencryption">zaszyfrowany</a>, a <a href="sbie://docs/black-box">dostęp do procesów w piaskownicy będzie chroniony</a >.
-
+ Nieznana operacja '%1' zażądana z wiersza poleceń
-
+ Brak procesu wymuszania
-
+ Nie znaleziono piaskownicy USB; tworzenie: %1
-
+ Usunięty skrót: %1
-
+ Zaktualizowano skrót do: %1
-
+ Dodany skrót: %1
-
+
-
+ Automatyczne usuwanie piaskownicy %1
-
+ %1 Katalog: %2
-
+ Aplikacja
-
+ Instalacja
-
+ do użytku osobistego
-
+ - TYLKO do użytku niekomercyjnego
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3841,111 +3839,111 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
+
-
-
-
+
+
+ (%1)
-
+ Skrzynka %1 jest skonfigurowana do korzystania z funkcji dostępnych wyłącznie dla osób wspierających projekt.
-
+ Skrzynka %1 jest skonfigurowana do korzystania z funkcji, które wymagają <b>zaawansowanego</b> certyfikatu wsparcia.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Uaktualnij swój certyfikat</a>, aby odblokować zaawansowane funkcje.
-
+ Wybrana funkcja wymaga <b>zaawansowanego</b> certyfikatu wsparcia.
-
+ Wybrany zestaw funkcji jest dostępny tylko dla osób wspierających projekt.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Zostań osobą wspierającą projekt</a > i otrzymaj <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certyfikat wsparcia</a>
-
+ Certyfikat, którego próbujesz użyć, został zablokowany, co oznacza, że został unieważniony z jakiegoś powodu. Każda próba jego użycia stanowi naruszenie warunków użytkowania!
-
+ The Certificate Signature is invalid!
-
+ Certyfikat nie jest odpowiedni dla tego produktu.
-
+ Certyfikat jest zablokowany w węźle.
-
+ Certyfikat wsparcia jest nieważny.
Błąd: %1
-
+ The evaluation periode has expired!!!Upłynął okres oceny!
-
-
+
+ Nie pytaj w przyszłości
-
+ Czy chcesz zakończyć wszystkie procesy w zaszyfrowanych piaskownicach i odmontować je?
-
-
-
+
+
+ Sandboxie-Plus - Błąd
-
+ Błąd przy zatrzymywaniu komponentów Sandboxie
-
+ Błąd w inicjacji komponentów Sandboxie
@@ -3962,17 +3960,17 @@ Błąd: %1
Katalog instalacji: %1
-
+ Wersja Sandboxie-Plus: %1 (%2)
-
+ Katalog danych: %1
-
+ Domyślna piaskownica nie znaleziona, więc zostanie odtworzona: %1
@@ -3987,22 +3985,22 @@ Błąd: %1
Resetuj wszystkie opcje GUI
-
+ Brakuje niektórych szablonów zgodności (%1), prawdopodobnie usunięto, czy chcesz je usunąć ze wszystkich boksów?
-
+ Wyczyszczono usunięte szablony…
-
+ Wykonywanie przy usuwaniu boksu: %1
-
+ Automatyczne usuwanie zawartości %1
@@ -4019,7 +4017,7 @@ Błąd: %1
- przenośna
-
+
@@ -4028,25 +4026,25 @@ Tak, wybierze: %1
Nie, wybierze: %2
-
+ - NIE połączone
-
+ Program %1 uruchomiony w boksie %2 zostanie zakończony za 5 minut, ponieważ boks został skonfigurowanya do korzystania z funkcji dostępnych wyłącznie dla sponsorów projektu.
-
+ Boks %1 jest skonfigurowany do używania funkcji dostępnych wyłącznie dla sponsorów projektu, te wstępne ustawienia będą ignorowane.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Zostań sponsorem projektu</a>, i otrzymaj <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certyfikat wsparcia</a>
@@ -4117,17 +4115,17 @@ Nie, wybierze: %2
-
+ Tylko administratorzy mogą zmieniać ustawienia piaskownicy.
-
+ Proszę wpisać hasło konfiguracji.
-
+ Nieudane logowanie: %1
@@ -4149,7 +4147,7 @@ Nie, wybierze: %2
Importowanie: %1
-
+ Czy chcesz zakończyć wszystkie procesy ww wszystkich piaskowniach?
@@ -4158,62 +4156,62 @@ Nie, wybierze: %2
W przyszłości zakańczaj bez pytania
-
+ Brak odzyskiwania
-
+ Brak wiadomości
-
+ Sandboxie-Plus został uruchomiony w trybie przenośnym i musi utworzyć niezbędne usługi. Spowoduje to wyświetlenie pytania o uprawnienia administracyjne.
-
+ UWAGA: Inny agent (prawdopodobnie SbieCtrl.exe) już zarządza tą sesją Sandboxie, proszę go najpierw zamknąć i połączyć się ponownie, aby przejąć kontrolę.
-
+ <b>BŁĄD:</b> Menedżer Sandboxie-Plus (SandMan.exe) nie ma prawidłowego podpisu (SandMan.exe.sig). Pobierz zaufaną wersję z <a href="https://sandboxie-plus.com/go.php?to=sbie-get">oficjalnej strony pobierania</a>.
-
+ Operacja konserwacji nie powiodła się (%1)
-
+ Zakończono operację konserwacji
-
+ Wykonywanie operacji zarzadzania, proszę czekać…
-
+ W interfejsie SB+, funkcjonalność ta została zintegrowana z głównym widokiem listy piaskownicy.
-
+ Korzystając z menu kontekstowego boksu/grupy, możesz przenosić boksy i grupy do innych grup. Możesz także użyć przeciągania i upuszczania, aby przenosić elementy. Możesz także użyć klawiszy strzałek, przytrzymując klawisz ALT, aby przenosić elementy w górę iw dół w ramach ich grupy.<br />Możesz tworzyć nowe boksy i grupy z menu piaskownicy.
-
+ Czy chcesz również zresetować ukrywany komunikat boksów (tak) czy tylko wszystkie komunikaty dziennika (nie)?
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4222,219 +4220,219 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ten plik jest częścią Sandboxie i wszystkie zmiany w nim dokonane zostaną cofnięte przy następnej aktualizacji Sandboxie.
-
+ Zmiany będą zastosowane automatycznie jak tylko plik zostanie zapisany.
-
+ Zmiany będą zastosowane automatycznie jak tylko edytor zostanie zakończony.
-
+ Konfiguracja piaskownicy została ponownie załadowana
-
+ Ta operacja wymaga uprawnień administratora.
-
+ Błąd przy wykonywaniu: %1
-
+ Błąd przy połączeniu ze sterownikiem
-
+ Błąd przy komunikacji z usługą: %1
-
+ Znaleziono niekompatybilną piaskownicę %1. Kompatybilne wersje: %2
-
+ Nie można znaleźć ścieżki instalacji Sandboxie.
-
+ Błąd przy kopiowaniu konfiguracji piaskownicy %1: %2
-
+ Piaskownica o nazwie %1 już istnieje
-
+ Błąd przy usuwaniu piaskownicy %1: %2
-
+ Nazwy piaskownicy nie mogą być dłuższe niż 32 znaki.
-
+ Nazwy piaskownicy nie mogą być nazwami urządzeń.
-
+ Nazwa piaskownicy może zawierać tylko litery, cyfry i podkreślenia, które są wyświetlane jako spacje.
-
+ Błąd przy zakańczaniu wszystkich procesów
-
+ Ochrona przed usunięciem jest aktywna dla tej piaskownicy
-
+ Przed usunięciem zawartości skrzynki wszystkie procesy piaskownicy muszą zostać zatrzymane
-
+ Błąd usuwania foldera piaskownicy: %1
-
+ A all processes in a sandbox must be stopped before it can be renamed.Wszystkie procesy w piaskownicy muszą zostać zatrzymane przed zmianą jej nazwy.
-
+ Przed usunięciem piaskownicy należy ją opróżnić.
-
+ Błąd przy przenoszeniu foldera %1 do %2
-
+ Nie udało się przenieść obrazu skrzynki '%1' do '%2'
-
+ Tej operacji migawki nie można wykonać, gdy procesy są nadal uruchomione w boksie.
-
+ Błąd przy tworzeniu foldera dla nowej migawki
-
+ Nie znaleziono migawki
-
+ Błąd podczas łączenia katalogów migawek „%1” z „%2”, migawka nie została w pełni scalona.
-
+ Błąd przy usuwaniu starego foldera migawki '%1'
-
+ Nie można usunąć migawki, która jest używana przez inne migawki
-
+ Brak autoryzacji do zmian konfiguracji w tej sekcji '%1'
-
+ Błąd przy zmianie ustawienia %1 w sekcji %2: %3
-
+ Nie można utworzyć migawki pustej piaskownicy
-
+ Piaskownica o tej nazwie już istnieje
-
+ Hasło konfiguracyjne nie może być dłuższe niż 64 znaki
-
+ Operacja została anulowana przez użytkownika
-
+ The content of an un mounted sandbox can not be deletedZawartość niezamontowanej piaskownicy nie może zostać usunięta
-
+ %1
-
+ Import/Export nie jest dostępny, 7z.dll nie może być załadowany
-
+ Nie udało się utworzyć archiwum boksu
-
+ Nie udało się otworzyć archiwum 7z
-
+ Nie udało się rozpakować archiwum boksu
-
+ Wybrany plik 7z NIE jest archiwum boksu
-
+ Błąd przy wykonywaniu %1 operacji.
@@ -4443,38 +4441,38 @@ Ten plik jest częścią Sandboxie i wszystkie zmiany w nim dokonane zostaną co
Czy przeglądarka WWW z %1 ma być otwarta w piaskownicy (tak), czy poza piaskownicą (nie)?
-
+ Zapamiętaj wybór na później.
-
+ I don't know what it's for
-
+
-
+ Podkreśl
-
+ Zamknij
-
+ &Znajdź...
-
+ Wszystkie kolumny
@@ -4539,22 +4537,22 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
<p>Nowa wersja Sandboxie-Plus zostanie pobrana z:</p><p><a href="%2">%1</a></p><p>Czy chcesz rozpocząć instalację? Jeśli jakieś programy działają w trybie piaskownicy, zostaną zakończone.</p>
-
+ Certyfikat wsparcia jest nieważny dla tej kompilacji, proszę o zaktualizowanie certyfikatu
-
+ %1Wygasł certyfikat wsparcia, proszę o zaktualizowanie certyfikatu
-
+ , ale zachowuje ważność dla obecnej kompilacji
-
+ Certyfikat wsparcia wygaśnie za %1 dni, proszę o zaktualizowanie certyfikatu
@@ -5546,17 +5544,17 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
CSelectBoxWindow
-
+ Sandboxie-Plus - Uruchom w piaskownicy
-
+ Czy na pewno chcesz uruchomić program poza piaskownicą?
-
+ Proszę wybrać piaskownicę.
@@ -5675,94 +5673,94 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
%1
-
+ Szukaj ustawień
-
-
-
+
+
+ Uruchom w pia&skownicy
-
+ kilobajty (%1)
-
+ Niepodłączony wolumin
-
+ Ten certyfikat wsparcia wygasł. <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">pobierz zaktualizowany certyfikat</a>.
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Pobieranie certyfikatu...
-
+ Error retriving certificate: %1
-
+
-
+ Strona główna
-
+ Do uzyskania dostępu wymagany jest certyfikat sponsora
-
+ Certyfikat sponora wymagany do automatyzacji
-
+ Ten dodatek jest obowiązkowy i nie można go usunąć.
-
+ Przeglądarka WWW w trybie piaskownicy
@@ -5810,53 +5808,53 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Pobierz i zainstaluj
-
+ Przeglądaj w poszukiwaniu programu
-
+ Dodaj %1 szablon
-
+ Wybierz czcionkę
-
+ Zresetuj czcionkę
-
+ %0, %1 pt
-
+ Proszę wpisać wiadomość
-
+ Wybierz program
-
+ Programy (*.exe *.cmd)
-
-
+
+ Proszę wpisać tytuł menu
-
+ Proszę wpisać polecenie
@@ -5865,92 +5863,92 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Wygasł ten certyfikat wsparcia, proszę <a href="sbie://update/cert">uzyskać zaktualizowany certyfikat</a>.
-
+ <br /><font color='red'>Funkcje dodatkowe zostaną wyłączone za %1 dni.</font>
-
+ <br /><font color='red'>W obecnej kompilacji funkcje Plus pozostają włączone</font>, ale nie masz już dostępu do usług Sandboxie-Live, w tym aktualizacji zgodności i bazy danych rozwiązywania problemów.
-
+ Ten certyfikat sponsora <font color='red'>wygaśnie za %1 dni</font>, prosimy o <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">uzyskanie zaktualizowanego certyfikatu</a>.
-
+ Współtwórca
-
+ Wieczny
-
+ Biznes
-
+ Osobisty
-
+ Wspaniały Patron
-
+ Patron
-
+ Rodzina
-
+ Próbny
-
+ Typ %1
-
+ Zaawansowany
-
+ Poziom maks.
-
+ Poziom %1
-
+ Ten certyfikat niestety nie jest ważny dla bieżącej kompilacji, musisz uzyskać nowy certyfikat lub przejść na starszą wersję.
-
+ Chociaż ten certyfikat wygasł, dla obecnie zainstalowanej wersji oraz funkcje pozostają włączone. Jednak nie będziesz już mieć dostępu do usług Sandboxie-Live, w tym aktualizacji zgodności i bazy danych rozwiązywania problemów online.
-
+ Ten certyfikat niestety wygasł, musisz uzyskać nowy certyfikat.
@@ -5959,7 +5957,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
<br /><font color='red'>W tej wersji funkcje Plus pozostają włączone.</font>
-
+ <br />Funkcje Plus nie są już włączone.
@@ -5973,12 +5971,12 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Wymagany certyfikat sponsora
-
+ Ur&uchom bez piaskownicy
-
+ To nie wygląda jak certyfikat. Proszę wpisać cały certyfikat, a nie tylko jego fragment.
@@ -5991,7 +5989,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Ten certyfikat jest niestety nieaktualny.
-
+ Dziękujemy za wsparcie rozwoju Sandboxie-Plus.
@@ -6000,22 +5998,22 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Ten certyfikat pomocy technicznej jest nieważny.
-
+ Dostępna aktualizacja
-
+ Zainstalowane
-
+ przez %1
-
+ (strona informacyjna)
@@ -6024,63 +6022,63 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Ten dodatek jest obowiązkowy i nie można go usunąć.
-
-
+
+ Wybierz katalog
-
+ <a href="check">Sprawdź teraz</a>
-
+ Proszę wpisać nowe hasło konfiguracyjne.
-
+ Wprowadź ponownie nowe hasło konfiguracyjne.
-
+ Hasła nie zgadzają się, spróbuj ponownie.
-
+ Proces
-
+ Folder
-
+ Proszę wpisać nazwę pliku programu
-
+ Proszę wpisać identyfikator szablonu
-
+ Błąd: %1
-
+ Czy naprawdę chcesz usunąć wybrany lokalny szablon(-y)?
-
+ %1 (aktualne)
@@ -6212,32 +6210,32 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
CSubmitPage
-
+ Prześlij raport o problemie
-
+ Szczegółowy opis problemu
-
+ Dołącz plik Sandboxie.ini
-
+ Zgodność z sandboxem zależy od konfiguracji, dlatego dołączenie pliku Sandboxie.ini bardzo pomaga w znalezieniu problemu.
-
+ Dołącz dzienniki
-
+ Select partially checked state to sends only message log but no trace log.
@@ -6246,70 +6244,70 @@ Before sending you can review the logs in the main window.
Przed wysłaniem można przejrzeć dzienniki w oknie głównym.
-
+ Dołącz zrzuty awaryjne
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.Aplikacja uległa awarii podczas procedury rozwiązywania problemów, dołączenie zrzutu awaryjnego może pomóc w debugowaniu.
-
+ Adres e-mail
-
+ Istnieje możliwość podania adresu e-mail w celu otrzymania powiadomienia po znalezieniu rozwiązania danego problemu.
-
+ Przepraszamy za niedogodności związane z Sandboxie-Plus.
-
+ Niestety, automatyczna procedura rozwiązywania problemów nie powiodła się.
-
+ Niestety, nie istnieje zautomatyzowana procedura rozwiązywania problemów dla opisanego problemu.
-
+ Jeśli chcesz przesłać raport o problemie, zapoznaj się z poniższym raportem i kliknij "Zakończ".
-
+ Kompresowanie dzienników
-
+ Kompresowanie zrzutów
-
+ Przesyłanie raportu o problemie...
-
+ Nie udało się przesłać raportu o problemie, błąd %1
Spróbuj przesłać bez załączonego dziennika.
-
+ Your issue report have been successfully submitted, thank you.Twój raport o problemie został pomyślnie przesłany, dziękujemy.
@@ -6950,17 +6948,42 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Ograniczenia
-
+
+
+
+
+
+ Zablokuj dostęp do drukarki
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Zablokuj dostęp do dysków sieciowych, chyba że specjalnie dopuszczone.
-
+ Porzuć prawa z grup Administratorzy i Użytkownicy Zaawansowani
@@ -6981,11 +7004,11 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
-
-
-
-
+
+
+
+
+ Chroń system przed programami w piaskownicy
@@ -6995,70 +7018,70 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Zezwól buforowi wydruku na drukowanie do plików poza piaskownicą
-
+ Usuń ograniczenie bufora, drukarki można zainstalować poza piaskownicą
-
+ Uruchom Menu 'Wykonaj'
-
+ Możesz skonfigurować własne wpisy do menu ‘wykonaj’.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Nazwa
-
+ Wiersz poleceń
-
+ Dodaj program
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Usuń
@@ -7105,22 +7128,22 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Opcje kasowania piaskownicy
-
+ Ograniczenie poziomów uprawnień
-
+ Spraw, by aplikacje uznały, że działają z podwyższonym poziomem uprawnień (umożliwia bezpieczne uruchamianie instalatorów)
-
+ Ograniczenia sieciowe
-
+ (Zalecane)
@@ -7139,7 +7162,7 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Ostrzegaj, gdy aplikacja otwiera podczepienie do dysku twardego
-
+ Inne ograniczenia
@@ -7149,7 +7172,7 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Ograniczenia drukowania
-
+ UWAGA: Podczas pracy z wbudowanym administratorem procesy nie mogą usuwać uprawnień administracyjnych.
@@ -7167,13 +7190,13 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Tutaj możesz określić programy i / lub usługi, które mają być automatycznie uruchamiane w piaskownicy po jej aktywacji
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Typ
@@ -7182,21 +7205,21 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Dodaj usługę
-
+ Grupy programów
-
+ Dodaj grupę
-
-
-
-
-
+
+
+
+
+ Dodaj Program
@@ -7205,42 +7228,42 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Programy wymuszone
-
+ Wymuś folder
-
-
-
+
+
+ Ścieżka
-
+ Wymuś program
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Pokaż szablony
@@ -7250,17 +7273,17 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Pokaż ten boks w monicie wyboru 'uruchom w boksie'
-
+ Uwaga dotycząca bezpieczeństwa: aplikacje z podwyższonym poziomem uprawnień, działające pod nadzorem Sandboxie, z tokenem administratora, mają więcej możliwości obejścia izolacji i zmodyfikowania systemu poza piaskownicą.
-
+ Zezwalaj MSIServer na działanie z tokenem systemu w trybie piaskownicy i w razie potrzeby stosuj inne wyjątki
-
+ Uwaga: Zwolnienia Instalatora Msi nie powinny być wymagane, ale jeśli napotkasz problemy z instalacją pakietu msi, któremu ufasz, ta opcja może pomóc w pomyślnym zakończeniu instalacji. Możesz również spróbować wyłączyć porzucenie praw administratora.
@@ -7293,12 +7316,12 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Ograniczenia dostępu
-
+ Otwórz Windows Credentials Store (tryb użytkownika)
-
+ Zapobiegaj zmianom parametrów sieci i zapory (tryb użytkownika)
@@ -7307,18 +7330,18 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Program/Usługa
-
+ Możesz pogrupować programy i nadać im nazwę grupy. Grupy programów mogą być używane z niektórymi ustawieniami zamiast nazw programów. Grupy zdefiniowane dla boksu zastępują grupy zdefiniowane w szablonach.
-
+ Programy wprowadzone tutaj lub programy uruchomione z wprowadzonych lokalizacji zostaną automatycznie umieszczone w tej piaskownicy, chyba że zostaną wyraźnie uruchomione w innej piaskownicy.
-
-
+
+ Zatrzymaj Zachowywania
@@ -7343,32 +7366,32 @@ If leader processes are defined, all others are treated as lingering processes.<
Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako procesy oczekujące.
-
+ Ograniczenia wykonania
-
+ Pokaż wiadomość 1308, gdy program nie może uruchomić się
-
+ Pozwól tylko wybranym programom uruchamiać się w tej piaskownicy.*
-
+ Zapobiegaj uruchamianiu wybranych programów w tej piaskownicy.
-
+ Pozwól wszystkim programom uruchamiać się w tej piaskownicy.
-
+ * Uwaga: programy zainstalowane w tej piaskownicy w ogóle nie będą mogły się uruchomić.
@@ -7377,135 +7400,135 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Ograniczenia internetowe
-
+ Ograniczenia procesu
-
+ Pokaż wiadomość 1307, gdy programowi odmówiono dostępu do Internetu
-
+ * Programy zainstalowane w piaskownicy nie będą mogły używać Internetu.
-
+ Zapytaj użytkownika o pozwolenie dostępu do Internetu.
-
+ Dostęp do zasobów
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Program
-
-
-
-
-
-
+
+
+
+
+
+ Dostęp
-
+ Dodaj klucz rejestru
-
+ Dodaj plik/folder
-
+ Dodaj klasę okna
-
+ Dodaj objekt COM
-
+ Dodaj ścieżkę IPC
-
+ Przywracanie plików
-
+ Dodaj folder
-
+ Ignoruj rozszerzenie pliku
-
+ Ignoruj folder
-
+ Włącz monit Natychmiastowego Przywracania, aby móc odzyskać pliki zaraz po ich utworzeniu.
-
+ Możesz wykluczyć foldery i typy plików (lub rozszerzenia plików) z Natychmiastowego Odzyskiwania.
-
+ Po wywołaniu funkcji szybkiego odzyskiwania następujące foldery zostaną sprawdzone pod kątem zawartości w piaskownicy.
-
+ Opcje zaawansowane
-
+ Różne
-
+ Ogranicz dostęp do emulowanego menedżera kontroli usług do procesów uprzywilejowanych
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Chroń integralność piaskownicy
@@ -7514,38 +7537,38 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Izolacja piaskownicy
-
+ Nie zmieniaj nazw klas okien w piaskownicy
-
+ Nie uruchamiaj usług piaskownicy przy użyciu tokena systemowego (zalecane)
-
+ Otwórz system chronionej pamięci masowej
-
+ Zablokuj dostęp do odczytu schowka
-
+ Dodaj procesy w piaskownicy do obiektów zadań (zalecane)
-
+ Wymuś użycie niestandardowych fałszywych plików manifestu (zachowanie starszego typu)
-
-
+
+ Zgodność
@@ -7562,42 +7585,42 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Tutaj można określić listę poleceń do wykonania przy inicjalizacji pustej piaskownicy.
-
+ Ukryj procesy
-
+ Dodaj proces
-
+ Ukryj procesy hosta piaskownicy przed procesami działającymi w piaskownicy.
-
+ Nie zezwalaj procesom w trybie piaskownicy widzieć procesów działających w innych boksach
-
+
-
+ Użytkownicy
-
+ Ogranicz dostęp do monitora dostępu do zasobów tylko dla administratorów
-
+ Dodaj użytkownika
@@ -7606,7 +7629,7 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Usuń użytkownika
-
+
@@ -7615,47 +7638,47 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Uwaga: ustawienia Wymuszonych Programów i Wymuszania Folderów dla piaskownicy nie mają zastosowania do kont użytkowników, które nie mogą korzystać z piaskownicy.
-
+ Śledzenie
-
+ Śledzenie GUI
-
+ Śledzenie IPC
-
+ Śledzenie pipe
-
+ Śledzenie dostępów
-
+ Rejestruj dane wyjściowe debugowania w dzienniku śledzenia
-
+ Śledzenie plikow
-
+ Śledzenie kluczy
-
+
-
+ Śledzenie klas COM
-
+ Emuluj piaskownicę dla wszystkich procesów
@@ -7692,49 +7715,49 @@ zamiast "*".
Izolacja dostępu
-
+ Zastosuj obejście ElevateCreateProcess (starsze zachowanie)
-
+ Użyj obejścia dla obiektów pulpitu dla wszystkich procesów
-
+ To polecenie zostanie uruchomione zanim zawartość boksu zostanie usunięta
-
+ O odzyskiwaniu plików
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedTo polecenie zostanie uruchomione przed odzyskaniem pliku i ścieżka do pliku zostanie przekazana jako pierwszy argument, jeśli to polecenie zwrócić coś innego niż 0 odzyskanie zostanie zablokowane
-
+ Uruchom sprawdzanie plików
-
+ Uruchom, Usuń zawartość
-
+ Chroni procesy w tym boksie przed dostępem określonych procesów hosta spoza piaskownicy.
-
-
+
+ Proces
@@ -7743,7 +7766,7 @@ zamiast "*".
Zablokuj również dostęp do odczytu procesów w tej piaskownicy
-
+ Dodaj opcję
@@ -7752,7 +7775,7 @@ zamiast "*".
Tutaj możesz skonfigurować zaawansowane opcje dla każdego procesu, aby poprawić kompatybilność i/lub dostosować zachowanie piaskownicy.
-
+ Opcja
@@ -7762,7 +7785,7 @@ zamiast "*".
Śledzenie wywołań API (wymaga zainstalowania logapi w katalogu sbie)
-
+ Rejestruj wszystkie błędy SetError do dziennika śledzenia (tworzy dużo danych wyjściowych)
@@ -7776,22 +7799,22 @@ zamiast "*".
Rejestrowanie żądań DNS
-
+ Debug
-
+ UWAGA, te opcje mogą wyłączyć podstawowe gwarancje bezpieczeństwa i złamać zabezpieczenia sandboxa!
-
+ Te opcje są przeznaczone do debugowania problemów z kompatybilnością, proszę nie używać ich w zastosowaniach produkcyjnych.
-
+ Dodaj szablony
@@ -7800,17 +7823,17 @@ zamiast "*".
Szablony zgodności
-
+ Filtruj kategorie
-
+ Filtruj text
-
+ Dodaj szablon
@@ -7819,42 +7842,42 @@ zamiast "*".
Usuń szablon
-
+ Kategoria
-
+ Ta lista zawiera dużą ilość szablonów poprawiających kompatybilność z piaskownicą
-
+ Ustawienie dostępu do sieci/internetu dla procesów niewymienionych na liście:
-
+ Zasady testowania, program:
-
+ Port:
-
+ IP:
-
+ Protokół:
-
+ X
@@ -7874,12 +7897,12 @@ zamiast "*".
Struktura boksu
-
+ Opcje zabezpieczeń
-
+ Utwardzanie zabezpieczeń
@@ -7888,48 +7911,48 @@ zamiast "*".
Różne ograniczenia
-
+ Izolacja bezpieczeństwa
-
+ Różne funkcje izolacji mogą zakłócać kompatybilność z niektórymi aplikacjami. Jeśli używasz tej piaskownicy <b>NIE dla bezpieczeństwa</b>, ale dla przenośności aplikacji, zmieniając te opcje, możesz przywrócić kompatybilność, poświęcając część bezpieczeństwa.
-
+ Izolacja dostępu
-
+ Ochrona obrazu
-
+ Problem z komunikatem 1305, gdy program próbuje załadować bibliotekę DLL w trybie piaskownicy
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandboxZapobieganie ładowaniu dll'ów z piaskownicy przez programy zainstalowane na hoście
-
+ Dll-e && Rozszerzenia
-
+ Opis
-
+ Zasady dostępu do zasobów Sandboxa często dyskryminują binarki programów znajdujących się wewnątrz piaskownicy. OpenFilePath i OpenKeyPath działają tylko dla binarek aplikacji znajdujących się natywnie na hoście. Aby zdefiniować regułę bez tego ograniczenia, należy użyć OpenPipePath lub OpenConfPath. Podobnie, wszystkie dyrektywy Closed(File|Key|Ipc)Path, które są zdefiniowane przez negację np. 'ClosedFilePath=! iexplore.exe,C:Users*' będą zawsze zamknięte dla binariów znajdujących się wewnątrz sandboxa. Obie polityki ograniczeń mogą być wyłączone na stronie "Zasady dostępu".
@@ -7940,7 +7963,7 @@ Ma to zapobiec tworzeniu przez nieuczciwe procesy wewnątrz piaskownicy kopii o
Funkcjonalność piaskownic można ulepszyć za pomocą opcjonalnych bibliotek dll, które można załadować do każdego procesu w piaskownicy przy starcie przez SbieDll.dll, menedżer dodatków w ustawieniach globalnych oferuje kilka przydatnych rozszerzeń, po zainstalowaniu można je włączyć tutaj dla bieżącej skrzynki.
-
+ Adcanced SecurityOchrona zaawansowana
@@ -7950,52 +7973,52 @@ Ma to zapobiec tworzeniu przez nieuczciwe procesy wewnątrz piaskownicy kopii o
Użyj loginu Sandboxie zamiast anonimowego tokena (eksperymentalne)
-
+ Inna izolacja
-
+ Izolacja przywilejów
-
+ Token piaskownicy
-
+ Użycie niestandardowego tokena sandboxie pozwala na lepsze odizolowanie poszczególnych sandboxów od siebie, a także pokazuje w kolumnie użytkownika w menedżerach zadań nazwę sandboxa, do którego należy dany proces. Niektóre rozwiązania bezpieczeństwa firm trzecich mogą jednak mieć problemy z niestandardowymi tokenami.
-
+ Kontrola programu
-
+ Wymuś programy
-
+ Wyłącz wymuszanie procesów i folderów dla tej piaskownicy
-
+ Programy przerywane
-
+ Program wyrwany
-
+ Folder wyrwany
@@ -8025,38 +8048,38 @@ Ma to zapobiec tworzeniu przez nieuczciwe procesy wewnątrz piaskownicy kopii o
Ustaw hasło
-
+ Wyłącz izolację zabezpieczeń
-
-
+
+ Ochrona boksu
-
+ Ochrona procesów wewnątrz tego boksu przed procesami hosta
-
+ Zezwalaj na proces
-
+ Komunikat 1318/1317, gdy proces hosta próbuje uzyskać dostęp do procesu w piaskownicy/korzeniu boksu
-
+ Sandboxie-Plus jest w stanie tworzyć poufne piaskownice, które zapewniają solidną ochronę przed nieautoryzowanym nadzorem lub manipulacją przez procesy hosta. Wykorzystując zaszyfrowany obraz piaskownicy, funkcja ta zapewnia najwyższy poziom poufności operacyjnej, zapewniając bezpieczeństwo i integralność procesów w piaskownicy.
-
+ Odmów proces
@@ -8066,121 +8089,110 @@ Ma to zapobiec tworzeniu przez nieuczciwe procesy wewnątrz piaskownicy kopii o
-
-
- Prevents processes in the sandbox from interfering with power operation
-
-
-
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.
-
+ Zezwalanie użytecznym procesom Windows na dostęp do procesów chronionych
-
+ Użyj loginu Sandboxie zamiast anonimowego tokena
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.Programy wpisane tutaj będą mogły wyrwać się z tego boksu po uruchomieniu, możesz je przechwycić do innego boksu. Na przykład, aby przeglądarka internetowa była zawsze otwarta w dedykowanym boksie. Ta funkcja wymaga zainstalowania ważnego certyfikatu wsparcia.
-
+ <b><font color='red'>PRZESTROGA DOTYCZĄCA BEZPIECZEŃSTWA</font>:</b> Using <a href="sbie://docs/breakoutfolder"> Używanie Breakout Folder</a> i/lub <a href="sbie://docs/breakoutprocess">Breakout Process</a> w połączeniu z dyrektywami Open[File/Pipe]Path może naruszyć bezpieczeństwo, podobnie jak użycie <a href="sbie://docs/breakoutdocument">Breakout Document</a> pozwalającego na dowolne * lub niezabezpieczone (*.exe;*.dll;*.ocx;*.cmd;*.bat;*.lnk;*.pif;*.url;*.ps1;itp...) rozszerzenia. Przed użyciem należy zapoznać się z sekcją bezpieczeństwa dla każdej opcji w dokumentacji.
-
+ Długotrwałe programy
-
+ Długotrwałe programy zostaną automatycznie zakończone, jeśli nadal działają po zakończeniu wszystkich innych procesów.
-
+ Programy wiodące
-
+ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako procesy długotrwałe.
-
+
-
+
-
+
-
+ Pliki
-
+ Skonfiguruj, które procesy mogą uzyskiwać dostęp do plików, folderów i potoków.
Dostęp „Otwarty” dotyczy tylko plików binarnych programu znajdujących się poza piaskownicą, możesz zamiast tego użyć „Otwórz dla wszystkich”, aby zastosować go do wszystkich programów, lub zmienić to zachowanie na karcie Zasady.
-
+ Rejestr Systemu
-
+ Skonfiguruj, które procesy mogą uzyskiwać dostęp do Rejestru.
Dostęp „Otwarty” dotyczy tylko plików binarnych programu znajdujących się poza piaskownicą, możesz zamiast tego użyć „Otwórz dla wszystkich”, aby zastosować go do wszystkich programów, lub zmienić to zachowanie na karcie Zasady.
-
+ IPC
-
+ Skonfiguruj, które procesy mogą uzyskiwać dostęp do obiektów NT IPC, takich jak porty ALPC oraz pamięć i kontekst innych procesów.
Aby określić proces, użyj jako ścieżki '$:program.exe'.
-
+ Wnd
-
+ Klasa Okna
@@ -8190,50 +8202,50 @@ Aby określić proces, użyj jako ścieżki '$:program.exe'.Skonfiguruj, które procesy mogą uzyskiwać dostęp do obiektów pulpitu, takich jak Windows i tym podobne.
-
+ COM
-
+ Klasa Id
-
+ Skonfiguruj, które procesy mogą uzyskiwać dostęp do obiektów COM.
-
+ Nie używaj zwirtualizowanego COM, Otwórz dostęp do infrastruktury COM hostów (niezalecane)
-
+ Polityka dostępu
-
+ Zastosuj reguły Zamknij...=!<program>,... również do wszystkich binariów znajdujących się w piaskownicy.
-
+ Opcje sieciowe
-
+ Dodaj regułę
-
-
-
+
+
+ Akcja
@@ -8315,73 +8327,73 @@ Aby określić proces, użyj jako ścieżki '$:program.exe'.Ikona
-
+ Przesuń w górę
-
+ Przesuń w dół
-
+ Skonfiguruj, które procesy mogą uzyskiwać dostęp do obiektów pulpitu, takich jak Windows i tym podobne.
-
+ Port
-
+ IP
-
+ Protokół
-
+ UWAGA: Platforma filtrowania Windows nie jest włączona w sterowniku, dlatego te reguły będą stosowane tylko w trybie użytkownika i nie mogą być egzekwowane! Oznacza to, że złośliwe aplikacje mogą je ominąć.
-
+ Szybkie odzyskiwanie
-
+ Natychmiastowe Przywracanie
-
+ Różne opcje
-
+ Allow use of nested job objects (experimental, works on Windows 8 and later)Zezwalaj na używanie zagnieżdżonych obiektów zadań (eksperymentalne, działa od Windows 8 i w następnych)
-
+ Zezwalaj programom z piaskownicy na zarządzanie sprzętem/urządzeniami
-
+ Otwórz dostęp do Menedżera kont zabezpieczeń systemu Windows
-
+ Otwórz dostęp do usługi podsystemu urzędu zabezpieczeń lokalnych
@@ -8404,34 +8416,34 @@ You can use 'Open for All' instead to make it apply to all programs, o
Zasady dostępu do zasobów
-
+ Specyfika reguły jest miarą tego, jak dobrze dana reguła pasuje do konkretnej ścieżki. Prościej: specyfika jest długością znaków od początku ścieżki do ostatniego pasującego niezawierającego znaków wielkościowych podłańcucha. Reguła, która dopasowuje tylko typy plików takie jak "*.tmp" będzie miała najwyższą specyfikę, ponieważ zawsze dopasuje całą ścieżkę do pliku.
Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje sposób zastosowania reguły do danego procesu. Reguły stosujące się do nazwy procesu lub grupy procesów mają najsilniejszy poziom dopasowania, następnie dopasowanie przez negację (tj. reguły stosujące się do wszystkich procesów oprócz danego), podczas gdy najniższe poziomy dopasowania mają dopasowania globalne, tj. reguły stosujące się do każdego procesu.
-
+ Nadaj priorytet regułom w oparciu o ich specyfikę i poziom dopasowania procesu
-
+ Tryb prywatności, blokuje dostęp do plików i rejestru we wszystkich lokalizacjach z wyjątkiem ogólnych systemowych
-
+ Tryb dostępu
-
+ Po włączeniu trybu prywatności, procesy w trybie piaskownicy będą mogły odczytywać tylko C:\Windows\*, C:\Program Files\* i części rejestru HKLM, a wszystkie inne lokalizacje będą wymagały jawnego dostępu do odczytu i/lub zapisu. W tym trybie Specyfika reguły jest zawsze włączona.
-
+ Reguły zasad
@@ -8440,12 +8452,12 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
Zastosuj reguły Close...=!<program>,... również do wszystkich plików binarnych znajdujących się w piaskownicy.
-
+ Zastosuj dyrektywy otwarcia pliku i klucza tylko do plików binarnych znajdujących się poza piaskownicą.
-
+ Uruchom proces RpcS w piaskownicy jako proces SYSTEMOWY (niezalecane)
@@ -8454,18 +8466,18 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
Otwarty dostęp do infrastruktury COM (niezalecane)
-
+ Odrzuć krytyczne uprawnienia z procesów uruchomionych z tokenem SYSTEM
-
-
+
+ (Kluczowe dla bezpieczeństwa)
-
+ Chroń SYSTEMOWE procesy w trybie piaskownicy przed nieuprzywilejowanymi procesami
@@ -8475,32 +8487,32 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
Zawsze pokazuj tę piaskownicę na liście paska zadań (Przypięta)
-
+ Zwiększenie bezpieczeństwa
-
+ Używaj oryginalnego tokena tylko dla zatwierdzonych wywołań systemowych NT
-
+ Ogranicz dostęp sterownika/urządzenia tylko do zatwierdzonych
-
+ Włącz wszystkie ulepszenia zabezpieczeń (utwórz wzmocniony boks bezpieczeństwa)
-
+ Zezwalaj na odczyt pamięci procesów poza piaskownicą (niezalecane)
-
+ Komunikat o numerze 2111 w przypadku odmowy dostępu do procesu
@@ -8509,12 +8521,12 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
COM/RPC
-
+ Wyłączenie domyślnego użycia RpcMgmtSetComTimeout (może rozwiązać problemy z kompatybilnością)
-
+ Izolacja bezpieczeństwa poprzez użycie silnie ograniczonego tokena procesu jest podstawowym sposobem Sandboxie wymuszania ograniczeń piaskownicy, gdy Izolacja jest wyłączona to boks działa w trybie komory aplikacji, tj. nie zapewnia już niezawodnego bezpieczeństwa, tylko prosty podział aplikacji na komory.
@@ -8527,61 +8539,61 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
Różne zaawansowane funkcje izolacji mogą zakłócić zgodność z niektórymi aplikacjami. Jeśli używasz tej piaskownicy <b>NIE dla bezpieczeństwa</b>, ale dla prostej przenośności aplikacji, zmieniając te opcje, możesz przywrócić zgodność, poświęcając część bezpieczeństwa.
-
+ Izolacja i filtrowanie bezpieczeństwa
-
+ Wyłącz filtrowanie zabezpieczeń (niezalecane)
-
+ Filtrowanie bezpieczeństwa używane przez Sandboxie do wymuszania ograniczeń dostępu do systemu plików i rejestru, a także do ograniczania dostępu do procesów.
-
+ Poniższe opcje mogą być bezpiecznie użyte, gdy nie nadano uprawnień administratora.
-
+ Wyzwalacze
-
+ Zdarzenie
-
-
-
-
+
+
+
+ Uruchom polecenie
-
+ Uruchom usługę
-
+ Zdarzenia te wykonywane są za każdym razem, gdy uruchamiany jest boks
-
+ Włącz w start boksu
-
-
+
+ Te polecenia uruchamiane są tuż przed usunięciem zawartości boksu
@@ -8590,43 +8602,43 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
Przy usuwaniu boksu
-
+ Polecenia te wykonywane są tylko wtedy, gdy boks jest inicjalizowany. Aby je ponownie uruchomić, należy usunąć zawartość boksu.
-
+ Włącz w Init boksu
-
+ W tym miejscu można określić akcje, które mają być wykonywane automatycznie w przypadku różnych zdarzeń w boksie.
-
+ Wyłącz monitor dostępu do zasobów
-
+ Monitor dostępu do zasobów
-
-
+
+ Zapora sieciowa
-
+ Foldery szablonów
-
+
@@ -8635,115 +8647,114 @@ Please note that this values are currently user specific and saved globally for
Należy pamiętać, że te wartości są obecnie specyficzne dla użytkownika i zapisywane globalnie dla wszystkich boksów.
-
-
+
+ Wartość
-
+ Dostępność
-
+ Aby zrekompensować utratę ochrony, zapoznaj się ze stroną ustawień Usuwania Uprawnień w grupie ustawień Ograniczenia.
-
+ Czytniki ekranu: JAWS, NVDA, Window-Eyes, System Access
-
-
- Block process from taking screenshots of windows not belonging to the containing sandbox
-
-
-
-
+
-
+
-
+
-
+
-
+ Gdy globalny klawisz skrótu zostanie naciśnięty 3 razy w krótkim odstępie czasu, wyjątek ten zostanie zignorowany.
-
+ Wyklucza tę piaskownicę z zakończenia po wywołaniu opcji "Zakończ wszystkie procesy".
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Funkcjonalność Sandboxie można rozszerzyć za pomocą opcjonalnych bibliotek DLL, które mogą być ładowane do każdego procesu sandboxie podczas uruchamiania przez plik SbieDll.dll, menedżer dodatków w ustawieniach globalnych oferuje kilka przydatnych rozszerzeń, po zainstalowaniu można je tutaj włączyć dla bieżącej skrzynki.
-
+ Tutaj można skonfigurować zaawansowane opcje dla poszczególnych procesów, aby poprawić zgodność i/lub dostosować zachowanie piaskownicy.
-
+
-
+
-
+ Syscall Trace (tworzy dużo danych wyjściowych)
-
+ Szablony
-
+
+
+
+
+
+ Poniższe ustawienia umożliwiają korzystanie z usługi Sandboxie w połączeniu z oprogramowaniem zapewniającym dostępność. Należy pamiętać, że niektóre środki ochrony Sandboxie są z konieczności tracone, gdy te ustawienia są aktywne.
-
+ Edytuj sekcję ini
-
+ Edytuj ini
-
+ Anuluj
-
+ Zapisz
@@ -8775,27 +8786,27 @@ Należy pamiętać, że te wartości są obecnie specyficzne dla użytkownika i
QPlatformTheme
-
+ OK
-
+ Zastosuj
-
+ Anuluj
-
+ &Tak
-
+ &Nie
@@ -8985,32 +8996,37 @@ Należy pamiętać, że te wartości są obecnie specyficzne dla użytkownika i
Pokaż powiadomienia w pasku, gdy uruchamiane są automatyczne operacje boksu
-
+
+
+
+
+
+ Menedżer dodatków
-
+ Dodatki opcjonalne
-
+ Sandboxie-Plus oferuje wiele opcji i obsługuje szeroką gamę rozszerzeń. Na tej stronie można skonfigurować integrację dodatków, wtyczek i innych komponentów innych firm. Opcjonalne komponenty można pobrać z Internetu, a niektóre instalacje mogą wymagać uprawnień administracyjnych.
-
+ <a href="sbie://addons">aktualizuj listę dodatków teraz</a>
-
+ Włącz filtrowanie obiektów w trybie jądra
-
+ Przechwytuj wybrane wywołania systemowe Win32k, aby włączyć przyspieszenie GPU (eksperymentalne)
@@ -9044,7 +9060,7 @@ Należy pamiętać, że te wartości są obecnie specyficzne dla użytkownika i
Użyj nowego układu okna dialogowego konfiguracji *
-
+ Aktualizacja Sandboxie
@@ -9053,49 +9069,49 @@ Należy pamiętać, że te wartości są obecnie specyficzne dla użytkownika i
Aktualizuj listę dodatków
-
+ Kanał Insider oferuje wczesny dostęp do nowych funkcji i poprawek błędów, które ostatecznie zostaną udostępnione publicznie, a także wszystkie istotne ulepszenia ze stabilnego kanału.
W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalnie przełomowych lub eksperymentalnych zmian, które mogą nie być gotowe do szerszego wykorzystania.
-
+ Szukaj w kanale Insider
-
+ Okresowo sprawdzaj dostępność nowych wersji Sandboxie-Plus
-
+ Więcej informacji na temat <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">Kanału Insider</a>
-
+ Aktualizuj skrypty rozwiązywania problemów
-
+ Użyj loginu Sandboxie zamiast anonimowego tokena
-
+ Alerty programu
-
+ Komunikat 1301 po wyłączeniu wymuszania procesów
-
+ Tylko konta użytkowników typu Administrator mogą używać polecenia Wstrzymaj Wymuszanie Programów
@@ -9131,8 +9147,8 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
-
-
+
+ Usuń
@@ -9142,7 +9158,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Wiersz poleceń
-
+ Wsparcie i aktualizacje
@@ -9151,7 +9167,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Konfiguracja piaskownicy
-
+ Domyślna piaskownica:
@@ -9160,22 +9176,22 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Zgodność
-
+ Edytuj sekcję ini
-
+ Zapisz
-
+ Edytuj ini
-
+ Anuluj
@@ -9184,7 +9200,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Wsparcie
-
+ Version UpdatesAktualizacje wersji
@@ -9194,22 +9210,22 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Nowe pełne wersje z wybranego kanału dystrybucji.
-
+ Świeże poprawki dla zainstalowanej wersji, aktualizacji Templates.ini i tłumaczeń.
-
+ Kanał podglądu zawiera najnowsze wersje przed finalne z GitHub.
-
+ Kanał stabilny zawiera najnowsze stabilne wersje z GitHub.
-
+ Szukaj w kanale stabilnym
@@ -9218,7 +9234,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Utrzymywanie Sandboxie na bieżąco z nowymi wersjami systemu Windows i kompatybilność ze wszystkimi przeglądarkami internetowymi to niekończące się przedsięwzięcie. Rozważ wsparcie tej pracy darowizną.<br />Możesz wesprzeć rozwój za pomocą <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">darowizny PayPal</a>, działa również z kartami kredytowymi.<br />Lub możesz zapewnić ciągłe wsparcie dzięki <a href="https://sandboxie-plus.com/go.php?to=patreon">subskrypcji Patreon</a>.
-
+ Szukaj w kanale podglądu
@@ -9281,22 +9297,22 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Użyj ciemnego motywu (zadziała w pełni po restarcie SB+)
-
+ Ochrona konfiguracji
-
+ Piaskownica <a href="sbie://docs/ipcrootpath">ipc root</a>:
-
+ Piaskownica <a href="sbie://docs/keyrootpath">registry root</a>:
-
+ Wyczyść hasło, gdy zostanie ukryte okno główne
@@ -9305,7 +9321,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Tylko konta użytkowników typu Administrator mogą używać polecenia Wstrzymaj Programy Wymuszone
-
+ Piaskownica <a href="sbie://docs/filerootpath">file system root</a>:
@@ -9355,12 +9371,12 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Uruchom Menedżera piaskownicy
-
+ Konfiguracja zaawansowana
-
+ Użyj platformy filtrowania systemu Windows, aby ograniczyć dostęp do sieci
@@ -9373,7 +9389,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Oddziel foldery użytkowników
-
+ Funkcje piaskownicy
@@ -9382,28 +9398,28 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Osoby wspierające projekt Sandboxie-Plus otrzymują <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certyfikat wsparcia</a>. To jest jak klucz licencyjny, ale dla wspaniałych ludzi używających oprogramowania open source :-)
-
+ Kontrola programu
-
+ Config ProtectionOchrona konfiguracji
-
+ Tylko administratorzy mogą zmieniać ustawienia
-
+ Wymagaj podania hasła, aby zmienić ustawienia
-
+ Zmień hasło
@@ -9412,7 +9428,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Utrzymywanie Sandboxie na bieżąco z nowymi wersjami systemu Windows i kompatybilność ze wszystkimi przeglądarkami internetowymi to niekończące się przedsięwzięcie. Rozważ wsparcie tej pracy darowizną.<br />Możesz wesprzeć rozwój za pomocą <a href="https://sandboxie-plus.com/go.php?to=donate">darowizny PayPal</a>, działa również z kartami kredytowymi.<br />Lub możesz zapewnić ciągłe wsparcie dzięki <a href="https://sandboxie-plus.com/go.php?to=patreon">subskrypcji Patreon</a>.
-
+ Wpisz tutaj certyfikat wsparcia
@@ -9421,22 +9437,22 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Ustawienia wsparcia
-
+ Przenośny folder główny
-
+ ...
-
+ Ścieżki piaskownicy
-
+ Obserwuj modyfikacje Sandboxie.ini
@@ -9457,7 +9473,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Pokaż tło "Pizza" na liście boksów *
-
+ (Wymagany restart)
@@ -9488,7 +9504,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Użyj dużych ikon na liście boksów *
-
+ Skalowanie wysokiego DPI
@@ -9503,7 +9519,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Użyj ciemny motyw
-
+ Skalowanie czcionki
@@ -9513,7 +9529,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Pokaż okno odzyskiwania jako Zawsze na wierzchu
-
+ %
@@ -9533,40 +9549,40 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
-
-
-
-
+
+
+
+ Nazwa
-
+ Ścieżka
-
+ Usuń program
-
+ Dodaj Program
-
+ Gdy jakikolwiek z następujących programów jest uruchomiony poza piaskownicą, Sandboxie wyświetli wiadomość SBIE1301.
-
+ Dodaj folder
-
+ Zapobiegaj uruchamianiu wymienionych programów w tym systemie
@@ -9655,12 +9671,12 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Ukryj własne procesy Sandboxie na liście zadań
-
+ Czcionka edytora Ini
-
+ Opcje graficzne
@@ -9675,27 +9691,27 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Minimalizuj do zasobnika
-
+ Wybierz czcionkę
-
+ Zresetuj czcionkę
-
+ Opcje Ini
-
+ #
-
+ Zewnętrzny edytor Ini
@@ -9712,17 +9728,17 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Sandboxie-Plus oferuje wiele opcji i obsługuje szeroką gamę rozszerzeń. Na tej stronie można skonfigurować integrację dodatków, wtyczek i innych komponentów innych firm. Opcjonalne komponenty można pobrać z Internetu, a niektóre instalacje mogą wymagać uprawnień administracyjnych.
-
+ Status
-
+ Wersja
-
+ Opis
@@ -9731,202 +9747,207 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
<a href="sbie://addons">zaktualizuj teraz listę dodatków</a>
-
+ Instaluj
-
+ Konfiguracja dodatków
-
+ Włącz tworzenie dysku Ram
-
+ kilobajtów
-
+ Przydziel literę dysku do dysku Ram
-
+ <a href="addon://ImDisk">Zainstaluj sterownik ImDisk</a>, aby włączyć obsługę dysku RAM i obrazu dysku.
-
+ Obsługa obrazów dysków
-
+ Limit RAM
-
+ Jeśli dysk Ram jest już zamontowany, należy go odmontować, aby ta opcja zaczęła działać.
-
+ * zaczyna obowiązywać w momencie utworzenia dysku
-
+ Wsparcie piaskownicy
-
+ Ten certyfikat wsparcia wygasł. <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">pobierz zaktualizowany certyfikat</a>.
-
+ Sponsorzy projektu Sandboxie-Plus mogą otrzymać <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certyfikat sponsora</a>. To jak klucz licencyjny, ale dla niesamowitych ludzi korzystających z oprogramowania open source. :-)
-
+ Uzyskaj
-
+ Pobieranie/Uaktualnianie/Odnawianie certyfikatu przy użyciu numeru seryjnego
-
+ Aktualizowanie Sandboxie z kolejnymi wersjami systemu Windows i kompatybilność ze wszystkimi przeglądarkami internetowymi to niekończące się przedsięwzięcie. Możesz wesprzeć rozwój poprzez <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">bezpośredni wkład w projekt</a>, pokazując swoje wsparcie poprzez <a href= "https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">kupując certyfikat wspierający</a>, zostając patronem <a href="https://sandboxie-plus. com/go.php?to=patreon">subskrypcja na Patreonie</a> lub poprzez <a href="https://sandboxie-plus.com/go.php?to=donate">darowiznę PayPal</ a>.<br />Twoje wsparcie odgrywa kluczową rolę w rozwoju i utrzymaniu Sandboxie.
-
+ SBIE_-_____-_____-_____-_____
-
+
-
+ Aktualizuj listę dodatków
-
+ Ustawienia aktualizacji
-
+ Nowe pełne instalatory z wybranego kanału wydania.
-
+ Pełne aktualizacje
-
+ Interwał sprawdzania aktualizacji
-
+ Wstępne ustawienia Sandboxie.in
-
+ Pokaż wiadomość 1308, gdy program nie może uruchomić się
-
+ Piaskownica dysków USB
-
+ Pojemność
-
+ Informacja
-
+ Piaskownica dla napędów USB:
-
+ Automatyczna piaskownica wszystkich podłączonych dysków USB
-
+ Dodaj szablony
-
+ Kompatybilność aplikacji
-
+ W przyszłości nie sprawdzaj szablonów kompatybilności
-
+ Włączyć
-
+ Wyłącz
-
+ Sandboxie wykrył następujące aplikacje w twoim systemie. Kliknij OK, aby zastosować ustawienia konfiguracji, co poprawi zgodność z tymi aplikacjami. Te ustawienia konfiguracji będą obowiązywać we wszystkich istniejących piaskownicach i wszystkich nowych piaskownicach.
-
+ Szablony lokalne
-
+ Dodaj szablon
-
+
+
+
+
+
+ Filtruj text
-
+ Ta lista zawiera utworzone przez użytkownika własne szablony opcji piaskownicy
@@ -9935,7 +9956,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Nowe wersje
-
+ W przyszłości nie powiadamiaj o wygaśnięciu certyfikatu
diff --git a/SandboxiePlus/SandMan/sandman_pt_BR.ts b/SandboxiePlus/SandMan/sandman_pt_BR.ts
index 96ab2933..959612f8 100644
--- a/SandboxiePlus/SandMan/sandman_pt_BR.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_BR.ts
@@ -843,12 +843,12 @@ Error: %1
CCompletePage
-
+
-
+
@@ -1216,14 +1216,12 @@ Você pode usar %USER% para salvar a caixa de proteção de cada usuário em uma
CMultiErrorDialog
-
- Sandboxie-Plus - Erro
+ Sandboxie-Plus - Erro
-
- Mensagem
+ Mensagem
@@ -1678,11 +1676,11 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Selecionar Diretório
-
+
-
-
+
+
@@ -1692,8 +1690,8 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Todos os Programas
-
-
+
+
@@ -1731,7 +1729,7 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
+
@@ -1806,66 +1804,66 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Raiz do ipc do Sandbox
-
+ Adicionar opção especial:
-
-
+
+ Ao iniciar
-
-
-
-
-
+
+
+
+
+ Executar comando
-
+ Iniciar Serviço
-
+ Ao Iniciar
-
+ Na recuperação de arquivos
-
+ Ao excluir conteúdo
-
+
-
-
-
-
-
+
+
+
+
+ Digite a linha de comando a ser executada
-
+
-
+
@@ -1874,12 +1872,12 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Insira o nome do programa
-
+ Negar
-
+ Same as in source%1 (%2)
@@ -2138,7 +2136,7 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Executáveis (*.exe *.cmd);;Todos os arquivos (*.*)
-
+ Por favor, insira um identificador do serviço
@@ -2216,7 +2214,7 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Bloquear, negando acesso a Dispositivos de rede
-
+
@@ -2330,17 +2328,17 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Erro: %1
-
+ Você realmente deseja excluir o(s) modelo(s) local(is) selecionado(s)?
-
+ Apenas modelos locais podem ser removidos!
-
+ Adicionar %1 Modelo
-
+ Pesquisar opções
-
+ Caixa: %1
-
+ Modelo: %1
-
+
-
+ Padrão: %1
-
+ Essa caixa de areia foi excluída, portanto, a configuração não pode ser salva.
-
+ Algumas alterações ainda não foram salvas, você realmente quer fechar essa janela de opções?
-
+ Insira um programa:
@@ -2768,13 +2766,13 @@ Caminho completo: %4
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.
-
+
@@ -2906,17 +2904,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Aguardando pela pasta: %1
-
+ Excluíndo pasta: %1
-
+ Mesclando pastas: %1 >> %2
@@ -2925,7 +2923,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Mesclando pastas: %1 >> %2
-
+ Mesclagem de Instantâneo Finalizada...
@@ -3015,7 +3013,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1
@@ -3030,22 +3028,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Clique para aplicar a atualização
-
+ Diretório de %1: %2
-
+ Aplicativo
-
+ instalação
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3053,84 +3051,84 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+ Não perguntar no futuro
-
+
-
+ Redefinir Colunas
-
+ Copiar Célula
-
+ Copiar Linha
-
+ Copiar Painel
@@ -3425,7 +3423,7 @@ Error: %1
-
+ Sobre o Sandboxie-Plus
@@ -3454,7 +3452,7 @@ Error: %1
-
+
@@ -3694,23 +3692,23 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Versão do Sbie+: %1 (%2)
-
+ O certificado de suporte não é válido para essa compilação, obtenha um certificado atualizado
-
+ The supporter certificate is expired %1 days ago, please get an updated certificateO certificado de suporte expirou %1, por favor obtenha um certificado atualizado
-
+ , mas permanece válido para a compilação atual
-
+ O certificado de suporte irá expirar em %1 dias, obtenha um certificado atualizado
@@ -3723,12 +3721,12 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
O programa %1 iniciado na caixa %2 será terminado em 5 minutos, porque a caixa foi configurada para usar recursos exclusivamente disponíveis para projetos suportados.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um defensor do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ O conjunto de recursos selecionados só estaram disponíveis para apoiadores do projeto. Os processos iniciados em uma caixa com esse conjunto de recursos sem um certificado de suporte serão encerrados após 5 minutos.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Tornar-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ The evaluation periode has expired!!!O período de avaliação expirou!!!
@@ -3751,47 +3749,47 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Importando: %1
-
+ Insira a duração, em segundos, para desativar as regras de Programas Forçados.
-
+ Sem recuperação
-
+ Sem mensagens
-
+ <b>ERRO:</b> O Sandboxie-Plus Manager (SandMan.exe) não possui uma assinatura válida (SandMan.exe.sig). Faça o download de uma versão confiável da <a href="https://sandboxie-plus.com/go.php?to=sbie-get">página de download oficial</a>.
-
+ Falha na operação de manutenção (%1)
-
+ Operação de manutenção concluída
-
+ Na Interface Plus, essa funcionalidade foi integrada à exibição principal da lista de caixa.
-
+ Usando o menu de contexto de caixa/grupo, você pode mover caixas e grupos para outros grupos. Você também pode usar arrastar e soltar para mover os itens. Como alternativa, você também pode usar as teclas de seta enquanto mantém ALT pressionada para mover itens para cima e para baixo dentro de seu grupo.<br />Poderá criar novas caixas e grupos no menu do Sandbox.
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3800,150 +3798,150 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Este arquivo faz parte do Sandboxie e todas as alterações feitas nele serão revertidas na próxima vez que o Sandboxie for atualizado.
-
+ A configuração do Sandboxie foi recarregada
-
+ Status do Erro: 0x%1 (%2)
-
+ Desconhecido
-
+ A all processes in a sandbox must be stopped before it can be renamed.
-
+
-
+ Falha ao copiar os arquivos de dados da caixa
-
+ Falha ao remover arquivos de dados de caixas antigas
-
+ A operação foi cancelada pelo usuário
-
+ The content of an un mounted sandbox can not be deleted
-
+ %1
-
+ Importação/Exportação não disponível, 7z.dll não pôde ser carregada
-
+ Falha ao criar o arquivo da caixa
-
+ Falha ao abrir o arquivo 7z
-
+ Falha ao descompactar o arquivo da caixa
-
+ O arquivo 7z selecionado NÃO é um arquivo de caixa
-
+ Status de Erro Desconhecido: 0x%1
-
+
-
+
-
+
-
+ Maiúsculas e minúsculas
-
+
-
+ Realçar
-
+ Fechar
-
+ &Localizar ...
-
+ Todas as colunas
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>Sobre Sandboxie-Plus</h3><p>Versão %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
-
+ Essa cópia do Sandboxie+ é certificada para: %1
-
+ Sandboxie+ é gratuito para uso pessoal e não comercial.
-
+ Sandboxie-Plus é uma continuação de código aberto do Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para mais informações.<br /><br />%3<br /><br />Versão do driver: %1<br />Recursos: %2<br /><br />Ícones de <a href="https://icons8.com">icons8.com</a>
@@ -3963,11 +3961,11 @@ Você quer fazer a limpeza?
-
-
-
-
-
+
+
+
+
+ Não mostrar essa mensagem novamente.
@@ -3987,24 +3985,24 @@ Você quer fazer a limpeza?
- Excluindo o conteúdo da caixa de areia
-
+ Excluindo automaticamente o conteúdo %1
-
-
-
+
+
+ Sandboxie-Plus - Erro
-
+ Falha ao parar todos os componentes do Sandboxie
-
+ Falha ao iniciar os componentes exigidos do Sandboxie
@@ -4021,12 +4019,12 @@ Você quer fazer a limpeza?
Quer verificar se existe uma nova versão do Sandboxie-Plus?
-
+ Alguns modelos de compatibilidade (%1) estão faltando, provavelmente excluídos. Deseja removê-los de todas as caixas?
-
+ Limpar modelos removidos...
@@ -4047,7 +4045,7 @@ Você quer fazer a limpeza?
- Portable
-
+
@@ -4056,7 +4054,7 @@ Sim vou escolher: %1
Não vou escolher: %2
-
+ Operação desconhecida '%1' solicitada via linha de comando
@@ -4071,128 +4069,128 @@ Não vou escolher: %2
-
+ Sem Processo Forçado
-
+
-
+ Executando OnBoxDelete: %1
-
+ Atalho removido: %1
-
+ Atalho atualizado para: %1
-
+ Atalho adicionado para: %1
-
+
-
+ Excluindo automaticamente o conteúdo de %1
-
+ Removendo automaticamente a caixa %1
-
+ Versão do Sandboxie-Plus: %1 (%2)
-
+ Configuração atual: %1
-
+ Diretório de dados: %1
-
+ para uso Pessoal
-
+ - APENAS para uso Não Comercial
-
+ Caixa de areia padrão não encontrada; Criando: %1
-
+ - NÃO conectado
-
+
-
-
-
+
+
+
-
+
-
+
-
-
+
+
-
+ O programa %1 iniciado na caixa %2 será encerrado em 5 minutos porque a caixa foi configurada para usar recursos disponíveis exclusivamente para apoiadores do projeto.
-
+ A caixa %1 está configurada para usar recursos disponíveis exclusivamente para apoiadores do projeto, essas predefinições serão ignoradas.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de apoiador</a>
@@ -4260,22 +4258,22 @@ Não vou escolher: %2
-
+ Apenas administradores podem alterar a configuração.
-
+ Por favor, insira a senha de configuração.
-
+ Falha no Login: %1
-
+ Você deseja encerrar todos os processos em todas as caixas?
@@ -4288,32 +4286,32 @@ Não vou escolher: %2
Insira a duração para desabilitar programas forçados.
-
+ Sandboxie-Plus foi iniciado no modo portable é preciso criar os serviços necessários. Isso solicitará privilégios administrativos.
-
+ CUIDADO: Outro agente (provavelmente SbieCtrl.exe) já está gerenciando essa sessão de sandboxie, por favor, feche-o primeiro e reconecte para assumir o controle.
-
+ Executando operação de manutenção, por favor aguarde...
-
+ Você também deseja redefinir as caixas de mensagens ocultas (sim) ou apenas todas as mensagens de log (não)?
-
+ As alterações serão aplicadas automaticamente sempre que o arquivo for salvo.
-
+ As alterações serão aplicadas automaticamente assim que o editor for fechado.
@@ -4322,82 +4320,82 @@ Não vou escolher: %2
Status de Erro: %1
-
+ Direitos de administrador são necessários para essa operação.
-
+ Falha ao executar: %1
-
+ Falha ao se conectar com o driver
-
+ Falha ao se comunicar com o serviço Sandboxie: %1
-
+ Um Sandboxie %1 incompatível foi encontrado. Versões compatíveis: %2
-
+ Não é possível encontrar o caminho de instalação do Sandboxie.
-
+ Falha ao copiar a configuração do sandbox %1: %2
-
+ Uma caixa de areia com o nome %1 já existe
-
+ Falha ao excluir sandbox %1: %2
-
+ O nome da caixa de área não pode ter mais de 32 caracteres.
-
+ O nome da caixa de areia não pode ser um nome de dispositivo.
-
+ O nome da caixa de areia pode conter apenas letras, números e sublinhados que são exibidos como espaços.
-
+ Falha ao terminar todos os processos
-
+ A proteção de exclusão está ativada para a caixa de areia
-
+ Todos os processos do sandbox devem ser interrompidos antes que o conteúdo da caixa possa ser excluído
-
+ Erro ao excluir a pasta da caixa de areia: %1
@@ -4406,42 +4404,42 @@ Não vou escolher: %2
Uma caixa de areia deve ser esvaziada antes de ser renomeada.
-
+ Uma caixa de areia deve ser esvaziada antes de ser excluída.
-
+ Falha ao mover diretório '%1' para '%2'
-
+ Essa operação de instantâneo não pode ser executada enquanto os processos ainda estiverem em execução na caixa.
-
+ Falha ao criar diretório para novo instantâneo
-
+ Instantâneo não encontrado
-
+ Erro ao mesclar os diretórios de instantâneo '%1' com '%2', o instantâneo não foi totalmente mesclado.
-
+ Falha ao remover diretório de instantâneo antigo '%1'
-
+ Não é possível remover instantâneos compartilhado por vários instantâneos posteriores
@@ -4450,27 +4448,27 @@ Não vou escolher: %2
Falha ao remover RegHive antigo
-
+ Você não está autorizado a atualizar a configuração na seção '%1'
-
+ Falha ao definir a definição de configuração %1 na seção %2: %3
-
+ Não é possível criar instantâneo de uma caixa de areia vazia
-
+ Uma caixa de areia com esse nome já existe
-
+ A senha de configuração não deve ter mais de 64 caracteres
@@ -4479,7 +4477,7 @@ Não vou escolher: %2
Status de erro desconhecido: %1
-
+ A operação falhou para %1 item(ns).
@@ -4488,7 +4486,7 @@ Não vou escolher: %2
Deseja abrir %1 em um Navegador web na caixa de areia (sim) ou fora da caixa de areia (não)?
-
+ Lembrar escolha mais tarde.
@@ -5548,17 +5546,17 @@ Não vou escolher: %2
CSelectBoxWindow
-
+ Sandboxie-Plus - Executar na Caixa de Areia
-
+ Tem certeza de que quer executar o programa fora da caixa de areia?
-
+ Por favor, selecione uma caixa de areia.
@@ -5675,69 +5673,69 @@ Não vou escolher: %2
-
+ Pesquisar por configurações
-
-
-
+
+
+ Executar na &Caixa de Areia
-
+
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+
-
+ Error retriving certificate: %1
-
+
-
+
-
+ Navegador Web na Caixa de Areia
@@ -5785,63 +5783,63 @@ Não vou escolher: %2
Baixar & Instalar
-
+ Procurar pelo Programa
-
+ Adicionar %1 Modelo
-
+
-
+
-
+
-
+ Por favor, insira a mensagem
-
+ Selecionar Programa
-
+ Executáveis (*.exe *.cmd)
-
-
+
+ Por favor insira o título do menu
-
+ Por favor, digite um comando
-
+ Kilobytes (%1)
-
+
@@ -5850,102 +5848,102 @@ Não vou escolher: %2
Esse certificado de apoiador expirou, por favor <a href="sbie://update/cert">obtenha um certificado atualizado</a>.
-
+ <br /><font color='red'>Os recursos do Plus serão desativados em %1 dias.</font>
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -5954,7 +5952,7 @@ Não vou escolher: %2
<br /><font color='red'>Para esta compilação, os recursos Plus permanecem ativados.</font>
-
+ <br />Os recursos Plus não estão mais ativados.
@@ -5968,12 +5966,12 @@ Não vou escolher: %2
Certificado de apoiador necessário
-
+ Executar &Fora da Caixa de Areia
-
+ Isso não parece um certificado. Insira o certificado inteiro, não apenas uma parte dele.
@@ -5986,7 +5984,7 @@ Não vou escolher: %2
Infelizmente, esse certificado está desatualizado.
-
+ Obrigado por apoiar o desenvolvimento do Sandboxie-Plus.
@@ -5995,89 +5993,89 @@ Não vou escolher: %2
Esse certificado de suporte não é válido.
-
+
-
+
-
+
-
+
-
+
-
-
+
+ Selecionar Diretório
-
+ <a href="check">Verificar Agora</a>
-
+ Por favor, insira a nova senha de configuração.
-
+ Please re enter the new configuration password.Insira novamente a nova senha de configuração.
-
+ As senhas não coincidem, tente novamente.
-
+ Processo
-
+ Pasta
-
+ Insira o nome do programa
-
+ Por favor, insira o identificador de modelo
-
+ Erro: %1
-
+ Você realmente deseja excluir o(s) modelo(s) local(is) selecionado(s)?
-
+ %1 (Atual)
@@ -6198,32 +6196,32 @@ Não vou escolher: %2
CSubmitPage
-
+
-
+
-
+
-
+
-
+
-
+ Select partially checked state to sends only message log but no trace log.
@@ -6231,69 +6229,69 @@ Before sending you can review the logs in the main window.
-
+
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Your issue report have been successfully submitted, thank you.
@@ -6961,27 +6959,27 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Estrutura da Caixa
-
+ Opções de Segurança
-
+ Reforço de Segurança
-
-
-
-
-
+
+
+
+
+ Proteger o sistema de processos do sandbox
-
+ Restrições de Elevação
@@ -6990,7 +6988,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Nota de segurança: Aplicativos em execução elevado sob a supervisão do Sandboxie, com um token de administrador, têm mais oportunidades para ignorar o isolamento e modificar o sistema fora da caixa de areia.
-
+ Retirar direitos de grupos de Administradores e Usuários Avançados
@@ -7000,12 +6998,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Largura (px)
-
+ Fazer aplicativos acharem que estão sendo executados elevados (permite executar instaladores com segurança)
-
+ CUIDADO: Ao executar sob o administrador incorporado, os processos não podem liberar privilégios administrativos.
@@ -7015,7 +7013,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Aparência
-
+ (Recomendado)
@@ -7025,17 +7023,17 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Mostrar essa caixa no diálogo de seleção 'Executar na Caixa de Areia'
-
+ Nota de segurança: Aplicativos em execução elevada sob a supervisão do Sandboxie, com um token de administrador ou sistema, têm mais oportunidades para ignorar o isolamento e modificar o sistema fora do sandbox.
-
+ Permitir que o MSIServer seja executado com um token do sistema na caixa de areia e aplique outras exceções, se necessário
-
+ Nota: As isenções do Instalador MSI não devem ser necessárias, mas se você encontrar problemas para instalar um pacote MSI que você confia, essa opção pode ajudar a completar a instalação com êxito. Você também pode tentar desativar os direitos de administrador.
@@ -7101,22 +7099,22 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Perguntar ao usuário para migrar arquivos grandes
-
+ Aprimoramentos de Segurança
-
+ Usar o token original somente para chamadas de sistema NT aprovadas
-
+ Restringir o acesso de driver/dispositivo apenas aos aprovados
-
+ Ativar todos os aprimoramentos de segurança (tornar a caixa de segurança reforçada)
@@ -7134,28 +7132,28 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Permitir que o spooler de impressão imprima arquivos fora da caixa
-
+ Remover a restrição do spooler, as impressoras podem ser instaladas fora da caixa
-
+ Allow access to Smart CardsBloquear o acesso de leitura à área de transferência
-
+ Abrir Armazenamento Protegido pelo Sistema
-
+ Bloquear acesso ao spooler de impressão
-
+ Outras Restrições
@@ -7165,12 +7163,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Restrições de Impressão
-
+ Restrições de Rede
-
+ Bloquear arquivos e pastas de rede, a menos que especificamente abertos.
@@ -7179,65 +7177,65 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Impedir alterações nos parâmetros de rede e firewall
-
+ Menu Executar
-
+ Você pode configurar entradas personalizadas para o menu Executar da caixa de areia.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Nome
-
+ Linha de Comando
-
+ Adicionar programa
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Remover
@@ -7250,13 +7248,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Aqui você pode especificar programas ou serviços que devem ser iniciados automaticamente na caixa de areia quando ela for ativada
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Tipo
@@ -7269,21 +7267,21 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Adicionar serviço
-
+ Grupos de Programas
-
+ Adicionar Grupo
-
-
-
-
-
+
+
+
+
+ Adicionar Programa
@@ -7296,42 +7294,42 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Programas Forçados
-
+ Pasta Forçada
-
-
-
+
+
+ Caminho
-
+ Programa Forçado
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mostrar Modelos
@@ -7365,32 +7363,32 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Direitos de Administrador
-
+ Abrir Credencias de Armazenamento do Windows (modo de usuário)
-
+ Impedir a alteração de parâmetros de rede e firewall (modo de usuário)
-
+ Permitir a leitura de memória de processos sem caixa de areia (não recomendado)
-
+ Emitir mensagem 2111 quando um acesso de processo for negado
-
+ Isolamento de Segurança
-
+ Adcanced SecuritySegurança Avançada
@@ -7400,54 +7398,54 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Usar login do Sandboxie em vez de um token anônimo (experimental)
-
+ Outro Isolamento
-
+ Isolamento Privilegiado
-
+ Token do Sandboxie
-
+ O uso de um token do sandboxie personalizado permite isolar melhor as caixas individuais umas das outras e mostra na coluna do usuário dos gerenciadores de tarefas o nome da caixa à qual um processo pertence. Algumas soluções de segurança de terceiros podem, no entanto, ter problemas com tokens personalizados.
-
+ Você pode agrupar programas juntos e dar-lhes um nome de grupo. Grupos de programas podem ser usados com algumas das configurações em vez de nomes de programas. Grupos definidos para a caixa sobrescreve grupos definidos em modelos.
-
+ Programas Forçados
-
+ Programas inseridos, ou iniciados a partir de locais inseridos aqui, serão colocados nessa caixa automaticamente, a menos que seja explicitamente iniciado em outra caixa de areia.
-
+ Programas Fora
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.Os programas inseridos aqui poderão sair desta caixa de proteção quando forem iniciados. Também é possível capturá-los em outra caixa, por exemplo, para ter seu navegador sempre aberto em uma caixa dedicada.
-
-
+
+ Comportamento ao Parar
@@ -7472,32 +7470,32 @@ If leader processes are defined, all others are treated as lingering processes.<
Se os processos líderes forem definidos, todos os outros serão tratados como processos persistentes.
-
+ Restrições ao Iniciar
-
+ Emitir mensagem 1308 quando um programa não iniciar
-
+ Permitir que apenas programas selecionados sejam iniciados nessa caixa de areia. *
-
+ Impedir que programas selecionados sejam iniciados nessa caixa de areia.
-
+ Permitir que todos os programas comecem nessa caixa de areia.
-
+ * Nota: Programas instalados nessa caixa de areia não serão capazes de iniciar em todas.
@@ -7506,12 +7504,12 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Restrições à Internet
-
+ Restrições de Processo
-
+ Emitir mensagem 1307 quando um programa for negado de acessar à internet
@@ -7520,27 +7518,27 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Bloquear acesso à internet para todos os programas, exceto aqueles adicionados à lista.
-
+ Solicitar ao usuário se permite uma isenção do bloqueio.
-
+ Nota: Os programas instalados nessa caixa de areia não poderão acessar a internet.
-
-
-
-
-
-
+
+
+
+
+
+ Acesso
-
+ Definir acesso a rede/internet para processos não listados:
@@ -7549,44 +7547,44 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Restrições de Rede
-
+ Testar Regras, Programa:
-
+ Porta:
-
+
-
+ Protocolo:
-
+
-
+ Adicionar Regra
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Programa
@@ -7663,66 +7661,66 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Ícone
-
+ Vários recursos de isolamento podem interromper a compatibilidade com alguns aplicativos. Se você estiver usando esta caixa de areia <b>NÃO Segura</b> mas para a portabilidade do aplicativo, alterando essas opções, você pode restaurar a compatibilidade sacrificando alguma segurança.
-
+ Isolamento de Acesso
-
+ Proteção de Imagem
-
+ Emitir mensagem 1305 quando um programa tenta carregar uma dll na caixa de areia
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandboxImpedir que programas das caixas instalados no host carreguem dll's do sandbox
-
+
-
+
-
+ As regras de acesso a recursos do sandboxie geralmente discriminam os binários do programa localizados dentro do sandbox. OpenFilePath e OpenKeyPath funcionam apenas para binários de aplicativos localizados no host nativamente. Para definir uma regra sem essa restrição, deve-se usar OpenPipePath ou OpenConfPath. Da mesma forma, todas as diretivas Closed(File|Key|Ipc)Path que são definidas por negação, por exemplo 'ClosedFilePath =! iexplore.exe,C:Users*’ será sempre fechado para binários localizados dentro de uma caixa. Ambas as políticas de restrição podem ser desativadas na página “Políticas de Acesso”.
Isso é feito para evitar que processos invasores dentro do sandbox criem uma cópia renomeada de si mesmos e acessem recursos protegidos. Outro vetor de exploração é a injeção de uma biblioteca em um processo autorizado para obter acesso a tudo o que é permitido acessar.Usando a proteção de imagem do host, isso pode ser evitado bloqueando os aplicativos (instalados no host) executados dentro de uma caixa de carregar bibliotecas do próprio sandbox.
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
-
+ Desativar processo e pasta forçados para essa caixa
-
+ Programa Fora
-
+ Pasta Fora
@@ -7752,38 +7750,38 @@ Isso é feito para evitar que processos invasores dentro do sandbox criem uma c
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
@@ -7793,110 +7791,99 @@ Isso é feito para evitar que processos invasores dentro do sandbox criem uma c
-
-
- Prevents processes in the sandbox from interfering with power operation
-
-
-
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.
-
+ Usar um login do Sandboxie em vez de um token anônimo
-
+
-
+ Programas Líderes
-
+ Os programas líderes serão encerrados automaticamente se ainda estiverem em execução após todos os outros processos terem sido encerrados.
-
+ Programas Líderes
-
+ Se os processos líderes forem definidos, todos os outros serão tratados como processos remanescentes.
-
+
-
+
-
+
-
+ Arquivos
-
+ Configurar quais processos podem acessar Arquivos, Pastas e Pipes.
'Aberto' o acesso só se aplica a binários de programas localizados fora da área de areia, você pode usar 'Aberto para Todos' em vez disso, para torná-lo aplicável a todos os programas ou alterar esse comportamento na aba Políticas.
-
+ Registro
-
+ Configurar quais processos podem acessar o Registro.
'Aberto' o acesso só se aplica a binários de programas localizados fora da área restrita, você pode usar 'Aberto para Todos' em vez disso, para torná-lo aplicável a todos os programas ou alterar esse comportamento na aba Políticas.
-
+
-
+ Configurar quais processos podem acessar objetos NT IPC como portas ALPC e outros processos de memória e contexto.
Para especificar um processo, use '$:program.exe' como caminho.
-
+
-
+ Classe Wnd
@@ -7906,70 +7893,70 @@ Para especificar um processo, use '$:program.exe' como caminho.Configurar quais processos podem acessar objetos da Área de Trabalho, como Windows e similares.
-
+
-
+ ID da Classe
-
+ Configurar quais processos podem acessar objetos COM.
-
+ Não usar COM virtualizado, acesso aberto à infraestrutura COM dos hosts (não recomendado)
-
+ Políticas de Acesso
-
+ Aplicar e Fechar...=!<programa>,... regras também para todos os binários localizados na caixa.
-
+ Opções de Rede
-
-
-
+
+
+ Ação
-
+ Porta
-
+
-
+ Protocolo
-
+ CUIDADO: A Plataforma de Filtragem do Windows não está ativada com o driver, portanto, essas regras serão aplicadas apenas no modo de usuário e não podem ser impostas!!! Isso significa que as aplicações maliciosas podem contorná-las.
-
+ Acesso a Recursos
@@ -7986,37 +7973,37 @@ O arquivo 'Aberto' e o acesso de teclas aplica-se apenas aos binários
Você pode usar 'Abrir para Todos' em vez de fazê-lo aplicar a todos os programas ou alterar esse comportamento na Política de abas.
-
+ Adicionar Arquivo/Pasta
-
+ Adicionar Wnd Class
-
+ Mover para Baixo
-
+ Adicionar Caminho IPC
-
+ Adicionar Chave de Registro
-
+ Adicionar Objeto COM
-
+ Mover para Cima
@@ -8038,84 +8025,84 @@ Para acessar arquivos, você pode usar o 'Direto a Todos' em vez de fa
Aplicar e Fechar...=!<programa>,... diretivas também para todos os binários localizados na caixa de areia.
-
+ Recuperação de Arquivos
-
+ Adicionar Pasta
-
+ Ignorar Extensão
-
+ Ignorar Pasta
-
+ Ativar mensagem de recuperação imediata para poder recuperar arquivos assim que forem criados.
-
+ Você pode excluir pastas e tipos de arquivos (ou extensões de arquivos) da Recuperação Imediata.
-
+ Quando a função Recuperação Rápida for invocada, as seguintes pastas serão verificadas para obter conteúdo da caixa de areia.
-
+ Opções Avançadas
-
+ Diversos
-
+ Não alterar nomes das classes de janelas criadas por programas na caixa de areia
-
+ Não iniciar serviços no sandbox usando um token de sistema (recomendado)
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Proteger integridade da própria caixa de areia
-
+ Retirar privilégios críticos de processos em execução com um token SYSTEM
-
-
+
+ (Segurança Crítica)
-
+ Proteger os processos do SISTEMA da caixa de areia contra processos desprivilegiados
@@ -8124,7 +8111,7 @@ Para acessar arquivos, você pode usar o 'Direto a Todos' em vez de fa
Isolamento da caixa de areia
-
+ Forçar uso de arquivos de manifesto fictícios personalizados (comportamento legado)
@@ -8137,34 +8124,34 @@ Para acessar arquivos, você pode usar o 'Direto a Todos' em vez de fa
Políticas de Acesso a Recursos
-
+ A especificidade da regra é uma medida de quão bem uma determinada regra corresponde a um caminho específico, basta colocar a especificidade é o comprimento dos caracteres desde o início do caminho até e incluindo o último substramento não curinga correspondente. Uma regra que corresponde apenas tipos de arquivos como "*.tmp" teria a maior especificidade, pois sempre corresponderia a todo o caminho do arquivo.
O nível de correspondência do processo tem uma prioridade maior do que a especificidade e descreve como uma regra se aplica a um determinado processo. As regras aplicáveis por nome ou grupo do processo têm o nível de correspondência mais forte, seguidas pela correspondência por negação (ou seja, regras aplicáveis a todos os processos, exceto o dado), enquanto os níveis mais baixos de correspondência têm correspondências globais, ou seja, regras que se aplicam a qualquer processo.
-
+ Priorizar regras com base em sua Especificidade e Nível de Correspondência de Processos
-
+ Modo de Privacidade, bloqueia o acesso a arquivos e registros em todos os locais, exceto os genéricos do sistema
-
+ Modo de Acesso
-
+ Quando o Modo de Privacidade estiver ativado, os processos com caixa de areia só poderão ler C:\Windows\*, C:\Program Files\*, e partes do registro HKLM, todos os outros locais precisarão de acesso explícito para serem legíveis e/ou graváveis. Neste modo, a Especificação de Regra está sempre ativada.
-
+ Políticas de Regras
@@ -8173,23 +8160,23 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Aplicar Fechar...=!<programa>,... regras também para todos os binários localizados na caixa de areia.
-
+ Aplicar diretivas de Arquivo e Chave Abertas apenas para binários localizados fora da caixa de areia.
-
+ Iniciar os RPCs na caixa de areia como um processo de SISTEMA (não recomendado)
-
+ Permitir apenas processos privilegiados para acessar o Gerenciador de Controle de Serviços
-
-
+
+ Compatibilidade
@@ -8198,28 +8185,28 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Acesso aberto à infraestrutura COM (não recomendado)
-
+ Adicionar processos de caixa de areia a objetos de trabalho (recomendado)
-
+ Emular estação de janela da caixa de areia para todos os processos
-
+ Allow use of nested job objects (experimental, works on Windows 8 and later)Permitir o uso de objetos de trabalho aninhados (experimental, funciona no Windows 8 e anteriores)
-
+ Isolamento de segurança através do uso de um token de processo fortemente restrito é o principal meio do Sandboxie impor restrições de caixa de areia, quando está desativado a caixa é operada no modo compartimento de aplicativos, ou seja, não está mais fornecendo segurança confiável, apenas compartimentação simples de aplicativo.
-
+ Permitir que programas na caixa de areia gerenciem Hardware/Dispositivos
@@ -8236,22 +8223,22 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Permitir que programas na caixa de areia Gerenciem Hardware/Dispositivos
-
+ Abrir acesso ao Gerenciador de Conta de Segurança do Windows
-
+ Abrir acesso à Autoridade de Segurança Local do Windows
-
+ Controle de Programa
-
+ Desativar o uso de RpcMgmtSetComTimeout por padrão (isso pode resolver problemas de compatibilidade)
@@ -8264,22 +8251,22 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Vários recursos avançados de isolamento podem quebrar a compatibilidade com alguns aplicativos. Se você estiver usando essa caixa de areia <b>Não Seguro</b> mas, para simples portabilidade do aplicativo, alterando essas opções, você pode restaurar a compatibilidade sacrificando alguma segurança.
-
+ Isolamento de Segurança e Filtragem
-
+ Desativar Filtragem de Segurança (não recomendada)
-
+ Filtragem de segurança usada pela Sandboxie para impor restrições de sistema de arquivos e registro, bem como restringir o acesso ao processo.
-
+ As opções abaixo podem ser usadas com segurança quando você não concede direitos administrativos.
@@ -8304,37 +8291,37 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Aqui você pode especificar uma lista de comandos que serão executados sempre que o sandbox for iniciado.
-
+ Ocultar Processo
-
+ Adicionar Processo
-
+ Ocultar processos do host de processos em execução no sandbox.
-
+ Não permitir que processos do sandbox vejam processos em execução de outras caixas
-
+ Usuários
-
+ Restringir o monitor de acesso a recursos apenas para administradores
-
+ Adicionar Usuário
@@ -8343,7 +8330,7 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Remover Usuário
-
+
@@ -8352,7 +8339,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: As configurações de programas e pastas forçadas para uma caixa de areia não se aplicam a contas de usuários que não podem usar o sandbox.
-
+ Rastreamento
@@ -8362,22 +8349,22 @@ Nota: As configurações de programas e pastas forçadas para uma caixa de areia
Rastreamento de chamada de API (requer logapi instalado na pasta sbie)
-
+ Rastreamento de Pipe
-
+ Log SetError's para todas os log de Rastreamento (cria muitas saídas)
-
+ Registrar a saída de depuração no log de rastreamento
-
+
-
+ Rastreamento de Arquivo
-
+ Desativar Monitor de Acesso ao Recurso
-
+ Rastreamento IPC
-
+ Rastreamento de GUI
-
+ Monitor de Acesso ao Recurso
-
+ Rastrear Acesso
-
+ Rastreamento de Classe COM
@@ -8439,92 +8426,117 @@ ao invés de "*".
<- para um desses acima não se aplica
-
+ Gatilhos
-
+ Evento
-
-
-
-
+
+
+
+ Executar Comando
-
+ Iniciar Serviço
-
+ Esses eventos são executados sempre que uma caixa é iniciada
-
+ Ao iniciar uma caixa
-
-
+
+ Esses comandos são executados FORA DA CAIXA logo antes do conteúdo da caixa ser excluído
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Esses comandos são executados apenas quando uma caixa é inicializada. Para fazê-los funcionar novamente, o conteúdo da caixa deve ser excluído.
-
+ Ao criar uma caixa
-
+ Aqui você pode especificar ações a serem executadas automaticamente em vários eventos de caixa.
-
+
-
+ Rastreamento de Chave
-
-
+
+ Firewall de Rede
-
+ Depurar
-
+ AVISO, essas opções podem desativar as garantias de segurança essenciais e interromper a segurança da sandbox!!!
-
+ Essas opções destinam-se a depurar problemas de compatibilidade, não as use em produção.
-
+ Modelos de Aplicativos
@@ -8533,22 +8545,22 @@ ao invés de "*".
Modelos de Compatibilidade
-
+ Categorias de Filtro
-
+ Filtro de Texto
-
+ Adicionar Modelo
-
+ Essa lista contém uma grande quantidade de modelos de compatibilidade de caixa de areia
@@ -8557,17 +8569,17 @@ ao invés de "*".
Remover Modelo
-
+ Categoria
-
+ Pasta de Modelos
-
+
@@ -8576,23 +8588,23 @@ Please note that this values are currently user specific and saved globally for
Por favor, note que esse valores são atualmente para o usuário específico e salvos globalmente para todas as caixas.
-
-
+
+ Valor
-
+ Acessibilidade
-
+ Para compensar a proteção perdida, consulte a página de configurações de Liberar Direitos no grupo de configurações de Restrições.
-
+ Leitores de tela: JAWS, NVDA, Window-Eyes, Acesso ao Sistema
@@ -8607,115 +8619,109 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
Restrições
-
-
- Block process from taking screenshots of windows not belonging to the containing sandbox
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Recuperação Rápida
-
+ Recuperação Imediata
-
+ Várias opções
-
+ Aplicar ElevateCreateProcess solução alternativa (comportamento herdado)
-
+ Usar solução alternativa de objeto da área de trabalho para todos os processos
-
+
-
+
-
+
-
+ Esse comando será executado antes que o conteúdo da caixa seja excluído
-
+ Ao recuperar arquivos
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedEsse comando será executado antes de um arquivo ser recuperado e o caminho do arquivo será passado como primeiro argumento. Se esse comando retornar algo diferente de 0, a recuperação será bloqueada
-
+ Executar Verificador de Arquivos
-
+ Ao Excluir Conteúdo
-
+ Proteger os processos nessa caixa de serem acessados por processos do host fora da caixa de proteção especificados.
-
-
+
+ Processo
@@ -8724,58 +8730,63 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
Bloquear também o acesso de leitura aos processos nessa caixa
-
+ Adicionar Opção
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Aqui você pode configurar opções avançadas por processo para melhorar a compatibilidade e/ou personalizar o comportamento do sandbox.
-
+ Opção
-
+
-
+
-
+ Modelos
-
+
+
+
+
+
+ As configurações a seguir permitem usar o sandboxie em combinação com software de acessibilidade. Note que algumas medidas de proteção do sandboxie seram perdidas quando essas configurações estiverem em vigor.
-
+ Editar Seção ini
-
+ Editar ini
-
+ Cancelar
-
+ Salvar
@@ -8807,27 +8818,27 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
QPlatformTheme
-
+
-
+ Aplicar
-
+ Cancelar
-
+ &Sim
-
+ &Não
@@ -9097,7 +9108,7 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
Usar ícones grandes na lista de caixas *
-
+ Escala de DPI alto
@@ -9128,117 +9139,117 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
-
+
-
+ Escala da fonte
-
+
-
+
-
+ (É necessário reiniciar)
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Status
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Kilobytes
-
+
-
+
-
+
-
+
@@ -9283,103 +9294,108 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Configuração Avançada
@@ -9388,12 +9404,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Usar Plataforma de Filtragem do Windows para restringir o acesso à rede (experimental)*
-
+ <a href="sbie://docs/filerootpath">Pasta dos arquivos</a> do Sandbox:
-
+ Limpar senha quando a janela principal ficar oculta
@@ -9427,22 +9443,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Mostrar notificação na bandeja quando as operações automáticas da caixa são iniciadas
-
+ Usar Plataforma de Filtragem do Windows para restringir o acesso à rede
-
+ Ativar filtragem de objetos no Modo Kernel
-
+ <a href="sbie://docs/ipcrootpath">Pasta do ipc</a> do Sandbox :
-
+ Caixa de Areia padrão
@@ -9452,7 +9468,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
* uma caixa de seleção parcialmente marcada deixará o comportamento a ser determinado pelo modo de exibição.
-
+
@@ -9467,7 +9483,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Usar tema Fusão
-
+ Gancho selecionando chamadas do sistema Win32k para permitir a aceleração da GPU (experimental)
@@ -9476,22 +9492,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Usar login do Sandboxie em vez de um token anônimo (experimental)
-
+ Proteção de Configuração
-
+
-
+ <a href="sbie://docs/keyrootpath">Pasta de registro</a> do Sandbox:
-
+ Recursos do Sandboxie
@@ -9504,22 +9520,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Usar a Plataforma de Filtragem do Windows para restringir o acesso à rede (experimental)
-
+ Alterar Senha
-
+ Uma senha deve ser inserida para fazer alterações
-
+ Apenas contas de usuários Administradores podem fazer alterações
-
+ Observar alterações em Sandboxie.ini
@@ -9533,7 +9549,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Outras configurações
-
+ Pasta raíz portable
@@ -9542,56 +9558,56 @@ Unlike the preview channel, it does not include untested, potentially breaking,
* requer recarregar driver ou reinicialização do sistema
-
+ Controle de Programa
-
-
-
-
+
+
+
+ Nome
-
+ Usar um login do Sandboxie em vez de um token anônimo
-
+ Caminho
-
+ Remover Programa
-
+ Adicionar Programa
-
+ Quando um dos programas a seguir for iniciado fora de qualquer caixa, o Sandboxie emitirá a mensagem SBIE1301.
-
+ Adicionar Pasta
-
+ Evitar que os programas listados sejam iniciados neste sistema
-
+ Emitir mensagem 1308 quando um programa falha ao iniciar
@@ -9700,72 +9716,72 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Mostrar ícones de sobreposição para caixas e processos
-
+ Opções Gráficas
-
+ Os apoiadores do projeto Sandboxie-Plus podem receber um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>. É como uma chave de licença, mas para pessoas incríveis que usam software de código aberto. :-)
-
+ Manter o Sandboxie atualizado com as versões contínuas do Windows e compatível com todos os navegadores Web é um esforço sem fim. Você pode apoiar o desenvolvimento <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute"> contribuindo diretamente com o projeto</a>, mostrando seu apoio <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">comprando um certificado de apoiador</a>, tornando-se um patrono <a href="https://sandboxie-plus.com/go.php?to=patreon">se inscrevendo no Patreon</a>, ou através de uma <a href="https://sandboxie-plus.com/go.php?to=donate">doação PayPal</a>.<br />Seu apoio desempenha um papel vital no avanço e manutenção do Sandboxie.
-
+ Predefinições Sandboxie.ini
-
+ Alertas do Programa
-
+ Emitir mensagem 1301 quando os processos forçados forem desativados
-
+
-
+
-
+
-
+
-
+
-
+ Modelos de Aplicativos
-
+ Compatibilidade de Aplicativo
-
+ Config ProtectionConfiguração do Sandboxie
@@ -9802,8 +9818,8 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
+
+ Remover
@@ -9813,7 +9829,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Linha de Comando
-
+ Suporte && Atualizações
@@ -9822,12 +9838,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Configuração da Caixa de Areia
-
+ Caixa padrão:
-
+ Somente contas de usuários administradores podem usar o comando Pausar Programas Forçados
@@ -9836,62 +9852,67 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Compatibilidade
-
+ No futuro, não verificar a compatibilidade de software
-
+ Ativar
-
+ Desativar
-
+ Sandboxie detectou os seguintes aplicativos em seu sistema. Clique em Ativar para aplicar as configurações, o que aumentará a compatibilidade com esses aplicativos. Essas configurações terão efeito em todas as caixas de areia existentes e em todas as novas caixas de areia.
-
+ Modelos Locais
-
+ Adicionar Modelo
-
+ Filtro de Texto
-
+ Essa lista contém modelos personalizados criados pelo usuário para opções do sandbox
-
+
+
+
+
+
+ Editar Seção ini
-
+ Salvar
-
+ Editar ini
-
+ Cancelar
@@ -9900,7 +9921,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Suporte
-
+ Version UpdatesAtualizações de Versão
@@ -9910,7 +9931,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Novas versões completas do canal de lançamento selecionada.
-
+ Hotpatches para a versão instalada, atualizações para o Templates.ini e traduções.
@@ -9919,7 +9940,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Esse certificado de apoiador expirou, por favor <a href="sbie://update/cert">obtenha um certificado atualizado</a>.
-
+ O canal preview contém os últimos pré-lançamentos do GitHub.
@@ -9928,12 +9949,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Novas versões
-
+ O canal estável contém os últimos lançamentos estáveis do GitHub.
-
+ Pesquisar no canal Estável
@@ -9942,7 +9963,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Manter o Sandboxie atualizado com as versões contínuas do Windows e compatível com todos os navegadores da Web é um esforço sem fim. Por favor, considere apoiar esse trabalho com uma doação.<br />Você pode apoiar o desenvolvimento com uma <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Doação no PayPal</a>, trabalhando também com cartões de crédito.<br />Ou você pode fornecer suporte contínuo com uma <a href="https://sandboxie-plus.com/go.php?to=patreon">Assinatura do Patreon</a>.
-
+ Pesquisar no canal Preview
@@ -9955,12 +9976,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Manter o Sandboxie atualizado com as versões mais recentes do Windows e compatibilidade com todos os navegadores web é um esforço interminável. Por favor, considere apoiar esse trabalho com uma doação.<br />Você pode apoiar o desenvolvimento com uma <a href="https://sandboxie-plus.com/go.php?to=donate">doação no PayPal</a>, trabalhando também com cartões de crédito.<br />Ou pode fornecer suporte contínuo com uma <a href="https://sandboxie-plus.com/go.php?to=patreon">assinatura do Patreon</a>.
-
+ No futuro, não notificar sobre a expiração do certificado
-
+ Insira o certificado de suporte aqui
diff --git a/SandboxiePlus/SandMan/sandman_pt_PT.ts b/SandboxiePlus/SandMan/sandman_pt_PT.ts
index 53101ba9..a70f46e4 100644
--- a/SandboxiePlus/SandMan/sandman_pt_PT.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_PT.ts
@@ -843,12 +843,12 @@ Error: %1
CCompletePage
-
+
-
+
@@ -1216,14 +1216,12 @@ Você pode utilizar %USER% para salvar a caixa de proteção de cada utilizador
CMultiErrorDialog
-
- Sandboxie-Plus - Erro
+ Sandboxie-Plus - Erro
-
- Mensagem
+ Mensagem
@@ -1678,11 +1676,11 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Seleccionar Pasta
-
+
-
-
+
+
@@ -1692,8 +1690,8 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Todos os Programas
-
-
+
+
@@ -1731,7 +1729,7 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
+
@@ -1806,66 +1804,66 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Raiz do ipc do Sandbox
-
+ Adicionar opção especial:
-
-
+
+ Ao iniciar
-
-
-
-
-
+
+
+
+
+ Rodar comando
-
+ Iniciar Serviço
-
+ Ao Iniciar
-
+ Na recuperação de ficheiros
-
+ Ao apagar conteúdo
-
+
-
-
-
-
-
+
+
+
+
+ Digite a linha de comando a ser executada
-
+
-
+
@@ -1874,12 +1872,12 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Introduza o nome do programa
-
+ Negar
-
+ Same as in source%1 (%2)
@@ -2138,7 +2136,7 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Executáveis (*.exe *.cmd);;Todos os ficheiros (*.*)
-
+ Por favor, introduza um identificador de serviço
@@ -2216,7 +2214,7 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Bloquear negando acesso a Dispositivos de rede
-
+
@@ -2330,17 +2328,17 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Erro: %1
-
+ Você realmente deseja excluir o(s) modelo(s) local(is) selecionado(s)?
-
+ Apenas modelos locais podem ser removidos!
-
+ Adicionar %1 Modelo
-
+ Pesquisar opções
-
+ Caixa: %1
-
+ Modelo: %1
-
+
-
+ Predefinido: %1
-
+ Esta caixa de areia foi eliminada, portanto, a definição não pode ser salva.
-
+ Algumas alterações ainda não foram salvas, você realmente quer fechar esta janela de opções?
-
+ Introduza um programa:
@@ -2768,13 +2766,13 @@ Localização completo: %4
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.
-
+
@@ -2906,17 +2904,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ A aguar pela pasta: %1
-
+ A apagar pasta: %1
-
+ A fundir pastas: %1 >> %2
@@ -2925,7 +2923,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
A fundir pastas: %1 >> %2
-
+ A fundir Instantâneo Finalizada...
@@ -3015,7 +3013,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1
@@ -3030,22 +3028,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Clique para aplicar a actualização
-
+ Pasta de %1: %2
-
+ Aplicação
-
+ instalação
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3053,84 +3051,84 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+ Não perguntar no futuro
-
+
-
+ Repor Colunas
-
+ Copiar Célula
-
+ Copiar Linha
-
+ Copiar Painel
@@ -3425,7 +3423,7 @@ Error: %1
-
+ Acerca do Sandboxie-Plus
@@ -3454,7 +3452,7 @@ Error: %1
-
+
@@ -3694,23 +3692,23 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Versão do Sbie+: %1 (%2)
-
+ O certificado de suporte não é válido para esta compilação, obtenha um certificado actualizado
-
+ The supporter certificate is expired %1 days ago, please get an updated certificateO certificado de suporte expirou %1, por favor obtenha um certificado actualizado
-
+ , mas permanece válido para a compilação actual
-
+ O certificado de suporte irá expirar em %1 dias, obtenha um certificado actualizado
@@ -3728,12 +3726,12 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
O programa %1 iniciado na caixa %2 será terminado em 5 minutos, porque a caixa foi configurada para utilizar recursos exclusivamente disponíveis para projetos suportados.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um defensor do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ O conjunto de recursos selecionado só está disponível para apoiadores do projetar. Os processos iniciados em uma caixa com este conjunto de recursos são ativados sem um certificado de suporte serão rescindidos após 5 minutos.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Tornar-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ The evaluation periode has expired!!!O período de avaliação expirou!!!
@@ -3756,47 +3754,47 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Importando: %1
-
+ Introduza a duração, em segundos, para desactivar as regras de Programas Forçados.
-
+ Sem recuperação
-
+ Sem mensagens
-
+ <b>ERRO:</b> O Sandboxie-Plus Manager (SandMan.exe) não possui uma assinatura válida (SandMan.exe.sig). Faça o download de uma versão confiável da <a href="https://sandboxie-plus.com/go.php?to=sbie-get">página de download oficial</a>.
-
+ Falha na operação de manutenção (%1)
-
+ Operação de manutenção concluída
-
+ Na Interface Plus, esta funcionalidade foi integrada à vista principal da lista do sandbox.
-
+ Usando o menu de contexto de caixa/grupo, você pode mover caixas e grupos para outros grupos. Você também pode utilizar arrastar e soltar para mover os itens. Como alternativa, você também pode utilizar as teclas de seta enquanto mantém ALT pressionada para mover itens para cima e para baixo dentro de seu grupo.<br />Poderá criar novas caixas e grupos no menu do Sandbox.
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3805,150 +3803,150 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Este ficheiro faz parte do Sandboxie e todas as alterações feitas nele serão revertidas na próxima vez que o Sandboxie for atualizado.
-
+ A definição do Sandboxie foi recarregada
-
+ Estado do Erro: 0x%1 (%2)
-
+ Desconhecido
-
+ A all processes in a sandbox must be stopped before it can be renamed.
-
+
-
+ Falha ao copiar os ficheiros de dados da caixa
-
+ Falha ao remover ficheiros de dados de caixa antigas
-
+ A operação foi cancelada pelo utilizador
-
+ The content of an un mounted sandbox can not be deleted
-
+ %1
-
+ Importação/Exportação não disponível, 7z.dll não pôde ser carregada
-
+ Falha ao criar o ficheiro da caixa
-
+ Falha ao abrir o ficheiro 7z
-
+ Falha ao descompactar o ficheiro da caixa
-
+ O ficheiro 7z selecionado NÃO é um ficheiro de caixa
-
+ Estado do Erro Desconhecido: 0x%1
-
+
-
+
-
+
-
+ Maiúsculas e minúsculas
-
+
-
+ Realçar
-
+ Fechar
-
+ &Localizar ...
-
+ Todas as colunas
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>Acerca do Sandboxie-Plus</h3><p>Versão %1</p><p>Copyright (c) 2020-2022 by DavidXanatos</p>
-
+ Esta cópia do Sandboxie+ é certificada para: %1
-
+ Sandboxie+ é gratuito para uso pessoal e não comercial.
-
+ Sandboxie-Plus é uma continuação de código aberto do Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para mais informações.<br /><br />%3<br /><br />Versão do controlador: %1<br />Recursos: %2<br /><br />Ícones de <a href="https://icons8.com">icons8.com</a>
@@ -3968,11 +3966,11 @@ Você quer fazer a limpeza?
-
-
-
-
-
+
+
+
+
+ Não mostrar esta mensagem novamente.
@@ -3992,24 +3990,24 @@ Você quer fazer a limpeza?
- A apagar o conteúdo da caixa de areia
-
+ A apagar automaticamente o conteúdo %1
-
-
-
+
+
+ Sandboxie-Plus - Erro
-
+ Falha ao parar todos os componentes do Sandboxie
-
+ Falha ao iniciar os componentes exigidos do Sandboxie
@@ -4026,12 +4024,12 @@ Você quer fazer a limpeza?
Quer verificar se existe uma nova versão do Sandboxie-Plus?
-
+ Alguns modelos de compatibilidade (%1) estão a faltar, provavelmente excluídos. Deseja removê-los de todas as caixas?
-
+ Limpar modelos removidos...
@@ -4052,7 +4050,7 @@ Você quer fazer a limpeza?
- Portable
-
+
@@ -4061,7 +4059,7 @@ Sim vou definir: %1
Não vou definir: %2
-
+ Operação desconhecida '%1' solicitada via linha de comando
@@ -4076,128 +4074,128 @@ Não vou definir: %2
-
+ Sem Processo Forçado
-
+
-
+ A executar OnBoxDelete: %1
-
+ Atalho removido: %1
-
+
-
+ Atalho adicionado para: %1
-
+
-
+ A apagar automaticamente o conteúdo de %1
-
+ Removendo automaticamente a caixa %1
-
+ Versão do Sandboxie-Plus: %1 (%2)
-
+ Definição actual: %1
-
+ Pasta de dados: %1
-
+ para uso Pessoal
-
+ - APENAS para uso Não Comercial
-
+ Caixa de areia predefinida não encontrada; Criando: %1
-
+ - NÃO conectado
-
+
-
-
-
+
+
+ (%1)
-
+
-
+
-
-
+
+
-
+ O programa %1 iniciado na caixa %2 será encerrado em 5 minutos porque a caixa foi configurada para utilizar recursos disponíveis exclusivamente para apoiadores do projeto.
-
+ A caixa %1 está configurada para utilizar recursos disponíveis exclusivamente para apoiadores do projeto, essas predefinições serão ignoradas.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de apoiador</a>
@@ -4265,22 +4263,22 @@ Não vou definir: %2
-
+ Apenas administradores podem mudar a definição.
-
+ Por favor, introduza a palavra-passe de definição.
-
+ Falha no Login: %1
-
+ Você deseja encerrar todos os processos em todas as caixas?
@@ -4293,32 +4291,32 @@ Não vou definir: %2
Introduza a duração para desactivar programas forçados.
-
+ Sandboxie-Plus foi iniciado no modo portable é preciso construir os serviços necessários. Isso solicitará privilégios administrativos.
-
+ CUIDADO: Outro agente (provavelmente SbieCtrl.exe) já está a gerir esta sessão do sandboxie, por favor, feche-o primeiro e reconecte para assumir o controlo.
-
+ A executar operação de manutenção, por favor aguarde...
-
+ Você também deseja repor as caixas de mensagens ocultas (sim) ou apenas todas as mensagens de registro (não)?
-
+ As alterações serão aplicadas automaticamente sempre que o ficheiro for salvo.
-
+ As alterações serão aplicadas automaticamente assim que o editor for fechado.
@@ -4327,82 +4325,82 @@ Não vou definir: %2
Estado do Erro: %1
-
+ Direitos de administrador são necessários para esta operação.
-
+ Falha ao rodar: %1
-
+ Falha ao se conectar com o controlador
-
+ Falha ao se comunicar com o serviço Sandboxie: %1
-
+ Um Sandboxie %1 incompatível foi encontrado. Versões compatíveis: %2
-
+ Não é possível encontrar o localização de instalação do Sandboxie.
-
+ Falha ao copiar a definição do sandbox %1: %2
-
+ Uma caixa de areia com o nome %1 já existe
-
+ Falha ao apagar sandbox %1: %2
-
+ O nome da caixa de área não pode ter mais de 32 caracteres.
-
+ O nome da caixa de areia não pode ser um nome de dispositivo.
-
+ O nome da caixa de areia pode conter apenas letras, números e sublinhados que são exibidos como espaços.
-
+ Falha ao terminar todos os processos
-
+ A proteção ao apagar está ativada para a caixa de areia
-
+ Todos os processos do sandbox devem ser interrompidos antes que o conteúdo da caixa possa ser excluído
-
+ Erro ao apagar a pasta da caixa de areia: %1
@@ -4411,42 +4409,42 @@ Não vou definir: %2
Uma caixa de areia deve ser esvaziada antes de ser renomeada.
-
+ Uma caixa de areia deve ser esvaziada antes de ser eliminada.
-
+ Falha ao mover pasta '%1' para '%2'
-
+ Esta operação de instantâneo não pode ser executada enquanto os processos ainda estiverem em execução na caixa.
-
+ Falha ao construir pasta para novo instantâneo
-
+ Instantâneo não encontrado
-
+ Erro ao fundir os diretórios de instantâneo '%1' com '%2', o instantâneo não foi totalmente mesclado.
-
+ Falha ao remover pasta de instantâneo antigo '%1'
-
+ Não é possível remover instantâneos compartilhado por vários instantâneos posteriores
@@ -4455,27 +4453,27 @@ Não vou definir: %2
Falha ao remover RegHive antigo
-
+ Você não está concedido a atualizar a definição na seção '%1'
-
+ Falha ao definir a definição de definição %1 na seção %2: %3
-
+ Não é possível construir instantâneo de uma caixa de areia vazia
-
+ Uma caixa de areia com este nome já existe
-
+ A palavra-passe de definição não deve ter mais de 64 caracteres
@@ -4484,7 +4482,7 @@ Não vou definir: %2
Estado de erro desconhecido: %1
-
+ A operação falhou para %1 item(ns).
@@ -4493,7 +4491,7 @@ Não vou definir: %2
Deseja abrir %1 num Navegador web na caixa de areia (sim) ou fora da caixa de areia (não)?
-
+ Lembrar escolha mais tarde.
@@ -5552,17 +5550,17 @@ Não vou definir: %2
CSelectBoxWindow
-
+ Sandboxie-Plus - Rodar na Caixa de Areia
-
+ Tem certeza de que quer rodar o programa fora da caixa de areia?
-
+ Por favor, seleccione uma caixa de areia.
@@ -5679,69 +5677,69 @@ Não vou definir: %2
-
+ Pesquisar por definições
-
-
-
+
+
+ Rodar na &Caixa de Areia
-
+
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+
-
+ Error retriving certificate: %1
-
+
-
+
-
+ Navegador Web na Caixa de Areia
@@ -5789,63 +5787,63 @@ Não vou definir: %2
Descarregar & Instalar
-
+ Procurar pelo programa
-
+ Adicionar %1 Modelo
-
+
-
+
-
+
-
+ Por favor, introduza a mensagem
-
+ Seleccionar Programa
-
+ Executáveis (*.exe *.cmd)
-
-
+
+ Por favor introduza o título do menu
-
+ Por favor, digite um comando
-
+ Kilobytes (%1)
-
+
@@ -5854,102 +5852,102 @@ Não vou definir: %2
Este certificado de apoiador expirou, por favor <a href="sbie://update/cert">obtenha um certificado actualizado</a>.
-
+ <br /><font color='red'>Os recursos do Plus serão desativados em %1 dias.</font>
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -5958,7 +5956,7 @@ Não vou definir: %2
<br /><font color='red'>Para esta compilação, os recursos Plus permanecem ativados.</font>
-
+ <br />Os recursos Plus não estão mais ativados.
@@ -5972,12 +5970,12 @@ Não vou definir: %2
Certificado de apoiador necessário
-
+ Rodar &Fora da Caixa de Areia
-
+ Isso não parece um certificado. Introduza o certificado inteiro, não apenas uma parte dele.
@@ -5990,7 +5988,7 @@ Não vou definir: %2
Infelizmente, este certificado está desatualizado.
-
+ Obrigado por apoiar o desenvolvimento do Sandboxie-Plus.
@@ -5999,89 +5997,89 @@ Não vou definir: %2
Este certificado de suporte não é válido.
-
+
-
+
-
+
-
+
-
+
-
-
+
+ Seleccionar Pasta
-
+ <a href="check">Verificar Agora</a>
-
+ Por favor, introduza a nova palavra-passe de definição.
-
+ Please re enter the new configuration password.Introduza novamente a nova palavra-passe de definição.
-
+ As palavras-passe são diferentes, tente novamente.
-
+ Processo
-
+ Pasta
-
+ Introduza o nome do programa
-
+ Por favor, introduza o identificador de modelo
-
+ Erro: %1
-
+ Você realmente deseja excluir o(s) modelo(s) local(is) selecionado(s)?
-
+ %1 (Actual)
@@ -6202,32 +6200,32 @@ Não vou definir: %2
CSubmitPage
-
+
-
+
-
+
-
+
-
+
-
+ Select partially checked state to sends only message log but no trace log.
@@ -6235,69 +6233,69 @@ Before sending you can review the logs in the main window.
-
+
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Your issue report have been successfully submitted, thank you.
@@ -6965,27 +6963,27 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Estrutura da Caixa
-
+ Opções de Segurança
-
+ Reforço de Segurança
-
-
-
-
-
+
+
+
+
+ Proteger o sistema de processos do sandbox
-
+ Restrições de elevação
@@ -6994,7 +6992,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Nota de segurança: Aplicação em execução elevado sob a supervisão do Sandboxie, com um token de administrador, têm mais oportunidades para ignorar o isolamento e modificar o sistema fora da caixa de areia.
-
+ Retirar direitos de grupos de Administradores e Usuários Avançados
@@ -7004,12 +7002,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Largura (px)
-
+ Fazer aplicativos acharem que estão sendo executados elevados (permite rodar instaladores com segurança)
-
+ CUIDADO: Ao rodar sob o administrador incorporado, os processos não podem liberar privilégios administrativos.
@@ -7019,7 +7017,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Aparência
-
+ (Recomendado)
@@ -7029,17 +7027,17 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Mostrar esta caixa no diálogo de seleção 'rodar na caixa'
-
+ Nota de segurança: Aplicação em execução elevada sob a supervisão do Sandboxie, com um token de administrador ou sistema, têm mais oportunidades para ignorar o isolamento e modificar o sistema fora da caixa de areia.
-
+ Permitir que o MSIServer seja rodado com um token do sistema na caixa de areia e aplique outras exceções, se necessário
-
+ Nota: As isenções do Instalador do MSI não devem ser necessárias, mas se você encontrar problemas para instalar um pacote MSI que você confia, esta opção pode ajudar a instalação completa com êxito. Você também pode tentar desactivar os direitos de administrador.
@@ -7105,22 +7103,22 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Perguntar ao utilizador para migrar ficheiros grandes
-
+ Aprimoramentos de Segurança
-
+ Utilizar o token original somente para chamadas de sistema NT aprovadas
-
+ Restringir o acesso do driver/dispositivo apenas aos aprovados
-
+ Activar todos os aprimoramentos de segurança (tornar a caixa de segurança reforçada)
@@ -7138,28 +7136,28 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Permitir que o spooler de impressão imprima ficheiros fora da caixa
-
+ Remover a restrição do spooler, as impressoras podem ser instaladas fora da caixa
-
+ Allow access to Smart CardsBloquear o acesso de leitura à área de transferência
-
+ Abrir Armazenamento Protegido pelo Sistema
-
+ Bloquear acesso ao spooler de impressão
-
+ Outras restrições
@@ -7169,12 +7167,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Restrições de impressão
-
+ Restrições de rede
-
+ Bloquear ficheiros e pastas de rede, a menos que especificamente abertos.
@@ -7183,65 +7181,65 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Impedir alterações nos parâmetros de rede e firewall
-
+ Menu Rodar
-
+ Você pode configurar entradas personalizadas para o menu de execução da caixa de areia.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Nome
-
+ Linha de Comando
-
+ Adicionar programa
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Remover
@@ -7254,13 +7252,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Aqui você pode especificar programas ou serviços que devem ser iniciados automaticamente na caixa de areia quando ela for ativada
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Tipo
@@ -7273,21 +7271,21 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Adicionar serviço
-
+ Grupos de Programas
-
+ Adicionar Grupo
-
-
-
-
-
+
+
+
+
+ Adicionar Programa
@@ -7300,42 +7298,42 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Programas Forçados
-
+ Pasta Forçada
-
-
-
+
+
+ Localização
-
+ Programa Forçado
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mostrar Modelos
@@ -7369,32 +7367,32 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Direitos de Administrador
-
+ Abrir Credencias de Armazenamento do Windows (modo de utilizador)
-
+ Impedir a alteração de parâmetros de rede e firewall (modo de utilizador)
-
+ Permitir a leitura de memória de processos sem caixa de areia (não recomendado)
-
+ Emitir mensagem 2111 quando um acesso de processo for negado
-
+ Isolamento de Segurança
-
+ Adcanced SecuritySegurança Avançada
@@ -7404,54 +7402,54 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Utilizar login do Sandboxie em vez de um token anônimo (experimental)
-
+ Outro Isolamento
-
+ Isolamento Privilegiado
-
+ Token do Sandboxie
-
+ O uso de um token do sandboxie personalizado permite isolar melhor as caixas individuais umas das outras e mostra na coluna do utilizador dos gerenciadores de tarefas o nome da caixa à qual um processo pertence. Algumas soluções de segurança de terceiros podem, no entanto, ter problemas com tokens personalizados.
-
+ Você pode agrupar programas juntos e dar-lhes um nome de grupo. Grupos de programas podem ser usados com algumas das definições em vez de nomes de programas. Grupos definidos para a caixa sobrescrever grupos definidos em modelos.
-
+ Programas Forçados
-
+ Programas inseridos aqui, ou iniciados a partir de locais inseridos, serão colocados nesta caixa automaticamente, a menos que seja explicitamente iniciado em outra caixa de areia.
-
+ Programas Fora
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.Os programas inseridos aqui poderão sair desta caixa de proteção quando forem iniciados. Também é possível capturá-los em outra caixa, por exemplo, para ter seu navegador sempre aberto em uma caixa dedicada.
-
-
+
+ Parar Comportamento
@@ -7476,32 +7474,32 @@ If leader processes are defined, all others are treated as lingering processes.<
Se os processos líderes forem definidos, todos os outros serão tratados como processos persistentes.
-
+ Restrições ao Iniciar
-
+ Emitir mensagem 1308 quando um programa não iniciar
-
+ Permitir que apenas programas selecionados sejam iniciados nesta caixa de areia. *
-
+ Impedir que programas selecionados sejam iniciados nesta caixa de areia.
-
+ Permitir que todos os programas comecem nesta caixa de areia.
-
+ * Nota: Programas instalados nesta caixa de areia não serão capazes de iniciar em todas.
@@ -7510,12 +7508,12 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Restrições à Internet
-
+ Restrições de Processo
-
+ Emitir mensagem 1307 quando um programa for negado de aceder à internet
@@ -7524,27 +7522,27 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Bloquear acesso à internet para todos os programas, exceto aqueles adicionados à lista.
-
+ Solicitar ao utilizador se permite uma isenção do bloqueio.
-
+ Nota: Os programas instalados nesta caixa de areia não poderão aceder a internet.
-
-
-
-
-
-
+
+
+
+
+
+ Acesso
-
+ Definir acesso a rede/internet para processos não listados:
@@ -7553,44 +7551,44 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Restrições de Rede
-
+ Testar Regras, Programa:
-
+ Porta:
-
+
-
+ Protocolo:
-
+
-
+ Adicionar Regra
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Programa
@@ -7663,66 +7661,66 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Ícone
-
+ Vários recursos de isolamento podem interromper a compatibilidade com alguns aplicativos. Se você estiver usando esta caixa de areia <b>NÃO Segura</b> mas para a portabilidade do aplicativo, alterando essas opções, você pode restaurar a compatibilidade sacrificando alguma segurança.
-
+ Isolamento de Acesso
-
+ Proteção de Imagem
-
+ Emitir mensagem 1305 quando um programa tenta carregar uma dll na caixa de areia
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandboxImpedir que programas das caixas instalados no host carreguem dll's do sandbox
-
+
-
+
-
+ As regras de acesso a recursos do sandboxie geralmente discriminam os binários do programa localizados dentro do sandbox. OpenFilePath e OpenKeyPath funcionam apenas para binários de aplicativos localizados no host nativamente. Para definir uma regra sem essa restrição, deve-se utilizar OpenPipePath ou OpenConfPath. Da mesma forma, todas as diretivas Closed(File|Key|Ipc)Path que são definidas por negação, por exemplo 'ClosedFilePath =! iexplore.exe,C:Users*’ será sempre fechado para binários localizados dentro de uma caixa. Ambas as políticas de restrição podem ser desativadas na página “Políticas de Acesso”.
Isso é feito para evitar que processos invasores dentro do sandbox criem uma cópia renomeada de si mesmos e acessem recursos protegidos. Outro vetor de exploração é a injeção de uma biblioteca em um processo autorizado para obter acesso a tudo o que é permitido acessar.Usando a proteção de imagem do host, isso pode ser evitado bloqueando os aplicativos (instalados no host) executados dentro de uma caixa de carregar bibliotecas do próprio sandbox.
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
-
+ Desactivar processo e pasta forçados para essa caixa
-
+ Programa Fora
-
+ Pasta Fora
@@ -7752,38 +7750,38 @@ Isso é feito para evitar que processos invasores dentro do sandbox criem uma c
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
@@ -7793,110 +7791,99 @@ Isso é feito para evitar que processos invasores dentro do sandbox criem uma c
-
-
- Prevents processes in the sandbox from interfering with power operation
-
-
-
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.
-
+ Utilizar um login do Sandboxie em vez de um token anônimo
-
+
-
+ Programas Remanescentes
-
+ Os programas remanescentes serão encerrados automaticamente se ainda estiverem em execução após todos os outros processos terem sido encerrados.
-
+ Programas Líderes
-
+ Se os processos líderes forem definidos, todos os outros serão tratados como processos remanescentes.
-
+
-
+
-
+
-
+ Ficheiros
-
+ Definir quais processos podem acessar Ficheiros, Pastas e Pipes.
'Aberto' o acesso só se aplica a binários de programas localizados fora da área de areia, você pode utilizar 'Aberto para Todos' em vez disso, para torná-lo aplicável a todos os programas ou mudar este comportamento na aba Políticas.
-
+ Registro
-
+ Definir quais processos podem acessar o Registro.
'Aberto' o acesso só se aplica a binários de programas localizados fora da área restrita, você pode utilizar 'Aberto para Todos' em vez disso, para torná-lo aplicável a todos os programas ou mudar este comportamento na aba Políticas.
-
+
-
+ Definir quais processos podem acessar objetos NT IPC como portas ALPC e outros processos de memória e contexto.
Para especificar um processo, use '$:program.exe' como localização.
-
+
-
+ Classe Wnd
@@ -7906,70 +7893,70 @@ Para especificar um processo, use '$:program.exe' como localização.<
Definir quais processos podem acessar objetos da Área de Trabalho, como Windows e similares.
-
+
-
+ ID da Classe
-
+ Definir quais processos podem acessar objetos COM.
-
+ Não utilizar COM virtualizado, acesso aberto à infraestrutura COM dos hosts (não recomendado)
-
+ Políticas de Acesso
-
+ Aplicar e Fechar...=!<programa>,... regras também para todos os binários localizados na caixa.
-
+ Opções de Rede
-
-
-
+
+
+ Ação
-
+ Porta
-
+
-
+ Protocolo
-
+ CUIDADO: A Plataforma de Filtragem do Windows não está ativada com o controlador, portanto, essas regras serão aplicadas apenas no modo de utilizador e não podem ser impostas!!! Isso significa que as aplicações maliciosas podem contorná-las.
-
+ Acesso a Recursos
@@ -7986,37 +7973,37 @@ O ficheiro 'Aberto' e o acesso de teclas aplica-se apenas aos binário
Você pode utilizar 'Abrir para Todos' em vez de fazê-lo aplicar a todos os programas ou mudar este comportamento na Política de abas.
-
+ Adicionar Ficheiro/Pasta
-
+ Adicionar Wnd Class
-
+ Mover para Baixo
-
+ Adicionar Localização IPC
-
+ Adicionar Chave de Registro
-
+ Adicionar Objecto COM
-
+ Mover para Cima
@@ -8038,84 +8025,84 @@ Para aceder ficheiros, você pode utilizar o 'Direto a Todos' em vez d
Aplicar e Fechar...=!<programa>,... diretivas também para todos os binários localizados na caixa de areia.
-
+ Recuperação de Ficheiros
-
+ Adicionar Pasta
-
+ Ignorar Extensão
-
+ Ignorar Pasta
-
+ Activar mensagem de recuperação imediata para poder recuperar ficheiros assim que for criado.
-
+ Você pode apagar pastas e tipos de ficheiros (ou extensões de ficheiros) da Recuperação Imediata.
-
+ Quando a função Recuperação Rápida for invocada, as seguintes pastas serão verificadas para obter conteúdo da caixa de areia.
-
+ Opções Avançadas
-
+ Diversos
-
+ Não mudar nomes das classes de janelas criadas por programas na caixa de areia
-
+ Não iniciar serviços no sandbox usando um token de sistema (recomendado)
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Proteger integridade da própria caixa de areia
-
+ Retirar privilégios críticos de processos em execução com um token SYSTEM
-
-
+
+ (Segurança Crítica)
-
+ Proteger os processos do SISTEMA de caixa de areia contra processos desprivilegiados
@@ -8124,7 +8111,7 @@ Para aceder ficheiros, você pode utilizar o 'Direto a Todos' em vez d
Isolamento da caixa de areia
-
+ Forçar uso de ficheiros de manifesto fictícios personalizados (comportamento legado)
@@ -8137,34 +8124,34 @@ Para aceder ficheiros, você pode utilizar o 'Direto a Todos' em vez d
Políticas de Acesso a Recursos
-
+ A especificidade da regra é uma medida de quão bem uma determinada regra corresponde a um localização específico, basta colocar a especificidade é o comprimento dos caracteres desde o início do localização até e incluindo o último substramento não curinga correspondente. Uma regra que corresponde apenas tipos de ficheiros como "*.tmp" teria a maior especificidade, pois sempre corresponderia a todo o localização do ficheiro.
O nível de correspondência do processo tem uma prioridade maior do que a especificidade e descreve como uma regra se aplica a um determinado processo. As regras aplicáveis por nome ou grupo do processo têm o nível de correspondência mais forte, seguidas pela correspondência por negação (ou seja, regras aplicáveis a todos os processos, exceto o dado), enquanto os níveis mais baixos de correspondência têm correspondências globais, ou seja, regras que se aplicam a qualquer processo.
-
+ Priorizar regras com base em sua Especificidade e Nível de Correspondência de Processos
-
+ Modo de Privacidade, bloquear o acesso de ficheiros e registros a todos os locais, exceto os genéricos do sistema
-
+ Modo de Acesso
-
+ Quando o Modo de Privacidade estiver ativado, os processos com caixa de areia só poderão ler C:\Windows\*, C:\Program Files\*, e partes do registro HKLM, todos os outros locais precisarão de acesso explícito para serem legíveis e/ou graváveis. Neste modo, a Especificação de Regra está sempre ativada.
-
+ Políticas de Regras
@@ -8173,23 +8160,23 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Aplicar Fechar...=!<programa>,... regras também para todos os binários localizados na caixa de areia.
-
+ Aplicar diretivas Abertas de Ficheiro e Chave apenas para binários localizados fora da caixa de areia.
-
+ Iniciar os RPCs na caixa de areia como um processo de SISTEMA (não recomendado)
-
+ Permitir apenas processos privilegiados para acessar o Gerenciador de Controlo de Serviços
-
-
+
+ Compatibilidade
@@ -8198,28 +8185,28 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Acesso aberto à infraestrutura COM (não recomendado)
-
+ Adicionar processos de caixa de areia a objetos de trabalho (recomendado)
-
+ Emular estação de janela da caixa de areia para todos os processos
-
+ Allow use of nested job objects (experimental, works on Windows 8 and later)Permitir o uso de objetos de trabalho aninhados (experimental, funciona no Windows 8 e posterior)
-
+ Isolamento de segurança através do uso de um token de processo fortemente restrito é o principal meio da Sandboxie de impor restrições de caixa de areia, quando esta é desativada a caixa é operada no modo compartimento de aplicativos, ou seja, não está mais fornecendo segurança confiável, apenas compartimentação simples da aplicação.
-
+ Permitir que programas na caixa de areia gerenciem Hardware/Dispositivos
@@ -8236,22 +8223,22 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Permitir que programas na caixa de areia Gerenciem Hardware/Dispositivos
-
+ Abrir acesso ao Gerenciador de Conta de Segurança do Windows
-
+ Abrir acesso à Autoridade de Segurança Local do Windows
-
+ Controlo de Programa
-
+ Desactivar o uso do RpcMgmtSetComTimeout predefinido (isso pode resolver problemas de compatibilidade)
@@ -8264,22 +8251,22 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Vários recursos avançados de isolamento podem quebrar a compatibilidade com alguns aplicativos. Se você estiver usando esta caixa de areia <b>Não Seguro</b> mas, para simples portabilidade da aplicação, alterando essas opções, você pode restaurar a compatibilidade sacrificando alguma segurança.
-
+ Isolamento de Segurança e Filtragem
-
+ Desactivar Filtragem de Segurança (não recomendada)
-
+ Filtragem de segurança usada pela Sandboxie para impor restrições de sistema de ficheiros e registro, bem como restringir o acesso ao processo.
-
+ As opções abaixo podem ser usadas com segurança quando você não concede direitos administrativos.
@@ -8304,37 +8291,37 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Aqui você pode especificar uma lista de comandos que serão executados sempre que o sandbox for iniciado.
-
+ Esconder Processo
-
+ Adicionar Processo
-
+ Esconder processos do host de processos em execução na sandbox.
-
+ Não permitir que processos do sandbox vejam processos em execução de outras caixas
-
+ Usuários
-
+ Restringir o monitor de acesso a recursos apenas para administradores
-
+ Adicionar Utilizador
@@ -8343,7 +8330,7 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Remover Utilizador
-
+
@@ -8352,7 +8339,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: As definições de programas e pastas forçadas para uma caixa de areia não se aplicam a contas de usuários que não podem utilizar o sandbox.
-
+ Rastreamento
@@ -8362,22 +8349,22 @@ Nota: As definições de programas e pastas forçadas para uma caixa de areia n
Rastreamento de chamada de API (requer logapi instalado na pasta sbie)
-
+ Rastreamento de Pipe
-
+ Registro SetError's para todas os registro de Rastreamento (cria muitas saídas)
-
+ Registrar a saída de depuração no registro de rastreamento
-
+
-
+ Rastreamento de Ficheiro
-
+ Desactivar Monitor de Acesso ao Recurso
-
+ Rastreamento IPC
-
+ Rastreamento de GUI
-
+ Monitor de Acesso ao Recurso
-
+ Rastrear acesso
-
+ Rastreamento de Classe COM
@@ -8439,92 +8426,117 @@ ao invés de "*".
<- para um desses acima não se aplica
-
+ Gatilhos
-
+ Evento
-
-
-
-
+
+
+
+ Rodar Comando
-
+ Iniciar Serviço
-
+ Esses eventos são executados sempre que uma caixa é iniciada
-
+ Ao iniciar uma caixa
-
-
+
+ Esses comandos são executados FORA DA CAIXA logo antes do conteúdo da caixa ser excluído
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Esses comandos são executados apenas quando uma caixa é inicializada. Para fazê-los funcionar novamente, o conteúdo da caixa deve ser excluído.
-
+ Ao criar uma caixa
-
+ Aqui você pode especificar acções a serem executadas automaticamente em vários eventos de caixa.
-
+
-
+ Rastreamento de Chave
-
-
+
+ Firewall de Rede
-
+ Depurar
-
+ ADVERTÊNCIA, essas opções podem desactivar as garantias de segurança essenciais e interromper a segurança da sandbox!!!
-
+ Essas opções destinam-se a depurar problemas de compatibilidade, não as use em produção.
-
+ Modelos de Aplicação
@@ -8533,22 +8545,22 @@ ao invés de "*".
Modelos de Compatibilidade
-
+ Categorias de Filtro
-
+ Filtro de Texto
-
+ Adicionar Modelo
-
+ Esta lista contém uma grande quantidade de modelos de compatibilidade de caixa de areia
@@ -8557,17 +8569,17 @@ ao invés de "*".
Remover Modelo
-
+ Categoria
-
+ Pasta de Modelos
-
+
@@ -8576,23 +8588,23 @@ Please note that this values are currently user specific and saved globally for
Por favor, note que este valores são atualmente para o utilizador específico e salvo globalmente para todas as caixas.
-
-
+
+ Valor
-
+ Acessibilidade
-
+ Para compensar a proteção perdida, consulte a página de definições de Liberar Direitos no grupo de definições de Restrições.
-
+ Leitores de eclã: JAWS, NVDA, Window-Eyes, Acesso ao Sistema
@@ -8607,115 +8619,109 @@ Por favor, note que este valores são atualmente para o utilizador específico e
Restrições
-
-
- Block process from taking screenshots of windows not belonging to the containing sandbox
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Recuperação Rápida
-
+ Recuperação Imediata
-
+ Várias opções
-
+ Aplicar ElevateCreateProcess solução alternativa (comportamento herdado)
-
+
-
+
-
+
-
+
-
+ Este comando será executado antes que o conteúdo da caixa seja excluído
-
+ Ao recuperar ficheiros
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedEste comando será executado antes de um ficheiro ser recuperado e o localização do ficheiro será passado como primeiro argumento. Se este comando retornar algo diferente de 0, a recuperação será bloqueada
-
+ Rodar Verificador de Ficheiros
-
+ Ao apagar conteúdo
-
+ Proteger os processos nesta caixa de serem acessados por processos do host fora da caixa de proteção especificados.
-
-
+
+ Processo
@@ -8724,58 +8730,63 @@ Por favor, note que este valores são atualmente para o utilizador específico e
Bloquear também o acesso de leitura aos processos nesta caixa
-
+ Adicionar Opção
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Aqui você pode configurar opções avançadas por processo para melhorar a compatibilidade e/ou personalizar o comportamento do sandbox.
-
+ Opção
-
+
-
+
-
+ Modelos
-
+
+
+
+
+
+ As definições a seguir permitem utilizar o sandboxie em combinação com software de acessibilidade. Note que algumas medidas de proteção do sandboxie será perdida quando essas definições estão em vigor.
-
+ Editar Seção ini
-
+ Editar ini
-
+ Cancelar
-
+ Salvar
@@ -8807,27 +8818,27 @@ Por favor, note que este valores são atualmente para o utilizador específico e
QPlatformTheme
-
+
-
+ Aplicar
-
+ Cancelar
-
+ &Sim
-
+ &Não
@@ -9097,7 +9108,7 @@ Por favor, note que este valores são atualmente para o utilizador específico e
Utilizar ícones grandes na lista de caixas *
-
+ Escala de DPI alto
@@ -9128,117 +9139,117 @@ Por favor, note que este valores são atualmente para o utilizador específico e
-
+
-
+ Escala da fonte
-
+
-
+
-
+ (É necessário reiniciar)
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Estado
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Kilobytes
-
+
-
+
-
+
-
+
@@ -9283,103 +9294,108 @@ Por favor, note que este valores são atualmente para o utilizador específico e
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Definição Avançada
@@ -9388,12 +9404,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Utilizar Plataforma de Filtragem do Windows para restringir o acesso à rede (experimental)*
-
+ <a href="sbie://docs/filerootpath">Pasta dos ficheiros</a> do Sandbox:
-
+ Limpar palavra-passe quando a janela principal ficar oculta
@@ -9427,22 +9443,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Mostrar notificação na bandeja quando as operações automáticas da caixa são iniciadas
-
+ Utilizar Plataforma de Filtragem do Windows para restringir o acesso à rede
-
+ Activar filtragem de objetos no Modo Kernel
-
+ <a href="sbie://docs/ipcrootpath">Pasta do ipc</a> do Sandbox :
-
+ Sandbox predefinido
@@ -9452,7 +9468,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
* uma caixa de seleção parcialmente marcada deixará o comportamento a ser determinado pelo modo de vista.
-
+
@@ -9467,7 +9483,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Utilizar tema Fusão
-
+ Gancho selecionando chamadas do sistema Win32k para permitir a aceleração da GPU (experimental)
@@ -9476,22 +9492,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Utilizar login do Sandboxie em vez de um token anônimo (experimental)
-
+ Proteger definição
-
+
-
+ <a href="sbie://docs/keyrootpath">Pasta de registro</a> do Sandbox:
-
+ Recursos do Sandboxie
@@ -9504,22 +9520,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Utilizar a Plataforma de Filtragem do Windows para restringir o acesso à rede (experimental)
-
+ Mudar Palavra-passe
-
+ Uma palavra-passe deve ser inserida para fazer alterações
-
+ Apenas contas de usuários Administradores podem fazer alterações
-
+ Observar alterações em Sandboxie.ini
@@ -9533,7 +9549,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Outras definições
-
+ Pasta raíz portable
@@ -9542,56 +9558,56 @@ Unlike the preview channel, it does not include untested, potentially breaking,
* requer recarregar controlador ou reinicialização do sistema
-
+ Controlo de Programa
-
-
-
-
+
+
+
+ Nome
-
+ Utilizar um login do Sandboxie em vez de um token anônimo
-
+ Localização
-
+ Remover Programa
-
+ Adicionar Programa
-
+ Quando um dos programas a seguir for iniciado fora de qualquer caixa, o Sandboxie emitirá a mensagem SBIE1301.
-
+ Adicionar Pasta
-
+ Evitar que os programas listados sejam iniciados neste sistema
-
+ Emitir mensagem 1308 quando um programa falha ao iniciar
@@ -9700,72 +9716,72 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Mostrar ícones de sobreposição para caixas e processos
-
+ Opções Gráficas
-
+ Os apoiadores do projeto Sandboxie-Plus podem receber um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>. É como uma chave de licença, mas para pessoas incríveis que usam software de código aberto. :-)
-
+ Manter o Sandboxie atualizado com as versões contínuas do Windows e compatível com todos os navegadores Web é um esforço sem fim. Você pode apoiar o desenvolvimento <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute"> contribuindo diretamente com o projeto</a>, mostrando seu apoio <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">comprando um certificado de apoiador</a>, tornando-se um patrono <a href="https://sandboxie-plus.com/go.php?to=patreon">se inscrevendo no Patreon</a>, ou através de uma <a href="https://sandboxie-plus.com/go.php?to=donate">doação PayPal</a>.<br />Seu apoio desempenha um papel vital no avanço e manutenção do Sandboxie.
-
+ Predefinições Sandboxie.ini
-
+ Alertas do Programa
-
+ Emitir mensagem 1301 quando os processos forçados forem desativados
-
+
-
+
-
+
-
+
-
+
-
+ Modelos de Aplicação
-
+ Compatibilidade de Aplicação
-
+ Config ProtectionProteção de Definição
@@ -9802,8 +9818,8 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
+
+ Remover
@@ -9813,7 +9829,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Linha de Comando
-
+ Suporte && Actualizações
@@ -9822,12 +9838,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Definição da Caixa de Areia
-
+ Caixa predefinida:
-
+ Somente contas de usuários administradores podem utilizar o comando Pausar Programas Forçados
@@ -9836,62 +9852,67 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Compatibilidade
-
+ No futuro, não verificar a compatibilidade de software
-
+ Activar
-
+ Desactivar
-
+ Sandboxie detectou os seguintes aplicativos em seu sistema. Clique em Activar para aplicar as definições, o que aumentará a compatibilidade com esses aplicativos. Essas definições terão efeito em todas as caixas de areia existentes e em todas as novas caixas de areia.
-
+ Modelos Locais
-
+ Adicionar Modelo
-
+ Filtro de Texto
-
+ Essa lista contém modelos personalizados criados pelo utilizador para opções do sandbox
-
+
+
+
+
+
+ Editar Seção ini
-
+ Salvar
-
+ Editar ini
-
+ Cancelar
@@ -9900,7 +9921,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Suporte
-
+ Version UpdatesActualizações de Versão
@@ -9910,7 +9931,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Novas versões completas do canal de lançamento selecionado.
-
+ Hotpatches para a versão instalada, actualizações para o Templates.ini e traduções.
@@ -9919,7 +9940,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Este certificado de apoiador expirou, por favor <a href="sbie://update/cert">obtenha um certificado actualizado</a>.
-
+ O canal preview contém os últimos pré-lançamentos do GitHub.
@@ -9928,12 +9949,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Novas versões
-
+ O canal estável contém os últimos lançamentos estáveis do GitHub.
-
+ Pesquisar no canal Estável
@@ -9942,7 +9963,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Manter o Sandboxie actualizado com as versões contínuas do Windows e compatível com todos os navegadores da Web é um esforço sem fim. Por favor, considere apoiar este trabalho com uma doação.<br />Você pode apoiar o desenvolvimento com uma <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Doação no PayPal</a>, trabalhando também com cartões de crédito.<br />Ou você pode fornecer suporte contínuo com uma <a href="https://sandboxie-plus.com/go.php?to=patreon">Assinatura do Patreon</a>.
-
+ Pesquisar no canal Preview
@@ -9955,12 +9976,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Manter o Sandboxie actualizado com as versões mais recentes do Windows e compatibilidade com todos os navegadores web é um esforço interminável. Por favor, considere apoiar este trabalho com uma doação.<br />Você pode apoiar o desenvolvimento com uma <a href="https://sandboxie-plus.com/go.php?to=donate">doação no PayPal</a>, trabalhando também com cartões de crédito.<br />Ou você pode fornecer suporte contínuo com uma <a href="https://sandboxie-plus.com/go.php?to=patreon">assinatura do Patreon</a>.
-
+ No futuro, não notificar acerca a expiração do certificado
-
+ Introduza o certificado de suporte aqui
diff --git a/SandboxiePlus/SandMan/sandman_ru.ts b/SandboxiePlus/SandMan/sandman_ru.ts
index 4410ea93..1a63a0fa 100644
--- a/SandboxiePlus/SandMan/sandman_ru.ts
+++ b/SandboxiePlus/SandMan/sandman_ru.ts
@@ -833,12 +833,12 @@ Error: %1
CCompletePage
-
+ Устранение неполадок завершено
-
+
@@ -1177,14 +1177,12 @@ You can use %USER% to save each users sandbox to an own folder.
CMultiErrorDialog
-
- Sandboxie-Plus - Ошибка
+ Sandboxie-Plus - Ошибка
-
- Сообщение
+ Сообщение
@@ -1537,11 +1535,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
Выбрать каталог
-
+
-
-
+
+
@@ -1551,8 +1549,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
Все программы
-
-
+
+
@@ -1590,7 +1588,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1659,76 +1657,76 @@ Note: The update check is often behind the latest GitHub release to ensure that
Корень IPC песочницы
-
+ Добавить специальную опцию:
-
-
+
+ При запуске
-
-
-
-
-
+
+
+
+
+ Выполнить комманду
-
+ Запустить службу
-
+ При инициализации
-
+ При восстановлении файлов
-
+ При удалении контента
-
+ При завершении
-
-
-
-
-
+
+
+
+
+ Пожалуйста, введите командную строку для выполнения
-
+ Введите имя файла программы, чтобы разрешить доступ к этой песочнице
-
+ Введите имя файла программы, чтобы запретить доступ к этой песочнице
-
+ Отклонить
-
+ %1 (%2)
@@ -1965,7 +1963,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
Заголовок образа восстановлен
-
+ Пожалуйста, введите идентификатор службы
@@ -2035,7 +2033,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
Блокировать путем запрета доступа к сетевым устройствам
-
+
@@ -2137,17 +2135,17 @@ Note: The update check is often behind the latest GitHub release to ensure that
Ошибка: %1
-
+ Вы действительно хотите удалить выбранные локальные шаблоны?
-
+ Только локальные шаблоны могут быть удалены!
-
+ Добавить шаблон %1
-
+ Поиск вариантов
-
+ Песочница: %1
-
+ Шаблон: %1
-
+ Глобально: %1
-
+ По умолчанию: %1
-
+ Эта песочница была удалена, поэтому сохранить конфигурацию невозможно.
-
+ Некоторые изменения еще не были сохранены, вы действительно хотите закрыть окно параметров?
-
+ Введите программу:
@@ -2569,12 +2567,12 @@ Full path: %4
Эта процедура устранения неполадок не может быть инициализирована. Вы можете нажать "Далее", чтобы отправить отчет о проблеме.
-
+ Произошла внутренняя ошибка. Эта процедура устранения неполадок не может быть продолжена. Вы можете нажать "Далее", чтобы отправить отчет о проблеме.
-
+
@@ -2701,22 +2699,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Ожидание папки: %1
-
+ Удаление папки: %1
-
+ Слияние папок: %1 и %2
-
+ Завершение слияния снимков...
@@ -2793,27 +2791,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1
-
+ Сбросить столбцы
-
+ Копировать ячейку
-
+ Копировать строку
-
+ Копировать панель
@@ -3050,7 +3048,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ О Sandboxie-Plus
@@ -3108,11 +3106,11 @@ Do you want to do the clean up?
-
-
-
-
-
+
+
+
+
+ Больше не показывать это сообщение.
@@ -3137,12 +3135,12 @@ Do you want to do the clean up?
<br /><br />Эта песочница <a href="sbie://docs/privacy-mode">запрещает доступ ко всем данным пользователя</a>, кроме тех, которые явно разрешены в параметрах доступа к ресурсам.
-
+ Неизвестная операция '%1' запрошена из командной строки
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3151,49 +3149,49 @@ Please check if there is an update for sandboxie.
Пожалуйста, проверьте, есть ли обновление для Sandboxie.
-
+ Больше не показывать это сообщение для текущей сборки.
-
+ Ваша сборка Windows %1 превышает текущие известные возможности поддержки вашей версии Sandboxie. Sandboxie попытается использовать последние известные смещения, что может привести к нестабильности системы.
-
+ Вы хотите, чтобы мастер установки был пропущен?
-
-
-
+
+
+ Sandboxie-Plus - Ошибка
-
+ Не удалось остановить все компоненты Sandboxie
-
+ Не удалось запустить необходимые компоненты Sandboxie
-
+ Некоторые шаблоны совместимости (%1) отсутствуют, вероятно, удалены. Удалить их из всех песочниц?
-
+ Убраны удаленные шаблоны...
-
+
@@ -3202,32 +3200,32 @@ No will choose: %2
Нет, выберет: %2
-
+ Песочницу необходимо очистить, прежде чем ее можно будет удалить.
-
+ Сертификат сторонника недействителен для этой сборки, получите обновленный сертификат
-
+ Срок действия сертификата сторонника истек%1, пожалуйста получите обновленный сертификат
-
+ , но остается действительным для текущей сборки
-
+ Срок действия сертификата сторонника истекает через %1 дн., получите обновленный сертификат
-
+ Песочница по умолчанию не найдена; создание: %1
@@ -3247,17 +3245,17 @@ No will choose: %2
- Удаление содержимого песочницы
-
+ Автоудаление содержимого %1
-
+ - НЕ подключено
-
+ Выбранный набор функций доступен только сторонникам проекта. Процессы, запущенные в песочнице с этим набором функций без сертификата сторонника, будут прекращены через 5 минут.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Станьте сторонником проекта</a>, и получите <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертификат сторонника</a>
@@ -3314,148 +3312,148 @@ No will choose: %2
-
+ Только администраторы могут изменять конфигурацию.
-
+ Пожалуйста, введите пароль конфигурации.
-
+ Ошибка входа: %1
-
+ Вы хотите завершить все процессы во всех песочницах?
-
+ Sandboxie-Plus запущен в портативном режиме, и ему нужно создать необходимые службы. Это потребует административных привилегий.
-
+ ВНИМАНИЕ: другой агент (вероятно, SbieCtrl.exe) уже управляет этим сеансом Sandboxie, пожалуйста, сначала закройте его и подключитесь повторно, чтобы взять на себя управление.
-
+ Выполняется операция обслуживания, подождите...
-
+ Вы также хотите сбросить скрытые окна сообщений (да) или только все сообщения журнала (нет)?
-
+ Изменения будут применяться автоматически при сохранении файла.
-
+ Изменения вступят в силу автоматически после закрытия редактора.
-
+ Состояние ошибки: 0x%1 (%2)
-
+ Неизвестно
-
+ Не удалось скопировать файлы данных песочницы
-
+ Не удалось удалить старые файлы данных песочницы
-
+ Неизвестный статус ошибки: 0x%1
-
+ Хотите ли вы открыть %1 в изолированном или не изолированном веб-браузере?
-
+ В песочнице
-
+ Без песочницы
-
+ Чувствительный к регистру
-
+ Регулярное выражение
-
+ Подсветить
-
+ Закрыть
-
+ Найти (&) ...
-
+ Все столбцы
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>О Sandboxie-Plus</h3><p>Версия %1</p><p> Авторское право (c) 2020-2024 DavidXanatos</p>
-
+ Эта копия Sandboxie+ сертифицирована для: %1
-
+ Sandboxie+ бесплатен для личного и некоммерческого использования.
-
+ Sandboxie-Plus - это продолжение Sandboxie с открытым исходным кодом.<br />Посетите <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> для получения дополнительной информации.<br /><br />%3<br /><br />Версия драйвера: %1<br />Возможности: %2<br /><br />Иконки взяты с <a href="https://icons8.com">icons8.com</a>
-
+ Для этой операции требуются права администратора.
@@ -3583,50 +3581,50 @@ No will choose: %2
Журнал восстановления
-
+ Выполнение OnBoxDelete: %1
-
+ Автоудаление содержимого %1
-
+ Sandboxie-Plus версия: %1 (%2)
-
+ Текущая конфигурация: %1
-
+ Каталог данных: %1
-
+ Программа %1, запущенная в песочнице %2, будет завершена через 5 минут, поскольку песочница была настроена на использование функций, доступных исключительно для сторонников проекта.
-
+ Песочница %1 настроена на использование функций, доступных исключительно для сторонников проекта, эти предустановки будут игнорироваться.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Стань сторонником проекта</a>, и получи <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертификат сторонника</a>
-
+ Введите продолжительность в секундах, для отключения правил принудительных программ.
@@ -3637,7 +3635,7 @@ No will choose: %2
-
+ Sandboxie-Plus инсайдер [%1]
@@ -3760,385 +3758,385 @@ No will choose: %2
Эта песочница будет <a href="sbie://docs/boxencryption">зашифрована</a>, и <a href="sbie://docs/black-box">доступ к изолированным процессам будет защищен</a >.
-
+ Не принудительный процесс
-
+ USB-песочница не найдена; создание: %1
-
+ Удаленный ярлык: %1
-
+ Ярлык обновлен: %1
-
+ Добавлен ярлык для: %1
-
+ Выполнение OnBoxTerminate: %1
-
+ Автоудаление песочницы %1
-
+ %1 Каталог: %2
-
+ Приложение
-
+ Установка
-
+ для личного использования
-
+ - ТОЛЬКО для некоммерческого использования
-
+ Не удалось настроить горячую клавишу %1, ошибка: %2
-
-
-
+
+
+ (%1)
-
+ Песочница %1 настроена на использование функций, доступных исключительно сторонникам проекта.
-
+ Песочница %1 настроена на использование функций, требующих <b>расширенного</b> сертификата сторонника.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Обновите свой сертификат</a>, чтобы разблокировать расширенные функции.
-
+ Для выбранной функции требуется <b>расширенный</b> сертификат сторонника.
-
+ Выбранный набор функций доступен только сторонникам проекта.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Станьте сторонником проекта</a > и получите <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертификат сторонника</a>
-
+ Сертификат, который вы пытаетесь использовать, заблокирован, то есть он признан недействительным по определенной причине. Любая попытка его использования является нарушением условий его использования!
-
+ Подпись сертификата недействительна!
-
+ Сертификат не подходит для этого продукта.
-
+ Сертификат заблокирован на узле.
-
+ Сертификат сторонника недействителен.
Ошибка: %1
-
+ Период оценки истек!!!
-
-
+
+ Не спрашивать в будущем
-
+ Вы хотите завершить все процессы в зашифрованных песочницах и размонтировать их?
-
+ Нет файлов для восстановления
-
+ Нет сообщений
-
+ <b>ОШИБКА:</b> Sandboxie-Plus Manager (SandMan.exe) не имеет действительной подписи (SandMan.exe.sig). Загрузите надежную версию с <a href="https://sandboxie-plus.com/go.php?to=sbie-get">официальной страницы загрузки</a>.
-
+ Операция обслуживания не удалась (%1)
-
+ Операция технического обслуживания завершена
-
+ В интерфейсе Plus, эта функция была интегрирована в основное представление списка песочницы.
-
+ Используя контекстное меню песочницы/группы, вы можете перемещать песочницы и группы в другие группы. Вы также можете использовать перетаскивание для перемещения элементов. В качестве альтернативы вы также можете использовать клавиши со стрелками, удерживая нажатой клавишу ALT, чтобы перемещать элементы вверх и вниз в пределах группы.<br />Вы можете создавать новые песочницы и группы из меню "Песочница".
-
+ Вы собираетесь редактировать Templates.ini, обычно это не рекомендуется.
Этот файл является частью Sandboxie, и все внесенные в него изменения будут отменены при следующем обновлении Sandboxie.
-
+ Конфигурация Sandboxie перезагружена
-
+ Не удалось выполнить: %1
-
+ Не удалось подключиться к драйверу
-
+ Не удалось связаться со службой Sandboxie: %1
-
+ Обнаружена несовместимая песочница %1. Совместимые версии: %2
-
+ Не удается найти путь установки Sandboxie.
-
+ Не удалось скопировать конфигурацию из песочницы %1: %2
-
+ Песочница с именем %1 уже существует
-
+ Не удалось удалить песочницу %1: %2
-
+ Имя песочницы не может быть длиннее 32 символов.
-
+ Имя песочницы не может быть именем устройства.
-
+ Имя песочницы может содержать только буквы, цифры и символы подчеркивания, которые отображаются как пробелы.
-
+ Не удалось завершить все процессы
-
+ Для этой песочницы включена защита от удаления
-
+ Все процессы песочницы должны быть остановлены, перед удалением ее содержимого
-
+ Ошибка при удалении папки песочницы: %1
-
+ Все процессы в песочнице должны быть остановлены, прежде чем ее можно будет переименовать.
-
+ Не удалось переместить каталог '%1' в '%2'
-
+ Не удалось переместить образ контейнера '%1' в '%2'
-
+ Операция снимка не может быть выполнена, пока в песочнице еще выполняются процессы.
-
+ Не удалось создать каталог для нового снимка
-
+ Снимок не найден
-
+ Ошибка при объединении каталогов снимков '%1' с '%2', снимок не был объединен полностью.
-
+ Не удалось удалить старый каталог снимков '%1'
-
+ Невозможно удалить снимок, который используется несколькими более поздними снимками
-
+ У вас нет прав для обновления конфигурации в разделе '%1'
-
+ Не удалось установить параметр конфигурации %1 в секции %2: %3
-
+ Невозможно создать снимок пустой песочницы
-
+ Песочница с таким именем уже существует
-
+ Пароль конфигурации не должен быть длиннее 64 символов
-
+ Операция отменена пользователем
-
+ Содержимое несмонтированной песочницы нельзя удалить
-
+ %1
-
+ Импорт/экспорт недоступен, не удалось загрузить 7z.dll
-
+ Не удалось создать архив контейнера
-
+ Не удалось открыть 7z архив
-
+ Не удалось распаковать архив контейнера
-
+ Выбранный 7z файл НЕ является архивом контейнера
-
+ Операция не удалась для %1 элемента(ов).
-
+ Запомнить выбор.
@@ -5079,17 +5077,17 @@ This file is part of Sandboxie and all change done to it will be reverted next t
CSelectBoxWindow
-
+ Sandboxie-Plus - Запуск в песочнице
-
+ Вы уверены, что хотите запустить программу вне песочницы?
-
+ Выберите песочницу.
@@ -5220,164 +5218,164 @@ This file is part of Sandboxie and all change done to it will be reverted next t
%1
-
+ Поиск настроек
-
-
-
+
+
+ Запуск в песочнице (&S)
-
+ килобайт (%1)
-
+ Том не прикреплён
-
+ Срок действия этого сертификата сторонника истек. Пожалуйста, <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">получите обновленный сертификат</a>.
-
+ <br /><font color='red'>В текущей сборке функции Plus остаются включенными</font>, но у вас больше нет доступа к службам Sandboxie-Live, включая обновления совместимости и базу данных для устранения неполадок.
-
+ Срок действия этого сертификата сторонника <font color='red'>истечет через %1 дн.</font>. Пожалуйста, <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">получите обновленный сертификат</a>.
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Error retriving certificate: %1
-
+
-
+ Участник
-
+ Вечный
-
+ Бизнес
-
+ Персональный
-
+ Большой Patreon
-
+ Patreon
-
+ Семья
-
+ Оценка
-
+ Тип %1
-
+ Расширенный
-
+ Максимальный уровень
-
+ Уровень %1
-
+ Для доступа требуется сертификат сторонника
-
+ Для автоматизации требуется сертификат сторонника
-
+ К сожалению, этот сертификат недействителен для текущей сборки, вам необходимо получить новый сертификат или перейти на более раннюю сборку.
-
+ Хотя срок действия этого сертификата истек, для текущей установленной версии плюс функции остаются включенными. Однако у вас больше не будет доступа к службам Sandboxie-Live, включая обновления совместимости и онлайн-базу данных для устранения неполадок.
-
+ Срок действия этого сертификата, к сожалению, истек, вам необходимо получить новый сертификат.
-
+ Веб-браузер в песочнице
@@ -5400,174 +5398,174 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Загрузить и установить
-
+ Выбрать программу
-
+ Добавить шаблон %1
-
+ Выбор шрифта
-
+ Сброс шрифта
-
+ %0, %1 pt
-
+ Пожалуйста, введите сообщение
-
+ Выбрать программу
-
+ Исполняемые файлы (*.exe *.cmd)
-
-
+
+ Введите название меню
-
+ Введите команду
-
+ <br /><font color='red'>Дополнительные функции будут отключены через %1 дн.</font>
-
+ <br />Дополнительные функции больше не включены.
-
+ Получение сертификата...
-
+ Домашняя
-
+ Запуск вне песочницы (&U)
-
+ Это не похоже на сертификат. Пожалуйста, введите весь сертификат, а не только его часть.
-
+ Спасибо за поддержку разработки Sandboxie-Plus.
-
+ Доступно обновление
-
+ Установлен
-
+ %1
-
+ (информационный сайт)
-
+ Это дополнение является обязательным и не может быть удалено.
-
-
+
+ Выбрать каталог
-
+ <a href="check">Проверить сейчас</a>
-
+ Пожалуйста, введите новый пароль конфигурации.
-
+ Пожалуйста, повторно введите новый пароль конфигурации.
-
+ Пароли не совпадают, повторите попытку.
-
+ Процесс
-
+ Папка
-
+ Пожалуйста, введите имя файла программы
-
+ Пожалуйста, введите идентификатор шаблона
-
+ Ошибка: %1
-
+ Вы действительно хотите удалить выбранные локальные шаблоны?
-
+ %1 (Текущая)
@@ -5687,101 +5685,101 @@ This file is part of Sandboxie and all change done to it will be reverted next t
CSubmitPage
-
+ Отправить отчет о проблеме
-
+ Подробное описание проблемы
-
+ Прикрепить Sandboxie.ini
-
+ Совместимость с песочницей зависит от конфигурации, поэтому прикрепление файла Sandboxie.ini очень помогает в поиске проблемы.
-
+ Прикрепите логи
-
+ При выборе частично проверенного состояния отправляется только журнал сообщений, но не журнал трассировки.
Перед отправкой вы можете просмотреть логи в главном окне.
-
+ Прикрепть аварийные дампы
-
+ Произошел сбой приложения во время процедуры устранения неполадок, прикрепление аварийного дампа может помочь в отладке.
-
+ Адрес электронной почты
-
+ У вас есть возможность указать адрес электронной почты для получения уведомления, как только решение вашей проблемы будет найдено.
-
+ Приносим извинения за неудобства, с которыми вы сталкиваетесь в настоящее время при работе с Sandboxie-Plus.
-
+ К сожалению, автоматическая процедура устранения неполадок не удалась.
-
+ К сожалению, для описанной вами конкретной проблемы не существует автоматизированной процедуры устранения неполадок.
-
+ Если вы хотите отправить отчет о проблеме, просмотрите отчет ниже и нажмите 'Готово'.
-
+ Сжатие логов
-
+ Сжатие дампов
-
+ Отправка отчета о проблеме...
-
+ Не удалось отправить отчет о проблеме, ошибка %1
Попробуйте отправить без приложенного лога.
-
+ Ваш отчет о проблеме был успешно отправлен, спасибо.
@@ -6364,32 +6362,32 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Структура песочницы
-
+ Параметры безопасности
-
+ Усиление безопасности
-
-
-
-
-
+
+
+
+
+ Защита системы от изолированных процессов
-
+ Ограничения повышение уровня
-
+ Удаление прав из групп администраторов и опытных пользователей
@@ -6399,12 +6397,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
px ширина
-
+ Заставить приложения думать, что они работают с повышенными правами (позволяет безопасно запускать установщики)
-
+ ВНИМАНИЕ: При запуске под встроенным администратором процессы не могут терять административные привилегии.
@@ -6414,7 +6412,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Внешний вид
-
+ (Рекомендуемые)
@@ -6486,27 +6484,27 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Разрешить диспетчеру печати печатать файлы вне песочницы
-
+ Снять ограничение диспетчера печати, принтеры можно устанавливать вне песочницы
-
+ Заблокировать доступ на чтение буфера обмена
-
+ Открыть системное защищенное хранилище
-
+ Заблокировать доступ к диспетчеру печати
-
+ Прочие ограничения
@@ -6516,160 +6514,160 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Ограничения печати
-
+ Сетевые ограничения
-
+ Блокировать сетевые файлы и папки, если они специально не открываются.
-
+ Меню запуска
-
+ Вы можете настроить пользовательские записи для меню запуска песочницы.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Имя
-
+ Командная строка
-
+ Добавить программу
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Удалить
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Тип
-
+ Группы программ
-
+ Добавить группу
-
-
-
-
-
+
+
+
+
+ Добавить программу
-
+ Принудительная папка
-
-
-
+
+
+ Путь
-
+ Принудительная программа
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Показать шаблоны
-
+ Примечание по безопасности: расширенные приложения, работающие под контролем Sandboxie, с токеном администратора или системным токеном, имеют больше возможностей для обхода изоляции и изменения системы вне песочницы.
-
+ Разрешить MSIServer работать с изолированным системным токеном и при необходимости применить другие исключения
-
+ Примечание: Исключения для установщика Msi не требуются, но если вы столкнетесь с проблемами при установке пакета msi, которому вы доверяете, этот параметр может помочь успешно завершить установку. Вы также можете попробовать отключить сброс прав администратора.
@@ -6783,268 +6781,267 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Если файл невозможно перенести, вместо этого откройте его в режиме только для чтения
-
+ Открыть хранилище учетных данных Windows (пользовательский режим)
-
+
-
+ Запретить изменение параметров сети и брандмауэра (пользовательский режим)
-
+ Сдвинуть вверх
-
+ Сдвинуть вниз
-
+ Изоляция безопасности
-
+ Различные функции изоляции могут нарушить совместимость с некоторыми приложениями. Если вы используете эту песочницу <b>НЕ для безопасности</b>, а для переносимости приложений, изменив эти параметры, вы можете восстановить совместимость, пожертвовав некоторой безопасностью.
-
+ Отключить изоляцию безопасности
-
+ Изоляция доступа
-
-
+
+ Защита песочницы
-
+ Защитить процессы внутри этой песочницы от хост-процессов
-
+ Разрешить процесс
-
+ Сообщение о проблеме 1318/1317, когда хост-процесс пытается получить доступ к изолированному процессу/корню песочницы
-
+ Sandboxie-Plus может создавать конфиденциальные песочницы, которые обеспечивают надежную защиту от несанкционированного наблюдения или вмешательства со стороны хост-процессов. Благодаря использованию зашифрованного образа песочницы эта функция обеспечивает высочайший уровень операционной конфиденциальности, гарантируя безопасность и целостность изолированных процессов.
-
+ Запретить процесс
-
+ Использовать логин Sandboxie вместо анонимного токена
-
+ <b><font color='red'>СОВЕТЫ ПО БЕЗОПАСНОСТИ</font>:</b> Использование <a href="sbie://docs/breakoutfolder">BreakoutFolder</a> и/или <a href=" sbie://docs/breakoutprocess">BreakoutProcess</a> в сочетании с директивами Open[File/Pipe]Path может поставить под угрозу безопасность, равно как и использование <a href="sbie://docs/breakoutdocument">BreakoutDocument< /a> разрешает любые * или небезопасные (*.exe;*.dll;*.ocx;*.cmd;*.bat;*.lnk;*.pif;*.url;*.ps1; и т. д.) расширения. Перед использованием ознакомьтесь с разделом безопасности для каждого параметра в документации.
-
+ Настроить, какие процессы могут получать доступ к объектам рабочего стола, таким как Windows и т.п.
-
+ При нажатии глобальной горячей клавиши 3 раза подряд это исключение будет проигнорировано.
-
+ Исключить завершение этой песочницы при вызове "Завершить все процессы".
-
+ Защита изображения
-
+ Выдать сообщение 1305, когда программа пытается загрузить изолированную dll
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandboxЗапретить программам в песочнице, установленным на хосте, загружать dll из песочницы
-
+ Правила доступа к ресурсам Sandboxie часто дискриминируют двоичные файлы программ, расположенные внутри песочницы. OpenFilePath и OpenKeyPath работают только для двоичных файлов приложений, изначально расположенных на хосте. Чтобы определить правило без этого ограничения, необходимо использовать OpenPipePath или OpenConfPath. Аналогично, все директивы Closed(File|Key|Ipc)Path, которые определены отрицанием, например. ‘ClosedFilePath=! iexplore.exe,C:Users*’ всегда будет закрыт для двоичных файлов, находящихся внутри песочницы. Обе политики ограничения можно отключить на странице "Политики доступа".
Это делается для того, чтобы мошеннические процессы внутри песочницы не создавали переименованные копии самих себя и не получали доступ к защищенным ресурсам. Другой вектор эксплойта — внедрение библиотеки в авторизованный процесс, чтобы получить доступ ко всему, к чему ему разрешен доступ. С помощью Host Image Protection это можно предотвратить, заблокировав приложения (установленные на хосте), работающие внутри песочницы, от загрузки библиотек из самой песочницы.
-
+ Расширенная безопасность
-
+ Другая изоляция
-
+ Изоляция привилегий
-
+ Токен Sandboxie
-
+ Использование пользовательского токена Sandboxie позволяет лучше изолировать отдельные песочницы друг от друга, а также показывает в пользовательском столбце диспетчеров задач имя песочницы, к которой принадлежит процесс. Однако у некоторых сторонних решений безопасности могут быть проблемы с пользовательскими токенами.
-
+ Вы можете сгруппировать программы и дать группе название. Группы программ могут использоваться с некоторыми настройками вместо названий программ. Группы, определенные для песочницы, перезаписывают группы, определенные в шаблонах.
-
+ Контроль программ
-
+ Принудительные программы
-
+ Введенные здесь программы, или программы запущенные из указанных мест, будут автоматически помещены в эту песочницу, если они явно не запущены в другой песочнице.
-
+ Отключить принудительный процесс и папку для этой песочницы
-
+ Программы вне песочницы
-
+ Программа вне песочницы
-
+ Папка вне песочницы
- Block process from taking screenshots of windows not belonging to the containing sandbox
- Запретить процессам в песочнице использовать общедоступные методы для захвата изображений окон
+ Запретить процессам в песочнице использовать общедоступные методы для захвата изображений окон
-
+ Программам, указанным здесь, будет разрешено выйти из этой песочницы при запуске. Также можно захватить их в другую песочницу, например, чтобы ваш веб-браузер всегда был открыт в определенной песочнице.
-
-
+
+ Поведение остановки
-
+ Ограничения на запуск
-
+ Сообщение о проблеме 1308, когда программа не запускается
-
+ Разрешить запуск только выбранных программ в этой песочнице. *
-
+ Запретить запуск выбранных программ в этой песочнице.
-
+ Разрешить запуск всех программ в этой песочнице.
-
+ * Примечание: Программы, установленные в этой песочнице, вообще не запустятся.
-
+ Ограничения процесса
-
+ Сообщение о проблеме 1307, когда программе запрещен доступ в Интернет
-
+ Подсказка пользователю, разрешить ли освобождение от блокировки.
-
+ Примечание: Программы, установленные в этой песочнице, вообще не смогут получить доступ к Интернету.
-
-
-
-
-
-
+
+
+
+
+
+ Доступ
@@ -7059,22 +7056,22 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
Ограничения
-
+ DLL и расширения
-
+ Описание
-
+ Функциональность Sandboxie можно расширить с помощью дополнительных dll, которые можно загружать в каждый изолированный процесс при запуске с помощью SbieDll.dll. Менеджер надстроек в глобальных настройках предлагает несколько полезных расширений, после установки их можно включить здесь для текущей песочницы.
-
+ Вторичные программы
@@ -7084,514 +7081,533 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
Принудительная защита при монтировании
- Prevents processes in the sandbox from interfering with power operation
- Предотвратить вмешательство процессов в песочнице в работу электропитания
+ Предотвратить вмешательство процессов в песочнице в работу электропитания
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.Запретить процессам захватывать изображения окон из окон в песочнице
-
+ Разрешить полезным процессам Windows доступ к защищенным процессам
-
+ Вторичные программы будут автоматически завершены, если они все еще работают после завершения всех других процессов.
-
+ Первичные программы
-
+ Если первичные процессы определены, все остальные рассматриваются как вторичные процессы.
-
+ Опции остановки
-
+ Использовать снисхождения ко вторичным
-
+ Не останавливать вторичные процессы с окнами
-
+ Файлы
-
+ Настройте, какие процессы могут получить доступ к файлам, папкам и каналам.
'Открытый' доступ применяется только к двоичным файлам программы, расположенным за пределами песочницы. Вместо этого вы можете использовать 'Открытый для всех', чтобы применить его ко всем программам, или изменить это поведение на вкладке политик.
-
+ Реестр
-
+ Настройте, какие процессы могут получить доступ к реестру.
'Открытый' доступ применяется только к двоичным файлам программы, расположенным за пределами песочницы. Вместо этого вы можете использовать 'Открытый для всех', чтобы применить его ко всем программам, или изменить это поведение на вкладке политик.
-
+ IPC
-
+ Настройте, какие процессы могут получить доступ к объектам NT IPC, таким как порты ALPC и другие процессы, память и контекст. Чтобы указать процесс, используйте '$:program.exe' в качестве пути.
-
+ Wnd
-
+ Wnd класс
-
+ COM
-
+ Id класса
-
+ Настройте, какие процессы могут получить доступ к COM-объектам.
-
+ Не использовать виртуализированный COM, открыть доступ к инфраструктуре COM хостов (не рекомендуется)
-
+ Политики доступа
-
+ Применить правила Close...=!<program>,... также ко всем двоичным файлам, находящимся в песочнице.
-
+ Параметры сети
-
+ Настроить доступ к сети/Интернету для неуказанных процессов:
-
+ Правила тестирования, программа:
-
+ Порт:
-
+ IP:
-
+ Протокол:
-
+ X
-
+ Добавить правило
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Программа
-
-
-
+
+
+ Действие
-
+ Порт
-
+ IP
-
+ Протокол
-
+ ВНИМАНИЕ: Платформа фильтрации Windows не включена с драйвером, поэтому эти правила будут применяться только в пользовательском режиме и не могут быть применены!!! Это означает, что вредоносные приложения могут их обойти.
-
+ Доступ к ресурсам
-
+ Добавить файл/папку
-
+ Добавить Wnd класс
-
+ Добавит путь IPC
-
+ Добавить ключ реестра
-
+ Добавить COM объект
-
+ Восстановление файлов
-
+ Быстрое восстановление
-
+ Добавить папку
-
+ Немедленное восстановление
-
+ Игнорировать расширение
-
+ Игнорировать папку
-
+ Включить запрос немедленного восстановления, чтобы иметь возможность восстанавливать файлы сразу после их создания.
-
+ Вы можете исключить папки и типы файлов (или расширения файлов) из немедленного восстановления.
-
+ При вызове функции быстрого восстановления следующие папки будут проверяться на наличие изолированного содержимого.
-
+ Расширенные настройки
-
+ Разное
-
+ Не изменять имена классов окон, созданные изолированными программами
-
+ Не запускать изолированные службы с использованием системного токена (рекомендуется)
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Защитить целостность самой песочницы
-
+ Отбросить критические привилегии от процессов, работающих с токеном SYSTEM
-
-
+
+ (Критично для безопасности)
-
+ Защитить изолированные процессы SYSTEM от непривилегированных процессов
-
+ Принудительное использование пользовательских фиктивных файлов манифеста (устаревшее поведение)
-
+ Специфика правила - это мера того, насколько хорошо данное правило соответствует определенному пути, проще говоря, специфичность - это длина символов от начала пути до последней совпадающей подстроки без подстановочных знаков включительно. Правило, которое соответствует только таким типам файлов, как "*.tmp" будет иметь наивысшую специфичность, так как всегда будет соответствовать всему пути к файлу.
Уровень соответствия процесса имеет более высокий приоритет, чем специфичность, и описывает, как правило применяется к данному процессу. Правила, применяемые по имени процесса или группе, имеют самый строгий уровень соответствия, за которым следует соответствие по отрицанию (т.е. правила, применяемые ко всем процессам, кроме данного), в то время как самые низкие уровни соответствия имеют глобальные совпадения, то есть правила, которые применяются к любому процессу.
-
+ Приоритет правил на основе их специфики и уровня соответствия процесса
-
+ Режим конфиденциальности, блокировка доступа к файлам и реестру для всех мест, кроме общих системных
-
+ Режим доступа
-
+ Когда включен режим конфиденциальности, изолированные процессы смогут читать только C:\Windows\*, C:\Program Files\* и части реестра HKLM, для всех остальных мест потребуется явный доступ, для чтения и/или записи. В этом режиме всегда включена специфика правила.
-
+ Правила политик
-
+ Применить директивы открытия файлов и ключей только к двоичным файлам, расположенным вне песочницы.
-
+ Запускать изолированный RpcSs как СИСТЕМНЫЙ процесс (не рекомендуется)
-
+ Разрешить доступ к диспетчеру управления службами только привилегированным процессам
-
-
+
+ Совместимость
-
+ Добавить изолированные процессы к объектам задания (рекомендуется)
-
+ Эмуляция оконной станции в песочнице для всех процессов
-
+ Разрешить использование вложенных объектов заданий (работает в Windows 8 и новее)
-
+ Изоляция безопасности за счет использования сильно ограниченного токена процесса - это основное средство Sandboxie для принудительного применения ограничений песочницы, когда она отключена, песочница работает в режиме контейнера для приложения, то есть она больше не обеспечивает надежную безопасность, а только простое разделение приложений.
-
+ Разрешить изолированным программам управлять оборудованием/устройствами
-
+ Открытый доступ к диспетчеру учетных записей безопасности Windows
-
+ Открыть доступ к серверу проверки подлинности локальной системы безопасности
-
+ Отключить использование RpcMgmtSetComTimeout по умолчанию (это может решить проблемы совместимости)
-
+ Изоляция безопасности & Фильтрация
-
+ Отключить фильтрацию безопасности (не рекомендуется)
-
+ Фильтрация безопасности, используется Sandboxie для наложения ограничений на доступ к файловой системе и реестру, а также для ограничения доступа к процессам.
-
+ Приведенные ниже параметры можно безопасно использовать, если вы не предоставляете прав администратора.
-
+ Эти команды запускаются ВНЕ ПЕСОЧНИЦЫ после завершения всех процессов в песочнице.
-
+ Скрыть процессы
-
+ Добавить процесс
-
+ Скрыть хост-процессы от процессов, запущенных в песочнице.
-
+ Не позволять изолированным процессам видеть процессы, запущенные в других песочницах
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+ При завершении песочницы
-
+ Пользователи
-
+ Ограничить мониторинг доступа к ресурсам только администраторам
-
+ Добавить пользователя
-
+
@@ -7600,27 +7616,27 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Примечание. Параметры принудительных программ и принудительных папок для песочницы не применяются к учетным записям пользователей, которые не могут использовать эту песочницу.
-
+ Трассировка
-
+ Трассировка pipe
-
+ API-вызов Trace (отслеживает все хуки SBIE)
-
+ Записывать все SetError в журнал трассировки (создает много выходных данных)
-
+ Записывать вывод отладки в журнал трассировки
@@ -7630,132 +7646,132 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Всегда показывать эту песочницу в системном лотке (закреплено)
-
+ Улучшения безопасности
-
+ Использовать исходный токен только для разрешенных системных вызовов NT
-
+ Ограничить доступ к драйверу/устройству только утвержденными
-
+ Включить все улучшения безопасности (сделать защищенную песочницу)
-
+ Разрешить чтение памяти процессов вне песочницы (не рекомендуется)
-
+ Выдать сообщение 2111, когда доступ к процессу запрещен
-
+ Триггеры
-
+ Событие
-
-
-
-
+
+
+
+ Выполнить комманду
-
+ Запустить службу
-
+ Эти события выполняются каждый раз при запуске песочницы
-
+ При запуске песочницы
-
-
+
+ Эти команды запускаются вне песочницы непосредственно перед удалением содержимого песочницы
-
+ Применение обходного пути ElevateCreateProcess (устаревшее поведение)
-
+ Использовать обходной путь для объектов рабочего стола для всех процессов
-
+ Эти команды выполняются только при инициализации песочницы. Чтобы они снова запустились, содержимое песочницы должно быть удалено.
-
+ При инициализации песочницы
-
+ Здесь вы можете указать действия, которые будут выполняться автоматически при различных событиях песочницы.
-
+ При удалении контента
-
+ Защитить процессы в этой песочнице от доступа указанными неизолированным хост-процессами.
-
-
+
+ Процесс
-
+ Добавить опцию
-
+ Здесь вы можете настроить расширенные параметры для каждого процесса, чтобы улучшить совместимость и/или настроить поведение песочницы.
-
+ Опция
-
+
вместо "*".
-
+ Трассировка файлов
-
+ Отключить монитор доступа к ресурсам
-
+ Трассировка IPC
-
+ Трассировка GUI
-
+ Монитор доступа к ресурсам
-
+ Отслеживание доступа
-
+ Трассировка COM класса
-
+ Трассировка ключей
-
-
+
+ Сетевой брандмауэр
-
+ Отладка
-
+ ВНИМАНИЕ, эти параметры могут отключить основные гарантии безопасности и нарушить безопасность песочницы!!!
-
+ Эти параметры предназначены для устранения проблем совместимости, не используйте их в продакшен среде.
-
+ Шаблоны приложений
-
+ Категории фильтров
-
+ Текстовый фильтр
-
+ Добавить шаблон
-
+ Этот список содержит большое количество шаблонов для улучшения совместимости песочницы
-
+ Категория
-
+ Папки шаблонов
-
+
@@ -7879,83 +7895,88 @@ Please note that this values are currently user specific and saved globally for
Обратите внимание, что эти значения в настоящее время специфичны для пользователя и сохраняются глобально для всех песочниц.
-
-
+
+ Значение
-
+ Доступность
-
+ Чтобы компенсировать потерю защиты, обратитесь к странице настроек Сброс прав в группе настроек Ограничения.
-
+ Чтение экрана: JAWS, NVDA, Window-Eyes, System Access
-
+ Различные опции
-
+ Эта команда будет запущена до того, как содержимое песочницы будет удалено
-
+ При восстановлении файлов
-
+ Эта команда будет запущена перед восстановлением файла, и путь к файлу будет передан в качестве первого аргумента. Если эта команда возвращает значение, отличное от 0, восстановление будет заблокировано
-
+ Запустить проверку файлов
-
+ Трассировка системных вызовов (создает много выходных данных)
-
+ Шаблоны
-
+
+
+
+
+
+ Следующие настройки позволяют использовать Sandboxie в сочетании с программным обеспечением специальных возможностей. Обратите внимание, что когда действуют эти настройки, определенная степень защиты Sandboxie обязательно теряется.
-
+ Редактировать раздел ini
-
+ Редактировать ini
-
+ Отмена
-
+ Сохранить
@@ -7987,27 +8008,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ ОК
-
+ Применить
-
+ Отмена
-
+ Да (&Y)
-
+ Нет (&N)
@@ -8181,42 +8202,42 @@ Please note that this values are currently user specific and saved globally for
Показывать уведомление в трее при запуске автоматических операций с песочницами
-
+ Расширенная конфигурация
-
+ Песочница <a href="sbie://docs/filerootpath">корень файловой системы</a>:
-
+ Очистить пароль, когда главное окно сворачивается
-
+ Активировать фильтрацию объектов в режиме ядра
-
+ Песочница <a href="sbie://docs/ipcrootpath">корень ipc</a>:
-
+ Песочница по умолчанию
-
+ Защита конфигурации
-
+ ...
@@ -8297,127 +8318,127 @@ Please note that this values are currently user specific and saved globally for
Опции интерфейса
-
+ Шрифт редактора Ini
-
+ Параметры графики
-
+ Выбор шрифта
-
+ Сброс шрифта
-
+ №
-
+ Менеджер дополнений
-
+ Опциональные дополнения
-
+ Sandboxie-Plus предлагает множество опций и поддерживает множество расширений. На этой странице вы можете настроить интеграцию дополнений, плагинов и других сторонних компонентов. Дополнительные компоненты можно загрузить из Интернета, а для некоторых установок могут потребоваться права администратора.
-
+ Статус
-
+ Описание
-
+ <a href="sbie://addons">обновить список дополнений сейчас</a>
-
+ Установить
-
+ Sandboxie поддержка
-
+ Сторонники проекта Sandboxie-Plus могут получить <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертификат сторонника</a>. Это похоже на лицензионный ключ, но для замечательных людей, использующих программное обеспечение с открытым исходным кодом. :-)
-
+ Поддержание Sandboxie в актуальном состоянии со скользящими выпусками Windows и совместимости со всеми веб-браузерами - это бесконечная работа. Вы можете поддержать разработку, <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">внеся непосредственный вклад в проект</a> и проявив свою поддержку <a href= "https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">купив сертификат сторонника</a>, стать покровителем <a href="https://sandboxie-plus. com/go.php?to=patreon">подписавшись на Patreon</a> или через <a href="https://sandboxie-plus.com/go.php?to=donate">пожертвование PayPal</ a>.<br />Ваша поддержка играет жизненно важную роль в развитии и обслуживании Sandboxie.
-
+ Песочница <a href="sbie://docs/keyrootpath">корень реестра</a>:
-
+ Возможности песочницы
-
+ Пресеты Sandboxie.ini
-
+ Изменить пароль
-
+ Для внесения изменений необходимо ввести пароль
-
+ Только учетная запись администратора может вносить изменения
-
+ Следить за изменениями в Sandboxie.ini
-
+ Шаблоны приложений
-
+ Совместимость приложений
-
+ Только учетная запись администратора может использовать команду 'Приостановить принудительные программы'
@@ -8427,7 +8448,7 @@ Please note that this values are currently user specific and saved globally for
Выполнять операции с песочницами асинхронно, когда это возможно (например, удаление содержимого)
-
+ Корневая папка портативной версии
@@ -8457,12 +8478,12 @@ Please note that this values are currently user specific and saved globally for
Добавить 'Запустить без песочницы' в контекстное меню
-
+ Использовать платформу фильтрации Windows для ограничения доступа к сети
-
+ Перехватить выбранные системные вызовы Win32k, чтобы включить ускорение графического процессора (экспериментально)
@@ -8502,7 +8523,7 @@ Please note that this values are currently user specific and saved globally for
Использовать большие значки в списке песочниц *
-
+ Масштабирование с высоким разрешением
@@ -8517,12 +8538,12 @@ Please note that this values are currently user specific and saved globally for
Использовать тёмную тему
-
+ Масштабирование шрифта
-
+ (требуется перезагрузка)
@@ -8537,7 +8558,7 @@ Please note that this values are currently user specific and saved globally for
Показывать окно восстановления поверх других
-
+ %
@@ -8553,45 +8574,45 @@ Please note that this values are currently user specific and saved globally for
-
-
-
-
+
+
+
+ Имя
-
+ Путь
-
+ Удалить программу
-
+ Добавить программу
-
+ Когда любая из следующих программ запускается вне любой песочницы, Sandboxie выдаст сообщение SBIE1301.
-
+ Добавить папку
-
+ Запретить запуск перечисленных программ в этой системе
-
+ Сообщение о проблеме 1308, когда программа не запускается
@@ -8631,22 +8652,22 @@ Please note that this values are currently user specific and saved globally for
Использовать новый макет диалогового окна конфигурации *
-
+ Контроль программ
-
+ Оповещения программы
-
+ Выдать сообщение 1301, когда принудительные процессы были отключены
-
+ Конфигурация Sandboxie
@@ -8682,8 +8703,8 @@ Please note that this values are currently user specific and saved globally for
-
-
+
+ Удалить
@@ -8693,47 +8714,47 @@ Please note that this values are currently user specific and saved globally for
Командная строка
-
+ Параметры Ini
-
+ Внешний Ini-редактор
-
+ Версия
-
+ Конфигурация дополнений
-
+ Включить создание Ram Disk
-
+ килобайт
-
+ Поддержка образа диска
-
+ Ограничение ОЗУ
-
+ <a href="addon://ImDisk">Установить ImDisk</a> драйвер, чтобы включить поддержку Ram Disk и Disk Image.
@@ -8783,239 +8804,249 @@ Please note that this values are currently user specific and saved globally for
Скрыть в системный лоток
-
+
+
+
+
+
+ Назначить букву диска Ram Disk
-
+ Если Ram Disk уже смонтирован, вам необходимо отключить его, чтобы эта опция вступила в силу.
-
+ * вступает в силу при создании диска
-
+ Поддержка и бновления
-
+ Срок действия этого сертификата сторонника истек. Пожалуйста, <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">получите обновленный сертификат</a>.
-
+ Получить
-
+ Получить/улучшить/обновить сертификат, используя серийный номер
-
+ SBIE_-_____-_____-_____-_____
-
+ <a href="https://sandboxie-plus.com/go.php?to=sbie-use-cert">Руководство по использованию сертификата</a>
-
+ Sandboxie cредство обновления
-
+ Поддерживать список дополнений в актуальном состоянии
-
+ Настройки обновления
-
+ Канал инсайдер предлагает ранний доступ к новым функциям и исправлениям ошибок, которые в конечном итоге будут опубликованы, а также ко всем соответствующим улучшениям из стабильного канала.
В отличие от канала предварительного просмотра, он не включает непроверенные, потенциально критические или экспериментальные изменения, которые могут быть не готовы для более широкого использования.
-
+ Поиск в канале инсайдер
-
+ Новые полные установщики из выбранного канала выпуска.
-
+ Полные обновления
-
+ Периодически проверять наличие новых версий Sandboxie-Plus
-
+ Подробнее об <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">инсайдер канале</a>
-
+ Обновлять сценарии устранения неполадок
-
+ Интервал проверки обновлений
-
+ Песочница по умолчанию:
-
+ Использовать логин Sandboxie вместо анонимного токена
-
+ Песочница с USB-накопителем
-
+ Том
-
+ Информация
-
+ Песочница для USB-накопителей:
-
+ Автоматически помещать в песочницу все подключенные USB-накопители
-
+ В будущем не проверять совместимость программного обеспечения
-
+ Включить
-
+ Отключить
-
+ Sandboxie обнаружила в вашей системе следующие программы. Нажмите OK, чтобы применить настройки конфигурации, которые улучшат совместимость с этими приложениями. Эти параметры конфигурации будут действовать во всех существующих песочницах и в любых новых песочницах.
-
+ Локальные шаблоны
-
+ Добавить шаблон
-
+ Текстовый фильтр
-
+ Этот список содержит созданные пользователем настраиваемые шаблоны для параметров песочницы
-
+
+
+
+
+
+ Редактировать раздел ini
-
+ Сохранить
-
+ Редактировать ini
-
+ Отмена
-
+ Инкрементные обновления
-
+ Хотпатчи для установленной версии, обновления Templates.ini и переводов.
-
+ Канал Preview содержит последние предварительные выпуски GitHub.
-
+ Канал Stable содержит последние стабильные выпуски GitHub.
-
+ Поиск в канале Stable
-
+ Поиск в канале Preview
-
+ В будущем не уведомлять об истечении срока действия сертификата
-
+ Введите здесь сертификат сторонника
diff --git a/SandboxiePlus/SandMan/sandman_sv_SE.ts b/SandboxiePlus/SandMan/sandman_sv_SE.ts
index f49b5dae..ec8aae37 100644
--- a/SandboxiePlus/SandMan/sandman_sv_SE.ts
+++ b/SandboxiePlus/SandMan/sandman_sv_SE.ts
@@ -937,12 +937,12 @@ Fel: %1
CCompletePage
-
+ Felsökning avslutad
-
+
@@ -1325,14 +1325,12 @@ Du kan använda %ANVÄNDARE% för att spara varje användares sandlåda till en
CMultiErrorDialog
-
- Sandboxie-Plus - Fel
+ Sandboxie-Plus - Fel
-
- Meddelande
+ Meddelande
@@ -1648,44 +1646,44 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Addera %1 mall
-
+ Search for OptionsSök efter alternativ
-
+ Låda: %1
-
+ Mall: %1
-
+ Global: %1
-
+ Standard: %1
-
+ Denna sandlåda har blivit raderad därför kan konfigurationen inte sparas.
-
+ Vissa ändringar har inte sparats ännu, vill du verkligen stänga detta alternativsfönster?
-
-
+
+
@@ -1697,7 +1695,7 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Grupp: %1
-
+ För in program:
@@ -1848,11 +1846,11 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Välj katalog
-
+
-
-
+
+
@@ -1888,7 +1886,7 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
+
@@ -1959,57 +1957,57 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Sandlåda IPC-root
-
+ Addera speciellt alternativ:
-
-
+
+ Vid start
-
-
-
-
-
+
+
+
+
+ Kör kommandot
-
+ Starta tjänst
-
+ Vid start
-
+ Vid filåterställande
-
+ Vid radering av innehåll
-
+ Vid terminering
-
+ Vänligen för in ett programfilsnamn för att tillåta tillgång till denna sandlåda
-
+ Vänligen för in ett programfilsnamn för att neka tillgång till denna sandlåda
@@ -2018,16 +2016,16 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Vid raderande
-
-
-
-
-
+
+
+
+
+ Vänligen för in kommandoraden som ska verkställas
-
+ Vänligen för in en tjänstidentifierare
@@ -2036,12 +2034,12 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Vänligen ange ett programfilsnamn
-
+ Neka
-
+ %1 (%2)
@@ -2353,7 +2351,7 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Blockera genom att neka tillgång till nätverksenheter
-
+
@@ -2467,17 +2465,17 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Fel: %1
-
+ Vill du verkligen radera de(n) valda lokala mall(arna)(en)?
-
+ Endast lokala mallar kan tas bort!
-
+
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.Någonting misslyckades internt, denna felsökningsprocedur kan inte fortsätta. Du kan klicka på Nästa för att skicka en problemrapport.
-
+
@@ -2989,22 +2987,22 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
CSandBox
-
+ Väntar på mapp: %1
-
+ Raderar mapp: %1
-
+ Sammanför mappar: %1 >> %2
-
+ Slutför sammanförande av ögonblicksbilder...
@@ -3095,7 +3093,7 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
-
+ Sandboxie-Plus v%1
@@ -3105,27 +3103,27 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
Klicka för att nerladda uppdateringen
-
+ Ingen tvingande process
-
+ %1 Katalog: %2
-
+ Applikation
-
+ Installation
-
+ Utvärderingsperioden har utgått!
@@ -3139,52 +3137,52 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
Importerar :%1
-
+ Inget återställande
-
+ Inga meddelanden
-
+ Underhållsoperation avklarad
-
+ Lyckades inte skapa lådarkivet
-
+ Lyckades inte packa upp lådarkivet
-
+ Den valda 7z-filen är INTE ett lådarkiv
-
+ Återställ kolumner
-
+ Kopiera cellen
-
+ Kopiera raden
-
+ Kopiera panelen
@@ -3471,7 +3469,7 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
-
+ Om Sandboxie-Plus
@@ -3639,11 +3637,11 @@ Vill du göra rensningen?
-
-
-
-
-
+
+
+
+
+ Visa inte detta meddelande igen.
@@ -3669,7 +3667,7 @@ This box prevents access to all user data locations, except explicitly granted i
Denna låda förhindrar tillgång till alla användardataplatser, förutom de uttryckligt tillåtna i resurstillgångsalternativen.
-
+ Okänd operation '%1' begärd via kommandorad
@@ -3693,37 +3691,37 @@ Denna låda förhindrar tillgång till alla användardataplatser, förutom de ut
Vill du kontrollera om det finns en ny version av Sandboxie-Plus?
-
+ Några kompatibilitetsmallar (%1) saknas, troligen raderade, vill du ta bort dem från alla lådor?
-
+ Rensade borttagna mallar...
-
+ Verkställer "Vidlådraderande": %1
-
+ Autoraderar %1 innehåll
-
+ Tog bort genväg: %1
-
+ Adderade genväg till: %1
-
+ Autoraderar innehåll i %1
@@ -3732,17 +3730,17 @@ Denna låda förhindrar tillgång till alla användardataplatser, förutom de ut
Installationskatalog: %1
-
+ Sandboxie-Plus version: %1 (%2)
-
+ Nuvarande konfiguration: %1
-
+ Datakatalog: %1
@@ -3751,7 +3749,7 @@ Denna låda förhindrar tillgång till alla användardataplatser, förutom de ut
- Portabel
-
+
@@ -3760,45 +3758,45 @@ Ja väljer: %1
Nej väljer: %2
-
+ för personlig användning
-
+ - för icke-kommersiell användning ENDAST
-
+ Standardsandlåda hittades inte; skapar: %1
-
+ Vill du att installationsguiden blir utelämnad?
-
+ - INTE ansluten
-
+ Programmet %1 startad i låda %2 kommer att avslutas om 5 minuter för att lådan konfigurerades att använda funktioner exklusivt tillgängliga för projektsupportrar.
-
+ Låda %1 är konfigurerad att använda funktioner exklusivt tillgängliga för projektsupportrar, dessa inställningar kommer ignoreras.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Bli en projektsupporter</a>, och få ett <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supportercertifikat</a>
@@ -3811,7 +3809,7 @@ Nej väljer: %2
%1 (%2):
-
+ Den valda funktionsuppsättningen är endast tillgänglig för projektsupportrar. Processer startade i en låda med denna funktionsuppsättning aktiverad utan ett supportercertifikat kommer att avslutas efter 5 minuter.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Bli en projektsupporter</a>, och få ett <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supportercertifikat</a>
@@ -3820,22 +3818,22 @@ Nej väljer: %2
Evalueringsperioden har utgått!
-
+ Supportercertifikatet är inte giltigt för detta bygge, vänligen skaffa ett uppdaterat certifikat
-
+ Supportercertifikatet har utgått%1, vänligen skaffa ett uppdaterat certifikat
-
+ , men det förblir giltigt för nuvarande bygge
-
+ Supportercertifikatet utgår om %1 dagar, vänligen skaffa ett uppdaterat certifikat
@@ -3895,17 +3893,17 @@ Nej väljer: %2
-
+ Endast administratörer kan ändra konfigurationen.
-
+ Vänligen för in konfigurationslösenordet.
-
+ Inloggning misslyckades: %1
@@ -3918,7 +3916,7 @@ Nej väljer: %2
7-zip arkiv (*.7z)
-
+ Vill du avsluta alla processer i alla sandlådor?
@@ -3927,39 +3925,39 @@ Nej väljer: %2
Avsluta alla utan att fråga
-
+ Vänligen för in varaktigheten, i sekunder, för inaktivering av tvingade programs regler.
-
+ Sandboxie-Plus startades i portabelt läge och det behöver skapa nödvändiga tjänster. Detta ger förfrågan om administrativa rättigheter.
-
+ FÖRSIKTIG: En annan agent (troligen SbieCtrl.exe) hanterar redan denna Sandboxie-session, vänligen stäng den först och återanslut för att ta över.
-
-
-
+
+
+ Sandboxie-Plus - Fel
-
+ Lyckades inte stoppa alla Sandboxie-komponenter
-
+ Lyckades inte starta krävda Sandboxie-komponenter
-
+ Underhållsoperationen misslyckades (%1)
@@ -3979,7 +3977,7 @@ Nej väljer: %2
-
+ Sandboxie-Plus Insider [%1]
@@ -4096,27 +4094,27 @@ Nej väljer: %2
<br /><br />Denna låda <a href="sbie://docs/privacy-mode">förhindrar tillgång till alla användardataplatser</a> , förutom de uttryckligen tillåtna alternativen i Resurstillgång.
-
+ USB-sandlåda hittades inte; skapar: %1
-
+ Uppdaterade genväg till :%1
-
+ Verkställer VidLådTerminering:%1
-
+ Autoborttager sandlåda %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -4125,118 +4123,118 @@ Please check if there is an update for sandboxie.
Vänligen kontrollera om det finns en uppdatering för Sandboxie.
-
+
-
+ Ditt windows-bygge %1 överstiger de nuvarande kända supportförmågorna av din Sandboxie-version, Sandboxie kommer försöka använda de senast-kända kompensationerna vilket kan orsaka systeminstabilitet.
-
+ Lyckades inte konfigurera snabbkommando %1, fel:%2
-
-
-
+
+
+ (%1)
-
+ Lådan %1 är konfigurerad att använda egenskaper exklusivt tillgängliga till projektsupportrar.
-
+ Lådan %1 är konfigurerad att använda egenskaper som kräver ett <b>avancerat<b> supportercertifikat.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Uppgradera ditt certifikat</a> för att låsa upp avancerade egenskaper.
-
+ Den valda egenskapen kräver ett <b>avancerat<b> supportercertifikat.
-
+ De valda egenskaperna är endast tillgängliga för projektsupportrar.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">bli en projektsupporter</a>, och mottag ett <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supportercertifikat</a>
-
+ Certifikatet du försöker använda har blockerats, vilket menas att det har blivit ogiltigt av en orsak. Varje försök att använda det innebär ett brytande av dess användarvillkor!
-
+ Certifikatssignaturen är ogiltig!
-
+ Certifikatet är inte tillämpligt för denna produkt.
-
+ Certifikatet är nod-låst.
-
+ Supportcertifikatet är inte giltigt.
Fel: %1
-
-
+
+ Fråga inte i framtiden
-
+ Vill du avsluta alla processer i krypterade sandlådor, och avmontera dem?
-
+ <b>FEL:</b> Sandboxie-Plus hanterare (SandMan.exe) har inte en giltig signatur (SandMan.exe.sig). Vänligen nedladda en betrodd utgåva från den <a href="https://sandboxie-plus.com/go.php?to=sbie-get">officiella nedladdningssidan</a>.
-
+ Verkställer underhållsoperationen, vänligen vänta...
-
+ I användargränssnittet i Plus, har denna funktion integrerats in i huvudsandlådans listöversikt.
-
+ Vid användning av låd-/gruppsnabbmenyn, kan du flytta lådor och grupper till andra grupper. Du kan också dra och släppa för att flytta omkring poster. Alternativt, du kan också använda piltangenterna medans du håller ner ALT för flytta poster upp och ner inom dess grupp.<br />Du kan skapa nya lådor och grupper från menyn Sandlåda.
-
+ Vill du också återställa dolda meddelandelådor (Ja), eller bara alla loggmeddelanden (Nej)?
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4245,259 +4243,259 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs nästa gång Sandboxie uppdateras.
-
+ Ändringarna tillämpas automatiskt närhelst filen sparas.
-
+ Ändringarna tillämpas automatiskt så fort som redigeraren stängs.
-
+ Sandboxie-konfigurationen har laddats om
-
+ Felstatus: 0x%1 (%2)
-
+ Okänd
-
+ Administratörsrättigheter krävs för denna operation.
-
+ Lyckades inte verkställa: %1
-
+ Lyckades inte ansluta till drivrutinen
-
+ Lyckades inte kommunicera med Sandboxies tjänst: %1
-
+ En inkompatibel Sandboxie %1 hittades. Kompatibla versioner: %2
-
+ Kan inte finna Sandboxies installationssökväg.
-
+ Lyckades inte kopiera konfigurationen från sandlåda %1: %2
-
+ En sandlåda med namnet %1 existerar redan
-
+ Lyckades inte radera sandlåda %1: %2
-
+ Sandlådenamnet kan inte vara längre än 32 tecken.
-
+ Sandlådenamnet kan inte vara ett enhetsnamn.
-
+ Sandlådenamnet kan bara innehålla bokstäver, siffror och understrykningar vilka visas som utrymmen.
-
+ Lyckades inte avsluta alla processer
-
+ Raderingsskydd är aktiverat för sandlådan
-
+ Alla sandlådeprocesser måste stoppas innan lådinnehållet kan raderas
-
+ Fel vid radering av sandlådemapp: %1
-
+ A all processes in a sandbox must be stopped before it can be renamed.Alla processer i en sandlåda behöver stoppas innan den kan namnändras.
-
+ En sandlåda måste tömmas innan den kan raderas.
-
+ Lyckades inte flytta katalog '%1' till '%2'
-
+ Lyckades inte flytta lådavbild %1 till %2
-
+ Denna ögonblicksbildoperation kan inte utföras medan processer fortfarande kör i lådan.
-
+ Lyckades inte skapa katalog för ny ögonblicksbild
-
+ Lyckades inte kopiera låddatafiler
-
+ Ögonblicksbild hittades inte
-
+ Fel vid sammanförande av ögonblicksbildkataloger '%1' med '%2'. Ögonblicksbilden har inte blivit helt sammanförd.
-
+ Lyckades inte ta bort gammal ögonblicksbildkatalog '%1'
-
+ Kan inte ta bort en ögonblicksbild som delas av flera senare ögonblicksbilder
-
+ Lyckades inte ta bort gamla låddatafiler
-
+ Du är inte berättigad att uppdatera konfigurationen i sektion '%1'
-
+ Lyckades inte ange konfigurationsinställning %1 i sektion %2: %3
-
+ Kan inte skapa ögonblicksbild av en tom sandlåda
-
+ En sandlåda med det namnet existerar redan
-
+ Konfigurationslösenordet får inte vara längre än 64 tecken
-
+ Operationen avbröts av användaren
-
+ The content of an un mounted sandbox can not be deletedInnehållet i en omonterad sandlåda kan inte raderas
-
+ %1
-
+ Importera/Exportera ej tillgängligt, 7z.dll kunde ej laddas
-
+ Vill du öppna %1 i en sandlådad eller osandlådad webbläsare?
-
+ Sandlådad
-
+ Osandlådad
-
+ Skiftlägeskänslig
-
+ RegExp
-
+ Markera
-
+ Stäng
-
+ &Hitta ...
-
+ Alla kolumner
@@ -4506,7 +4504,7 @@ Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs
Misslyckades att skapa lådarkiv
-
+ Lyckades inte öppna 7z-arkivet
@@ -4519,12 +4517,12 @@ Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs
Den valda 7z-filen är INTE ett lådarkiv
-
+ Okänd felstatus: 0x%1
-
+ Operationen misslyckades för %1 post(er).
@@ -4533,7 +4531,7 @@ Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs
Vill du öppna %1 i en sandlådad (Ja) eller osandlådad (Nej) webbläsare?
-
+ Kom ihåg valet till senare.
@@ -4594,23 +4592,23 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
<p>En Sandboxie-Plus uppdatering har nerladdats till följande plats:</p><p><a href="%2">%1</a></p><p>Vill du påbörja installationen? Om några program körs sandlådade, kommer de avslutas.</p>
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>Om Sandboxie-Plus</h3><p>Version %1</p><p>Upphovsrättigheter (c) 2020-2024 av DavidXanatos</p>
-
+ Denna kopia av Sandboxie-Plus är certifierad för: %1
-
+ Sandboxie-Plus är gratis för personlig och icke-kommersiell användning.
-
+ Sandboxie-Plus är en öppen källa fortsättning av Sandboxie.<br />Besök <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> för mer information.<br /><br />%3<br /><br />Drivrutinsversion: %1<br />Funktioner: %2<br /><br />Ikoner från <a href="https://icons8.com">icons8.com</a>
@@ -5596,17 +5594,17 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
CSelectBoxWindow
-
+ Sandboxie-Plus - Kör sandlådad
-
+ Är du säker på att du vill köra programmet utanför sandlådan?
-
+ Vänligen välj en sandlåda.
@@ -5723,21 +5721,21 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
%1
-
+ Search for SettingsSök efter inställningar
-
-
-
+
+
+ Kör &sandlådad
-
+ Sandlådad webbläsare
@@ -5785,53 +5783,53 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Nerladda & installera
-
+ Bläddra efter program
-
+ Addera %1 mall
-
+ Välj typsnitt
-
+ Återställ typsnitt
-
+ %0, %1 pt
-
+ Vänligen för in meddelande
-
+ Välj program
-
+ Verkställare (*.exe *.cmd)
-
-
+
+ Vänligen för in en menytitel
-
+ Vänligen för in ett kommando
@@ -5840,12 +5838,12 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Detta supportercertifikat har utgått, vänligen <a href="sbie://update/cert">skaffa ett uppdaterat certifikat</a>.
-
+ <br /><font color='red'>Plus-egenskaper kommer inaktiveras om %1 dagar.</font>
-
+ <br /><font color='red'>För nuvarande bygge förblir Plus-egenskaperna aktiverade</font>, men du har inte längre tillgång till Sandboxie-Live tjänsterna, inklusive kompatibilitetsuppdateringar och felsökningsdatabasen.
@@ -5854,7 +5852,7 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
<br /><font color='red'>För detta bygge kvarstår Plus-egenskaperna aktiverade.</font>
-
+ <br />Plus-egenskaperna är inte längre aktiverade.
@@ -5868,27 +5866,27 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Supportercertifikat krävs
-
+ Kör &osandlådad
-
+ Detta ser inte ut som ett certifikat. Vänligen för in hela certifikatet, inte bara en del av det.
-
+ Detta certifikat är tyvärr inte giltigt för nuvarande bygge, du behöver skaffa ett nytt certifikat eller nedgradera till ett tidigare bygge.
-
+ Även fast detta certifikat har utgått, för nuvarande installerad version förblir Plus-egenskaperna aktiverade. Däremot, kommer du inte längre ha tillgång till Sandboxie-Live tjänsterna, inklusive kompatibilitetsuppdateringar och felsökningsdatabasen på nätet.
-
+ Detta certifikat har tyvärr utgått, du behöver skaffa ett nytt certifikat.
@@ -5902,22 +5900,22 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Detta certifikat är tyvärr föråldrat.
-
+ kilobytes (%1)
-
+ Volymen är inte ansluten
-
+ Detta supportercertifikat har utgått, vänligen <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">skaffa ett uppdaterat certifikat</a>.
-
+ Detta supportercertifikat kommer <font color='red'>upphöra om %1 dagar</font>, vänligen <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">skaffa ett uppdaterat certifikat</a>.
@@ -5926,37 +5924,37 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Hämtar certifikat...
-
+ Bidragsgivare
-
+ Evig
-
+ Företag
-
+ Personlig
-
+ Stor patreon
-
+ Patreon
-
+ Familj
@@ -5965,12 +5963,12 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Abonnemang
-
+ Utvärdering
-
+ Typ %1
@@ -5979,162 +5977,162 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Standard
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Hämtar certifikat...
-
+ Error retriving certificate: %1
-
+
-
+ Hem
-
+ Avancerad
-
+ Maxnivå
-
+ Nivå %1
-
+ Supportercertifikat krävs för tillgång
-
+ Supportercertifikat krävs för automatisering
-
+ Tack för att du stöder utvecklingen av Sandboxie-Plus.
-
+ Uppdatering tillgänglig
-
+ Installlerad
-
+ av %1
-
+ (infowebbsida)
-
+ Detta tillägg är obligatoriskt och kan inte tas bort.
-
-
+
+ Välj katalog
-
+ <a href="check">Kontrollera nu</a>
-
+ Vänligen för in det nya konfigurationslösenordet.
-
+ Vänligen återinför det nya konfigurationslösenordet.
-
+ Lösenorden stämde inte, vänligen försök igen.
-
+ Process
-
+ Mapp
-
+ Vänligen för in ett programfilsnamn
-
+ Vänligen för in mallidentifieraren
-
+ Fel: %1
-
+ Vill du verkligen radera de(n) valda lokala mall(arna)(en)?
-
+ %1 (Nuvarande)
@@ -6254,17 +6252,17 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
CSubmitPage
-
+ Skicka problemrapport
-
+ Detaljerad problembeskrivning
-
+ Bifoga Sandboxie.ini
@@ -6274,17 +6272,17 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Sandlådningskompatibilitet är beroende av konfigurationen, därav hjälper bifogning av Sandboxie.ini mycket för att finna problemet.
-
+ Sandlådningskompatibilitet är beroende av konfigurationen, därav hjälper det mycket att bifoga Sandboxie.ini-filen för att hitta problemet.
-
+ Bifoga loggar
-
+ Select partially checked state to sends only message log but no trace log.
@@ -6293,70 +6291,70 @@ Before sending you can review the logs in the main window.
Före skickandet kan du granska loggarna i huvudfönstret.
-
+ Bifoga kraschdumpar
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.En applikation kraschade under felsökningsproceduren, bifogande av kraschdumpen kan hjälpa med felsökning.
-
+ E-postadress
-
+ Du har alternativet att bistå med en e-postadress för att mottaga ett meddelande när väl en lösning för ditt problem har identifierats.
-
+ Ursäkta oss för besväret som du för närvarande upplever med Sandboxie-Plus.
-
+ Tyvärr, den automatiserade felsökningsproceduren misslyckades.
-
+ Tyvärr, det finns ingen automatiserad felsökningsprocedur tillgänglig för det specifika problem du beskrivit.
-
+ Om du vill skicka en problemrapport, vänligen granska rapporten nedan och klicka Avsluta .
-
+ Komprimerar loggar
-
+ Komprimerar dumpar
-
+ Skickar problemrapport...
-
+ Lyckades inte skicka problemrapport, fel %1
Försök skicka utan bifogad logg.
-
+ Your issue report have been successfully submitted, thank you.Din problemrapport har framgångsrikt överlämnats. Tackar.
@@ -7145,32 +7143,32 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Säkerhet
-
+ Skippa rättigheter från Administratörs- och Power Users-grupper
-
+ (Rekommenderad)
-
-
-
-
-
+
+
+
+
+ Skydda systemet från sandlådade processer
-
+ Förhöjningsbegränsningar
-
+ Säkerhetsnotering: Förhöjda applikationer körandes under övervakning av Sandboxie, med admin eller SYSTEM-tecken, har fler möjligheter att passera isoleringen och modifiera systemet utanför sandlådan.
@@ -7183,23 +7181,23 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Använd det ursprungliga tecknet endast för godkända NT-systemanrop
-
+ Note: MSI Installer Exemptions should not be required, but if you encounter issues installing a msi package which you trust, this option may help the installation complete successfully. You can also try disabling drop admin rights.Notera: Undantag för MSI-installerare ska inte krävas, men om du stöter på besvär installerandes ett MSI-paket som är pålitligt, kan detta alternativ hjälpa installationen fullföljas framgångsrikt. Du kan också försöka inaktivera skippa adminrättigheter.
-
+ BEAKTA: Vid körning under den inbyggda adiminstratören, kan processer inte skippa administrativa privilegier.
-
+ Få applikationer att tro de kör förhöjda (tillåter att köra installerare säkert)
-
+ Tillåt MSIserver att köra med ett sandlådat SYSTEM-tecken och tillämpa andra undantag om nödvändigt
@@ -7217,17 +7215,17 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Tillgångsbegränsningar
-
+ Öppna Windows autentiseringshanterare (användarläge)
-
+ Andra begränsningar
-
+ Blockera lästillgång till urklipp
@@ -7237,22 +7235,22 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Utskriftsbegränsningar
-
+ Förhindra ändring av nätverks- och brandväggsparametrar (användarläge)
-
+ Tillåt läsning av minne av osandlådade processer (inte rekommenderat)
-
+ Nätverksbegränsningar
-
+ Blockera tillgång till Print Spooler
@@ -7262,17 +7260,17 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Tillåt Print Spooler att skriva ut till filer utanför sandlådan
-
+ Blockera nätverksfiler och mappar, förutom om specifikt öppnade.
-
+ Ta bort Print Spooler-begränsningar, skrivare kan installeras utanför sandlådan
-
+ Öppna System Protected Storage
@@ -7281,39 +7279,39 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Utfärda meddelande 2111 när en processtillgång är nekad
-
+ Körmeny
-
+ Du kan konfigurera anpassade poster för sandlådans körmeny.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Namn
-
+ Kommandorad
-
+ Addera program
@@ -7323,48 +7321,73 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Lådstruktur
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Ta bort
-
+ Säkerhetsalternativ
-
+ Säkerhetshärdning
-
+ Säkerhetsisolering
-
+ Adcanced SecurityAvancerad säkerhet
@@ -7374,150 +7397,150 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Använd en Sandboxie-inloggning istället för ett anonymt tecken (experimentellt)
-
+ Annan isolering
-
+ Privilegieisolering
-
+ Sandboxie-tecken
-
+ Använda ett anpassat Sandboxie-tecken tillåter att bättre isolera individuella sandlådor från varandra, och det visar i användarkolumnen hos aktivitetshanterare namnet på lådan en process tillhör. Vissa 3:dje parts säkerhetslösningar kan dock ha problem med anpassade tecken.
-
+ Programgrupper
-
+ Addera grupp
-
-
-
-
-
+
+
+
+
+ Addera program
-
+ You can group programs together and give them a group name. Program groups can be used with some of the settings instead of program names. Groups defined for the box overwrite groups defined in templates.Du kan gruppera ihop program och ge dem ett gruppnamn. Programgrupper kan användas med några av inställningarna istället för programnamn. Grupper definierade för lådan överskriver grupper definierade i mallar.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Visa mallar
-
+ Programkontroll
-
+ Tvinga program
-
+ Tvinga program
-
+ Tvinga mapp
-
+ Säkerhetsutökningar
-
+ Använd det ursprungliga tecknet endast för godkända NT systemanrop
-
+ Begränsa drivrutins-/enhetstillgång till endast godkänd en gång
-
+ Aktivera alla säkerhetsutökningar (skapa säkerhetshärdad låda)
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Typ
-
-
-
+
+
+ Sökväg
-
+ Program införda här, eller program startade från införda platser, förs in i denna sandlåda automatiskt, förutom om de är uttryckligt startade i en annan sandlåda.
-
+ Utbrytarprogram
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.Program införda här kommer tillåtas att bryta ut ur denna låda när de startar, du kan fånga dem in i en annan låda. Till exempel att alltid ha din webbläsare öppen i en dedikerad låda. Denna funktion kräver att ett giltigt supportercertifikat är installerat.
-
-
+
+ Stoppa beteendet
@@ -7541,32 +7564,32 @@ If leader processes are defined, all others are treated as lingering processes.<
Om ledarprocesser är definierade, behandlas alla andra som kvardröjande program.
-
+ Startbegränsningar
-
+ Utfärda meddelande 1308 när ett program inte lyckas starta
-
+ Tillåt endast valda program att starta i denna sandlåda. *
-
+ Förhindra valda program från att starta i denna sandlåda.
-
+ Tillåt alla program att starta i denna sandlåda.
-
+ * Notera: Program installerade till denna sandlåda kommer inte att kunna starta alls.
@@ -7575,37 +7598,37 @@ Om ledarprocesser är definierade, behandlas alla andra som kvardröjande progra
Internetbegränsningar
-
+ Processbegränsningar
-
+ Utfärda meddelande 1307 när ett program nekas internettillgång
-
+ Fråga användaren om att tillåta ett undantag från blockaden.
-
+ Notera: Program installerade till denna sandlåda kan inte tillgå internet alls.
-
-
-
-
-
-
+
+
+
+
+
+ Tillgång
-
+ Ange nätverks-/internettillgång för olistade processer:
@@ -7614,44 +7637,44 @@ Om ledarprocesser är definierade, behandlas alla andra som kvardröjande progra
Nätverkets brandväggsregler
-
+ Testregler, program:
-
+ Port:
-
+ IP:
-
+ Protokoll:
-
+ X
-
+ Addera regel
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Program
@@ -7733,113 +7756,113 @@ Om ledarprocesser är definierade, behandlas alla andra som kvardröjande progra
Ikon
-
+ Flytta upp
-
+ Flytta ner
-
+ Olika isoleringsegenskaper kan störa kompatibiliteten med en del appar. Om du INTE använder denna sandlåda <b> för säkerhet</b> utan för app-portabilitet, genom att ändra dessa alternativ kan du återställa kompatibilitet genom att offra lite säkerhet.
-
+ Tillgångsisolering
-
+ Avbildsskydd
-
+ Utfärda meddelande 1305 när ett program försöker ladda en sandlådad dll
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandboxFörhindra sandlådade program installerade på värden från att ladda DLL:s från sandlådan
-
+ Dll:s && förlängningar
-
+ Beskrivning
-
+ Sandboxie:s resurstillgångsregler särskiljer ofta emot programbinärer lokaliserade inuti sandlådan. OpenFilePath och OpenKeyPath fungerar bara för app-binärer lokaliserade på värden ursprungligen. För att kunna definiera en regel utan denna begränsning, måste OpenPipePath eller OpenConPath användas. Likaså, alla stängda(File|Key|Ipc)sökvägsdirektiv vilka är definierade via negation e.x. ClosedFilePath=!iexplore.exe,CUsers* kommer alltid vara stängda för binärer lokaliserade inuti en sandlåda. Båda begränsningspolicyerna kan inaktiveras på sidan Tillgångspolicy.
Detta görs för att förhindra Rogue-processer inuti sandlådan från att skapa en namnändrad kopia av sig själva och tillgå skyddade resurser. En annan exploateringsvektor är injicerandet av ett bibliotek in i en auktoriserad process för att få tillgång till allting det ges tillgång till. Användande av Host Image Protection, kan detta förhindras genom att blockera applikationer (installerade på värden) körandes inuti en sandlåda från att ladda bibliotek från sandlådan självt.
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Sandboxies funktionalitet kan utökas genom att använda valfria dll`s som kan laddas in i varje sandlådad process av SbieDll.dll vid starten, tilläggshanteraren i globala inställningar erbjuder ett antal användbara förlängningar, väl installerade kan de aktiveras här för nuvarande låda.
-
+ Inaktivera tvingad process och mapp för denna sandlåda
-
+ Utbrytarprogram
-
+ Utbrytarmapp
-
+ Inaktivera säkerhetsisolering
-
-
+
+ Lådskydd
-
+ Skydda processer i denna låda från värdprocesser
-
+ Tillåt process
-
+ Utfärda meddelande 1318/1317 när en värdprocess försöker att tillgå en sandlådad process/låd-rooten
-
+ Sandboxie-Plus är kapabelt att skapa konfidentiella sandlådor som tillhandahåller robust skydd mot oauktoriserad övervakning eller manipulerande av värdprocesser. Genom användande av en krypterad sandlådeavbild, levererar denna egenskap den högsta nivån av operativ konfidentialitet, säkerställandes säkerheten och integriteten hos sandlådade processer.
-
+ Neka process
@@ -7849,115 +7872,109 @@ Detta görs för att förhindra Rogue-processer inuti sandlådan från att skap
Tvinga skydd vid montering
- Prevents processes in the sandbox from interfering with power operation
- Förhindra sandlådade processer från att lägga sig i kraftfulla operationer
+ Förhindra sandlådade processer från att lägga sig i kraftfulla operationer
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.Förhindra processer från att fånga fönsterbilder från sandlådade fönster
-
+ Tillåt Windows-processer som är till nytta tillgång till skyddade processer
-
+ Använd en Sandboxie-inloggning istället för ett anonymt tecken
-
+ <b><font color='red'>SÄKERHETSRÅDGIVNING</font>:</b> Använda <a href="sbie://docs/breakoutfolder">Utbrytarmapp</a> och/eller <a href="sbie://docs/breakoutprocess">Utbrytarprocess</a> i kombination med Open[File/Pipe]Path-direktiv kan kompromettera säkerhet, likt användandet av <a href="sbie://docs/breakoutdocument">Utbrytardokument</a> tillåta varje * eller osäkra (*.exe;*.dll;*.ocx;*.cmd;*.bat;*.lnk;*.pif;*.url;*.ps1;etc…) förlängningar. Vänligen granska säkerhetssektionen för varje alternativ i dokumentationen före användande.
-
+ Kvardröjande program
-
+ Kvardröjande program kommer automatiskt att avslutas om de fortfarande körs efter att alla andra processer har avslutats.
-
+ Ledarprogram
-
+ Om ledarprocesser är definierade, behandlas alla andra som kvardröjande processer.
-
+ Stoppalternativ
-
+ Använd kvardröjningsöverseende
-
+ Stoppa inte kvardröjande processer med fönster
-
+ Filer
-
+ Konfigurera vilka processer som kan tillgå filer, mappar och pipes.
Öppen tillgång gäller endast programbinärer lokaliserade utanför sandlådan, du kan använda Öppna för alla istället för att göra det tillämpligt för alla program, eller ändra detta beteende i Policyfliken.
-
+ Registret
-
+ Konfigurera vilka processer som kan tillgå registret.
Öppen tillgång gäller endast programbinärer lokaliserade utanför sandlådan, du kan använda Öppna för alla istället för att göra det tillämpligt för alla program, eller ändra detta beteende i Policyfliken.
-
+ IPC
-
+ Konfigurera vilka processer som kan tillgå NT IPC objekt likt ALPC-portar och andra processers minne och kontext.
För att specificera en process, använd '$:program.exe' som sökväg.
-
+ Wnd
-
+ Wnd Class
@@ -7967,70 +7984,70 @@ För att specificera en process, använd '$:program.exe' som sökväg.
Konfigurera vilka processer som kan tillgå skrivbordsobjekt likt Windows och liknande.
-
+ COM
-
+ Class-ID
-
+ Konfigurera vilka processer som kan tillgå COM-objekt.
-
+ Använd inte virtualiserad COM, Öppen tillgång till värdars COM infrastruktur (inte rekommenderat)
-
+ Tillgångspolicyer
-
+ Tillämpa Stäng...=!<program>,... regler också till alla binärer lokaliserade i sandlådan.
-
+ Nätverksalternativ
-
-
-
+
+
+ Aktion
-
+ Port
-
+ IP
-
+ Protokoll
-
+ BEAKTA: Windows Filtering Platform är inte aktiverad med drivrutinen, därför tillämpas dessa regler endast i användarläge och kan inte påtvingas!!! Detta betyder att skadliga applikationer kan passera dem.
-
+ Resurstillgång
@@ -8039,7 +8056,7 @@ För att specificera en process, använd '$:program.exe' som sökväg.
Resurstillgångsregler
-
+ Addera Wnd Class
@@ -8052,22 +8069,22 @@ You can use 'Open for All' instead to make it apply to all programs, o
Du kan använda - Öppna för alla, istället för att tillämpa det för alla program, eller ändra detta beteende i fliken Policyer.
-
+ Addera COM-objekt
-
+ Addera reg.nyckel
-
+ Addera IPC-sökväg
-
+ Addera fil/mapp
@@ -8076,34 +8093,34 @@ Du kan använda - Öppna för alla, istället för att tillämpa det för alla p
Resurstillgångspolicyer
-
+ Regelsäregenheten är ett mått för hur väl en given regel matchar en specifik sökväg, enkelt uttryckt är säregenheten längden på tecken från början av sökvägen upp till och inkluderandes den sista matchande non-wildcard understrängen. En regel som matchar endast filtyper likt "*.tmp" skulle ha den högsta säregenheten då den alltid skulle matcha den fulla sökvägen.
Processmatchningsnivån har en högre prioritet än säregenheten och beskriver hur en regel tillämpas för en given processs. Regler tillämpade genom processnamn eller grupp har den starkaste matchningsnivån, följt av matchningen genom förnekande (d.v.s regler tillämpade till alla processer förutom den givna), medans den lägsta matchningsnivån har globala matchningar, d.v.s regler som är tillämpliga på varje process.
-
+ Prioriterar regler baserat på deras säregenhet och processmatchningsnivå
-
+ Integritetsläge, blockera fil- och registertillgång till alla platser förutom de för det generiska systemet
-
+ Tillgångsläge
-
+ När integritetsläget är aktiverat, kan sandlådade processer endast läsa C:\Windows\*, C:\Program Files\*, och delar av HKLM-registret, alla andra platser kommer behöva uttrycklig tillgång för att vara läsbara och/eller skrivbara. I detta läge, är regelsäregenhet alltid aktiverat.
-
+ Regelpolicyer
@@ -8113,47 +8130,47 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Tillämpa Stäng...=!<program>,... regler även till alla binärer lokaliserade i sandlådan.
-
+ Tillämpa fil- och nyckelöppnardirektiv endast till binärer lokaliserade utanför sandlådan.
-
+ Filåterställning
-
+ Addera mapp
-
+ Ignorera förlängning
-
+ Ignorera mapp
-
+ Aktivera meddelandet Omedelbart återställande för att kunna återställa filer så fort som de är skapade.
-
+ Du kan utesluta mappar och filtyper (eller filförlängningar) från omedelbart återställande.
-
+ När funktionen Omedelbart återställande är åberopad, kommer följande mappar bli kontrollerade för sandlådat innehåll.
-
+ Omedelbart återställande
@@ -8162,37 +8179,37 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Diverse alternativ
-
+ Avancerade alternativ
-
+ Övrigt
-
+ Efterlikna sandlådad fönsterstation för alla processer
-
+ Skippa kritiska privilegier från processer körandes med ett SYSTEM-tecken
-
+ Addera sandlådade processer till jobbobjekt (rekommenderat)
-
+ Starta inte sandlådade tjänster användandes ett SYSTEM-tecken (rekommenderas)
-
+ Skydda sandlådade SYSTEM-processer från opriviligerade processer
@@ -8201,45 +8218,45 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Öppen tillgång till COM-infrastruktur (rekommenderas inte)
-
+ Tillåt endast priviligerade processer att tillgå Service Control Manager
-
+ Tvinga användandet av anpassade modellmanifestfiler (legacy beteende)
-
-
+
+ (Säkerhetskritisk)
-
+ Starta den sandlådade RpcSs som en SYSTEM-process (rekommenderas inte)
-
+ Ändra inte fönsterklassnamn skapade av sandlådade program
-
-
+
+ Kompatibilitet
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Skydda själva sandlådans integritet
@@ -8256,7 +8273,7 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Tillåt användande av kapslade jobbobjekt (experimentell, fungerar på Windows 8 och senare)
-
+ Inaktivera användandet av RpcMgmtSetComTimeout som standard (det kan lösa kompatibilitetsproblem)
@@ -8265,17 +8282,17 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Isolering
-
+ Säkerhetsisolering genom användande av tungt begränsade processtecken är Sandboxies primära medel för att tvinga sandlådebegränsningar, när det är inaktiverat opereras lådan i applikationavdelningsläget, d.v.s den tillhandahåller inte längre tillförlitlig säkerhet, bara enkel uppdelning.
-
+ Öppna tillgång till Windows Local Security Authority
-
+ Tillåt sandlådade program att hantera hårdvara/enheter
@@ -8288,27 +8305,27 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Olika avancerade isoleringsfunktioner kan söndra kompatibiliteten med vissa applikationer. Om du INTE använder denna sandlåda <b>för säkerhet</b> utan för enkel applikationsportabilitet, genom att ändra dessa alternativ kan du återställa kompatibilitet genom att offra viss säkerhet.
-
+ Öppen tillgång till Windows Security Account Manager
-
+ Säkerhetisoleringsfiltrering
-
+ Inaktivera säkerhetsisolering (rekommenderas inte)
-
+ Säkerhetsfiltrering används av Sandboxie för att påtvinga filsystem- och registertillgångsbegränsningar, även såsom att begränsa processtillgång.
-
+ Nedan alternativ kan användas säkert när du inte beviljar adminrättigheter.
@@ -8321,57 +8338,57 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Avancerad
-
+ Addera alternativ
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Här kan du konfigurera avancerade per process alternativ för förbättrande av kompatibiliteten och/eller anpassa sandlådningsbeteende.
-
+ Alternativ
-
+ Utlösare
-
+ Händelse
-
-
-
-
+
+
+
+ Kör kommandot
-
+ Starta tjänsten
-
+ Dessa händelser verkställs varje gång en låda startas
-
+ Vid lådstart
-
-
+
+ Dessa kommandon körs OLÅDADE precis innan lådinnehållet raderas
@@ -8380,57 +8397,57 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Vid lådraderande
-
+ Dessa kommandon verkställs endast när en låda påbörjas. För att köra dem igen, måste lådinnehållet raderas.
-
+ Vid lådstart
-
+ Dessa kommandon körs OLÅDADE efter att alla processer i sandlådan har avslutats.
-
+ Här kan du specificera aktioner att verkställas automatiskt vid varierande lådhändelser.
-
+ Dölj processer
-
+ Addera process
-
+ Dölj värdprocesser från processer körandes i sandlådan.
-
+ Tillåt inte sandlådade processer att se processer som körs i andra lådor
-
+ Användare
-
+ Begränsa resurstillgångsövervakning till administratörer endast
-
+ Addera användare
@@ -8439,7 +8456,7 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Ta bort användare
-
+
@@ -8448,7 +8465,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Notera: Inställningarna Tvingade program och Tvinga mappar, för en sandlåda, gäller inte för användarkonton som inte kan använda sandlådan.
-
+ Spårning
@@ -8458,22 +8475,22 @@ Notera: Inställningarna Tvingade program och Tvinga mappar, för en sandlåda,
API call spårning (kräver att LogAPI är installerat i sbie:s katalog)
-
+ Pipe Trace
-
+ API-anropspår (spårar alla SBIE hooks)
-
+ Logga alla SetError's till spårloggen (skapar en massa utflöde)
-
+ Logga Debug Output till spårloggen
@@ -8504,48 +8521,48 @@ istället för "*".
Ntdll syscall-spår (skapar en massa utflöde)
-
+ Filspår
-
+ Inaktivera resurstillgångsövervakning
-
+ IPC-spår
-
+ GUI-spår
-
+ Resurstillgångsövervakare
-
+ Tillgångsspårning
-
+ COM-class spår
-
+ Nyckelspår
-
-
+
+ Nätverksbrandvägg
@@ -8554,27 +8571,27 @@ istället för "*".
Loggning av DNS-förfrågan
-
+ Syscall spår (skapar en logg av utdata)
-
+ Felsök
-
+ VARNING, dessa alternativ kan inaktivera kärnsäkerhetsgarantier och bryta sandlådesäkerhet!!!
-
+ Dessa alternativ är avsedda för felsökning av kompatibilitetsproblem, vänligen använd dem inte vid produktionsanvändning.
-
+ Appmallar
@@ -8583,22 +8600,22 @@ istället för "*".
Kompatibilitetsmallar
-
+ Filterkategorier
-
+ Textfilter
-
+ Addera mall
-
+ Denna lista innehåller en stor mängd av kompatibilitetsutökande sandlådemallar
@@ -8607,17 +8624,17 @@ istället för "*".
Ta bort mall
-
+ Kategori
-
+ Mallmappar
-
+
@@ -8626,13 +8643,13 @@ Please note that this values are currently user specific and saved globally for
Vänligen notera att detta värde är för tillfället användarspecifikt och sparas globalt för alla lådor.
-
-
+
+ Värde
-
+
-
+ Utfärda meddelande 2111 när en process nekas tillgång
@@ -8664,22 +8681,22 @@ istället för "*".
Tillämpa Stäng...=!<programmet>,... regler även till alla binärer lokaliserade i sandlådan.
-
+ Tillåt användning av kapslade jobbobjekt (fungerar på Windows 8 och senare)
-
+ Tillgänglighet
-
+ För att kompensera för det förlorade skyddet, vänligen konsultera inställningen Skippa rättigheter i Säkerhetsalternativ > Säkerhetshärdning > Förhöjningsbegränsningar.
-
+ Skärmläsare: JAWS, NVDA, Window-Eyes, Systemtillgång
@@ -8689,105 +8706,104 @@ istället för "*".
Delvis kontrollerad betyder förhindra lådborttagning men inte innehållsradering.
- Block process from taking screenshots of windows not belonging to the containing sandbox
- Förhindra sandlådade processer från att använda allmänna metoder för att fånga fönsterbilder
+ Förhindra sandlådade processer från att använda allmänna metoder för att fånga fönsterbilder
-
+ Konfigurera vilka processer som kan tillgå skrivbordsobjekt såsom Windows och liknande.
-
+
-
+
-
+
-
+
-
+ Omedelbart återställande
-
+ Olika alternativ
-
+ Tillämpa ElevateCreateProcess-lösningen (legacy beteende)
-
+ Använd skrivbordsobjektlösningen för alla processer
-
+ När den globala snabbtangenten trycks 3 gånger i kort följd kommer detta undantag att ignoreras.
-
+ Exkludera denna sandlåda från att bli avslutad när Avsluta alla processer är anropat.
-
+ Vid Låd Terminerande
-
+ Detta kommando kommer köras före det att lådinnehållet raderas
-
+ Vid filåterställande
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedDetta kommando kommer köras före det att en fil återställs och filsökvägen kommer att passeras som första argument. Om detta kommando returnerar något annat än 0, blockeras återställningen
-
+ Kör filkontrolleraren
-
+ Vid Radera innehåll
-
+ Skydda processer i denna låda från att tillgås av specificerade osandlådade processer.
-
-
+
+ Process
@@ -8796,32 +8812,37 @@ istället för "*".
Blockera även lästillgång till processer i denna sandlåda
-
+ Mallar
-
+
+
+
+
+
+ Följande inställningar aktiverar användandet av Sandboxie i kombination med tillgänglighetsprogram. Vänligen notera att ett visst mått av Sandboxies skydd av nödvändighet förloras när dessa inställningar aktiveras.
-
+ Redigera ini-sektionen
-
+ Redigera ini
-
+ Avbryt
-
+ Spara
@@ -8858,27 +8879,27 @@ istället för "*".
QPlatformTheme
-
+ OK
-
+ Tillämpa
-
+ Avbryt
-
+ &Ja
-
+ &Nej
@@ -9026,7 +9047,7 @@ istället för "*".
Använd mörkt tema (fullt tillämpat efter en omstart)
-
+ Ändringsbevaka Sandboxie.ini
@@ -9157,17 +9178,17 @@ istället för "*".
Gränssnittsalternativ
-
+ Teckensnittsskalning
-
+ Hög DPI-skalning
-
+ (Omstart krävs)
@@ -9211,7 +9232,7 @@ istället för "*".
* en delvis markerad kontrollruta överlämnar beteendet att bestämmas av vyläget.
-
+ %
@@ -9226,7 +9247,7 @@ istället för "*".
Använd fusionstema
-
+ Avancerad konfiguration
@@ -9235,42 +9256,42 @@ istället för "*".
Separata användarmappar
-
+ Haka fast valda Win32k systemanrop för att aktivera GPU-accelerering (experimentell)
-
+ Portabel root-mapp
-
+ Sandlåda <a href="sbie://docs/keyrootpath">registrets root</a>:
-
+ Sandlådningsegenskaper
-
+ ...
-
+ Sandlådestandard
-
+ Sandlåda <a href="sbie://docs/filerootpath">filsystemets root</a>:
-
+ Aktivera objektfiltrering i kernelläget
@@ -9358,12 +9379,12 @@ istället för "*".
Dölj Sandboxie:s egna processer från aktivitetslistan
-
+ Ini redigeringstypsnitt
-
+ Grafiska alternativ
@@ -9408,157 +9429,157 @@ istället för "*".
Minimera till fältet
-
+ Välj typsnitt
-
+ Återställ typsnitt
-
+ Ini-alternativ
-
+ #
-
+ Extern ini-redigerare
-
+ Tilläggshanterare
-
+ Valfria tillägg
-
+ Sandboxie-Plus erbjuder flertalet alternativ och stöder en hel rad av förlängningar. På denna sida kan du konfigurera integreringen av tillägg, plugins, och andra 3:dje-parts komponenter. Valfria komponenter kan nedladdas från nätet, och vissa installationer kan kräva adminrättigheter.
-
+ Status
-
+ Version
-
+ Beskrivning
-
+ <a href="sbie://addons">uppdatera tilläggslista nu</a>
-
+ Installera
-
+ Tilläggskonfiguration
-
+ Aktivera RAM-disk skapande
-
+ kilobyte
-
+ Tilldela enhetsbokstav till RAM-disken
-
+ Diskavbildsstöd
-
+ RAM-gräns
-
+ <a href="addon://ImDisk">Installera ImDisk:s</a> drivrutin för att aktivera RAM-disk och diskavbildsstöd..
-
+ Sandboxie support
-
+ Detta supportercertifikat har utgått, vänligen <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">skaffa ett uppdaterat certifikat</a>.
-
+ Supportrar av Sandboxie-Plus projektet kan erhålla ett <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supportercertifikat</a>. Det är som en licens men för fantastiska personer som använder öppen källa program. :-)
-
+ Skaffa
-
+ Hämta/Uppgradera/Förnya certifikat användandes serienummer
-
+ Hålla Sandboxie uppdaterat med de rullande utgivningarna av Windows och kompatibelt med alla webbläsare är en aldrig upphörande ansträngning. Du kan stöda utvecklingen genom att <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">direkt bidra till projektet</a>, visa ditt stöd genom att <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">köpa ett supportercertifikat</a>, bli en patron genom att <a href="https://sandboxie-plus.com/go.php?to=patreon">prenumerera på Patreon</a>, eller genom en <a href="https://sandboxie-plus.com/go.php?to=donate">PayPal donation</a>.<br />Ditt stöd spelar en vital roll i förbättrandet och underhållet av Sandboxie.
-
+ SBIE_-_____-_____-_____-_____
-
+ Uppdateringsinställningar
-
+ Uppdateringskontrollintervall
-
+ Använd Windows Filtering Platform för att begränsa nätverkstillgång
-
+ Sandlåda <a href="sbie://docs/ipcrootpath">IPC-root</a>:
@@ -9567,91 +9588,91 @@ istället för "*".
Använd en Sandboxie-inloggning istället för ett anonymt tecken (experimentellt)
-
+ Sandboxie.ini förinställningar
-
+ Programkontroll
-
+ USB-enhets sandlådning
-
+ Volym
-
+ Information
-
+ Sandlåda för USB-enheter:
-
+ Automatiskt sandlådande av alla anslutna USB-enheter
-
+ Appmallar
-
+ Appkompatibilitet
-
-
-
-
+
+
+
+ Namn
-
+ Sökväg
-
+ Ta bort program
-
+ Addera program
-
+ När något av de följande programm startas utanför någon sandlåda, kommer Sandboxie utfärda meddelande SBIE1301.
-
+ Addera mapp
-
+ Förhindra de listade programmen från att starta på detta system
-
+ Utfärda meddelande 1308 när ett program inte lyckas starta
@@ -9671,84 +9692,89 @@ istället för "*".
Använd ny konfigureringsdialoglayout *
-
+
+
+
+
+
+ När en RAM-disk redan är monterad behöver du avmontera den för att detta alternativ ska få effekt.
-
+ * får effekt vid diskskapande
-
+ <a href="https://sandboxie plus.com/go.php?to=sbie use cert">Certifikatsanvändarguide</a>
-
+ Sandboxie uppdaterare
-
+ Håll tilläggslistan uppdaterad
-
+ Insider-kanalen erbjuder tidig tillgång till nya egenskaper och buggfixar som slutligen kommer utges till allmänheten, likt väl som alla relevanta förbättringar från stable-kanalen.
Till skillnad från preview-kanalen, inkluderar den inte otestade, möjligen förstörande, eller experimentella ändringar som kanske inte är färdiga för större användning.
-
+ Sök i Insider-kanalen
-
+ Nya fullständiga installerare från den valda utgivningskanalen.
-
+ Fullständiga uppgraderingar
-
+ Sök periodvis efter nya Sandboxie-Plus versioner
-
+ Mer om <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">insider-kanalen</a>
-
+ Håll felsökningsscript uppdaterade
-
+ Använd en Sandboxie-inloggning istället för ett anonymt tecken
-
+ Programalarm
-
+ Utfärda meddelande 1301 när tvingade processer har inaktiverats
-
+ Config ProtectionSandboxie-konfigurering
@@ -9775,8 +9801,8 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade, möjligen fö
-
-
+
+ Ta bort
@@ -9786,7 +9812,7 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade, möjligen fö
Kommandorad
-
+ Support && Uppdateringar
@@ -9795,37 +9821,37 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade, möjligen fö
Sandlådekonfigurering
-
+ Standardsandlåda:
-
+ Konfigurera skydd
-
+ Rensa lösenord när huvudfönstret blir dolt
-
+ Endast administratörsanvändarkonton kan göra ändringar
-
+ Endast administratörsanvändarkonton kan använda kommandot Pausa programtvingande
-
+ Lösenord måste föras in för att kunna göra ändringar
-
+ Ändra lösenord
@@ -9844,62 +9870,67 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade, möjligen fö
Kompatibilitet
-
+ Kontrollera inte programkompatibilitet i framtiden
-
+ Aktivera
-
+ Inaktivera
-
+ Sandboxie har upptäckt följande mjukvaruapplikationer i ditt system. Klicka på OK för att tillämpa konfigurationsinställningarna, vilket kommer förbättra kompatibiliteten med dessa applikationer. Dessa konfigurationsinställningar kommer ha påverkan på alla existerande sandlådor samt även de nya.
-
+ Lokala mallar
-
+ Addera mall
-
+ Textfilter
-
+ Denna lista innehåller användarskapade anpassade mallar för sandlådealternativ
-
+
+
+
+
+
+ Redigera ini-sektionen
-
+ Spara
-
+ Redigera ini
-
+ Avbryt
@@ -9908,7 +9939,7 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade, möjligen fö
Support
-
+ Version UpdatesInkrementella uppdateringar
@@ -9918,12 +9949,12 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade, möjligen fö
Nya fulla versioner från den valda utgivningskanalen.
-
+ Snabbfixar för den installerade versionen, uppdateringar till mallar.ini och översättningar.
-
+ Preview-kanalen innehåller de senaste GitHub förutgivningarna.
@@ -9932,17 +9963,17 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade, möjligen fö
Nya versioner
-
+ Ange supportcertifikatet här
-
+ Stable-kanalen innehåller de senaste stabila GitHub utgivningarna.
-
+ Sök i Stable-kanalen
@@ -9951,7 +9982,7 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade, möjligen fö
Hålla Sandboxie uppdaterat med de rullande utgivningarna av Windows och kompatibelt med alla webbläsare är en aldrig upphörande strävan. Vänligen överväg att supporta detta jobb med en donation.<br />Du kan supporta utvecklingen med en <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">PayPal donation</a>, fungerar också med kreditkort.<br />Eller förse kontinuerlig support med en <a href="https://sandboxie-plus.com/go.php?to=patreon">Patreon prenumeration</a>.
-
+ Sök i Preview-kanalen
@@ -9984,7 +10015,7 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade, möjligen fö
Supportinställningar
-
+ Meddela inte om certifikatsutgång i framtiden
diff --git a/SandboxiePlus/SandMan/sandman_tr.ts b/SandboxiePlus/SandMan/sandman_tr.ts
index 55a6dbab..c78e8831 100644
--- a/SandboxiePlus/SandMan/sandman_tr.ts
+++ b/SandboxiePlus/SandMan/sandman_tr.ts
@@ -831,12 +831,12 @@ Hata: %1
CCompletePage
-
+ Sorun Giderme Tamamlandı
-
+
@@ -1175,14 +1175,12 @@ Her kullanıcının korumalı alanını kendi klasörüne kaydetmek için %USER%
CMultiErrorDialog
-
- Mesaj
+ Mesaj
-
- Sandboxie-Plus - Hata
+ Sandboxie-Plus - Hata
@@ -1387,7 +1385,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
-
+
@@ -1461,8 +1459,8 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Sandboxie Plus - '%1' Ayarlar
-
-
+
+
@@ -1485,7 +1483,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Yalnızca [#] göstergesini görüntüle
-
+ %1 (%2)
@@ -1565,11 +1563,11 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Pencere başlığını değiştirme
-
+
-
-
+
+
@@ -1584,7 +1582,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Klasör için Göz At
-
+ Program girin:
@@ -1604,7 +1602,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Program için Göz At
-
+ Lütfen bir hizmet tanımlayıcısı girin
@@ -1624,37 +1622,37 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
%1 Şablonu Ekle
-
+ Seçeneklerde ara
-
+ Alan: %1
-
+ Şablon: %1
-
+ Genel: %1
-
+ Varsayılan: %1
-
+ Bu korumalı alan silindi, bu nedenle yapılandırma kaydedilemiyor.
-
+ Bazı değişiklikler henüz kaydedilmedi, bu seçenekler penceresini gerçekten kapatmak istiyor musunuz?
@@ -1836,17 +1834,17 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Hata: %1
-
+ Seçili yerel şablonları gerçekten silmek istiyor musunuz?
-
+ Yalnızca yerel şablonlar kaldırılabilir!
-
+
-
+
@@ -2152,71 +2150,71 @@ Lütfen bu dosyayı içeren bir klasör seçin.
Korumalı alan ipc kökü
-
+ Özel seçenek ekle:
-
-
+
+ Başlangıçta
-
-
-
-
-
+
+
+
+
+ Komutu Çalıştır
-
+ Hizmeti Başlat
-
+ İlk Kullanımda
-
+ Doysa Kurtarmada
-
+ İçerik Silmede
-
+ Sonlandığında
-
+ Bu korumalı alana erişime izin vermek için lütfen bir program dosyası adı girin
-
+ Bu korumalı alana erişimi reddetmek için lütfen bir program dosyası adı girin
-
+ Reddet
-
-
-
-
-
+
+
+
+
+ Lütfen çalıştırılacak komut satırını girin
@@ -2566,12 +2564,12 @@ Tam yol: %4
Bu sorunu giderme işlemi başlatılamadı. Bir sorun raporu göndermek için ileri'ye tıklayabilirsiniz.
-
+ Dahili olarak bir sorun oluştu ve bu sorun giderme işlemi devam edemiyor. Bir sorun raporu göndermek için İleri'ye tıklayabilirsiniz.
-
+
@@ -2698,22 +2696,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Klasör bekleniyor: %1
-
+ Klasör siliniyor: %1
-
+ Klasörler birleştiriliyor: %1 >> %2
-
+ Anlık Görüntü Birleştirme Tamamlanıyor...
@@ -2795,7 +2793,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Çıkış
-
+ Sandboxie-Plus taşınabilir modda başlatıldı ve gerekli hizmetleri oluşturması gerekiyor. Bunun için yönetici ayrıcalıkları isteyecektir.
@@ -2816,19 +2814,19 @@ Unlike the preview channel, it does not include untested, potentially breaking,
&Görünüm
-
+ Korumalı alan klasörü silinirken hata: %1
-
+ Sandboxie-Plus Hakkında
-
+ Sandboxie-Plus v%1
@@ -2858,7 +2856,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Destek Forumu'nu Ziyaret Et
-
+ %1 korumalı alanından yapılandırma kopyalaması başarısız oldu: %2
@@ -2868,7 +2866,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Basit Görünüm
-
+ Giriş başarısız: %1
@@ -2879,11 +2877,11 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
-
-
-
+
+
+
+
+ Bu mesajı bir daha gösterme.
@@ -2903,12 +2901,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Hizmeti Yükle
-
+ Eski anlık görüntü dizini kaldırılamadı '%1'
-
+ Düzenleyici kapatılır kapatılmaz değişiklikler otomatik olarak uygulanacaktır.
@@ -2918,7 +2916,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie Yöneticisi'ni kapatmak istiyor musunuz?
-
+ Yeni anlık görüntü için dizin oluşturulamadı
@@ -2969,7 +2967,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ '%1' dizini, '%2' dizinine taşınamadı
@@ -2984,9 +2982,9 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Çevrimiçi Belgeler
-
-
-
+
+
+ Sandboxie-Plus - Hata
@@ -3006,12 +3004,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Göster/Gizle
-
+ Bir korumalı alan, silinmeden önce boşaltılmalıdır.
-
+ Korumalı alan adı yalnızca harf, rakam ve alt çizgi içerebilir.
@@ -3021,12 +3019,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
&Bakım
-
+ Korumalı alan adı bir cihaz adı olamaz.
-
+ %1 öge için işlem başarısız oldu.
@@ -3060,12 +3058,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Bağlan
-
+ Yalnızca Yöneticiler yapılandırmayı değiştirebilir.
-
+ Anlık görüntü bulunamadı
@@ -3075,7 +3073,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Tümünü Durdur
-
+ Korumalı alan için silme koruması etkinleştirilmiş
@@ -3085,7 +3083,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
&Gelişmiş
-
+ Bakım işlemi yapılıyor, lütfen bekleyin...
@@ -3102,7 +3100,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Yeni Alan Oluştur
-
+ Tüm işlemler sonlandırılamadı
@@ -3112,7 +3110,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Gelişmiş Görünüm
-
+ %1: %2 Korumalı alanı silinemedi
@@ -3123,17 +3121,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Tüm İşlemleri Sonlandır
-
+ Lütfen yapılandırma parolasını girin.
-
+ Bölümdeki yapılandırmayı güncelleme yetkiniz yok '%1'
-
+ '%1' ve '%2' anlık görüntü dizinleri birleştirilirken hata oluştu, anlık görüntü tam olarak birleştirilmedi.
@@ -3153,12 +3151,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sonlandırılmışları Tut
-
+ %1 adında bir korumalı alan zaten var
-
+ %2: %3 bölümünde %1 yapılandırma parametresi ayarlanamadı
@@ -3222,307 +3220,307 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Bu alan <a href="sbie://docs/boxencryption">şifrelenecek</a> ve <a href="sbie://docs/black-box">korumalı alandaki işlemler izinsiz erişime karşı korunacak</a >.
-
+ USB korumalı alanı bulunamadı; oluşturuluyor: %1
-
+ Kaldırılan Kısayol: %1
-
+ Kısayol şu şekilde güncellendi: %1
-
+ Eklenen Kısayol: %1
-
+ OnBoxTerminate yürütülüyor: %1
-
+ %1 korumalı alanı otomatik olarak kaldırıyor
-
+ %1 Dizini: %2
-
+ Uygulama
-
+ Kurulum
-
+ Kişisel kullanım için
-
+ - Ticari Olmayan kullanım için
-
+ Kurulum sihirbazının çıkarılmasını istiyor musunuz?
-
+ - Bağlı DEĞİL
-
+ %1 kısayol tuşu yapılandırılamadı, hata: %2
-
+ %1 alanı, yalnızca proje destekçilerine sunulan özellikleri kullanacak şekilde yapılandırılmıştır.
-
+ %1 alanı, <b>gelişmiş</b> destekçi sertifikası gerektiren özellikleri kullanacak şekilde yapılandırılmıştır.
-
-
+
+ Gelişmiş özelliklerin kilidini açmak için <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Sertifikanızı yükseltin</a>.
-
+ Seçilen özellik, <b>gelişmiş</b> bir destekçi sertifikası gerektiriyor.
-
+ Seçilen özellik seti yalnızca proje destekçileri tarafından kullanılabilir. <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Proje destekçisi olmak</a> için bir <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">destekçi sertifikası</a> edinin
-
+ Kullanmaya çalıştığınız sertifika engellendi, yani geçersiz kılındı. Bunu kullanmaya yönelik herhangi bir girişim, kullanım şartlarının ihlali anlamına gelir!
-
+ Sertifika İmzası geçersiz!
-
+ Sertifika bu ürün için uygun değildir.
-
+ Sertifika düğüm kilitli.
-
+ Destek sertifikası geçerli değil.
Hata: %1
-
+ Değerlendirme süresi dolmuştur!
-
-
+
+ Gelecekte sorma
-
+ Şifreli korumalı alanlardaki tüm işlemleri sonlandırmak ve bağlantılarını kaldırmak istiyor musunuz?
-
+ Kurtarma Yok
-
+ Mesaj Yok
-
+ <b>HATA:</b> Sandboxie-Plus Yöneticisi (SandMan.exe) geçerli bir imzaya sahip değil (SandMan.exe.sig). Lütfen <a href="https://sandboxie-plus.com/go.php?to=sbie-get">resmî indirme sayfasından</a> güvenilir bir sürüm indirin.
-
+ Bakım işlemi tamamlandı
-
+ Bu işlevsellik, Plus kullanıcı arayüzünde korumalı alan liste görünümüne entegre edilmiştir.
-
+ Alan/grup bağlam menüsünü kullanarak alanları ve grupları diğer gruplara taşıyabilirsiniz. Öğeleri hareket ettirmek için sürükle ve bırak özelliğini de kullanabilirsiniz. Alternatif olarak, öğeleri grupları içinde yukarı ve aşağı taşımak için ALT tuşunu basılı tutarken ok tuşlarını da kullanabilirsiniz.<br />Korumalı Alan menüsünden yeni alanlar ve gruplar oluşturabilirsiniz.
-
+ Gizlenmiş mesaj kutuları dahil her şeyi (evet) veya yalnızca tüm günlük mesajlarını (hayır) sıfırlamak mı istiyorsunuz?
-
+ Templates.ini dosyasını düzenlemek üzeresiniz, bu genellikle önerilmez. Bu dosya Sandboxie'nin bir parçasıdır ve üzerinde yapılan tüm değişiklikler Sandboxie güncellendiğinde kaybolacaktır.
-
+ Dosya her kaydedildiğinde değişiklikler otomatik olarak uygulanacaktır.
-
+ Bu işlem için yönetici hakları gereklidir.
-
+ %1 çalıştırılamadı
-
+ Sürücüye bağlanılamadı
-
+ Sandboxie Hizmeti ile iletişim kurulamadı: %1
-
+ Uyumsuz bir Sandboxie %1 bulundu. Uyumlu sürümler: %2
-
+ Sandboxie kurulum yolu bulunamıyor.
-
+ Korumalı alan adı 32 karakterden uzun olamaz.
-
+ Bir korumalı alanın yeniden adlandırılabilmesi için oradaki tüm işlemlerin durdurulması gerekir.
-
+ '%1' korumalı alan görüntüsü '%2' konumuna taşınamadı
-
+ Bu Anlık Görüntü işlemi, alan içinde işlemler çalışırken gerçekleştirilemez.
-
+ Birden çok anlık görüntü tarafından paylaşılan bir anlık görüntü kaldırılamaz
-
+ Bağlanmamış bir korumalı alanın içeriği silinemez
-
+ %1
-
+ İçe/Dışa Aktarma kullanılamıyor, 7z.dll yüklenemedi
-
+ Alan arşivi oluşturulamadı
-
+ 7z arşivi açılamadı
-
+ Alan arşivi açılamadı
-
+ Seçilen 7z dosyası bir alan arşivi DEĞİLDİR
-
+ Seçimi sonrası için hatırla.
-
+ Hücreyi Kopyala
-
+ Satırı Kopyala
-
+ Paneli Kopyala
-
+ Tüm Sandboxie bileşenleri durdurulamadı
-
+ Gerekli Sandboxie bileşenleri başlatılamadı
@@ -3543,22 +3541,22 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Her Zaman Üstte
-
+ Kaldırılan şablonlar temizlendi...
-
+ Boş bir korumalı alanın anlık görüntüsü oluşturulamaz
-
+ Bu adda bir korumalı alan zaten var
-
+ Sütunları Sıfırla
@@ -3568,12 +3566,12 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Gizli Alanları Göster
-
+ Bazı uyumluluk şablonları (%1) eksik, büyük olasılıkla silinmiş, bunları tüm alanlardan kaldırmak istiyor musunuz?
-
+ Tüm korumalı alanlardaki tüm işlemleri sonlandırmak istiyor musunuz?
@@ -3598,7 +3596,7 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Sandboxie-Plus - Pencere Bulucu
-
+ Varsayılan korumalı alan bulunamadı; oluşturuluyor: %1
@@ -3618,17 +3616,17 @@ This file is part of Sandboxie and all change done to it will be reverted next t
İzlemeleri Günlükle
-
+ Bilinmeyen işlem '%1' komut satırı aracılığıyla istendi
-
+ DİKKAT: Bu Sandboxie oturumunu başka bir aracı (muhtemelen SbieCtrl.exe) zaten yönetiyor, lütfen önce onu kapatın ve devralmak için yeniden bağlanın.
-
+ Yapılandırma parolası 64 karakterden uzun olmamalıdır
@@ -3648,17 +3646,17 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Tüm Oturumları Göster
-
+ Hata Durumu: 0x%1 (%2)
-
+ Bilinmeyen
-
+ Bilinmeyen Hata Durumu: 0x%1
@@ -3697,12 +3695,12 @@ Temizlik yapmak ister misin?
<br /><br />Bu alan, Kaynak Erişimi seçeneklerinde açıkça verilen konumlar dışında <a href="sbie://docs/privacy-mode">tüm kullanıcı verileri</a> konumlarına erişimi engeller.
-
+ Zorlanmış İşlem Yok
-
+
@@ -3711,22 +3709,22 @@ Evet şunları seçer: %1
Hayır şunları seçer: %2
-
+ Seçilen özellik seti yalnızca proje destekçileri tarafından kullanılabilir. Bu özellik setinin destekçi sertifikası olmadan etkinleştirildiği bir alanda başlatılan işlemler 5 dakika sonra sonlandırılacaktır.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Proje destekçisi olmak</a> için bir <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">destekçi sertifikası</a> edinin
-
+ Sandboxie+'nın bu kopyası şu kişiler için sertifikalandırılmıştır: %1
-
+ Sandboxie+, kişisel ve ticari olmayan kullanım için ücretsizdir.
-
+ Sandboxie-Plus, Sandboxie'nin açık kaynaklı bir devamıdır.<br />Daha fazla bilgi için <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> adresini ziyaret edin.<br /><br />%3<br /><br />Sürücü versiyonu: %1<br />Özellikler: %2<br /><br />Simgeler için <a href="https://icons8.com">icons8.com</a>
@@ -3783,7 +3781,7 @@ Hayır şunları seçer: %2
-
+ Sandboxie-Plus Insider [%1]
@@ -3941,52 +3939,52 @@ Hayır şunları seçer: %2
<a href="sbie://update/check" style="color: red;">Yeni bir Sandboxie-Plus güncellemesi v%1 mevcut</a>
-
+ OnBoxDelete yürütülüyor: %1
-
+ %1 içeriği otomatik olarak siliniyor
-
+ Sandboxie-Plus Sürümü: %1 (%2)
-
+ Veri Dizini: %1
-
-
-
+
+
+ (%1)
-
+ %2 korumalı alanında başlatılan programlar 5 dakika içinde sonlandırılacaktır. Çünkü bu korumalı alan yalnızca proje destekçilerine sunulan %1 özelliğini kullanacak şekilde yapılandırılmış.
-
+ %1 alanı, yalnızca proje destekçilerine sunulan özellikleri kullanacak şekilde yapılandırılmıştır, bu ön ayarlar yok sayılacaktır.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Proje destekçisi olmak</a> için bir <a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">destekçi sertifikası</a> edinebilirsiniz
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3995,112 +3993,112 @@ Please check if there is an update for sandboxie.
Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.
-
+ Mevcut derleme için bu mesajı bir daha gösterme.
-
+ Windows derlemeniz %1, Sandboxie sürümünüzün bilinen mevcut destek yeteneklerini aşıyor; Sandboxie bilinen son ofsetleri kullanmaya çalışacak ve bu da sistem kararsızlığına neden olabilir.
-
+ Lütfen Zorunlu Programlar kurallarını devre dışı bırakmak için süreyi saniye cinsinden girin.
-
+ Bakım işlemi başarısız oldu (%1)
-
+ Alan içeriği silinmeden önce tüm korumalı alan işlemleri durdurulmalıdır
-
+ Alan veri dosyaları kopyalanamadı
-
+ Eski alan veri dosyaları kaldırılamadı
-
+ İşlem kullanıcı tarafından iptal edildi
-
+ %1 bağlantısını korumalı alanda veya korumasız olarak Web tarayıcısında açmak istiyor musunuz?
-
+ Korumalı
-
+ Korumasız
-
+ Harfe Duyarlı
-
+ Düzİfa
-
+ Vurgula
-
+ Kapat
-
+ &Bul ...
-
+ Tüm Sütunlar
-
+ <h3>Sandboxie-Plus hakkında</h3><p>Sürüm %1</p><p>Telif hakkı (c) 2020-2024, DavidXanatos</p>
-
+ Bu destekçi sertifikası bu derleme için geçerli değildir, lütfen yenilenmiş bir sertifika edinin
-
+ Bu destekçi sertifikasının süresi dolmuş %1, lütfen yenilenmiş bir sertifika edinin
-
+ , ancak mevcut derleme için geçerli kalır
-
+ Destekçi sertifikasının süresi %1 gün içinde dolacak, lütfen yenilenmiş bir sertifika edinin
@@ -4148,17 +4146,17 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin. - Korumalı Alan İçeriğini Silme
-
+ %1 İçeriği Otomatik Siliniyor
-
+ Geçerli Yapılandırma: %1
-
+ Sandboxie yapılandırması yeniden yüklendi
@@ -5075,17 +5073,17 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.
CSelectBoxWindow
-
+ Sandboxie-Plus - Korumalı Alanda Çalıştır
-
+ Programı korumalı alanın dışında çalıştırmak istediğinizden emin misiniz?
-
+ Lütfen bir korumalı alan seçiniz.
@@ -5093,28 +5091,28 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.
CSettingsWindow
-
+ Lütfen yeni yapılandırma parolasını girin.
-
-
+
+ Dizin Seç
-
+ Lütfen bir program dosyası adı girin
-
+ Klasör
-
+ İşlem
@@ -5124,169 +5122,169 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Sandboxie Plus - Genel Ayarlar
-
+ Ayarlarda ara
-
+ kilobayt (%1)
-
+ Birim eklenmedi
-
+ Bu destekçi sertifikasının süresi dolmuş, lütfen <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">güncellenmiş bir sertifika edinin</a>.
-
+ <br /><font color='red'>Plus özellikleri %1 gün içinde devre dışı bırakılacak.</font>
-
+ <br />Plus özellikleri artık etkin değil.
-
+ Bu destekçi sertifikası <font color='red'>%1 gün içinde</font> sona erecek, lütfen <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert" >güncellenmiş bir sertifika edinin</a>.
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b>) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.Özellik yükseltme anahtarını mevcut bir destekçi sertifikası girmeden önce kullanmaya çalışıyorsunuz. Lütfen bu tür anahtarların (<b>web sitesinde kalın harflerle açıkça belirtildiği gibi</b>) mevcut geçerli bir destekçi sertifikasına sahip olmanızı gerektirdiğini, sertifika olmadan hiçbir işe yaramadığını unutmayın.<br />Gelişmiş özellikleri kullanmak için, hem standart bir sertifika hem de gelişmiş özelliklerin kilidini açacak bir özellik yükseltme anahtarı edinmeniz gerekir.
-
+ You are attempting to use a Renew-Key without having a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b>) requires you to have a pre-existing supporter certificate; it is useless without one.Yenileme anahtarını mevcut bir destekçi sertifikası girmeden önce kullanmaya çalışıyorsunuz. Lütfen bu tür anahtarların (<b>web sitesinde kalın harflerle açıkça belirtildiği gibi</b>) mevcut geçerli bir destekçi sertifikasına sahip olmanızı gerektirdiğini, sertifika olmadan hiçbir işe yaramadığını unutmayın.
-
+ <br /><br /><u>Ürün açıklamasını okumadan yanlışlıkla bu anahtarı aldıysanız, sorunu çözmek için lütfen e-posta (web sitemizde belirtilen) yoluyla bizimle iletişime geçin.</u>
-
+ Sertifika alınırken hata oluştu: %1
-
+ Bilinmeyen Hata (muhtemelen bir ağ sorunu)
-
+ Katılımcı
-
+ Sürekli
-
+ İş
-
+ Kişisel
-
+ Büyük Patreon
-
+ Patreon
-
+ Aile
-
+ Deneme
-
+ Tür %1
-
+ Gelişmiş
-
+ En Üst Seviye
-
+ Seviye %1
-
+ Erişim için destekçi sertifikası gerekli
-
+ Otomasyon için destekçi sertifikası gerekli
-
+ Bu sertifika ne yazık ki mevcut derleme için geçerli değil, yeni bir sertifika almanız veya önceki bir derlemeye geçmeniz gerekiyor.
-
+ Bu sertifikanın süresi dolmuş olsa da, şu anda yüklü olan sürüm için Plus özellikleri etkin durumda kalır. Ancak, bundan sonraki sürümlerde uyumluluk güncellemeleri ve çevrimiçi sorun giderme veritabanı da dahil olmak üzere Sandboxie-Live hizmetlerine erişiminiz olmayacak.
-
+ Bu sertifikanın süresi ne yazık ki dolmuş, yeni bir sertifika almanız gerekiyor.
-
+ <a href="check">Şimdi Denetle</a>
-
+ Lütfen yeni yapılandırma parolasını tekrar girin.
-
+ Parolalar eşleşmedi, lütfen tekrar deneyin.
@@ -5296,7 +5294,7 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Otomatik Algıla
-
+ Sandboxie-Plus'ın gelişimini desteklediğiniz için teşekkür ederiz.
@@ -5414,60 +5412,60 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.%1
-
+ Program için Göz At
-
+ %1 Şablonu Ekle
-
+ Yazı tipini seç
-
+ Yazı tipini sıfırla
-
+ %0, %1 pt
-
+ Lütfen mesaj giriniz
-
+ Program Seç
-
+ Yürütülebilir dosyalar (*.exe *.cmd)
-
-
+
+ Lütfen bir menü başlığı girin
-
+ Lütfen bir komut girin
-
-
-
+
+
+ &Korumalı Alanda Çalıştır
@@ -5490,78 +5488,78 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.İndir & Yükle
-
+ <br /><font color='red'>Şu anda yüklü olan sürüm için Plus özellikleri etkin durumdadır</font>. Ancak, bundan sonraki sürümlerde uyumluluk güncellemeleri ve çevrimiçi sorun giderme veritabanı da dahil olmak üzere Sandboxie-Live hizmetlerine erişiminiz olmayacak.
-
+ Sertifika alınıyor...
-
+ Ev
-
+ &Korumalı Alanın Dışında Çalıştır
-
+ Güncelleme Mevcut
-
+ Kurulu
-
+ %1 tarafından
-
+ (bilgi sitesi)
-
+ Bu Eklenti zorunludur ve kaldırılamaz.
-
+ Lütfen şablon tanımlayıcısını girin
-
+ Hata: %1
-
+ Seçili yerel şablonları gerçekten silmek istiyor musunuz?
-
+ %1 (Kullanılan)
-
+ Korumalı Web Tarayıcısı
-
+ Bu bir sertifikaya benzemiyor. Lütfen sertifikanın sadece bir kısmını değil tamamını girin.
@@ -5681,100 +5679,100 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.
CSubmitPage
-
+ Sorun Raporu Gönder
-
+ Ayrıntılı sorun açıklaması
-
+ Sandboxie.ini'yi Ekle
-
+ Sandboxie uyumluluğu yapılandırmaya bağlıdır, bu nedenle Sandboxie.ini'yi eklemek sorunu bulmada çok yardımcı olur.
-
+ Günlükleri Ekle
-
+ İzleme günlüğü olmadan yalnızca mesaj günlüğü göndermek için işaret kutusunu kısmen işaretli duruma getirebilirsiniz. Göndermeden önce ana pencereden gönderilecek günlükleri inceleyebilirsiniz.
-
+ Çökme Dökümlerini Ekle
-
+ Sorun giderme işlemi sırasında bir uygulama çöktü, bir çökme dökümü eklemek hata ayıklamaya yardımcı olabilir.
-
+ E-posta adresi
-
+ Sorununuz için bir çözüm belirlendiğinde bildirim almak için bir e-posta adresi sağlama seçeneğiniz vardır.
-
+ Şu anda Sandboxie Plus ile yaşadığınız rahatsızlıktan dolayı özür dileriz.
-
+ Ne yazık ki, otomatik sorun giderme işlemi başarısız oldu.
-
+ Maalesef, tanımladığınız belirli sorun için otomatik bir sorun giderme işlemi bulunmamaktadır.
-
+ Sorun raporu göndermek istiyorsanız, lütfen aşağıdaki raporu inceleyin ve 'Bitir'e tıklayın.
-
+ Günlükler Sıkıştırılıyor
-
+ Çökme Dosyaları Sıkıştırılıyor
-
+ Sorun raporu gönderiliyor...
-
+ Sorun raporu gönderilemedi, hata %1
Günlük eklemeden göndermeyi deneyin.
-
+ Sorun raporunuz başarıyla gönderildi, teşekkür ederiz.
@@ -6317,57 +6315,57 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
OptionsWindow
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Ad
-
-
-
+
+
+ Yol
-
+ Kaydet
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Tür
-
+ Bu korumalı alanda yalnızca seçilen programların başlamasına izin ver. *
-
+ Klasörü Zorla
-
+ IPC Yolu Ekle
@@ -6377,42 +6375,42 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Başlıktaki korumalı alan göstergesi:
-
+ Hata Ayıklama
-
+ Kullanıcılar
-
+ Özel olarak açılmadıkça ağ dosyalarını ve klasörlerini engelle.
-
+ Komut Satırı
-
+ Korumalı alandaki programlar tarafından oluşturulan pencere sınıfı adları değiştirilmesin
-
+ Hata Ayıklama Çıktısını İzleme Günlüğüne Kaydet
-
+ Wnd Sınıfı Ekle
-
+ Erişim İzleme
@@ -6432,120 +6430,120 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
kilobayt
-
+ Tüm programların bu alanda başlamasına izin ver.
-
+ Dosyalar oluşturulur oluşturulmaz kurtarabilmek için Anında Kurtarma istemini etkinleştir.
-
-
-
-
-
-
+
+
+
+
+
+ Erişim
-
+ Bu seçenekler uyumluluk sorunlarındaki hataları ayıklamaya yönelik tasarlanmıştır, lütfen bu ayarları üretim amaçlı kullanmayın.
-
+ Şablonlar
-
+ Metin Filtresi
-
+ İptal
-
+ Kaynak Erişimi İzleyicisini yalnızca yöneticilerle kısıtla
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Korumalı alan bütünlüğünün kendisini koruyun
-
+ Klasör Ekle
-
+ Kullanıcıya ablukadan muafiyete izin verip vermeyeceğini sor.
-
+ IPC İzleme
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Kaldır
-
+ Dosya/Klasör Ekle
-
+ Bir programın internet erişimi reddedildiğinde 1307 mesajını yayınla
-
-
+
+ Uyumluluk
-
+ Not: Bu alana yüklenen programlar internete hiçbir şekilde erişemez.
@@ -6555,12 +6553,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Alan Seçenekleri
-
+ Korumalı alandaki işlemlerin diğer alanlarda çalışan işlemleri görmesine izin verilmesin
-
+ Grup Ekle
@@ -6570,12 +6568,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Korumalı alana sahip pencere kenarlığı:
-
+ Seçili programların bu alanda başlamasını önle.
-
+ Çeşitli
@@ -6585,7 +6583,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Dosya çok büyükse 2102 mesajını yayınla
-
+ Dosya Kurtarma
@@ -6595,43 +6593,43 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Alan Silme Seçenekleri
-
+ Boru İzleme
-
+ Dosya İzleme
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Program
-
+ İşlem Ekle
-
-
-
-
-
+
+
+
+
+ Program Ekle
-
+ Kategorileri Filtrele
@@ -6641,17 +6639,17 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Dosya boyutu kopyalama sınırı:
-
+ Sistem Korumalı Depolamayı aç
-
-
-
-
-
+
+
+
+
+ Sistemi korumalı alandaki işlemlerden koru
@@ -6661,32 +6659,32 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
SandboxiePlus Ayarları
-
+ Kategori
-
+ Yöneticiler ve Yetkili Kullanıcılar grupları haklarını bırak
-
+ Kayıt Anahtarı Ekle
-
+ İşlemleri Gizle
-
+ Hızlı Kurtarma işlevi çağrıldığında, aşağıdaki klasörler korumalı alan içeriği için denetlenecektir.
-
+
-
+ Kullanıcı Ekle
-
+ Buraya girilen programlar veya konumlardan başlatılan programlar, özellikle başka bir korumalı alanda başlatılmadıkça, otomatik olarak bu alana yerleştirilecektir.
-
+ Program Zorla
-
+ UYARI, bu seçenekler temel güvenlik garantilerini devre dışı bırakabilir ve korumalı alan güvenliğini bozabilir!
-
+ Ini Düzenle
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Şablonları Göster
-
+ Klasörü Yok Say
-
+ GKA İzleme
-
+ Tuş İzleme
-
+ İzleme
@@ -6783,27 +6781,27 @@ günlüğe kaydetme özelleştirilebilir.
Görünüm
-
+ Korumalı alan işlemlerini iş nesnelerine ekle (Önerilir)
-
+ Klasörleri ve dosya türlerini (veya dosya uzantılarını) Anında Kurtarma'nın dışında bırakabilirsiniz.
-
+ Çalıştır Menüsü
-
+ Uygulama Şablonları
-
+ Uzantıyı Yok Say
@@ -6813,7 +6811,7 @@ günlüğe kaydetme özelleştirilebilir.
Bu korumalı alanı silinmeye veya boşaltılmaya karşı koru
-
+
@@ -6822,37 +6820,37 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarları, korumalı alanı kullanamayan kullanıcı hesapları için geçerli değildir.
-
+ * Not: Bu korumalı alana yüklenen programlar hiçbir şekilde başlatılamaz.
-
+ Bu liste, korumalı alan uyumluluğunu geliştiren çok sayıda şablonlar içerir
-
+ Program Grupları
-
+ Bir program başlatılamadığında 1308 mesajını yayınla
-
+ Kaynak Erişimi
-
+ Gelişmiş Seçenekler
-
+ Korumalı alanda çalışan işlemlerden ana sistem işlemlerini gizler.
@@ -6869,37 +6867,37 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Korumalı alandaki son işlem sonlandırıldığında içeriği otomatik olarak sil
-
+ COM Nesnesi Ekle
-
+ Korumalı alanın çalıştırma menüsünde görünecek özel girişleri yapılandırabilirsiniz.
-
+ Başlatma Kısıtlamaları
-
+ Özel sahte Manifest dosyalarının kullanımını zorla (Eski davranış)
-
+ Ini Düzenleme Bölümü
-
+ COM Sınıf İzleme
-
+ Yazıcı biriktiricisine erişimi engelle
@@ -6909,37 +6907,37 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Yazdırma biriktiricisinin korumalı alanın dışındaki dosyalara yazdırmasına izin ver
-
+ Biriktirici kısıtlamasını kaldır, yazıcılar korumalı alanın dışına kurulabilir
-
+ Program Ekle
-
+ Korumalı alandaki hizmetleri bir sistem belirteci kullanarak başlatılmasın (Önerilir)
-
+ Yetkilendirme Kısıtlamaları
-
+ Uygulamaların yetkilendirilmiş çalıştıklarını düşünmelerini sağla (Yükleyicileri güvenli bir şekilde çalıştırmanıza izin verir)
-
+ Ağ Kısıtlamaları
-
+ (Önerilen)
@@ -6974,17 +6972,17 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Kısıtlamalar
-
+ Güvenlik Seçenekleri
-
+ Güvenlik Sıkılaştırması
-
+ Diğer Kısıtlamalar
@@ -7088,118 +7086,143 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Yazdırma Kısıtlamaları
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Yukarı Taşı
-
+ Aşağı Taşı
-
+ Güvenlik Yalıtımı
-
+ Çeşitli yalıtım özellikleri, bazı uygulamalarla uyumluluğu bozabilir. Bu korumalı alanı <b>Güvenlik için DEĞİL</b> ancak uygulama taşınabilirliği için kullanıyorsanız, bu seçenekleri değiştirip biraz da güvenlikten ödün vererek uyumluluğu arttırabilirsiniz.
-
+ Güvenlik Yalıtımını Devre Dışı Bırak
-
+ Erişim Yalıtımı
-
-
+
+ Alan Koruması
-
+ Bu alandaki işlemleri ana sistemdeki işlemlerinden koru
-
+ İşleme İzin Ver
-
+ Ana sistemdeki bir işlem, korumalı alanda çalışan bir işleme/alan köküne erişmeye çalıştığında 1318/1317 mesajı yayınla
-
+ Sandboxie-Plus, yetkisiz gözetime veya ana sistem işlemleri tarafından yapılabilecek müdahalelere karşı sağlam koruma sağlayan gizli korumalı alanlar oluşturabilir. Bu özellik şifrelenmiş bir korumalı alan görüntüsü kullanarak en yüksek düzeyde operasyonel gizlilik sunar ve korumalı alanda çalışan tüm işlemlerin güvenliğini ve bütünlüğünü sağlar.
-
+ İşlemi Reddet
-
+ Anonim kullanıcı yerine Sandboxie oturum açma belirteci kullan
-
+ <b><font color='red'>GÜVENLİK TAVSİYESİ</font>:</b> <a href="sbie://docs/breakoutfolder">BreakoutFolder</a> ve/veya <a href="sbie://docs/breakoutprocess">BreakoutProcess</a> ayarlarının Open[File/Pipe]Path yönergeleriyle birlikte kullanımı ya da <a href="sbie://docs/breakoutdocument">BreakoutDocument</a> ayarının herhangi bir * veya güvensiz (*.exe;*.dll;*.ocx; *.cmd;*.bat;*.lnk;*.pif;*.url;*.ps1;etc…) uzantı ile kullanımı sistem güvenliğini tehlikeye atabilir. Lütfen bu ayarları kullanmadan önce her bir seçenek için belgelerdeki güvenlik bölümünü inceleyin.
-
+ Hangi işlemlerin pencereler ve benzeri masaüstü nesnelerine erişebileceğini yapılandırın.
-
+ Genel kısayol tuşuna art arda 3 kez basıldığında bu istisna göz ardı edilecektir.
-
+ "Tüm İşlemleri Sonlandır" çalıştırıldığında bu korumalı alanı sonlandırılma dışında tut.
-
+ Görüntü Koruması
-
+ Bir program korumalı alandan bir DLL dosyası yüklemeye çalıştığında 1305 mesajını yayınla
-
+ Sistemde yüklü korumalı alanda çalışan programların alan içinden DLL yüklemesini önle
-
+ DLL'ler && Uzantılar
-
+ Açıklama
-
+ Sandboxie'nin kaynak erişim kuralları, genellikle korumalı alan içinde bulunan program ikili dosyalarına göre ayrım yapar. OpenFilePath ve OpenKeyPath yalnızca ana sistemde yerel olarak bulunan uygulama ikili dosyaları için çalışır.
@@ -7207,74 +7230,72 @@ Bu kısıtlama olmaksızın bir kural tanımlamak için OpenPipePath veya OpenCo
Bu, korumalı alan içindeki haydut işlemlerin kendilerinin yeniden adlandırılmış bir kopyasını oluşturmasını ve korunan kaynaklara erişmesini önlemek için yapılır. Başka bir istismar vektörü de bir kütüphanenin yetkili bir işleme yerleşerek ona izin verilen her şeye erişim hakkı elde etmesidir. Ana Sistem Görüntü Koruması kullanılarak, bir korumalı alanda çalışan uygulamaların (ana sistemde yüklü) korumalı alanda bulunan kütüphaneleri yüklemesi engellenerek bu durum önlenebilir.
-
+ Sandboxie'nin işlevselliği, korumalı alanda herhangi bir işlem başlatıldığında SbieDll.dll tarafından ona yüklenebilen, isteğe bağlı DLL'ler kullanılarak genişletilebilir. Genel ayarlardaki Eklenti Yöneticisinde bazı yararlı uzantılar sunulmaktadır. Bunlar kurulduktan sonra geçerli korumalı alan için buradan etkinleştirilebilirler.
-
+ Gelişmiş Güvenlik
-
+ Diğer Yalıtım
-
+ Ayrıcalık Yalıtımı
-
+ Sandboxie Belirteci
-
+ Özel bir Sandboxie belirteci kullanmak, birbirinden ayrı korumalı alanların daha iyi yalıtılmasını sağlar ve görev yöneticilerinin kullanıcı sütununda bir işlemin hangi alana ait olduğu gösterir. Ancak bazı 3. parti güvenlik çözümleri özel belirteçlerle sorun yaşayabilir.
-
+ Program Denetimi
-
+ Zorunlu Programlar
-
+ Bu korumalı alan için İşlem ve Klasör zorlamayı devre dışı bırak
-
+ Çıkabilen Programlar
-
+ Çıkabilen Program
-
+ Çıkabilen Klasör
-
- Korumalı alandaki işlemlerin görüntü yakalamak için genel yöntemleri kullanmasını önle
+ Korumalı alandaki işlemlerin görüntü yakalamak için genel yöntemleri kullanmasını önle
-
- Korumalı alandaki işlemlerin güç işlevlerine müdahale etmesini önle
+ Korumalı alandaki işlemlerin güç işlevlerine müdahale etmesini önle
@@ -7282,261 +7303,256 @@ Bu, korumalı alan içindeki haydut işlemlerin kendilerinin yeniden adlandırı
Bağlandığında korumayı zorla
-
+ Korumalı alandaki pencerelerin görüntüsünün alınmasını önle
-
+ Yararlı Windows işlemlerinin korumalı işlemlere erişmesine izin ver
-
+ Buraya girilen programlar başlatıldıklarında bu korumalı alanın dışına çıkabilecektir. Bunları başka bir korumalı alana da aktarmak mümkündür. Örneğin web tarayıcınızın her zaman kendine adanmış bir alanda çalışması gibi.
-
+ Oyalayıcı Programlar
-
+ Oyalayıcı programlar, diğer tüm işlemler sonlandırıldıktan sonra çalışmaya devam ediyorsa otomatik olarak sonlandırılır.
-
+ Lider Programlar
-
+ Eğer lider işlemler tanımlanırsa, diğer tüm işlemlere oyalayıcı olarak davranılır.
-
+ Durma Seçenekleri
-
-
+
+ Stop BehavioureDurma Davranışı
-
-
-
-
-
-
+ Oyalanma yumuşatmayı kullan
-
+ Pencereli işlemler sonlandırılmasın
-
+ Dosyalar
-
+ Hangi işlemlerin Dosyalara, Klasörlere ve Borulara erişebileceğini yapılandırın.
'Açık' erişimi yalnızca korumalı alanın dışında bulunan program dosyaları için geçerlidir, bunun yerine tüm programlara uygulanmasını sağlamak için 'Hepsine Açık' kullanabilir veya bu davranışı İlkeler sekmesinden değiştirebilirsiniz.
-
+ Kayıt
-
+ Hangi işlemlerin Kayıt Defterine erişebileceğini yapılandırın.
'Açık' erişimi yalnızca korumalı alanın dışında bulunan program dosyaları için geçerlidir, bunun yerine tüm programlara uygulanmasını sağlamak için 'Hepsine Açık' kullanabilir veya bu davranışı İlkeler sekmesinden değiştirebilirsiniz.
-
+ IPC
-
+ Hangi işlemlerin ALPC bağlantı noktaları ve diğer işlemlerin belleği ve bağlamı gibi NT IPC nesnelerine erişebileceğini yapılandırın.
Bir işlemi belirtmek için yol olarak '$:program.exe' kullanın.
-
+ Wnd
-
+ Wnd Sınıfı
-
+ COM
-
+ Sınıf Id
-
+ Hangi işlemlerin COM nesnelerine erişebileceğini yapılandırın.
-
+ Sanallaştırılmış COM kullanılmasın, ana sistem COM altyapısına açık erişim sağlar (Önerilmez)
-
+ Erişim İlkeleri
-
+ Close...=!<program>,... kurallarını korumalı alanda bulunan tüm ikili dosyalara da uygula.
-
+ Ağ Seçenekleri
-
+ Diğer Seçenekler
-
+ Bağlantı Noktası Engelleme
-
+ Yaygın SAMBA bağlantı noktalarını engelle
-
+ DNS, UDP bağlantı noktası 53'ü engelle
-
+ Hızlı Kurtarma
-
+ Anında Kurtarma
-
+ Çeşitli Seçenekler
-
+ ElevateCreateProcess geçici çözümünü uygula (Eski davranış)
-
+ Masaüstü nesnesi geçici çözümünü tüm işlemler için kullan
-
+ Alan Sonlandığında
-
+ Bu komut, alan içeriği silinmeden önce çalıştırılacaktır
-
+ Dosya Kurtarmada
-
+ Bu komut, bir dosya kurtarılmadan önce çalıştırılacak ve dosya yolu ilk bağımsız değişken olarak aktarılacaktır. Bu komut 0'dan başka bir değer döndürürse, kurtarma işlemi engellenecektir
-
+ Dosya Denetleyicisini Gir
-
+ İçerik Silmede
-
+ Bu alandaki işlemlere korumalı alan dışındaki ana sistem işlemleri tarafından erişilmesini engeller.
-
-
+
+ İşlem
-
+ Seçenek Ekle
-
+ Burada, uyumluluğu artırmak veya korumalı alan davranışını özelleştirmek için işlem başına gelişmiş seçenekleri yapılandırabilirsiniz.
-
+ Seçenek
-
+ Bu komutlar korumalı alandaki tüm işlemler sonlandıktan sonra ALAN DIŞINDAN çalıştırılır.
-
+ API çağrısı İzleme (tüm SBIE kancalarını izler)
-
+ Tüm SetError Mesajlarını İzleme Günlüğüne Kaydet (Çok fazla çıktı oluşturur)
@@ -7546,32 +7562,37 @@ Bir işlemi belirtmek için yol olarak '$:program.exe' kullanın.Büyük dosya taşınması için kullanıcıya sor
-
+ Panoya okuma erişimini engelle
-
+ Tüm işlemler için korumalı alan pencere istasyonunu taklit et
-
+ Syscall İzleme (Çok fazla çıktı oluşturur)
-
+ Şablon Ekle
-
+
+
+
+
+
+ Şablon Klasörleri
-
+
@@ -7580,48 +7601,48 @@ Please note that this values are currently user specific and saved globally for
Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için global olarak kaydedildiğini unutmayın.
-
-
+
+ Değer
-
+ Erişilebilirlik
-
+ Kaybedilen korumayı telafi etmek için lütfen Güvenlik Seçenekleri > Güvenlik Sıkılaştırması altındaki Yetkilendirme Kısıtlamaları bölümü Hak Bırakma ayarlarına bakın.
-
+ Ekran Okuyucuları: JAWS, NVDA, Window-Eyes, System Access
-
+ Aşağıdaki ayarlar, Sandboxie'nin erişilebilirlik yazılımıyla birlikte kullanılmasını sağlar. Lütfen bu ayarlar etkin olduğunda Sandboxie korumasının bir kısmının ister istemez kaybedildiğini unutmayın.
-
+ DİKKAT: Yerleşik yönetici altında çalışırken, işlemler yönetici ayrıcalıklarını bırakamaz.
-
+ Windows Güvenlik Hesap Yöneticisine açık erişim
-
+ Kaynak Erişim İzleyicisini Devre Dışı Bırak
-
+ Kaynak Erişim İzleyicisi
@@ -7631,126 +7652,126 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
Bu alanı 'alanda çalıştır' seçim isteminde göster
-
+ Güvenlik notu: Sandboxie'nin gözetimi altında, bir yönetici veya sistem belirteci ile çalışan yetkilendirilmiş uygulamalar, yalıtımı atlamak ve sistemi korumalı alanın dışında değiştirmek için daha fazla fırsata sahiptir.
-
+ MSIServer'ın korumalı alan sistem belirteci ile çalışmasına ve gerekirse diğer istisnaları uygulamasına izin ver
-
+ Not: Msi Yükleyici İstisnaları gerekli olmamalıdır, ancak güvendiğiniz bir msi paketini kurarken sorunlarla karşılaşırsanız, bu seçenek kurulumun başarıyla tamamlanmasına yardımcı olabilir. Yönetici haklarını bırakmayı devre dışı hale getirmeyi de deneyebilirsiniz.
-
+ Güvenlik Geliştirmeleri
-
+ Asıl belirteci yalnızca onaylı NT sistem çağrıları için kullan
-
+ Sürücü/cihaz erişimini yalnızca onaylanmış olanlarla kısıtla
-
+ Tüm güvenlik geliştirmelerini etkinleştir (Güvenliği güçlendirilmiş alan yapar)
-
+ Programları birlikte gruplayabilir ve onlara bir grup adı verebilirsiniz. Program grupları, program adları yerine bazı ayarlarla kullanılabilir. Alan için tanımlanan gruplar, şablonlarda tanımlanan grupların üzerine yazılır.
-
+ İşlem Kısıtlamaları
-
+ Listelenmemiş işlemler için ağ/internet erişimini ayarla:
-
+ Kuralları test et, Program:
-
+ Bağlantı Noktası:
-
+ IP:
-
+ Protokol:
-
+ X
-
+ Kural Ekle
-
-
-
+
+
+ Eylem
-
+ Bağlantı Noktası
-
+ IP
-
+ Protokol
-
+ DİKKAT: Windows Filtreleme Platformu sürücü ile etkinleştirilmemiştir, bu nedenle bu kurallar yalnızca kullanıcı modunda uygulanacaktır ve zorlanmaz! Bu, kötü amaçlı uygulamaların bunları atlayabileceği anlamına gelir.
-
+ Korumalı alan programlarının Donanım/Aygıtları yönetmesine izin ver
-
+ Windows Yerel Güvenlik Yetkilisine açık erişim
-
-
+
+ Ağ Güvenlik Duvarı
@@ -7775,93 +7796,93 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
<b>Daha Fazla Alan Türü</b> yalnızca <u>proje destekçileri</u> tarafından kullanılabilir, Gelişmiş Gizlilik alanları <b><font color='red'>kullanıcı verilerini korumalı alandaki programların yetkisiz erişimine karşı korur.</font></b><br />Henüz destekçi değilseniz, lütfen <a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">projeyi desteklemeyi</a> düşünün. <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">destekçi sertifikası</a>.<br />Diğer alan türlerini, bu türlerden yeni korumalı alanlar oluşturarak test edebilirsiniz, ancak bu alanlardaki işlemler 5 dakika sonra otomatik olarak sonlandırılacaktır.
-
+ Windows Kimlik Bilgileri Deposunu aç (Kullanıcı modu)
-
+ Ağ ve güvenlik duvarı parametrelerinde değişikliği engelle (Kullanıcı modu)
-
+ Özgüllüklerine ve İşlem Eşleştirme Düzeylerine göre kurallara öncelik ver
-
+ Gizlilik Modu, genel sistem konumları dışındaki tüm konumlara yapılan dosya ve kayıt defteri erişimini engeller
-
+ Erişim Modu
-
+ Gizlilik Modu etkinleştirildiğinde, korumalı alan işlemleri yalnızca C:\Windows\*, C:\Program Files\* ve HKLM kayıt defterinin bölümlerini okuyabilir, diğer tüm konumların okunabilir ve/veya yazılabilir olması için açık erişime ihtiyacı olacaktır. Bu modda, Kural Özgüllüğü her zaman etkindir.
-
+ Kural İlkeleri
-
+ Dosya ve Anahtar Açma yönergelerini yalnızca korumalı alanın dışında bulunan ikili dosyalara uygula.
-
+ Korumalı alanlı RpcS'leri bir SİSTEM işlemi olarak başlat (Önerilmez)
-
+ Yalnızca ayrıcalıklı işlemlerin Hizmet Kontrol Yöneticisine erişmesine izin ver
-
+ Bir SİSTEM belirteci ile çalışan işlemlerden kritik ayrıcalıkları düşür
-
-
+
+ (Güvenlik Açısından Kritik)
-
+ Korumalı SİSTEM işlemlerini ayrıcalıksız işlemlerden koru
-
+ Güvenlik Yalıtımı, Sandboxie'nin çok kısıtlı işlem belirteci kullanımı yoluyla korumalı alan kısıtlamalarını uygulamasının birincil yoludur. Bu devre dışı bırakılırsa, alan, uygulama bölmesi modunda çalıştırılır, yani artık sağlıklı bir güvenlik sağlayamaz ve yalnızca basit uygulama bölümlemesi sağlar.
-
+ Güvenlik Yalıtımı & Filtreleme
-
+ Güvenlik Filtrelemeyi devre dışı bırak (Önerilmez)
-
+ Güvenlik Filtreme, Sandboxie tarafından dosya sistemi ve kayıt defteri erişim kısıtlamalarını yürütmek ve aynı zamanda işlem erişimini kısıtlamak için kullanılır.
-
+ Yönetici hakları verilmediğinde aşağıdaki seçenekler güvenle kullanılabilir.
@@ -7871,83 +7892,83 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
Bu korumalı alanı her zaman sistem tepsisi listesinde göster (Sabitlenmiş)
-
+ Kural özgüllüğü, belirli bir kuralın belirli bir yolla ne kadar iyi eşleştiğinin bir ölçüsüdür. Basitçe söylemek gerekirse, özgüllük son eşleşen özel karakter olmayan alt dize dahil yolun başından sonuna kadar olan karakterlerin uzunluğudur. Yalnızca "*.tmp" gibi dosya türleriyle eşleşen bir kural, her zaman tüm dosya yolu ile eşleşeceği için en yüksek özgüllüğe sahip olacaktır.
İşlem eşleştirme düzeyi, özgüllükten daha yüksek bir önceliğe sahiptir ve bir kuralın belirli bir işleme nasıl uygulanacağını tanımlar. İşlem adına veya grubuna göre uygulanan kurallar en güçlü eşleştirme düzeyine sahiptir. Ardından olumsuzlama ile eşleştirme gelir, yani belirtilen işlem dışındaki tüm işlemlere uygulanan kurallara aittir; en düşük eşleştirme düzeyleri ise genel eşleştirmelere, yani herhangi bir işleme uygulanan kurallara aittir.
-
+ Varsayılan olarak RpcMgmtSetComTimeout kullanımını devre dışı bırak (Uyumluluk sorunlarını çözebilir)
-
+ Tetikleyiciler
-
+ Olay
-
-
-
-
+
+
+
+ Komut Gir
-
+ Hizmeti Gir
-
+ Bu olaylar, bir alan her başlatıldığında yürütülür
-
+ Alan Başlangıcında
-
-
+
+ Bu komutlar alan içeriği silinmeden hemen önce ALAN DIŞINDAN çalıştırılır
-
+ Bu komutlar yalnızca bir alan ilk kullanıma hazırlandığında yürütülür. Tekrar çalışması için alan içeriğinin silinmesi gerekir.
-
+ Alan İlk Kullanımında
-
+ Burada, çeşitli alan olaylarında otomatik olarak yürütülecek eylemleri belirleyebilirsiniz.
-
+ Korumalı alanda olmayan işlemlerin belleğini okumaya izin ver (Önerilmez)
-
+ Bir işlem erişimi reddedildiğinde 2111 mesajını yayınla
-
+ İç içe iş nesnelerinin kullanımına izin ver (Windows 8 ve sonraki sürümlerde çalışır)
@@ -7979,27 +8000,27 @@ The process match level has a higher priority than the specificity and describes
QPlatformTheme
-
+ TAMAM
-
+ Uygula
-
+ İptal
-
+ &Evet
-
+ &Hayır
@@ -8099,25 +8120,25 @@ The process match level has a higher priority than the specificity and describes
SettingsWindow
-
-
-
-
+
+
+
+ Ad
-
+ Yol
-
+ Parolayı Değiştir
-
+ Ana pencere gizlendiğinde parolayı temizle
@@ -8127,7 +8148,7 @@ The process match level has a higher priority than the specificity and describes
SandboxiePlus Ayarları
-
+ Değişiklik yapmak için parola girilmelidir
@@ -8142,57 +8163,57 @@ The process match level has a higher priority than the specificity and describes
Koyu temayı kullan
-
+ Etkinleştir
-
+ Klasör Ekle
-
+ Yalnızca Yönetici hesapları değişiklik yapabilir
-
+ Yapılandırma Koruması
-
+ Program Ekle
-
+ Sandboxie, sisteminizde aşağıdaki yazılım uygulamalarını belirledi. Bu uygulamalarla uyumluluğu artıracak yapılandırma ayarlarını uygulamak için Tamam'a tıklayın. Bu yapılandırmalar mevcut tüm korumalı alanlarda ve tüm yeni oluşturulacak alanlarda etkili olacaktır.
-
+ Değişiklikler için Sandboxie.ini dosyasını izle
-
+ Gelecekte, yazılım uyumluluğu denetlenmesin
-
+ Devre Dışı Bırak
-
+ Aşağıdaki programlardan herhangi biri korumalı alanın dışında başlatıldığında, Sandboxie SBIE1301 mesajını yayınlayacaktır.
-
+ Programı Kaldır
@@ -8202,17 +8223,17 @@ The process match level has a higher priority than the specificity and describes
Dosya gezgini bağlam menüsüne 'Korumalı Alanda Çalıştır' seçeneği ekle
-
+ Bir program başlatılamadığında 1308 mesajını yayınla
-
+ Korumalı Alan Varsayılanları
-
+ Listelenen programların bu sistemde başlamasını önle
@@ -8222,22 +8243,22 @@ The process match level has a higher priority than the specificity and describes
Bu kullanıcı arayüzündeki bağlantıları korumalı alanda aç
-
+ Korumalı alan <a href="sbie://docs/filerootpath">dosya sistemi kökü</a>:
-
+ Korumalı alan <a href="sbie://docs/ipcrootpath">ipc kökü</a>:
-
+ Korumalı alan <a href="sbie://docs/keyrootpath">kayıt kökü</a>:
-
+ Taşınabilir kök klasörü
@@ -8257,7 +8278,7 @@ The process match level has a higher priority than the specificity and describes
Korumalı alanlar boşaltılırken kurtarma penceresini göster
-
+ ...
@@ -8353,7 +8374,7 @@ The process match level has a higher priority than the specificity and describes
Alan listesinde büyük simgeler kullan *
-
+ Yüksek DPI ölçekleme
@@ -8363,12 +8384,12 @@ The process match level has a higher priority than the specificity and describes
Menülerde simgeleri gösterme *
-
+ Yazı tipi ölçekleme
-
+ (Yeniden başlatma gereklidir)
@@ -8383,7 +8404,7 @@ The process match level has a higher priority than the specificity and describes
Kurtarma penceresini her zaman üstte göster
-
+ %
@@ -8463,57 +8484,57 @@ The process match level has a higher priority than the specificity and describes
Alanlar ve işlemler için simge bindirmelerini göster
-
+ Grafik Seçenekleri
-
+ Gelişmiş Yapılandırma
-
+ Korumalı Alan Özellikleri
-
+ Sandboxie.ini Ön Ayarları
-
+ Program Denetimi
-
+ Sandboxie Yapılandırması
-
+ Ön izleme kanalı, en son yayınlanan GitHub ön sürümlerini içerir.
-
+ Kararlı kanal, en son yayınlanan kararlı GitHub sürümlerini içerir.
-
+ Kararlı kanalda ara
-
+ Ön izleme kanalında ara
-
+ Destek sertifikasını buraya girin
@@ -8528,12 +8549,12 @@ The process match level has a higher priority than the specificity and describes
Simgeyi sistem tepsisinde göster:
-
+ Ağ erişimini kısıtlamak için Windows Filtreleme Platformunu kullan
-
+ GPU hızlandırmayı etkinleştirmek için seçilmiş win32k sistem çağrılarını kancala (Deneysel)
@@ -8604,8 +8625,8 @@ The process match level has a higher priority than the specificity and describes
-
-
+
+ Kaldır
@@ -8615,27 +8636,27 @@ The process match level has a higher priority than the specificity and describes
Komut Satırı
-
+ Destek && Güncellemeler
-
+ Sandboxie-Plus projesinin destekçileri bir <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">destekçi sertifikası</a> alabilir. Bir lisans anahtarı gibi ama açık kaynaklı yazılım kullanan harika insanlar için. :-)
-
+ Sandboxie'yi Windows'un devam eden sürümleri ve tüm web tarayıcıları ile uyumlu tutmak, hiç bitmeyen bir çabadır. Projeye <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">doğrudan katkıda bulunarak</a>, <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">destekçi sertifikası satın alarak</a>, <a href="https://sandboxie-plus.com/go.php?to=patreon">Patreon'a abone olarak</a> veya <a href="https://sandboxie-plus.com/go.php?to=donate">PayPal bağışı yaparak</a> projenin gelişimini destekleyebilirsiniz.<br />Desteğiniz, Sandboxie'nin ilerlemesi ve sürdürülmesinde hayati bir rol oynar.
-
+ Kernel modu nesne filtrelemeyi etkinleştir
-
+ Varsayılan korumalı alan:
@@ -8655,102 +8676,102 @@ The process match level has a higher priority than the specificity and describes
Sandboxie'nin kendi işlemlerini görev listesinden gizle
-
+ Ini Düzenleyici Yazı Tipi
-
+ Yazı tipini seç
-
+ Yazı tipini sıfırla
-
+ Ini Seçenekleri
-
+ #
-
+ Harici Ini Düzenleyici
-
+ Eklenti Yöneticisi
-
+ İsteğe Bağlı Eklentiler
-
+ Sandboxie-Plus çok sayıda seçenek sunar ve çok çeşitli uzantıları destekler. Bu sayfadan eklentilerin, uzantıların ve diğer üçüncü taraf bileşenlerin entegrasyonunu yapılandırabilirsiniz. İsteğe bağlı bileşenler web'den indirilebilir ve bazı kurulumlar yönetici ayrıcalıkları gerektirebilir.
-
+ Durum
-
+ Sürüm
-
+ Açıklama
-
+ <a href="sbie://addons">Eklenti listesini şimdi güncelle</a>
-
+ Yükle
-
+ Eklenti Yapılandırması
-
+ Bellek Diski oluşturmayı etkinleştir
-
+ kilobayt
-
+ Disk Görüntüsü Desteği
-
+ Bellek Sınırı
-
+ Bellek Diski ve Disk Görüntüsü desteğini etkinleştirmek için <a href="addon://ImDisk">ImDisk</a> sürücüsünü yükleyin.
@@ -8800,214 +8821,224 @@ The process match level has a higher priority than the specificity and describes
Tepsiye küçült
-
+
+
+
+
+
+ Bellek Diskine sürücü harfi atayın
-
+ Bir Bellek Diski zaten bağlıysa, bu seçeneğin etkili olması için bağlantısını kesmeniz gerekir.
-
+ * disk oluşturulurken etkili olur
-
+ Sandboxie Desteği
-
+ Bu destekçi sertifikasının süresi dolmuş, lütfen <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">güncellenmiş bir sertifika edinin</a>.
-
+ Al
-
+ Seri Numarasını Kullanarak Sertifika Al/Yükselt/Yenile
-
+ SBIE_-_____-_____-_____-_____
-
+ <a href="https://sandboxie-plus.com/go.php?to=sbie-use-cert">Sertifika kullanım kılavuzu</a>
-
+ Sandboxie Güncelleyici
-
+ Eklenti listesini güncel tut
-
+ Ayarları güncelle
-
+ Insider kanalı, herkese açılacak yeni özelliklere ve hata düzeltmelerine erken erişim sağlar ve ayrıca kararlı kanaldaki ilgili tüm iyileştirmeleri de bulundurur.
Ön izleme kanalından farklı olarak, genel kullanıma hazır olmayan denenmemiş, potansiyel olarak bozuk veya deneysel değişiklikleri içermez.
-
+ Insider kanalında ara
-
+ Seçili sürüm kanalından yeni tam yükleyiciler.
-
+ Tam Yükseltmeler
-
+ Sandboxie-Plus güncellemelerini düzenli aralıklarla denetle
-
+ <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">Insider Kanalı</a> hakkında daha fazla bilgi
-
+ Sorun giderme betik dosyalarını güncel tut
-
+ Güncelleme Denetleme Aralığı
-
+ Anonim kullanıcı yerine Sandboxie oturum açma belirteci kullan
-
+ Program Uyarıları
-
+ Zorunlu işlemler devre dışı bırakıldığında 1301 mesajını yayınla
-
+ USB Sürücü Korumalı Alanı
-
+ Birim
-
+ Bilgi
-
+ USB sürücüler için korumalı alan:
-
+ Bağlı tüm USB sürücülerini otomatik olarak korumalı alana al
-
+ Uygulama Şablonları
-
+ Uygulama Uyumluluğu
-
+ Yerel Şablonlar
-
+ Şablon Ekle
-
+ Metin Filtresi
-
+ Bu liste, korumalı alan seçenekleri için kullanıcı tarafından oluşturulan özel şablonları içerir
-
+
+
+
+
+
+ Ini Düzenleme Bölümü
-
+ Kaydet
-
+ Ini Düzenle
-
+ İptal
-
+ Artımlı Güncellemeler
-
+ Kurulu sürüm için hızlı yamalar, Templates.ini ve çeviri güncellemeleri.
-
+ Gelecekte, sertifika süresinin dolmasıyla ilgili bildirimde bulunma
-
+ Yalnızca Yönetici hesapları Programları Zorlamayı Duraklat komutunu kullanabilir
diff --git a/SandboxiePlus/SandMan/sandman_uk.ts b/SandboxiePlus/SandMan/sandman_uk.ts
index 7e3fea0c..185e437b 100644
--- a/SandboxiePlus/SandMan/sandman_uk.ts
+++ b/SandboxiePlus/SandMan/sandman_uk.ts
@@ -837,12 +837,12 @@ Error: %1
CCompletePage
-
+
-
+
@@ -1188,14 +1188,12 @@ You can use %USER% to save each users sandbox to an own fodler.
CMultiErrorDialog
-
- Sandboxie-Plus - Помилка
+ Sandboxie-Plus - Помилка
-
- Повідомлення
+ Повідомлення
@@ -1622,11 +1620,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
Оберіть каталог
-
+
-
-
+
+
@@ -1636,8 +1634,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
Усі програми
-
-
+
+
@@ -1675,7 +1673,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1746,57 +1744,57 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
-
-
+
+ При старті
-
-
-
-
-
+
+
+
+
+ Виконати команду
-
+ Запустити слубжу
-
+ При ініціалізації
-
+
-
+
-
+
-
+
-
+
@@ -1805,11 +1803,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
При видаленні
-
-
-
-
-
+
+
+
+
+ Будь ласка, введіть командний рядок, який потрібно виконати
@@ -1818,12 +1816,12 @@ Note: The update check is often behind the latest GitHub release to ensure that
Будь ласка, введіть назву файла програми
-
+
-
+ %1 (%2)
@@ -2066,7 +2064,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Будь ласка, введіть індентификатор служби
@@ -2136,7 +2134,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
Заборонити, заблокувавши доступ до пристроїв мережі
-
+
@@ -2250,17 +2248,17 @@ Note: The update check is often behind the latest GitHub release to ensure that
Помилка: %1
-
+
-
+ Тільки локальні шаблони можуть бути видаленими!
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Цей контейнер був видалений, тому конфігурацію не можна зберегти.
-
+ Деякі зміни не збережені досі, ви дійсно хочете закрити це вікно параметрів?
-
+ Введіть програму:
@@ -2681,13 +2679,13 @@ Full path: %4
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.
-
+
@@ -2819,22 +2817,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Очікування папки: %1
-
+ Видалення папки: %1
-
+ Злиття папок: %1 та %2
-
+ Завершення злиття знімків...
@@ -2915,7 +2913,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1
@@ -2935,42 +2933,42 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+
-
+
-
+
-
+
-
+ Скинути налаштування стовців
-
+ Скопіювати клітинку
-
+ Скопіювати рядок
-
+ Скопіювати панель
@@ -3259,7 +3257,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Про Sandboxie-Plus
@@ -3351,11 +3349,11 @@ Do you want to do the clean up?
-
-
-
-
-
+
+
+
+
+ Не показувати це повідомлення знову.
@@ -3387,7 +3385,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Ця пісочниця блокує доступ до папок користувачів, окрім тих, які є дозволеними в налаштуваннях доступу до ресурсів.
-
+ Невідома операція '%1' була запитана за допомогою командного рядка
@@ -3407,62 +3405,62 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
- Видалення вмісту пісочниці
-
+ Виконання під час видалення контейнера: %1
-
+ Автоматичне видалення %1 вміст
-
+
-
+
-
+
-
+ Автоматичне видалення вмісту %1
-
+
-
+
-
+
-
+
-
+ Поточна конфігурація: %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3470,34 +3468,34 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
+
-
-
-
+
+
+ Sandboxie-Plus - Помилка
-
+ Не вдалося зупинити всі компоненти Sandboxie
-
+ Не вдалося запустити потрібні для Sandboxie компоненти
@@ -3533,12 +3531,12 @@ Please check if there is an update for sandboxie.
-
+ Деякі шаблони для сумісності (%1) відсутні або видалені, ви хочете видалити їх з всіх пісочниць?
-
+ Очищення прибраних шаблонів...
@@ -3547,7 +3545,7 @@ Please check if there is an update for sandboxie.
- Портативно
-
+
@@ -3556,27 +3554,27 @@ No will choose: %2
Ні, Sandboxie-Plus обере: %2
-
+ Перед видаленням пісочницю необхідно очистити.
-
+ Цей сертифікат спонсора не є дійсним для цієї збірки, будь ласка, оновіть сертифікат
-
+ Термін дії сертифіката підтримки закінчився%1, будь ласка, отримайте оновлений сертифікат
-
+ , але він залишається дісним для поточної збірки
-
+ Цей сертифікат спонсора буде вичерпаний через %1 днів, будь ласка, отримайте новий сертифікат
@@ -3593,12 +3591,12 @@ No will choose: %2
Оновлений сертифікат недоступний.
-
+ Пісочниця за замовчуванням була не знайдена, створення: %1
-
+ - НЕ підключено
@@ -3611,7 +3609,7 @@ No will choose: %2
%1 (%2):
-
+ Ця функція доступна лише для спонсорів проєкту. Процеси, які працюють з цією функцією без сертифіката спонсора, будуть завершені через 5 хвилин.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Станьте спонсором проєкту</a>, та отримайте <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертифікат спонсора</a>
@@ -3667,22 +3665,22 @@ No will choose: %2
-
+ Тільки адміністратор може змінити конфігурацію.
-
+ Будь ласка, введіть пароль конфігурації.
-
+ Не вдалося увійти: %1
-
+ Ви дійсно хочете завершити всі процеси в всіх пісочницях?
@@ -3691,57 +3689,57 @@ No will choose: %2
Завершити без запитань
-
+ Програму Sandboxie-Plus було запущено в портативному режимі та для цього режиму потрібно сторити необхідні служби. Це може потребувати права адміністратора.
-
+ УВАГА: Ще один агент (можливо, SbieCtrl.exe) вже керує цим сеаносом Sandboxie, будь ласка, завершіть інший сеанс та повторно підключиться.
-
+ Виконання операції для технічного обслуговування, зачекайте...
-
+ Ви дійсно хочете скинути сховані вікна повідомлень (так), або тількі всі повідомлення журналу (ні)?
-
+ Зміни будуть застосовані автоматично, коли файл буде збережений.
-
+ Зміни будуть застосовані автоматично, коли текстовий редактор буде закритий.
-
+ Код помилки: 0x%1 (%2)
-
+ Невідомо
-
+ Не вдалося скопіювати файли пісочниці
-
+ Не вдалося видалити старі файли пісочниці
-
+ Невідома помилка: 0x%1
@@ -3758,34 +3756,34 @@ Note: The update check is often behind the latest GitHub release to ensure that
<p>Оновлення Sandboxie-Plus завантажено в таке розташування:</p><p><a href="%2">%1</a></p><p>Ви хочете почати встановлення? Якщо будь-які програми запущені у пісочниці, вони будуть зупинені.</p>
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>Про Sandboxie-Plus</h3><p>Версія %1</p><p>Copyright (c) 2020-2022 by DavidXanatos</p>
-
+ Ця копія Sandboxie+ зарестрована для: %1
-
+ Sandboxie+ безкоштовний для персонального та некомерційного викоростання.
-
+ Sandboxie-Plus - це продовження Sandboxie з відкритим кодом.<br />Відвідайте <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> для більш детальної інформації.<br /><br />%3<br /><br />Версія драйвера: %1<br />Особливості: %2<br /><br />Зображення з <a href="https://icons8.com">icons8.com</a>
-
+ Для цієї дії потрібні права адміністратора.
-
+
@@ -3910,47 +3908,47 @@ Note: The update check is often behind the latest GitHub release to ensure that
Каталог встановлення: %1
-
+ Версія Sandboxie-Plus: %1 (%2)
-
+ Каталог даних: %1
-
+
-
+
-
-
-
+
+
+ (%1)
-
+ Програма %1, яка працює в пісочниці %2, буде завершена через 5 хвилин, тому що пісочниця має в своїй конфігурації функції, які доступні лише для спонсорів.
-
+ Контейнер %1 налаштовано на використання функцій, доступних виключно для спонсорів проекту, ці попередні налаштування будуть ігноровані.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Стань спонсором проекту</a>, та отримай <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертифікат спонсора</a>
@@ -3983,131 +3981,131 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ The evaluation periode has expired!!!
-
-
+
+
-
+
-
+ Будь ласка, введіть тривалість вимкнення правил примусових програм у секундах.
-
+
-
+
-
+
-
+ Помилка технічного обслуговування (%1)
-
+
-
+ В інтерфейсі Plus цю функцію інтегровано в головний список ізольованого програмного середовища.
-
+ Використовуючи контекстне меню пісочниці/групи, ви можете переміщувати пісочниці та групи в інші групи. Ви також можете використовувати перетягування для переміщення елементів. Крім того, ви також можете використовувати клавіші зі стрілками, утримуючи натиснутою клавішу ALT, щоб переміщувати елементи вгору та вниз у їхній групі.<br />Ви можете створювати нові поля та групи з меню "Пісочниці".
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4115,199 +4113,199 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Конфігурацію Sandboxie перезавантажено
-
+ Не вдалося виконати: %1
-
+ Не вдалося підключитись до драйвера
-
+ Не вдалося підключитись до служби Sandboxie: %1
-
+ Була знайдена несумісна версія Sandboxie %1. Сумістима версія: %2
-
+ Не вдалося знайти місце інсталяції Sandboxie.
-
+ Не вдалося скопіювати конфігурацію пісочниці %1: %2
-
+ Пісочниця з назвою %1 вже існує
-
+ Не вдалося видалити пісочницю %1: %2
-
+ Назва пісочниці має не більше 32 символів.
-
+ Назва пісочниці не повина містити назву пристроя.
-
+ Назва пісочниці має містити тільки літери, цифри та символи підкреслення, які будуть відображатись, як пробіли.
-
+ Не вдалося завершити всі процеси
-
+ Захист від видалення увімкнен для пісочниці
-
+ Усі процеси пісочниці необхідно зупинити, перш ніж вміст контейнера можна буде видалити
-
+ Помилка під час видалення папки пісочниці: %1
-
+ A all processes in a sandbox must be stopped before it can be renamed.
-
+ Не вдалося перемістити папку '%1' до '%2'
-
+
-
+ Ця операція зі знимком не може виконатись, коли процеси працюють в пісочниці.
-
+ Не вдалося створити папку для нового знімку
-
+ Знімок не знайдено
-
+ Помилка під час злиття папок знімків '%1' та '%2', знімок був створений неповністю.
-
+ Не вдалося видалити папку старого знімку '%1'
-
+ Не можливо видалити знімок, який використовується в інших знімках
-
+ Ви не маєте прав змінювати конфігурацію в розділі '%1'
-
+ Не вдалося застосвувати параметр %1 конфігурації в розділі %2: %3
-
+ Не можливо створити знімок у порожній пісочниці
-
+ Пісочниця з такою назвою вже існує
-
+ Пароль конфігурації не повинен містити більше 64 символів
-
+ Операцію скасував користувач
-
+ The content of an un mounted sandbox can not be deleted
-
+ %1
-
+
-
+
-
+
-
+
-
+
-
+ Дія не вдалась для %1 елемента(ів).
@@ -4316,37 +4314,37 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ви хочете відкрити %1 у веб-браузері із пісочниці (так) чи ззовні (ні)?
-
+ Запам'ятати цей вибір.
-
+
-
+
-
+
-
+ Закрити
-
+
-
+
@@ -5341,17 +5339,17 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSelectBoxWindow
-
+ Sandboxie-Plus - Виконати в пісочниці
-
+ Ви хочете виконати цю програму ззовні пісочниці?
-
+ Будь ласка, виберіть пісочницю.
@@ -5466,69 +5464,69 @@ This file is part of Sandboxie and all changed done to it will be reverted next
%1
-
+
-
-
-
+
+
+ Запустити в пісочниці (&S)
-
+
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+
-
+ Error retriving certificate: %1
-
+
-
+
-
+ Ізольований веб-браузер
@@ -5576,63 +5574,63 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Оберіть програму
-
+
-
+
-
+
-
+
-
+
-
+ Вибрати програму
-
+ Виконавчі (*.exe *.cmd)
-
-
+
+ Будь ласка, введіть назву меню
-
+ Будь ласка, введіть команду
-
+ кілобайт (%1)
-
+
@@ -5641,107 +5639,107 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Термін дії цього сертифіката спонсора закінчився, будь ласка, <a href="sbie://update/cert">отримайте оновлений сертифікат</a>.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -5750,12 +5748,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Термін дії цього сертифіката спонсора <font color='red'>закінчиться через %1 дн.</font>, будь ласка <a href="sbie://update/cert">отримайте оновлений сертифікат</a>.
-
+ Запустити без пісочниці (&U)
-
+ Це не схоже на сертифікат. Будь ласка, введіть весь сертифікат, а не лише його частину.
@@ -5768,7 +5766,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Цей сертифікат, на жаль, застарів.
-
+ Дякуємо за підтримку розробки Sandboxie-Plus.
@@ -5777,88 +5775,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Цей сертифікат спонсора не є дійсним.
-
+
-
+
-
+
-
+
-
+
-
-
+
+ Оберіть каталог
-
+
-
+ Будь ласка, введіть новий пароль конфігурації.
-
+ Будь ласка, введіть новий пароль конфігурації ще раз.
-
+ Паролі не збігаються, будь ласка, спробуйте ще раз.
-
+ Процес
-
+ Папка
-
+ Будь ласка, введіть назву файла програми
-
+ Будь ласка, введіть іденфікатор шаблону
-
+ Помилка: %1
-
+
-
+
@@ -5978,32 +5976,32 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSubmitPage
-
+
-
+
-
+
-
+
-
+
-
+ Select partially checked state to sends only message log but no trace log.
@@ -6011,69 +6009,69 @@ Before sending you can review the logs in the main window.
-
+
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Your issue report have been successfully submitted, thank you.
@@ -6711,32 +6709,32 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+
-
+
-
-
-
-
-
+
+
+
+
+ Захистити систему від процесів у пісочниці
-
+ Обмеження рівня прав
-
+ Прибрати права в групи Адміністраторів
@@ -6746,12 +6744,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
px ширини
-
+ Зробити додатки думати, що мають права адміністратора (дозволяє безпечно виконати встановлення деяких програм)
-
+ УВАГА: При запуску з вбудованими правами Адміністратора, процеси не можуть прибрати ці права.
@@ -6761,7 +6759,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Зовнішний вигляд
-
+ (Рекомендовано)
@@ -6841,27 +6839,27 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Дозволити диспетчеру друку, щоб друкувати файлів ззовні пісочниці
-
+ Прибрати диспетчер друку, принтери можуть бути встановлені ззовні пісочниці
-
+ Заблокувати доступ до буферу обміну
-
+ Відкрити системне захищене сховище
-
+ Блокувати доступ до диспетчеру друку
-
+ Інші обмеження
@@ -6871,105 +6869,105 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Обмеження друку
-
+ Обмеження мережі
-
+ Блокувати файли та папки у мережі, якщо вони не відкриті.
-
+ Меню запуску
-
+ Ви можете налаштувати користувальницькі об'єкти для меню запуску пісочниці.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Назва
-
+ Командний рядок
-
+ Додати програму
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Прибрати
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Тип
-
+ Група програм
-
+ Додати групу
-
-
-
-
-
+
+
+
+
+ Додати програму
@@ -6978,57 +6976,57 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Примусові програми
-
+ Примусова папка
-
-
-
+
+
+ Шлях
-
+ Примусова програма
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Показати шаблони
-
+ Примітка безпеки: додатки, які працюють під наглядом Sandboxie з правами адміністратора або з системним токеном, можуть обійти ізоляцію та модифікувати систему ззовні контейнера.
-
+ Дозволити MSIServer для запуску з токеном ізольованої системи та застосовувати інші розширення, якщо це потрібно
-
+ Примітка: Встановникам MSI не потрібні вийнятки. Якщо у вас є проблеми з встановленням MSI та впевнені в безпечності цього встановника, цей параметр може допомогти. Також ви можете вимкнути параметр "Прибрати права адміністратора".
@@ -7062,33 +7060,33 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Права адміністратора
-
+ Відкрити Сховище Windows Credentials (user mode)
-
+ Заборонити змінювати налаштування мережі та файрволу (user mode)
-
+ Видавати повідомлення 2111, коли доступ до процесу заборонено
-
+ Ви можете створити групу програм та дати назву їй. Назву групи можна використовувати замість назв програм. Групи, які визначені для пісочниці, перезаписуються в групи, які визначені в групи.
-
+ Програми, які є тут, або програми, які виконуються з вказаного місцерозташування, будуть автоматично переміщені в цю пісочницю, якщо вони не були запущені в інших пісочницях.
-
-
+
+ Зупинити поведінки
@@ -7113,32 +7111,32 @@ If leader processes are defined, all others are treated as lingering processes.<
Якщо лідерські процеси визначені, всі інші стають, як затримані.
-
+ Обмеження на виконання
-
+ Повідомлення про проблему 1308, коли програма не може виконатись
-
+ Дозволити запускати тільки ці програми в пісочниці. *
-
+ Заборонити запуск цих програм в пісочниці.
-
+ Дозволити виконати всі програми в пісочниці.
-
+ * Примітка: Програми, які встановлені в пісочниці, не зможуть виконатись.
@@ -7147,32 +7145,32 @@ If leader processes are defined, all others are treated as lingering processes.<
Обмеження Інтернету
-
+ Обмеження процесів
-
+ Повідомлення про проблему 1307, коли програма не має доступ до Інтернету
-
+ Зробити підсказку користувачу про дозвіл на звільнення від обмежень.
-
+ Примітка: Програми, встановлені в пісочниці, не матимуть доступу до Інтернету.
-
-
-
-
-
-
+
+
+
+
+
+ Доступ
@@ -7269,137 +7267,131 @@ If leader processes are defined, all others are treated as lingering processes.<
-
-
- Block process from taking screenshots of windows not belonging to the containing sandbox
-
-
-
-
+ Перемістити вгору
-
+ Перемістити вниз
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandbox
-
+
-
+
-
+
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
-
+ Adcanced Security
@@ -7409,52 +7401,52 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
Використовувати логін Sandboxie замість анонімного токена (експериментально)
-
+
-
+
-
+
-
+
-
+ Програмний контроль
-
+
-
+
-
+
-
+
-
+
@@ -7464,223 +7456,212 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
-
-
- Prevents processes in the sandbox from interfering with power operation
-
-
-
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.
-
+
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Реєстр
-
+
-
+
-
+
-
+
-
+ Клас Wnd
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Налаштувати доступ до мережі/інтернету для процесів, які не входять до списку:
-
+ Перевірити правила, програми:
-
+ Порт:
-
+ IP:
-
+ Протокол:
-
+ Х
-
+ Додати правило
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Програма
-
-
-
+
+
+ Дія
-
+ Порт
-
+ IP
-
+ Протокол
-
+ УВАГА: Windows Filtering Platform не увімнений у драйвері, тому ці правила можуть працювати тільки в користувальницькому режимі та можуть бути не застосовані!!! Шкідливі програми можуть це обійти.
-
+ Доступ до ресурсів
@@ -7697,119 +7678,119 @@ You can use 'Open for All' instead to make it apply to all programs, o
Ви можете використовувати 'Відкритий для всіх', щоб застосувати для всіх програм, або змінити цю поведінку у вкладці політик.
-
+ Додати файл/папку
-
+ Додати клас Wnd
-
+ Додати шлях IPC
-
+ Додати ключ реєстру
-
+ Додати об'єкт COM
-
+ Відновлення файлів
-
+
-
+ Додати папку
-
+ Негайне відновлення
-
+ Ігнорувати розширення
-
+ Ігнорувати папку
-
+ Увімкнути термінове відновлення файлів, щоб швидко відновити файли після їх створення.
-
+ Ви можете виключити деякі папки та типи файлів (або розширення файлів) з термінового відновлення.
-
+ Коли швидке відновлення викликано, ці папки будуть перевірені в пісочниці.
-
+ Додаткові налаштування
-
+ Різне
-
+ Не змінювати ім' класів вікон програм у пісочниці
-
+ Не запускати служби пісочниці за допомогою системного токену (рекомендовано)
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Захистити цілісність пісочниці
-
+ Прибрати критичні привілеї у процесів з системним токеном
-
-
+
+ (критично для безпеки)
-
+ Захистити системні процеси пісочниці від непривілегільованих процесів
@@ -7818,7 +7799,7 @@ You can use 'Open for All' instead to make it apply to all programs, o
Ізоляція пісочниці
-
+ Примусове використання користувальницьких файлів маніфесту (застаріле)
@@ -7831,34 +7812,34 @@ You can use 'Open for All' instead to make it apply to all programs, o
Політика доступу до ресурсів
-
+ Правило має таку специфікацію, що воно є мірою того, як добре це правило підходить певному шляху, кількості символів тощо. Правило, яке підходить для файлів типу "*.tmp", має велику специфікацію, оскільки більше підходить за місцерозтушуванням.
Процес рівня має більший пріорітет, чим специфікація та описує правило для процесу. Правила, які застосовуються до назви процесу або групи має більший рівень, за співпаданням по запереченням (тобто правила застосовуються для всіх процесів, але крім одного), поки найнижчі рівні мають глобальні збіги, тобто ті, які завжди застосовуються для будь-якого процесу.
-
+ Пріорітет правил, які побудовані на основі специфікації та рівня процесу
-
+ Приватний режим, блокує доступ до файлів та реєстру для всіх шляхів, окрім системних
-
+ Режим доступу
-
+ Коли приватний режим увімнений, процеси в пісочниці мають доступ лише до C:\Windows\*, C:\Program Files\* та частинам реєстру HKLM, всі інших потрібен доступ на зчитування/записуванняю. У цьому режимі, специфікація правил увімкнена завжди.
-
+ Політика правил
@@ -7867,23 +7848,23 @@ The process match level has a higher priority than the specificity and describes
Застсувати правило для закриття...=!<програм>,... та для всі бінарних файлам у пісочниці.
-
+ Застосувати правила відкриття файлів тільки для бінарних у пісочниці.
-
+ Запустити RpcSc в пісочниці, як системний процес (не рекомендовано)
-
+ Дозволити доступ до Service Control Manager тільки привільованим процесам
-
-
+
+ Сумістність
@@ -7892,17 +7873,17 @@ The process match level has a higher priority than the specificity and describes
Відкрити доступ до COM-інфраструктури (не рекомендовано)
-
+ Додати процеси у пісочниці до об'єктів завдань (рекомендовано)
-
+ Емулювати віконну станцію для всіх процесів у пісочниці
-
+ Дозволити використання вкладених об'єктів завдань (працює тільки в Windows 8 та вище)
@@ -7911,12 +7892,12 @@ The process match level has a higher priority than the specificity and describes
Ізоляція
-
+ Ізоляція безпеки використовує дуже обмежений системний токен, програма Sandboxie використовує це для обмежень пісочниці, коли вона використовує режим для додатків, тобто має лише розділення додатків.
-
+ Дозволити програмам у керувати пристроями комп'ютера
@@ -7929,37 +7910,37 @@ The process match level has a higher priority than the specificity and describes
Різні розширені функції ізоляції можуть порушити сумісність з деякими програмами. Якщо ви використовуєте цю пісочницю <b>НЕ для безпеки</b>, а для простої переносимості програми, змінюючи ці параметри, ви можете відновити сумісність, пожертвовавши певною мірою безпеки.
-
+ Відкрити доступ до Windows Security Account Manager
-
+ Відкрити доступ до Windows Local Security Authority
-
+
-
+
-
+
-
+
-
+ Дозволити читати пам'ять процесів без пісочниці (не рекомендується)
@@ -7968,27 +7949,27 @@ The process match level has a higher priority than the specificity and describes
COM/RPC
-
+ Вимкнути використання RpcMgmtSetComTimeout за замовчуванням (може визивати проблеми з сумісністю)
-
+ Ізоляція та фільтрація безпеки
-
+ Вимкнути фільтр захисту (не рекомендовано)
-
+ Фільтрація безпеки, що використовується Sandboxie для застосування обмежень доступу до файлової системи та реєстру, а також для обмеження доступу до процесу.
-
+ Наведені нижче параметри можна безпечно використовувати, якщо ви не надаєте права адміністратора.
@@ -7997,41 +7978,41 @@ The process match level has a higher priority than the specificity and describes
Ізоляція доступу
-
+ Тригери
-
+ Подія
-
-
-
-
+
+
+
+ Виконати команду
-
+ Запустити слубжу
-
+ Ці події виконуються щоразу, коли запускається контейнер
-
+ При запуску контейнера
-
-
+
+ Ці команди виконуються ПОЗА ПІСОЧНИЦЕЮ безпосередньо перед видаленням вмісту контейнера
@@ -8040,52 +8021,52 @@ The process match level has a higher priority than the specificity and describes
При видаленні контейнера
-
+ Ці команди виконуються лише після ініціалізації контейнера. Щоб запустити їх знову, вміст контейнера потрібно видалити.
-
+ При ініціалізації контейнера
-
+ Тут ви можете вказати дії, які будуть виконуватися автоматично для різних подій контейнера.
-
+ Сховати процеси
-
+ Додати процес
-
+ Сховати процеси хоста від процесів, які виконуються в пісочниці.
-
+ Не дозволяти ізольованим процесам бачити процеси, що виконуються в інших контейнерах
-
+ Користувачі
-
+ Обмежити монітор доступу до ресурсів лише адміністраторам
-
+ Додати користувача
@@ -8094,7 +8075,7 @@ The process match level has a higher priority than the specificity and describes
Видалити користувача
-
+
@@ -8103,23 +8084,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Примітка: Примусові налаштування програм і примусових папок для пісочниці не застосовуються до облікових записів користувачів, які не можуть використовувати пісочницю.
-
+
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.
-
+
-
+ Відстежування
@@ -8129,22 +8110,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Відстежування викликів API (потрібен logapi, який повинен бути встановлений у папку sbie)
-
+ Трасування pipe
-
+ Записувати всі SetError у журналі трасування (створює багато вихідних даних)
-
+ Записувати дані відладки до журналу трасування
-
+ Трасування системних викликів NTDLL (створює багато даних у виході)
-
+ Трасування файлів
-
+ Виключити монітор доступу до ресурсів
-
+ Трасування IPC
-
+ Трасування GUI
-
+ Монітор доступу до ресурсів
-
+ Трасування доступу
-
+ Трасування COM Class
-
+ Трасування Key Trace
-
-
+
+ Мережевий брандмауер
-
+
-
+
-
+ Відладка
-
+ УВАГА, ці налаштування можуть вимкнути захист ядра та зламати захист пісочниці!!!
-
+ Ці параметри призначені для налагодження проблем із сумісністю, будь ласка, не використовуйте їх у виробництві.
-
+ Шаблони для додатків
@@ -8247,22 +8228,22 @@ instead of "*".
Шаблони сумісності
-
+ Категорії фільтрів
-
+ Текстовий фільтр
-
+ Додати шаблон
-
+ Цей список має багату кількість шаблонів сумісності
@@ -8271,17 +8252,17 @@ instead of "*".
Прибрати
-
+ Категорія
-
+ Папка з шаблонами
-
+
@@ -8290,23 +8271,23 @@ Please note that this values are currently user specific and saved globally for
Зауважте, що наразі ці значення є специфічними для користувача та зберігаються глобально для всіх контейнерів.
-
-
+
+ Значення
-
+ Доступність
-
+ Щоб компенсувати втрачений захист, зверніться до сторінки налаштувань Скинути права у групі налаштувань Обмежень.
-
+ Читачі екрану: JAWS, NVDA, Window-Eyes, System Access
@@ -8316,114 +8297,144 @@ Please note that this values are currently user specific and saved globally for
-
+
-
+
-
+
-
+
-
+
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+ Процес
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+ Ці налаштування допомагають використовувати Sandboxie з програмний забезпеченням для спеціальних можливостей. Зауважте, що при використанні цих параметрів, деякі функції захисту можуть не діяти.
-
+ Редагувати розділ ini файлу
-
+ Редагувати ini
-
+ Скасувати
-
+ Зберігти
@@ -8455,27 +8466,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ ОК
-
+ Застосувати
-
+ Відмінити
-
+ Так (&Y)
-
+ Ні (&N)
@@ -8684,22 +8695,22 @@ Please note that this values are currently user specific and saved globally for
Показувати сповіщення в треї, коли запускаються автоматичні операції з контейнерами
-
+ Розширена конфігурація
-
+ Активувати фільтрацію об’єктів режиму ядра
-
+ <a href="sbie://docs/filerootpath">Корінь файлової системи</a> пісочниці:
-
+ Очистити пароль, коли основне вікно сховане
@@ -8708,22 +8719,22 @@ Please note that this values are currently user specific and saved globally for
Розділити папки користувачів
-
+ <a href="sbie://docs/filerootpath">Корінь ipc</a> пісочниці:
-
+ Пісочниця за замовчуванням
-
+ Захист конфігурації
-
+ ...
@@ -8806,112 +8817,112 @@ Please note that this values are currently user specific and saved globally for
Параметри інтерфейсу
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ кілобайт
-
+
-
+
-
+
-
+
@@ -8956,152 +8967,157 @@ Please note that this values are currently user specific and saved globally for
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ <a href="sbie://docs/keyrootpath">Корінь реєстру</a> пісочниці:
-
+ Особливості пісочниці
-
+
-
+ Змінити пароль
-
+ Для внесення змін необхідно ввести пароль
-
+ Лише облікові записи адміністраторів можуть вносити зміни
-
+ Показати Sandboxie.ini для змін
-
+
-
+
-
+
-
+
-
+
-
+ Шаблони для додатків
-
+
-
+ Лише облікові записи адміністраторів можуть використовувати команду Призупинити примусові програми
-
+ Корнева папка для портативної версії
@@ -9121,12 +9137,12 @@ Please note that this values are currently user specific and saved globally for
Показати піктограму в Systray:
-
+ Використовувати Windows Filtering Platform для обмеження доступу до мережі
-
+ Перехоплювати обрані системні Win32k виклики, щоб увімкнути прискорення GPU (experimental)
@@ -9168,7 +9184,7 @@ Please note that this values are currently user specific and saved globally for
Використовувати великі піктограми в списку *
-
+ Високе масштабування DPI
@@ -9183,12 +9199,12 @@ Please note that this values are currently user specific and saved globally for
Використовувати темну тему
-
+ Масштабування шрифту
-
+ (Потрібен перезапуск)
@@ -9203,7 +9219,7 @@ Please note that this values are currently user specific and saved globally for
-
+
@@ -9222,51 +9238,51 @@ Please note that this values are currently user specific and saved globally for
Використовувати логін Sandboxie замість анонімного токена (експериментально)
-
+ Програмний контроль
-
-
-
-
+
+
+
+ Ім'я
-
+ Шлях
-
+ Прибрати програму
-
+ Додати програму
-
+ Коли будь-яка з нижченаведених програм будуть відкриті не в контейнері, Sandboxie повідомить про SBIE1301.
-
+ Додати папку
-
+ Заборонити запуск перелічених програм у цій системі
-
+ Повідомлення про помилку 1308, коли програма не запуститись
@@ -9296,58 +9312,58 @@ Please note that this values are currently user specific and saved globally for
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Програмні сповіщення
-
+
-
+ Config ProtectionЗахист конфігурації
@@ -9384,8 +9400,8 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
+
+ Прибрати
@@ -9395,12 +9411,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Командний рядок
-
+
-
+
@@ -9409,62 +9425,67 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Сумістність
-
+ Більше не перевіряти сумісність
-
+ Увімкнути
-
+ Вимкнути
-
+ Sandboxie помітив, що наступне програмне забезпечення встановлено в системі. Натисніть OK, щоб застосувати налаштування конфігурації, які покращать сумісність з цими додатками. Ці налаштування конфігурації будуть застосовані для всіх існуючих пісочниць та в будь-яких нових пісочницях.
-
+
-
+ Додати шаблон
-
+ Текстовий фільтр
-
+
-
+
+
+
+
+
+ Редагувати розділ ini файлу
-
+ Зберігти
-
+ Редагувати ini
-
+ Скасувати
@@ -9473,13 +9494,13 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Підтримка
-
+ Version Updates
-
+
@@ -9488,22 +9509,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Термін дії цього сертифіката спонсора закінчився, будь ласка, <a href="sbie://update/cert">отримайте оновлений сертифікат</a>.
-
+
-
+
-
+
-
+
@@ -9516,12 +9537,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Підтримка Sandboxie актувльним до нових версий Windows та суміснісним до всіх веб-браузерів - нескінченні зусулля. Підтримайте цю працю за допомогою пожертуванням.<br />Ви можете підтримати розробку за допомогою <a href="https://sandboxie-plus.com/go.php?to=donate">PayPal</a>, також працює з кредитними картками.<br />Або ви можете підтримати проєкт за допомогою <a href="https://sandboxie-plus.com/go.php?to=patreon">передплати на Patreon</a>.
-
+ Надалі не повідомляйте про закінчення терміну дії сертифіката
-
+ Введіть сертифікат спонсора
diff --git a/SandboxiePlus/SandMan/sandman_vi.ts b/SandboxiePlus/SandMan/sandman_vi.ts
index 5633f524..8ba42eb6 100644
--- a/SandboxiePlus/SandMan/sandman_vi.ts
+++ b/SandboxiePlus/SandMan/sandman_vi.ts
@@ -837,12 +837,12 @@ Error: %1
CCompletePage
-
+
-
+
@@ -1184,14 +1184,12 @@ You can use %USER% to save each users sandbox to an own fodler.
CMultiErrorDialog
-
- Sandboxie-Plus - Lỗi
+ Sandboxie-Plus - Lỗi
-
- Thông báo
+ Thông báo
@@ -1614,11 +1612,11 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Chọn Thư Mục
-
+
-
-
+
+
@@ -1628,8 +1626,8 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Tất cả Chương Trình
-
-
+
+
@@ -1667,7 +1665,7 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
+
@@ -1738,66 +1736,66 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Gốc IPC của Sandbox
-
+ Thêm các tuỳ chọn đặc biệt:
-
-
+
+ Lúc khởi động
-
-
-
-
-
+
+
+
+
+ Lệnh Chạy
-
+ Khởi động Dịch vụ
-
+ Lúc Bắt Đầu
-
+ Lúc Khôi Phục Tệp
-
+ Lúc Xoá Dữ Liệu
-
+
-
-
-
-
-
+
+
+
+
+ Vui lòng nhập dòng lệnh sẽ được thực hiện
-
+
-
+
@@ -1806,12 +1804,12 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Vui lòng nhập tên tệp chương trình
-
+ Từ Chối
-
+ %1 (%2)
@@ -2058,7 +2056,7 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
+ Vui lòng nhập số nhận dạng dịch vụ
@@ -2128,7 +2126,7 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Chặn bằng cách từ chối quyền truy cập vào các thiết bị Mạng
-
+
@@ -2230,17 +2228,17 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Lỗi: %1
-
+
-
+ Chỉ có thể loại bỏ các mẫu cục bộ!
-
+
-
+ Tìm kiếm các tùy chọn
-
+ Hộp: %1
-
+ Mẫu: %1
-
+ Toàn bộ: %1
-
+ Mặc định: %1
-
+ Sandbox này đã bị xóa do đó không thể lưu cấu hình.
-
+ Một số thay đổi vẫn chưa được lưu, bạn có thực sự muốn đóng cửa sổ tùy chọn này không?
-
+ Nhập chương trình:
@@ -2661,13 +2659,13 @@ Full path: %4
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.
-
+
@@ -2799,22 +2797,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Đang đợi thư mục: %1
-
+ Xóa thư mục: %1
-
+ Hợp nhất các thư mục: %1 >> %2
-
+ Kết thúc Hợp nhất Bản Ghi chụp nhanh...
@@ -2895,27 +2893,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1
-
+ Đặt lại cột
-
+ Sao chép ô
-
+ Sao chép hàng
-
+ Sao chép bảng điều khiển
@@ -3191,7 +3189,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Về Sandboxie-Plus
@@ -3264,11 +3262,11 @@ Bạn có muốn dọn dẹp không?
-
-
-
-
-
+
+
+
+
+ Không hiển thị lại thông báo này.
@@ -3300,7 +3298,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Sandbox này ngăn quyền truy cập vào tất cả các vị trí dữ liệu người dùng, ngoại trừ được cấp rõ ràng trong các tùy chọn Truy cập tài nguyên.
-
+ Hoạt động không xác định '%1' đã được yêu cầu qua dòng lệnh
@@ -3320,54 +3318,54 @@ Sandbox này ngăn quyền truy cập vào tất cả các vị trí dữ liệu
- Xóa nội dung hộp cát
-
+ Đang thực thi OnBoxDelete: %1
-
+ Tự động xóa Nội dung %1
-
+ Tự động xóa nội dung của %1
-
+ %1 Thư mục: %2
-
+ Đăng kí
-
+ Cài đặt
-
+ Cấu hình hiện tại: %1
-
-
-
+
+
+ Sandboxie-Plus - Lỗi
-
+ Không dừng được tất cả các thành phần Sandboxie
-
+ Không thể khởi động các thành phần Sandboxie bắt buộc
@@ -3416,17 +3414,17 @@ Sandbox này ngăn quyền truy cập vào tất cả các vị trí dữ liệu
-
+ Một số mẫu tương thích (%1) bị thiếu, có thể đã bị xóa, bạn có muốn xóa chúng khỏi tất cả các Sandbox không?
-
+ Đã xóa các mẫu đã xóa ...
-
+
@@ -3435,12 +3433,12 @@ Có sẽ chọn: %1
Không sẽ chọn: %2
-
+ Không tìm thấy Sandbox mặc định; tạo: %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3448,22 +3446,22 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
+
-
+ - Không kết nối
@@ -3476,7 +3474,7 @@ Please check if there is an update for sandboxie.
%1 (%2):
-
+ Bộ tính năng đã chọn chỉ có sẵn cho những người ủng hộ dự án. Các quá trình bắt đầu trong một Sandbox có bật bộ tính năng này mà không có chứng chỉ hỗ trợ sẽ bị chấm dứt sau 5 phút.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Trở thành người hỗ trợ dự án</a>, và nhận được một <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">giấy chứng nhận người ủng hộ</a>
@@ -3532,22 +3530,22 @@ Please check if there is an update for sandboxie.
-
+ Chỉ Quản trị viên mới có thể thay đổi cấu hình.
-
+ Vui lòng nhập mật khẩu cấu hình.
-
+ Đăng nhập thất bại: %1
-
+ Bạn có muốn chấm dứt tất cả các quy trình trong tất cả các hộp cát không?
@@ -3556,133 +3554,133 @@ Please check if there is an update for sandboxie.
Chấm dứt tất cả mà không cần hỏi
-
+ Sandboxie-Plus đã được khởi động ở chế độ Portable và nó cần tạo ra các dịch vụ cần thiết. Điều này sẽ nhắc nhở các đặc quyền quản trị.
-
+ THẬN TRỌNG: Một tác nhân khác (có thể là SbieCtrl.exe) đã quản lý phiên Sandboxie này, vui lòng đóng nó trước và kết nối lại để tiếp quản.
-
+ Đang thực hiện hoạt động bảo trì, vui lòng đợi...
-
+ Bạn cũng muốn đặt lại các hộp thông báo ẩn (có), hay chỉ tất cả các thông báo nhật ký (không)?
-
+ Các thay đổi sẽ được áp dụng tự động bất cứ khi nào tệp được lưu.
-
+ Các thay đổi sẽ được áp dụng tự động ngay khi đóng trình chỉnh sửa.
-
+ Tình trạng lỗi: 0x%1 (%2)
-
+ Không xác định
-
+ Sandbox phải được làm trống trước khi có thể bị xóa.
-
+ Không sao chép được tệp dữ liệu từ Sandbox
-
+ Không xóa được các tệp dữ liệu Sandbox cũ
-
+ Trạng thái lỗi không xác định: 0x%1
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Đóng
-
+
-
+
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>Về Sandboxie-Plus</h3><p>Phiên bản %1</p><p>Copyright (c) 2020-2022 by DavidXanatos</p>
-
+ Bản sao Sandboxie + này được chứng nhận cho: %1
-
+ Sandboxie + miễn phí cho mục đích sử dụng cá nhân và phi thương mại.
-
+ Sandboxie-Plus là phần tiếp theo mã nguồn mở của Sandboxie.<br />Ghé thăm <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> để biết thêm thông tin.<br /><br />%3<br /><br />Phiên bản trình điều khiển: %1<br />Đặc trưng: %2<br /><br />Biểu tượng từ <a href="https://icons8.com">icons8.com</a>
-
+ Quyền quản trị viên được yêu cầu cho hoạt động này.
@@ -3721,7 +3719,7 @@ Please check if there is an update for sandboxie.
-
+
@@ -3843,72 +3841,72 @@ Please check if there is an update for sandboxie.
Nhấp để tải xuống bản cập nhật
-
+ Không có quá trình cưỡng bức
-
+ Đã xóa shortcut: %1
-
+
-
+ Shortcut đã thêm vào: %1
-
+
-
+ Sandboxie-Plus Phiên bản: %1 (%2)
-
+ Thư mục dữ liệu: %1
-
+ chỉ dùng với mục đích cá nhân
-
+ - CHỈ sử dụng cho mục đích phi thương mại
-
-
-
+
+
+ (%1)
-
+ Chương trình %1 bắt đầu trong Sandbox %2 sẽ kết thúc sau 5 phút vì Sandbox đã được định cấu hình để sử dụng các tính năng dành riêng cho những người ủng hộ dự án.
-
+ Sandbox %1 được định cấu hình để sử dụng các tính năng dành riêng cho những người ủng hộ dự án, các giá trị đặt trước này sẽ bị bỏ qua.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert"> Trở thành người hỗ trợ dự án</a>, và nhận được một <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">giấy chứng nhận người ủng hộ</a>
@@ -3941,131 +3939,131 @@ Please check if there is an update for sandboxie.
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ The evaluation periode has expired!!!Thời hạn đánh giá đã hết!!!
-
-
+
+ Không hỏi trong tương lai
-
+
-
+ Vui lòng nhập thời lượng, tính bằng giây, để tắt các quy tắc Chương trình bắt buộc.
-
+ Không có phục hồi
-
+ Không có tin nhắn
-
+
-
+ Hoạt động bảo trì không thành công (%1)
-
+ Hoạt động bảo trì đã hoàn thành
-
+ Trong giao diện người dùng Plus, chức năng này đã được tích hợp vào chế độ xem danh sách Sandbox chính.
-
+ Sử dụng menu ngữ cảnh Sandbox/nhóm, bạn có thể di chuyển các Sandbox và nhóm sang các nhóm khác. Bạn cũng có thể sử dụng kéo và thả để di chuyển các mục xung quanh. Ngoài ra, bạn cũng có thể sử dụng các phím mũi tên trong khi giữ ALT để di chuyển các mục lên và xuống trong nhóm của chúng.<br />Bạn có thể tạo các Sandbox và nhóm mới từ menu Sandbox.
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4073,199 +4071,199 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Cấu hình Sandboxie đã được tải lại
-
+ Không thực hiện được: %1
-
+ Không kết nối được với trình điều khiển
-
+ Không kết nối được với Dịch vụ Sandboxie: %1
-
+ Không tương thích Sandboxie %1 đã được tìm thấy. Các phiên bản tương thích: %2
-
+ Không thể tìm thấy đường dẫn cài đặt Sandboxie.
-
+ Không sao chép được cấu hình từ Sandbox %1: %2
-
+ Sandbox tên %1 đã tồn tại
-
+ Không xóa được Sandbox %1: %2
-
+ Tên Sandbox không được dài hơn 32 ký tự.
-
+ Tên Sandbox không được là tên thiết bị.
-
+ Tên Sandbox chỉ có thể chứa các chữ cái, chữ số và dấu gạch dưới được hiển thị dưới dạng dấu cách.
-
+ Không thể chấm dứt tất cả các tiến trình
-
+ Xóa bảo vệ được bật cho Sandbox
-
+ Tất cả các quá trình Sandbox phải được dừng lại trước khi có thể xóa nội dung Sandbox
-
+ Lỗi khi xóa thư mục Sandbox: %1
-
+ A all processes in a sandbox must be stopped before it can be renamed.
-
+ Không di chuyển được thư mục '%1' to '%2'
-
+
-
+ Không thể thực hiện thao tác Bản ghi nhanh này trong khi các quy trình vẫn đang chạy trong Sandbox.
-
+ Không tạo được thư mục cho Bản ghi nhanh mới
-
+ Bản ghi nhanh không tìm thấy
-
+ Lỗi khi hợp nhất các thư mục bản ghi nhanh '%1' với '%2', bản ghi nhanh chưa được hợp nhất hoàn toàn.
-
+ Không xóa được thư mục bản ghi nhanh cũ '%1'
-
+ Không thể xóa bản ghi nhanh được nhiều bản ghi nhanh sau này chia sẻ
-
+ Bạn không được phép cập nhật cấu hình trong phần '%1'
-
+ Không đặt được cài đặt cấu hình %1 trong phần %2: %3
-
+ Không thể tạo ảnh chụp nhanh của một Sandbox trống
-
+ Một Sandbox có tên đó đã tồn tại
-
+ Mật khẩu cấu hình không được dài hơn 64 ký tự
-
+ Thao tác đã bị người dùng hủy bỏ
-
+ The content of an un mounted sandbox can not be deleted
-
+ %1
-
+
-
+
-
+
-
+
-
+
-
+ Thao tác không thành công cho %1 mục.
@@ -4274,28 +4272,28 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Bạn muốn mở %1 trong trình duyệt Web có Sandbox (có) hay không có Sandbox (không)?
-
+ Hãy nhớ lựa chọn cho sau này.
-
+ Chứng chỉ hỗ trợ không hợp lệ cho bản dựng này, vui lòng nhận chứng chỉ cập nhật
-
+ The supporter certificate is expired %1 days ago, please get an updated certificateChứng chỉ người hỗ trợ đã hết hạn %1, vui lòng nhận chứng chỉ cập nhật
-
+ , nhưng nó vẫn có giá trị cho bản dựng hiện tại
-
+ Chứng chỉ người hỗ trợ sẽ hết hạn sau %1 ngày, xin vui lòng nhận được một chứng chỉ cập nhật
@@ -5247,17 +5245,17 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSelectBoxWindow
-
+ Sandboxie-Plus - Chạy trong Sandbox
-
+ Bạn có chắc chắn muốn chạy chương trình bên ngoài sandbox?
-
+ Vui lòng chọn một sandbox.
@@ -5403,174 +5401,174 @@ This file is part of Sandboxie and all changed done to it will be reverted next
%1
-
+ Tìm kiếm cài đặt
-
-
-
+
+
+ Chạy trong Sandbox
-
+ kilobytes (%1)
-
+
-
+
-
+
-
+
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+
-
+ Error retriving certificate: %1
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Trình duyệt web trong Sandbox
@@ -5593,53 +5591,53 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Duyệt chương trình
-
+
-
+
-
+
-
+
-
+
-
+ Chọn chương trình
-
+ Tệp thực thi (*.exe *.cmd)
-
-
+
+ Vui lòng nhập tiêu đề menu
-
+ Vui lòng nhập một lệnh
@@ -5648,12 +5646,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Chứng chỉ người hỗ trợ này đã hết hạn, vui lòng <a href="sbie://update/cert">nhận chứng chỉ cập nhật</a>.
-
+
-
+
@@ -5662,12 +5660,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Chứng chỉ hỗ trợ này sẽ <font color='red'>hết hạn trong %1 ngày</font>, làm ơn <a href="sbie://update/cert">nhận chứng chỉ cập nhật</a>.
-
+ Chạy ngoài Sandbox
-
+ Đây không giống như một chứng chỉ. Vui lòng nhập toàn bộ chứng chỉ, không chỉ một phần của nó.
@@ -5680,7 +5678,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Chứng chỉ này rất tiếc đã lỗi thời.
-
+ Cảm ơn bạn đã hỗ trợ sự phát triển của Sandboxie-Plus.
@@ -5689,88 +5687,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Chứng chỉ hỗ trợ này không hợp lệ.
-
+
-
+
-
+
-
+
-
+
-
-
+
+ Chọn thư mục
-
+ <a href="check">Kiểm tra ngay</a>
-
+ Vui lòng nhập mật khẩu cấu hình mới.
-
+ Vui lòng nhập lại mật khẩu cấu hình mới.
-
+ Mật khẩu không khớp, vui lòng thử lại.
-
+ Tiến trình
-
+ Thư mục
-
+ Vui lòng nhập tên tệp chương trình
-
+ Vui lòng nhập mã nhận dạng mẫu
-
+ Lỗi: %1
-
+
-
+ %1 (Hiện hành)
@@ -5902,32 +5900,32 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSubmitPage
-
+
-
+
-
+
-
+
-
+
-
+ Select partially checked state to sends only message log but no trace log.
@@ -5935,69 +5933,69 @@ Before sending you can review the logs in the main window.
-
+
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Your issue report have been successfully submitted, thank you.
@@ -6635,32 +6633,32 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Cấu trúc Sandbox
-
+ Tùy chọn bảo mật
-
+ Tăng cường bảo mật
-
-
-
-
-
+
+
+
+
+ Bảo vệ hệ thống khỏi các tiến trình Sandbox
-
+ Hạn chế
-
+ Bỏ quyền khỏi nhóm Quản trị viên và Người dùng quyền lực
@@ -6670,12 +6668,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
px Bề rộng
-
+ Làm cho các ứng dụng nghĩ rằng chúng đang chạy trên quyền truy cập cao (cho phép chạy trình cài đặt một cách an toàn)
-
+ THẬN TRỌNG: Khi chạy dưới quyền quản trị viên tích hợp, các quy trình không thể bỏ các đặc quyền quản trị.
@@ -6685,7 +6683,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Vẻ bề ngoài
-
+ (Khuyến khích)
@@ -6761,27 +6759,27 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Cho phép bộ đệm in in ra các tệp bên ngoài Sandbox
-
+ Loại bỏ hạn chế bộ đệm, máy in có thể được cài đặt bên ngoài Sandbox
-
+ Chặn quyền truy cập đã đọc vào khay nhớ tạm
-
+ Mở bộ nhớ được bảo vệ hệ thống
-
+ Chặn quyền truy cập vào bộ đệm máy in
-
+ Các hạn chế khác
@@ -6791,160 +6789,160 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Hạn chế in ấn
-
+ Hạn chế mạng
-
+ Chặn các tệp và thư mục mạng, trừ khi được mở cụ thể.
-
+ Menu Chạy
-
+ Bạn có thể định cấu hình các mục nhập tùy chỉnh cho menu chạy Sandbox.
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ Tên
-
+ Dòng lệnh
-
+ Thêm chương trình
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Loại bỏ
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Loại
-
+ Nhóm chương trình
-
+ Thêm nhóm
-
-
-
-
-
+
+
+
+
+ Thêm chương trình
-
+ Buộc thư mục
-
-
-
+
+
+ Đường dẫn
-
+ Chương trình bắt buộc
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Hiển thị Mẫu
-
+ Lưu ý bảo mật: Các ứng dụng nâng cao chạy dưới sự giám sát của Sandboxie, với mã thông báo quản trị hoặc hệ thống, có nhiều cơ hội hơn để vượt qua sự cô lập và sửa đổi hệ thống bên ngoài Sandbox.
-
+ Cho phép MSIServer chạy với mã thông báo hệ thống hộp cát và áp dụng các ngoại lệ khác nếu được yêu cầu
-
+ Ghi chú: Không bắt buộc phải có Msi Installer Exemptions, nhưng nếu bạn gặp sự cố khi cài đặt gói msi mà bạn tin tưởng, tùy chọn này có thể giúp quá trình cài đặt hoàn tất thành công. Bạn cũng có thể thử tắt bỏ quyền quản trị viên.
@@ -6974,12 +6972,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Luôn hiển thị Sandbox cát này trong danh sách systray (Đã ghim)
-
+ Mở Windows Credentials Store (chế độ người dùng)
-
+ Ngăn chặn sự thay đổi đối với các thông số mạng và tường lửa (chế độ người dùng)
@@ -6989,99 +6987,93 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
- Block process from taking screenshots of windows not belonging to the containing sandbox
-
-
-
-
+ Bạn có thể nhóm các chương trình lại với nhau và đặt tên nhóm cho chúng. Nhóm chương trình có thể được sử dụng với một số cài đặt thay vì tên chương trình. Các nhóm được xác định cho Sandbox sẽ ghi đè các nhóm được xác định trong mẫu.
-
+ Các chương trình được nhập tại đây hoặc các chương trình được bắt đầu từ các vị trí đã nhập sẽ tự động được đưa vào Sandbox cát này, trừ khi chúng được khởi động rõ ràng trong Sandbox cát khác.
-
-
+
+ Ngừng hành vi
-
+
-
+
-
+
-
+ Bắt đầu hạn chế
-
+ Thông báo sự cố 1308 khi một chương trình không khởi động được
-
+ Chỉ cho phép các chương trình đã chọn bắt đầu trong Sandbox này. *
-
+ Ngăn các chương trình đã chọn khởi động trong Sandbox này.
-
+ Cho phép tất cả các chương trình bắt đầu trong Sandbox này.
-
+ * Ghi chú: Các chương trình được cài đặt vào Sandbox này sẽ không thể khởi động được.
-
+ Hạn chế Tiến trình
-
+ Thông báo sự cố 1307 khi một chương trình bị từ chối truy cập internet
-
+ Nhắc người dùng xem có cho phép miễn lệnh phong tỏa hay không.
-
+ Ghi chú: Các chương trình được cài đặt vào Sandbox này sẽ không thể truy cập internet.
-
-
-
-
-
-
+
+
+
+
+
+ Truy cập
@@ -7178,153 +7170,142 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
- Prevents processes in the sandbox from interfering with power operation
-
-
-
-
-
-
-
-
-
+ Đi lên
-
+ Đi xuống
-
+ Cách ly an ninh
-
+
-
+
-
+
-
-
+
+
-
+ Prevents getting an image of the window in the sandbox.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandbox
-
+
-
+
-
+
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
-
+ Adcanced SecurityBảo mật nâng cao
@@ -7334,119 +7315,119 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
Sử dụng thông tin đăng nhập Sandboxie thay vì mã thông báo ẩn danh (thử nghiệm)
-
+ Cách ly khác
-
+ Cô lập đặc quyền
-
+ Sử dụng Mã thông báo Sandbox tùy chỉnh cho phép cô lập các Sandbox riêng lẻ với nhau tốt hơn và nó hiển thị trong cột người dùng của người quản lý tác vụ tên của Sandbox mà một quy trình thuộc về. Tuy nhiên, một số giải pháp bảo mật của bên thứ 3 có thể gặp sự cố với mã thông báo tùy chỉnh.
-
+ Kiểm soát chương trình
-
+ Chương trình bắt buộc
-
+
-
+ Chương trình đột phá
-
+ Chương trình đột phá
-
+ Thư mục đột phá
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.Các chương trình được nhập ở đây sẽ được phép thoát ra khỏi Sandbox này khi chúng bắt đầu. Cũng có thể thu thập chúng vào một Sandbox khác, chẳng hạn như để trình duyệt web của bạn luôn mở trong một Sandbox chuyên dụng.
-
+ Chương trình kéo dài
-
+ Các chương trình kéo dài sẽ tự động bị chấm dứt nếu chúng vẫn đang chạy sau khi tất cả các quá trình khác đã được chấm dứt.
-
+ Các chương trình dẫn đầu
-
+ If các quy trình của nhà lãnh đạo được xác định, tất cả các quy trình khác được coi là các quy trình kéo dài.
-
+ Các tập tin
-
+ Định cấu hình quy trình nào có thể truy cập Tệp, Thư mục và Đường ống.
'Mở' quyền truy cập chỉ áp dụng cho các mã nhị phân của chương trình nằm bên ngoài Sandbox, bạn có thể dùng 'Mở cho tất cả' thay vào đó để làm cho nó áp dụng cho tất cả các chương trình hoặc thay đổi hành vi này trong tab Chính sách.
-
+ Registry
-
+ Định cấu hình những tiến trình nào có thể truy cập vào Registry.
'Mở' quyền truy cập chỉ áp dụng cho các mã nhị phân của chương trình nằm bên ngoài Sandbox, bạn có thể dùng 'Mở cho tất cả' thay vào đó để làm cho nó áp dụng cho tất cả các chương trình hoặc thay đổi hành vi này trong tab Chính sách.
-
+ IPC
-
+ Định cấu hình quy trình nào có thể truy cập các đối tượng NT IPC như cổng ALPC và bộ nhớ và ngữ cảnh quy trình khác.
Để chỉ định một quy trình sử dụng '$:program.exe' như đường dẫn.
-
+ Wnd
-
+ Wnd Class
@@ -7456,152 +7437,152 @@ To specify a process use '$:program.exe' as path.
Định cấu hình các tiến trình nào có thể truy cập các đối tượng Máy tính để bàn như Windows và các quy trình tương tự.
-
+ COM
-
+ Class Id
-
+ Định cấu hình tiến trình nào có thể truy cập các đối tượng COM.
-
+ Không sử dụng COM ảo hóa, Mở quyền truy cập vào máy chủ cơ sở hạ tầng COM (không được khuyến nghị)
-
+ Chính sách truy cập
-
+ Tùy chọn mạng
-
+ Đặt quyền truy cập mạng / internet cho các quy trình không công khai:
-
+ Quy tắc kiểm tra, chương trình:
-
+ Port:
-
+ IP:
-
+ Giao thức:
-
+ X
-
+ Thêm quy tắc
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Chương trình
-
-
-
+
+
+ Hoạt động
-
+ Port
-
+ IP
-
+ Giao thức
-
+ THẬN TRỌNG:Nền tảng lọc của Windows không được kích hoạt với trình điều khiển, do đó các quy tắc này sẽ chỉ được áp dụng trong chế độ người dùng và không thể được thực thi !!! Điều này có nghĩa là các ứng dụng độc hại có thể bỏ qua chúng.
-
+ Quyền truy cập tài nguyên
-
+ Thêm tệp / thư mục
-
+ Thêm Wnd Class
-
+ Thêm IPC Path
-
+ Chỉ sử dụng mã thông báo ban đầu cho các cuộc gọi hệ thống NT đã được phê duyệt
-
+ Bật tất cả các cải tiến bảo mật (làm cho hộp tăng cường bảo mật)
-
+ Chỉ giới hạn quyền truy cập của trình điều khiển / thiết bị đối với những người đã được phê duyệt
-
+ Cải tiến bảo mật
-
+ Thông báo sự cố 2111 khi quyền truy cập quy trình bị từ chối
@@ -7614,192 +7595,192 @@ To specify a process use '$:program.exe' as path.
Truy cập cách ly
-
+ Mã thông báo Sandboxie
-
+ Thêm Reg Key
-
+ Thêm Đối tượng COM
-
+ Áp dụng Đóng...=!<chương trình>,... quy tắc cũng cho tất cả các tệp nhị phân nằm trong Sandbox.
-
+ Phục hồi tập tin
-
+ Khôi phục nhanh
-
+ Thêm thư mục
-
+ Phục hồi ngay lập tức
-
+ Bỏ qua phần mở rộng
-
+ Bỏ qua thư mục
-
+ Bật lời nhắc Khôi phục ngay lập tức để có thể khôi phục tệp ngay sau khi chúng được tạo.
-
+ Bạn có thể loại trừ các thư mục và loại tệp (hoặc phần mở rộng tệp) khỏi Khôi phục ngay lập tức.
-
+ Khi chức năng Khôi phục nhanh được gọi, các thư mục sau sẽ được kiểm tra nội dung Sandbox.
-
+ Tùy chọn nâng cao
-
+ Khác
-
+ Không thay đổi tên lớp cửa sổ được tạo bởi các chương trình Sandbox
-
+ Không khởi động các dịch vụ Sandbox bằng mã thông báo hệ thống (được khuyến nghị)
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Bảo vệ tính toàn vẹn của hộp cát
-
+ Bỏ các đặc quyền quan trọng khỏi các quy trình đang chạy với mã thông báo HỆ THỐNG
-
-
+
+ (Bảo mật quan trọng)
-
+ Bảo vệ các quy trình HỆ THỐNG hộp cát khỏi các quy trình không có đặc quyền
-
+ Buộc sử dụng các tệp Tệp kê khai giả tùy chỉnh (hành vi kế thừa)
-
+ Độ cụ thể của quy tắc là thước đo mức độ phù hợp của một quy tắc nhất định với một đường dẫn cụ thể, chỉ cần đặt độ cụ thể là độ dài của các ký tự từ đầu đường dẫn đến và bao gồm chuỗi con không phải ký tự đại diện phù hợp cuối cùng. Quy tắc chỉ khớp với các loại tệp như "*.tmp" sẽ có độ đặc hiệu cao nhất vì nó sẽ luôn khớp với toàn bộ đường dẫn tệp.
Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức độ cụ thể và mô tả cách áp dụng quy tắc cho một tiến trình nhất định. Các quy tắc áp dụng theo tên tiến trình hoặc nhóm có mức đối sánh mạnh nhất, tiếp theo là đối sánh bằng phủ định (tức là các quy tắc áp dụng cho tất cả các tiến trình trừ quy trình đã cho), trong khi các cấp đối sánh thấp nhất có các đối sánh toàn cục, tức là các quy tắc áp dụng cho bất kỳ tiến trình nào.
-
+ Ưu tiên các quy tắc dựa trên Mức độ cụ thể và Đối sánh quy trình của chúng
-
+ Chế độ bảo mật, chặn tệp và quyền truy cập đăng ký vào tất cả các vị trí ngoại trừ các vị trí hệ thống chung
-
+ Chế độ truy cập
-
+ Khi Chế độ bảo mật được bật, các quy trình Sandbox sẽ chỉ có thể đọc C:\Windows\*, C:\Program Files\* và các phần của sổ đăng ký HKLM, tất cả các vị trí khác sẽ cần quyền truy cập rõ ràng để có thể đọc được và / hoặc có thể ghi được. Trong chế độ này, Tính cụ thể của quy tắc luôn được bật.
-
+ Chính sách Quy tắc
-
+ Chỉ áp dụng lệnh Mở tệp và Khóa cho các tệp nhị phân nằm bên ngoài Sandbox.
-
+ Bắt đầu các RpcS có Sandbox dưới dạng quy trình HỆ THỐNG (không được khuyến nghị)
-
+ Chỉ cho phép các quy trình đặc quyền truy cập Trình quản lý kiểm soát dịch vụ
-
-
+
+ Khả năng tương thích
-
+ Thêm các quy trình Sandbox vào các đối tượng công việc (được khuyến nghị)
-
+ Mô phỏng trạm cửa sổ Sandbox cho tất cả các quy trình
-
+ Cách ly bảo mật thông qua việc sử dụng mã thông báo quy trình bị hạn chế nhiều là phương tiện chính của Sandboxie để thực thi các hạn chế Sandbox, khi điều này bị vô hiệu hóa, Sandbox sẽ được vận hành ở chế độ ngăn ứng dụng, tức là nó không còn cung cấp bảo mật đáng tin cậy nữa, chỉ phân chia ứng dụng đơn giản.
-
+ Cho phép các chương trình hộp cát quản lý Phần cứng/Thiết bị
@@ -7808,121 +7789,121 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Tắt cách ly bảo mật (thử nghiệm)
-
+ Mở quyền truy cập vào Trình quản lý tài khoản bảo mật của Windows
-
+ Mở quyền truy cập vào Windows Local Security Authority
-
+ Cho phép đọc bộ nhớ của các quy trình không trong Sandbox (không được khuyến nghị)
-
+ Vô hiệu hóa việc sử dụng RpcMgmtSetComTimeout theo mặc định (điều này có thể giải quyết các vấn đề tương thích)
-
+ Cách ly an ninh & Lọc
-
+ Tắt tính năng Lọc bảo mật (không được khuyến nghị)
-
+ Lọc bảo mật được Sandboxie sử dụng để thực thi các hạn chế truy cập hệ thống tệp và sổ đăng ký, cũng như để hạn chế quyền truy cập quy trình.
-
+ Các tùy chọn dưới đây có thể được sử dụng một cách an toàn khi bạn không cấp quyền quản trị viên.
-
+ Triggers
-
+ Event
-
-
-
-
+
+
+
+ Chạy lệnh
-
+ Bắt đầu dịch vụ
-
+ Các sự kiện này được thực thi mỗi khi một Sandbox được khởi động
-
+ Khi bắt đầu Sandbox
-
-
+
+ Các lệnh này được chạy ngoài Sandbox ngay trước khi nội dung Sandbox bị xóa
-
+ Cho phép sử dụng các đối tượng công việc lồng ghép nhau (hoạt động trên Windows 8 trở lên)
-
+ Các lệnh này chỉ được thực thi khi một Sandbox được khởi tạo. Để làm cho chúng chạy lại, nội dung Sandbox phải được xóa.
-
+ Khi khởi động Sandbox
-
+
-
+ Tại đây, bạn có thể chỉ định các hành động được thực thi tự động trên các sự kiện Sandbox khác nhau.
-
+ Ẩn các tiến trình
-
+ Thêm tiến trình
-
+ Ẩn các tiến trình máy chủ khỏi các tiến trình đang chạy trong Sandbox.
@@ -7932,59 +7913,59 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Những hạn chế
-
+ Các tùy chọn khác nhau
-
+ Áp dụng ElevateCreateProcess Workaround (hành vi cũ)
-
+
-
+ Lệnh này sẽ được chạy trước khi nội dung Sandbox bị xóa
-
+ Khi phục hồi tệp
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedLệnh này sẽ được chạy trước khi tệp được khôi phục và đường dẫn tệp sẽ được chuyển làm đối số đầu tiên. Nếu lệnh này trả về bất kỳ điều gì khác với 0, quá trình khôi phục sẽ bị chặn
-
+ Chạy trình kiểm tra tệp
-
+ Khi xóa nội dung
-
+ Không cho phép các tiến trình trong Sandbox cát xem các quy trình đang chạy trong các Sandbox khác
-
+ Bảo vệ các tiến trình trong Sandbox này khỏi bị truy cập bởi các quy trình máy chủ lưu trữ không có Sandbox được chỉ định.
-
-
+
+ Tiến trình
@@ -7993,22 +7974,22 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Chặn cũng đọc quyền truy cập vào các tiến trình trong Sandbox này
-
+ Người dùng
-
+ Giới hạn giám sát Quyền truy cập tài nguyên chỉ dành cho quản trị viên
-
+ Thêm người dùng
-
+
@@ -8017,23 +7998,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Ghi chú: Cài đặt Buộc chương trình và Thư mục bắt buộc cho Sandbox không áp dụng cho các tài khoản người dùng không thể sử dụng Sandbox.
-
+ Thêm tùy chọn
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Tại đây, bạn có thể định cấu hình các tùy chọn nâng cao cho mỗi quy trình để cải thiện khả năng tương thích và / hoặc tùy chỉnh hành vi Sandbox.
-
+ Tuỳ chọn
-
+ Truy tìm
@@ -8042,22 +8023,22 @@ Ghi chú: Cài đặt Buộc chương trình và Thư mục bắt buộc cho Sa
Theo dõi cuộc gọi API (yêu cầu phải cài đặt LogAPI trong thư mục Sbie)
-
+ Pipe Trace
-
+ Ghi lại tất cả SetError' đến Nhật ký theo dõi (tạo ra nhiều đầu ra)
-
+ Ghi đầu ra Gỡ lỗi vào Nhật ký theo dõi
-
+
-
+ Theo dõi tệp
-
+ Tắt tính năng giám sát quyền truy cập tài nguyên
-
+ Theo dõi IPC
-
+ Theo dõi giao diện người dùng
-
+ Giám sát truy cập tài nguyên
-
+ Truy cập theo dõi
-
+ Theo dõi lớp COM
-
+ Theo dõi khoá
-
+ Để bù đắp cho sự bảo vệ đã mất, vui lòng tham khảo trang cài đặt Quyền thả trong nhóm cài đặt Hạn chế.
-
-
+
+ Tường lửa mạng
-
+
-
+ Gỡ lỗi
-
+ CẢNH BÁO, các tùy chọn này có thể vô hiệu hóa các đảm bảo bảo mật cốt lõi và phá vỡ bảo mật Sandbox !!!
-
+ Các tùy chọn này nhằm gỡ lỗi các vấn đề tương thích, vui lòng không sử dụng chúng trong sản xuất.
-
+ Mẫu ứng dụng
-
+ Lọc danh mục
-
+ Bộ lọc văn bản
-
+ Thêm mẫu
-
+ Danh sách này chứa một lượng lớn các mẫu nâng cao khả năng tương thích với Sandbox
-
+ Loại
-
+ Thư mục Mẫu
-
+
@@ -8195,78 +8176,108 @@ Please note that this values are currently user specific and saved globally for
Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dùng và được lưu trên toàn cầu cho tất cả các Sandbox.
-
-
+
+ Giá trị
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+ Mẫu
-
+
+
+
+
+
+ Khả năng tiếp cận
-
+ Trình đọc màn hình: JAWS, NVDA, Window-Eyes, System Access
-
+ Các cài đặt sau cho phép sử dụng Sandboxie kết hợp với phần mềm trợ năng. Xin lưu ý rằng một số biện pháp bảo vệ Sandboxie nhất thiết bị mất khi các cài đặt này có hiệu lực.
-
+ Chỉnh sửa file .ini
-
+ Chỉnh sửa ini
-
+ Hủy bỏ
-
+ Lưu
@@ -8298,27 +8309,27 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
QPlatformTheme
-
+ OK
-
+ Áp dụng
-
+ Hủy bỏ
-
+ &Có
-
+ &Không
@@ -8527,22 +8538,22 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
* một Sandbox kiểm được chọn một phần sẽ để chế độ xem xác định hành vi.
-
+ Cấu hình nâng cao
-
+ Kích hoạt tính năng lọc đối tượng chế độ hạt nhân
-
+ Sandbox <a href="sbie://docs/filerootpath">tập tin gốc hệ thống</a>:
-
+ Xóa mật khẩu khi cửa sổ chính bị ẩn
@@ -8551,22 +8562,22 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
Tách các thư mục người dùng
-
+ Sandbox <a href="sbie://docs/ipcrootpath">gốc IPC</a>:
-
+ Sandbox mặc định
-
+ Bảo vệ cấu hình
-
+ ...
@@ -8649,112 +8660,112 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
Tùy chọn giao diện
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Trạng thái
-
+
-
+
-
+
-
+
-
+
-
+
-
+ kilobytes
-
+
-
+
-
+
-
+
@@ -8804,153 +8815,158 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Sandbox <a href="sbie://docs/keyrootpath">gốc registry</a>:
-
+ Sandbox Tính năng, đặc điểm
-
+
-
+ Đổi mật khẩu
-
+ Mật khẩu phải được nhập để thực hiện thay đổi
-
+ Chỉ tài khoản người dùng Quản trị viên mới có thể thực hiện thay đổi
-
+ Theo dõi Sandboxie.ini để biết các thay đổi
-
+
-
+
-
+
-
+
-
+
-
+ Mẫu ứng dụng
-
+
-
+ Only Administrator user accounts can use Pause Forced Programs Rules commandChỉ tài khoản người dùng Quản trị viên mới có thể sử dụng lệnh Tạm dừng Chương trình Bắt buộc
-
+ Thư mục gốc Portable
@@ -8970,12 +8986,12 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
Hiển thị biểu tượng trong Systray:
-
+ Sử dụng Nền tảng lọc của Windows để hạn chế quyền truy cập mạng
-
+ Kết nối các lệnh gọi hệ thống Win32k đã chọn để bật tăng tốc GPU (thử nghiệm)
@@ -9011,7 +9027,7 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
Sử dụng các biểu tượng lớn trong danh sách hộp *
-
+ Tỷ lệ DPI cao
@@ -9026,12 +9042,12 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
Sử dụng Chủ đề tối
-
+ Tỷ lệ phông chữ
-
+ (Yêu cầu khởi động lại)
@@ -9047,7 +9063,7 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
Trình diễn Nền hình "Pizza" trong danh sách hộp *
-
+ %
@@ -9067,45 +9083,45 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
-
-
-
-
+
+
+
+ Tên
-
+ Đường dẫn
-
+ Xóa chương trình
-
+ Thêm chương trình
-
+ Khi bất kỳ chương trình nào sau đây được khởi chạy bên ngoài bất kỳ Sandbox nào, Sandboxie sẽ đưa ra thông báo SBIE1301.
-
+ Thêm thư mục
-
+ Ngăn không cho các chương trình được liệt kê khởi động trên hệ thống này
-
+ Đưa ra thông báo 1308 khi một chương trình không khởi động được
@@ -9139,63 +9155,63 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
Sử dụng bố cục hộp thoại cấu hình mới *
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Kiểm soát chương trình
-
+ Cảnh báo chương trình
-
+ Phát hành thông báo 1301 khi các quy trình bắt buộc đã bị vô hiệu hóa
-
+ Config ProtectionCấu hình bảo vệ
@@ -9232,8 +9248,8 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
+
+ Loại bỏ
@@ -9243,7 +9259,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Dòng lệnh
-
+
@@ -9252,7 +9268,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Cấu hình hộp cát
-
+
@@ -9261,62 +9277,67 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Khả năng tương thích
-
+ Trong tương lai, không kiểm tra tính tương thích của phần mềm
-
+ Cho phép
-
+ Vô hiệu hóa
-
+ Sandboxie đã phát hiện các ứng dụng phần mềm sau trong hệ thống của bạn. Nhấp vào OK để áp dụng cài đặt cấu hình, điều này sẽ cải thiện khả năng tương thích với các ứng dụng này. Các cài đặt cấu hình này sẽ có hiệu lực trong tất cả các Sandbox hiện có và trong bất kỳ Sandbox mới nào.
-
+
-
+ Thêm mẫu
-
+ Bộ lọc văn bản
-
+
-
+
+
+
+
+
+ Chỉnh sửa file ini
-
+ Lưu
-
+ Chỉnh sửa ini
-
+ Hủy bỏ
@@ -9325,13 +9346,13 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Ủng hộ
-
+ Version Updates
-
+
@@ -9340,17 +9361,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Chứng chỉ người hỗ trợ này đã hết hạn, vui lòng <a href="sbie://update/cert">nhận chứng chỉ cập nhật</a>.
-
+
-
+
-
+
@@ -9359,7 +9380,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Giữ cho Sandboxie luôn cập nhật với các bản phát hành liên tục của Windows và tương thích với tất cả các trình duyệt web là một nỗ lực không bao giờ ngừng nghỉ. Vui lòng xem xét hỗ trợ công việc này bằng một khoản đóng góp.<br />Bạn có thể hỗ trợ sự phát triển với <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">PayPal</a>, cũng làm việc với thẻ tín dụng.<br />Hoặc bạn có thể cung cấp hỗ trợ liên tục với <a href="https://sandboxie-plus.com/go.php?to=patreon">Patreon</a>.
-
+ Tìm kiếm trong kênh Xem trước
@@ -9376,12 +9397,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Tìm kiếm trong kênh Phát hành
-
+ Trong tương lai, không thông báo về việc hết hạn chứng chỉ
-
+ Nhập chứng chỉ hỗ trợ tại đây
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index d1cfa7ec..bcc9add3 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -945,12 +945,12 @@ Error: %1
CCompletePage
-
+ 故障排除已完成
-
+
@@ -1309,14 +1309,12 @@ You can use %USER% to save each users sandbox to an own fodler.
CMultiErrorDialog
-
- Sandboxie-Plus - 错误
+ Sandboxie-Plus - 错误
-
- 消息
+ 消息
@@ -1638,76 +1636,76 @@ Note: The update check is often behind the latest GitHub release to ensure that
沙盒 IPC 根目录
-
+ 添加特殊选项:
-
-
+
+ 沙盒启动阶段
-
-
-
-
-
+
+
+
+
+ 执行命令
-
+ 启动服务
-
+ 沙盒初始阶段
-
+ 文件恢复阶段
-
+ 内容删除阶段
-
+ 在沙盒终止时
-
-
-
-
-
+
+
+
+
+ 请输入需要执行的命令行
-
+ 输入允许访问该沙盒的程序名
-
+ 输入不允许访问该沙盒的程序名
-
+ 拒绝(禁止)
-
+ %1 (%2)
@@ -1936,37 +1934,37 @@ Note: The update check is often behind the latest GitHub release to ensure that
添加 %1 模板
-
+ 搜索选项
-
+ 沙盒: %1
-
+ 模板: %1
-
+ 全局: %1
-
+ 默认: %1
-
+ 该沙盒已被删除,因此配置无法保存
-
+ 部分变更未保存,您确定要关闭这个选项窗口吗?
@@ -1986,7 +1984,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
选择程序
-
+ 请输入一个服务标识符
@@ -2007,8 +2005,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
请输入一则命令
-
-
+
+
@@ -2025,7 +2023,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
请输入新组的名称
-
+ 请输入程序:
@@ -2206,11 +2204,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
所有文件 (*.*)
-
+
-
-
+
+
@@ -2246,7 +2244,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -2339,17 +2337,17 @@ Note: The update check is often behind the latest GitHub release to ensure that
错误:%1
-
+ 你真的想删除选定的本地模板吗?
-
+ 仅可删除本地模板!
-
+ 阻止访问 - 通过禁止访问网络设备
-
+
@@ -2781,13 +2779,13 @@ Full path: %4
无法初始化此故障排除程序。您可以单击“下一步”提交问题报告。
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.内部出现故障,此故障排除程序无法继续。您可以单击“下一步”提交问题报告。
-
+
@@ -2922,22 +2920,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ 正在等待文件夹: %1
-
+ 正在删除文件夹: %1
-
+ 正在合并文件夹: %1 >> %2
-
+ 正在完成快照合并...
@@ -3018,7 +3016,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1
@@ -3038,27 +3036,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
<a href="sbie://update/check" style="color: red;">存在一个新的 Sandboxie-Plus 更新 v%1 可用</a>
-
+ 没有必沙程序
-
+ 重置列
-
+ 复制此格
-
+ 复制此行
-
+ 复制此表
@@ -3314,7 +3312,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Sandboxie-Plus 内部版本 [%1]
@@ -3345,7 +3343,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ 关于 Sandboxie-Plus
@@ -3552,11 +3550,11 @@ Do you want to do the clean up?
-
-
-
-
-
+
+
+
+
+ 不再显示此消息
@@ -3586,7 +3584,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
此类沙盒将限制沙盒内程序对沙盒外数据的访问,除非在资源访问选项中明确授权
-
+ 来自命令行的未知操作请求 '%1'
@@ -3606,104 +3604,104 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
- 正在删除沙盒内容
-
+ 在删除沙盒时执行: %1
-
+ 自动删除 %1 的内容
-
+ 移除快捷方式: %1
-
+ 更新快捷方式到: %1
-
+ 添加快捷方式: %1
-
+ 自动删除 %1 的内容
-
+ 自动删除沙盒 %1
-
+ %1 目录: %2
-
+ 应用程序
-
+ 安装
-
-
-
+
+
+ Sandboxie-Plus - 错误
-
+ 停止全部的 Sandboxie 组件失败
-
+ 启动所需的 Sandboxie 组件失败
-
+ 已重载沙盒配置文件
-
+ 此赞助者凭据对该版本沙盒无效,请获取可用的新凭据
-
+ 此赞助者凭据已过期%1,请获取可用的新凭据
-
+ ,但它对当前构建的沙盒版本仍然有效
-
+ 此赞助者凭据将在 %1 天后过期,请获取可用的新凭据
-
+ 选定的特性只对项目赞助者可用。如果没有赞助者凭据,在启用该特性的沙盒里启动的进程,将在 5 分钟后被终止。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成为项目赞助者</a>,以获得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">赞助者凭据</a>
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3712,113 +3710,113 @@ Please check if there is an update for sandboxie.
请检查 Sandboxie 是否有更新版本。
-
+ 对于当前版本,不再显示此消息。
-
+ 您的Windows版本 %1 超过了 Sandboxie 版本的当前已知支持范围,Sandboxie 将尝试使用上一个已知的配置,这可能会导致系统不稳定。
-
+ 是否要省略安装向导?
-
+ 错误状态: 0x%1 (%2)
-
+ 未知
-
+ 无法删除旧沙盒中的数据文件
-
+ 该操作已被用户取消
-
+ 未知错误状态: 0x%1
-
+ 是否打开链接 %1?您可以选择是否使用沙盒中的浏览器打开。
-
+ 沙盒中的
-
+ 沙盒外的
-
+ 区分大小写
-
+ 正则表达式
-
+ 高亮显示
-
+ 关闭
-
+ 查找(&F)...
-
+ 所有列
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>关于 Sandboxie-Plus</h3><p>版本 %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
-
+ 此 Sandboxie+ 副本已授权给: %1
-
+ Sandboxie+ 可免费用于个人和其他非商业用途
-
+ Sandboxie-Plus 是知名程序 Sandboxie 自开源以来的一个延续。<br />访问 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 来了解更多信息<br /><br />%3<br /><br />驱动版本: %1<br />特性: %2<br /><br />图标来源: <a href="https://icons8.com">icons8.com</a>
-
+ 未找到默认沙盒,正在创建:%1
@@ -3846,17 +3844,17 @@ Please check if there is an update for sandboxie.
<a href="sbie://update/apply" style="color: red;">存在一个新的 Sandboxie-Plus 更新 %1 已准备就绪</a>
-
+ 部分兼容性模板(%1)丢失,可能已被删除,是否要在所有沙盒中移除?
-
+ 已清理缺失的模板...
-
+
@@ -3865,25 +3863,25 @@ No will choose: %2
“否”将选择目录: %2
-
+ - 未连接
-
+ 在沙盒 %2 中启动的程序 %1 将在 5 分钟之后自动终止,因为使用此沙盒被配置为项目赞助者的特供功能
-
+ 沙盒 %1 被配置为使用项目赞助者专有的沙盒类型,这些预设选项将被忽略
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成为项目赞助者</a>,以获得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">赞助者凭据</a>
@@ -3954,17 +3952,17 @@ No will choose: %2
-
+ 仅管理员可更改该配置
-
+ 请输入配置保护密码
-
+ 登录失败:%1
@@ -3986,7 +3984,7 @@ No will choose: %2
正在导入:%1
-
+ 确定要终止所有沙盒中的所有进程吗?
@@ -3995,59 +3993,59 @@ No will choose: %2
终止所有且不再询问
-
+ 没有恢复文件
-
+ 没有消息
-
+ Sandboxie-Plus 正以便携模式启动,需要创建所需的服务,这将会寻求管理员权限
-
+ 警告:另一代理程序 (可能是 SbieCtrl.exe) 已接管当前 Sandboxie 会话,请将其关闭,然后尝试重新连接以接管控制
-
+ <b>错误:</b>Sandboxie Plus管理器(SandMan.exe)没有有效的签名(SandMan.exe.sig)。请从<a href="https://sandboxie-plus.com/go.php?to=sbie-get">官方下载</a>。
-
+ 维护作业完成
-
+ 正在执行操作维护,请稍候...
-
+ 在 Plus 视图,此功能已被整合到主沙盒列表中
-
+ 使用“沙盒/组”右键菜单,你可以将沙盒在沙盒组之间移动
同时,你也可以通过 Alt + 方向键或鼠标拖动来整理列表
另外,你可以通过右键菜单来新建“沙盒/组”
-
+ 请确认是否要重置已隐藏的消息框(选“是”),或者仅重置所有日志消息(选“否”)?
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4056,128 +4054,128 @@ This file is part of Sandboxie and all changed done to it will be reverted next
因为该文件是 Sandboxie 的一部分并且所有的更改会在下次更新时被重置
-
+ 当文件被保存时,将自动应用更改
-
+ 编辑器被关闭后,更改将很快自动应用
-
+ 此操作需要管理员权限
-
+ 执行失败:%1
-
+ 连接驱动程序失败
-
+ 无法与 Sandboxie 服务通信:%1
-
+ 发现不兼容的 Sandboxie %1,其它兼容的版本:%2
-
+ 无法找到 Sandboxie 的安装路径
-
+ 复制沙盒配置 %1: %2 失败
-
+ 名为 %1 的沙盒已存在
-
+ 删除沙盒 %1: %2 失败
-
+ 沙盒名称不能超过 32 个字符
-
+ 沙盒名称不能为设备名称
-
+ 沙盒名称只能包含字母、数字和下划线(显示为空格)
-
+ 终止所有进程失败
-
+ 该沙盒已启用删除保护
-
+ 在删除沙盒内容之前,必须先停止沙盒内的所有进程
-
+ 删除沙盒文件夹出错:%1
-
+ A all processes in a sandbox must be stopped before it can be renamed.必须先停止沙盒中的所有进程,然后才能对其进行重命名。
-
+ 沙盒被删除前必须清空
-
+ 移动目录 '%1' 到 '%2' 失败
-
+ 无法将沙盒镜像“%1”移动到“%2”
-
+ 因有进程正在沙盒中运行,此快照操作无法完成
-
+ 创建新快照的目录失败
-
+ Sandboxie-Plus 版本: %1 (%2)
@@ -4199,215 +4197,215 @@ This file is part of Sandboxie and all changed done to it will be reverted next
该沙盒将会被 <a href="sbie://docs/boxencryption">加密</a> and <a href="sbie://docs/black-box">,对沙盒内容的访问会被保护</a>。
-
+ 未找到USB沙盒,正在创建:%1
-
+ 在沙盒内的终端执行
-
+ 当前配置: %1
-
+ 数据存放目录: %1
-
+ 个人用户
-
+ - 仅用于非商业用途
-
+ 配置快捷键 %1 失败,错误:%2
-
-
-
+
+
+ (%1)
-
+ 沙盒 %1 被指定为仅对项目赞助者开放的功能。
-
+ 沙盒 %1 被指定为需要更高级赞助许可证的功能。
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">升级您的许可证</a> 以解锁高级功能。
-
+ 选择的功能需要更高级赞助许可证。
-
+ 您所选择的特性仅适用于项目赞助者。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成为项目赞助者</a>, 获取一份 <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">赞助者凭据</a>
-
+ 您尝试使用的凭据已被阻止,这意味着它已因故失效。任何使用该凭据的企图都构成对使用条款的违反!
-
+ 凭据的签名无效!
-
+ 凭据不适用于本产品。
-
+ 凭据已被节点锁定。
-
+ 赞助者凭据无效。
错误:%1
-
+ The evaluation periode has expired!!!已超过评估期限!!!
-
-
+
+ 此后不再询问
-
+ 确定要终止加密沙盒中的所有进程并卸载加密沙盒吗?
-
+ 请输入「停用必沙程序规则」的持续时间 (单位: 秒)
-
+ 维护作业执行失败 (%1)
-
+ 复制沙盒数据文件失败
-
+ 没有找到快照
-
+ 合并快照目录 '%1' 和 '%2' 出错,快照没有被完全合并
-
+ 移除旧快照的目录 '%1' 失败
-
+ 无法移除被多个后续快照所共享的快照
-
+ 您未被授权在 '%1' 更新配置
-
+ 在 %2: %3 中设定配置设置 %1 失败
-
+ 无法为空的沙盒创建快照
-
+ 已存在同名沙盒
-
+ 配置保护密码长度不能超过 64 个字符
-
+ The content of an un mounted sandbox can not be deleted无法删除已卸载的沙盒的内容
-
+ %1
-
+ 导入/导出不可用,无法加载 7z.dll
-
+ 无法创建沙盒存档
-
+ 无法打开 7z 备份
-
+ 无法解压沙盒备份
-
+ 所选的 7z 文件不是沙盒备份
-
+ %1 项操作失败
@@ -4416,7 +4414,7 @@ Error: %1
是否在沙盒中的浏览器打开链接 %1 ?
-
+ 记住选择供之后使用
@@ -5370,17 +5368,17 @@ Error: %1
CSelectBoxWindow
-
+ Sandboxie-Plus - 在沙盒内运行
-
+ 确定要在沙盒外运行程序吗?
-
+ 请选择一个沙盒
@@ -5489,79 +5487,79 @@ Error: %1
%1
-
+ 搜索设置
-
-
-
+
+
+ 在沙盒中运行(&S)
-
+ Kb (%1)
-
+ 未挂载卷
-
+ 此赞助者凭据已过期,请<a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">更新凭据</a>。
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.您尝试在未输入预先存在的赞助者凭据的情况下使用功能升级密钥。请注意,这种类型的密钥(<b>正如网站上以粗体明确说明的那样</b)要求您拥有预先存在的有效赞助者凭据; <br />如果您想使用高级功能,您需要同时获得标准凭据和功能升级密钥来解锁高级功能。
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.您试图在未输入预先存在的赞助者凭据的情况下使用续订密钥。请注意,这种类型的密钥(<b>正如网站上以粗体明确说明的那样</b)要求您拥有预先存在的有效赞助者凭据;没有它是没有用的。
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u><br /><br /><u>如果您没有阅读产品说明而错误地获取了此密钥,请通过电子邮件(在我们的网站上提供)联系我们来解决此问题。</u>
-
+ 正在检索凭据...
-
+ Error retriving certificate: %1检索凭据时出错:%1
-
+ 未知错误(可能是网络问题)
-
+ 主页
-
+ 浏览器(沙盒)
@@ -5609,53 +5607,53 @@ Error: %1
下载并安装
-
+ 浏览程序
-
+ 添加 %1 模板
-
+ 选择字体
-
+ 重置字体
-
+ %0, %1 磅
-
+ 请输入信息
-
+ 选择程序
-
+ 可执行文件 (*.exe *.cmd)
-
-
+
+ 请输入一个菜单标题
-
+ 请输入一则命令
@@ -5664,17 +5662,17 @@ Error: %1
此赞助者凭据已过期,请<a href="sbie://update/cert">获取新凭据</a>
-
+ <br /><font color='red'>Plus 附加的高级功能将在 %1 天后被禁用</font>
-
+ <br /><font color='red'>对于当前安装的版本,Plus功能仍处于启用状态。</font>但是,您将无法再访问Sandboxie Live服务,包括兼容性更新和在线疑难解答数据库。
-
+ 此赞助者凭据将<font color='red'>在 %1 天后过期</font>,请<a href="sbie://update/cert">更新凭据</a>。
@@ -5683,37 +5681,37 @@ Error: %1
正在检索凭据…
-
+ 贡献值
-
+ 终身
-
+ 商业
-
+ 个人
-
+ Great Patreon
-
+ Patreon
-
+ 家庭
@@ -5722,12 +5720,12 @@ Error: %1
订阅
-
+ 评估
-
+ 类型 %1
@@ -5736,42 +5734,42 @@ Error: %1
标准
-
+ 高级
-
+ 最高等级
-
+ 等级 %1
-
+ 需要赞助者凭据进行访问
-
+ 需要赞助者凭据进行自动化动作
-
+ 很遗憾,此凭据对当前版本无效,您需要获取新凭据或降级到早期版本。
-
+ 尽管此凭据已过期,但对于当前安装的版本,附加功能仍处于启用状态。但是,您将无法再访问Sandboxie Live服务,包括兼容性更新和在线疑难解答数据库。
-
+ 很遗憾,此凭据已过期,请获取新凭据。
@@ -5780,7 +5778,7 @@ Error: %1
<br /><font color='red'>在此版本中,Plus 附加的高级功能仍是可用的</font>
-
+ <br />Plus 附加的高级功能已不再可用
@@ -5794,12 +5792,12 @@ Error: %1
需要赞助者凭据
-
+ 在沙盒外运行(&U)
-
+ 这看起来不像是一份凭据。请输入完整的凭据,而不仅仅是其中的一部分
@@ -5812,7 +5810,7 @@ Error: %1
非常抱歉,此凭据已过时
-
+ 感谢您对 Sandboxie-Plus 开发工作的支持
@@ -5821,88 +5819,88 @@ Error: %1
此赞助者凭据无效
-
+ 更新可用
-
+ 已安装
-
+ 来自 %1
-
+ (更多信息网址)
-
+ 此加载项是必需的,无法删除。
-
-
+
+ 选择目录
-
+ <a href="check">立即检查</a>
-
+ 请输入新的配置保护密码
-
+ 请再次输入新的配置保护密码
-
+ 输入的密码不一致,请重新输入
-
+ 进程
-
+ 文件夹
-
+ 请输入一个程序文件名
-
+ 请输入模板标识符
-
+ 错误:%1
-
+ 你真的想删除选定的本地模板吗?
-
+ %1 (当前)
@@ -6022,17 +6020,17 @@ Error: %1
CSubmitPage
-
+ 提交问题报告
-
+ 详细问题描述
-
+ 附加 Sandboxie.ini
@@ -6042,17 +6040,17 @@ Error: %1
沙盒的兼容性取决于配置,因此附加 Sandboxe.ini 文件有助于发现问题。
-
+ 沙盒的兼容性取决于配置,因此附加 Sandboxe.ini 文件有助于发现问题。
-
+ 附加日志
-
+ Select partially checked state to sends only message log but no trace log.
@@ -6061,70 +6059,70 @@ Before sending you can review the logs in the main window.
发送之前,您可以在主窗口中查看日志。
-
+ 附加崩溃转储
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.应用程序在故障排除程序中崩溃,附加崩溃转储可以帮助调试。
-
+ 电子邮件地址
-
+ 您可以选择提供电子邮件地址,以在确定了问题的解决方案后收到通知。
-
+ 对于 Sandboxie-Plus 给您带来的不便,我们深表歉意。
-
+ 很遗憾,自动故障排除程序失败了。
-
+ 遗憾的是,对于您所描述的特定问题,没有可用的自动故障排除程序。
-
+ 如果您希望提交问题报告,请查看下面的报告并单击“完成”。
-
+ 正在压缩日志
-
+ 正在压缩转储
-
+ 提交问题报告……
-
+ 提交问题报告失败,错误%1
请尝试在不附加日志的情况下提交。
-
+ Your issue report have been successfully submitted, thank you.您的问题报告已成功提交,谢谢。
@@ -6772,41 +6770,41 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ 保护系统免受沙盒内进程的影响
-
+ 提权限制
-
+ 拦截对网络文件和文件夹的访问,除非专门开放访问权限
-
+ 使应用程序认为自己已被提权运行(允许安全地运行安装程序)
-
+ 网络限制
-
+ 撤销管理员和 Power Users 用户组的权限
-
+ (推荐)
@@ -6868,7 +6866,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
询问用户是否迁移大文件
-
+ 解除打印限制,可在沙盒外安装打印机
@@ -6878,7 +6876,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
打印限制
-
+ 开放“系统保护的存储”权限
@@ -6888,22 +6886,22 @@ If you are a great patreaon supporter already, sandboxie can check online for an
允许打印服务在沙盒外打印文件
-
+ 警告:在内置的管理员用户下运行时,不能撤销进程的管理员权限
-
+ 阻止访问打印服务
-
+ 其它限制
-
+ 阻止访问系统剪贴板
@@ -6913,150 +6911,150 @@ If you are a great patreaon supporter already, sandboxie can check online for an
在“在沙盒中运行”对话框中显示此沙盒
-
+ 安全提示:在沙盒监管下运行的程序,若具有管理员或系统权限令牌,将有更多机会绕过沙盒的隔离,并修改沙盒外部的系统
-
+ 允许 MSIServer 在沙盒内使用系统令牌运行,并在必要时给予其它限制权限的豁免
-
+ 注意:MSI 安装程序的权限豁免不是必须的,但是如果在安装受信任的程序包时遇到问题,此选项可能会有助于成功完成安装,此外也可以尝试关闭「撤销管理员权限」选项
-
+ 运行菜单
-
+ 可以在此处为沙盒列表的「运行」菜单配置自定义命令
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ 名称
-
+ 命令行
-
+ 添加程序
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 移除
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 类型
-
+ 程序组
-
+ 添加组
-
-
-
-
-
+
+
+
+
+ 添加程序
-
+ 必沙目录
-
-
-
+
+
+ 路径
-
+ 必沙程序
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 显示模板
@@ -7086,12 +7084,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
固定住此沙盒,以便总是在系统托盘列表显示
-
+ 开放 Windows 凭据存储访问权限 (用户态)
-
+ 拦截对网络及防火墙参数的更改 (用户态)
@@ -7101,283 +7099,282 @@ If you are a great patreaon supporter already, sandboxie can check online for an
强制挂载保护
-
- 阻止干预用户操作(移动鼠标,使窗口Z序靠前等)
+ 阻止干预用户操作(移动鼠标,使窗口Z序靠前等)
-
+ 可以在此处将应用程序分组并给它们分配一个组名,程序组可用于代替程序名被用于某些设置,在此处定义的沙盒程序组将覆盖模板中定义的程序组
-
+ 此处指定的程序或者指定位置中的程序,将自动进入此沙盒,除非已明确在其它沙盒中启动它
-
-
+
+ 停止行为
-
+ 停止选项
-
+ 使用停留宽容度
-
+ 不要停止含有窗口的驻留进程
-
+ 启动限制
-
+ 程序启动失败时,提示问题代码 1308
-
+ 仅允许所选程序在此沙盒中启动 *
-
+ 阻止所选的程序在此沙盒中启动
-
+ 允许所有程序在此沙盒中启动
-
+ * 注意:安装在此沙盒里的程序将完全无法启动
-
+ 程序限制
-
+ 程序被拒绝访问网络时,提示问题代码 1307
-
+ 注意:安装在此沙盒中的程序将完全无法访问网络
-
+ 询问用户是否允许例外
-
+ 资源访问
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 程序
-
-
-
-
-
-
+
+
+
+
+
+ 访问
-
+ 添加注册表键值
-
+ 添加文件/文件夹
-
+ 添加窗口类
-
+ 添加 COM 对象
-
+ 添加 IPC 路径
-
+ 文件恢复
-
+ 添加文件夹
-
+ 忽略扩展名
-
+ 忽略文件夹
-
+ 启用快速恢复提示,以便快速恢复创建的文件
-
+ 可以在此处从快速恢复中排除特定目录和文件类型(扩展名)
-
+ 当快速恢复功能被调用时,检查沙盒内的下列文件夹
-
+ 高级选项
-
+ 杂项
-
+ 不使用系统令牌启动沙盒化的服务 (推荐)
-
+ 不要改变由沙盒内程序创建的窗口类名
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 沙盒完整性保护
-
-
+
+ 兼容性
-
+ 添加沙盒化进程到作业对象 (推荐)
-
+ 强制使用自定义虚拟 Manifest 文件 (传统行为)
-
+ 仅允许特权进程访问“服务控制管理器”
-
+ 为所有进程模拟沙盒化的窗口状况
-
+ Open access to windows Security Account Manager开放 Windows 安全帐户管理器 (SAM) 的访问权限
-
+ 隐藏进程
-
+ 添加进程
-
+ 对沙盒内运行的进程隐藏宿主的进程
-
+ 不允许沙盒内的进程查看其它沙盒里运行的进程
-
+ 沙盒中的所有进程结束后,这些命令将在无沙盒的环境下运行。
-
+ 用户
-
+ 仅允许管理员访问“资源访问监视器”
-
+ 添加用户
-
+
@@ -7386,52 +7383,52 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
注意:沙盒的必沙程序及文件夹设置不适用于不能运行沙盒的系统用户
-
+ 跟踪
-
+ API 调用跟踪 (跟踪所有 SBIE 钩子)
-
+ COM 类跟踪
-
+ IPC 跟踪
-
+ 键值跟踪
-
+ GUI 跟踪
-
+ 安全增强
-
+ 只在经过批准的 NT 系统调用中使用原始令牌
-
+ 将对“驱动程序/设备”的访问权限制在已知的终结点列表内
-
+ 启用所有安全增强功能(安全防护加固型沙盒选项)
@@ -7455,68 +7452,68 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
图标
-
+ 上移
-
+ 下移
-
+ 安全选项
-
+ 安全加固
-
+ 安全隔离
-
+ 注意:各种隔离功能会破坏与某些应用程序的兼容性<br />如果使用此沙盒<b>不是为了安全性</b>,而是为了应用程序的可移植性,可通过改变这些选项,以便通过牺牲部分安全性来恢复兼容性
-
+ 访问隔离
-
+ 映像保护
-
+ 当一个程序试图加载一个沙盒内部的动态链接库(.dll)文件时,提示问题代码 1305
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandbox阻止安装在宿主上的沙盒程序从沙盒内部加载DLL(动态链接库)文件
-
+ Dll && 扩展
-
+ 说明
-
+ Sandboxie 的资源访问规则通常对位于沙盒内的二进制程序具有歧视性
@@ -7535,13 +7532,13 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
使用主机映像保护,可以通过阻止在沙盒内运行的应用程序(安装在宿主上的)加载来自沙盒的动态链接库来防止此类现象
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.沙盒功能可以使用可选的.dll文件来获得增强,这些.dll文件可以在SbieDll.dll启动时加载到每个沙盒进程中。全局设置中的插件管理器提供了一些有用的扩展。安装后,就可以在这里为当前的沙盒启用。
-
+ Adcanced Security安全性(高级)
@@ -7551,53 +7548,53 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
使用 Sandboxie 限权用户,而不是匿名令牌 (实验性)
-
+ 其它隔离
-
+ 特权隔离
-
+ 沙盒令牌
-
+ 使用自定义沙盒令牌可以更好地将各个沙盒相互隔离,同时可以实现在任务管理器的用户栏中显示进程所属的沙盒
但是,某些第三方安全解决方案可能会与自定义令牌产生兼容性问题
-
+ 程序控制
-
+ 必沙程序
-
+ 禁用此沙盒的“强制进程/目录 规则”
-
+ 分离程序
-
+ 分离程序
-
+ 分离目录
@@ -7606,39 +7603,39 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
阻止通过Windows公共方法获取未沙盒化窗口的图像
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.此处设置的程序在启动时将被允许脱离这个沙盒,利用此选项可以将程序捕获到另一个沙盒里
例如,让网络浏览器总是在一个专门的沙盒里打开
-
+ 驻留程序
-
+ 其它所有程序被终止后,仍在运行的驻留程序将自动终止
-
+ 引导进程
-
+ 如果定义了引导进程,其它进程将被视作驻留进程
-
+ 文件
-
+ 配置哪些进程可以访问文件、文件夹和管道
@@ -7646,12 +7643,12 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
你可以使用“完全开放”来对所有程序开放所有权限,或者在策略标签中改变这一行为
-
+ 注册表
-
+ 配置哪些进程可以读写注册表
@@ -7659,24 +7656,24 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
你可以使用“完全开放”来对所有程序开放所有权限,或者在策略标签中改变这一行为
-
+ IPC
-
+ 配置哪些进程可以访问 NT IPC 对象,如 ALPC 端口及其他进程的内存和相关运行状态环境
如需指定一个进程,使用“$:program.exe”作为路径值(不含双引号)
-
+ 窗口
-
+ 窗口类
@@ -7686,194 +7683,194 @@ To specify a process use '$:program.exe' as path.
配置哪些进程可以访问桌面对象,如 Windows 或其它类似对象
-
+ COM
-
+ 类 Id
-
+ 配置哪些进程可以访问 COM 对象
-
+ 不虚拟化 COM 对象,而是开放主机的 COM 基础结构 (不推荐)
-
+ 权限策略
-
+ 将 Close...=!<program>,... 规则,应用到位于沙盒内的所有相关二进制文件
-
+ 网络选项
-
+ 不在列表中的程序的网络访问权限:
-
+ 测试规则或程序:
-
+ 端口:
-
+ IP:
-
+ 协议:
-
+ X
-
+ 添加规则
-
-
-
+
+
+ 动作
-
+ 端口
-
+ IP
-
+ 协议
-
+ 警告:未在此驱动程序启用 Windows 筛选平台,因此以下规则只能在用户模式下生效,无法被强制执行!!!恶意程序可能会绕过这些规则的限制
-
+ 规则的特异度是衡量一个给定规则对特定路径的匹配程度,简单地说,特异度是指从路径的最开始到最后一个匹配的非通配符子串之间的字符长度,一个只匹配 “*.tmp” 这样的文件类型的规则将具有最高的特异性,因为它总是匹配整个文件路径
进程匹配级别的优先级高于特异度,它描述了一条规则如何适用于一个给定的进程,按进程名称或程序组应用的规则具有最高的匹配级别,其次是否定匹配模式(即适用于匹配除给定进程以外的所有进程的规则),而匹配级别最低的是全局匹配,即适用于任何进程的规则
-
+ 基于规则的特异度和进程匹配级别对规则进行优先级排序
-
+ 隐私模式,阻止对通用系统目录之外的所有文件位置和注册表节点的访问
-
+ 访问权限模式
-
+ 当启用隐私模式时,沙盒进程将只能读取 C:\Windows\* 、 C:\Program Files\* 和注册表 HKLM 节点下的部分内容,除此之外的所有其它位置都需要明确的访问授权才能被读取或写入,在此模式下,专有规则将总是被应用
-
+ 规则策略
-
+ 只对位于沙盒之外的二进制文件应用文件和密钥权限开放指令
-
+ 以系统进程启动沙盒服务 RpcSs (不推荐)
-
+ Allow use of nested job objects (experimental, works on Windows 8 and later)允许使用嵌套作业对象(job object) (仅适用于 Windows 8 及更高版本)
-
+ 撤销以系统令牌运行中的程序的关键特权
-
-
+
+ (安全关键)
-
+ 保护沙盒中的系统进程免受非特权进程的影响
-
+ 通过严格限制进程令牌的使用来进行安全隔离是 Sandboxie 执行沙盒化限制的主要手段,当它被禁用时,沙盒将在应用隔间模式下运行,此时将不再提供可靠的安全限制,只是简单进行应用分隔
-
+ 允许沙盒内程序管理硬件设备
-
+ 开放 Windows 本地安全验证 (LSA) 的访问权限
-
+ 允许读取非沙盒进程的内存 (不推荐)
-
+ 进程被拒绝访问非沙盒进程内存时,提示问题代码 2111
-
+ 默认禁用 RpcMgmtSetComTimeout (或许可以解决兼容性问题)
@@ -7882,76 +7879,76 @@ The process match level has a higher priority than the specificity and describes
禁用安全隔离 (实验性)
-
+ 安全隔离 & 筛查
-
+ 禁用安全筛查功能 (不推荐)
-
+ 安全筛查被 Sandboxie 用来强制执行文件系统和注册表访问限制,以及限制进程访问
-
+ 以下选项可以在你未授予管理员权限时安全的使用
-
+ 触发器
-
+ 事件
-
-
-
-
+
+
+
+ 执行命令
-
+ 启动服务
-
+ 这些事件当沙盒每次启动时都会被执行
-
+ 沙盒启动阶段
-
-
+
+ 这些命令将在删除沙盒的内容之前,以非沙盒化的方式被执行
-
+ 这些命令只在沙盒被初始化时执行,要使它们再次运行,必须删除沙盒内容
-
+ 沙盒初始阶段
-
+ 在此处可以配置各种沙盒事件中自动执行特定的动作
@@ -7961,32 +7958,32 @@ The process match level has a higher priority than the specificity and describes
API 调用跟踪 (需要安装 LogAPI 模块到沙盒目录)
-
+ 记录所有 SetError 到跟踪日志 (将产生大量输出)
-
+ 文件跟踪
-
+ 管道跟踪
-
+ 访问跟踪
-
+ 调试日志输出到跟踪日志
-
+ Ntdll 系统调用跟踪 (将产生大量输出)
-
+ 禁用资源访问监控器
-
+ 资源访问监控
-
-
+
+ 网络防火墙
-
+ 调试
-
+ 警告,这些选项可使核心安全保障失效并且破坏沙盒安全!
-
+ 这些选项是为调试兼容性问题提供的,日常使用者勿碰。
-
+ 应用模板
-
+ 类别筛选
-
+ 文本筛选
-
+ 添加模板
-
+ 此列表含有大量的沙盒兼容性增强模板
-
+ 类别
-
+ 目录模板
-
+
@@ -8084,23 +8081,23 @@ Please note that this values are currently user specific and saved globally for
请注意,这些值对当前用户的所有沙盒保存
-
-
+
+ 值
-
+ 无障碍功能
-
+ 要弥补失去的保护,请参考“限制”设置组中的降低权限部分
-
+ 屏幕阅读器:JAWS、NVDA、Window-Eyes、系统无障碍接口
@@ -8207,131 +8204,154 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
限制选项
- Block process from taking screenshots of windows not belonging to the containing sandbox
- 阻止沙盒内的进程使用公共方法捕获窗口图像
+ 阻止沙盒内的进程使用公共方法捕获窗口图像
- Prevents processes in the sandbox from interfering with power operation
- 防止沙盒中的进程干扰电源操作
+ 防止沙盒中的进程干扰电源操作
-
+ 关闭安全隔离功能
-
-
+
+ 沙盒保护
-
+ Prevents getting an image of the window in the sandbox.阻止进程捕获在沙盒中的窗口的图像
-
+ 允许有用的 Windows 进程访问受保护的进程
-
+ 阻止沙盒外程序访问沙盒内进程
-
+ 允许进程
-
+ 当沙盒外程序访问沙盒根目录或沙盒化进程对象时,发出 1318/1317 警告。
-
+ Sandboxie-Plus 可以创建凭据加密沙盒,避免沙盒外潜在的恶意软件篡改或监听沙盒内进程。通过利用加密沙盒映像,该功能提供了高度可靠的操作安全性,保障了沙盒进程的安全与完整性。
-
+ 阻止进程
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 使用 Sandboxie 限权用户替代匿名令牌
-
+ <b><font color='red'>安全提示</font>:</b> 使用 <a href="sbie://docs/breakoutfolder">BreakoutFolder</a> 或 <a href="sbie://docs/breakoutprocess">BreakoutProcess</a> 结合 Open[File/Pipe]Path directives 功能会造成安全性下降, <a href="sbie://docs/breakoutdocument">BreakoutDocument</a>允许任意拓展名 * 或不安全拓展名 (*.exe;*.dll;*.ocx;*.cmd;*.bat;*.lnk;*.pif;*.url;*.ps1;etc…) . 请您在使用前,自行阅读文档中关于安全的部分。
-
+ 配置那些进程可以访问桌面组件(例如窗口等)
-
+ 其它选项
-
+ 阻止端口
-
+ 阻止常见 SAMBA 端口
-
+ 阻止 DNS、UDP 端口 53
-
+ 快速恢复
-
+ 即时恢复
-
+ 其它杂项
-
+ 应用 ElevateCreateProcess 解决方案 (传统行为)
-
+ 对所有进程应用桌面对象解决方案
-
+ 当短时间连续按下全局热键3次时,此异常将被忽略。
-
+ 当调用“终止所有进程”时,排除终止此沙盒的进程。
@@ -8340,44 +8360,44 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
此命令在沙盒中的所有进程终止后运行。
-
+ 在沙盒的终端内
-
+ 该命令将在删除沙盒内容之前运行
-
+ 文件恢复阶段
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked该命令将在文件恢复前运行,文件路径将作为最先被传递的参数,如果该命令的返回值不为 0,恢复动作将被终止
-
+ 运行文件检查
-
+ 内容删除阶段
-
+ 保护此沙盒内的进程不被指定的非沙盒的主机进程访问
-
-
+
+ 进程
@@ -8386,18 +8406,18 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
阻止对位于该沙盒中的进程的读取访问
-
+ 添加选项
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.在此处可以配置各个进程的高级选项,以提高兼容性或自定义沙盒的某些行为
-
+ 选项
@@ -8406,37 +8426,42 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
DNS 请求日志
-
+ 系统调用追踪(产生大量输出)
-
+ 模板
-
+
+
+
+
+
+ 以下设置允许 Sandboxie 与辅助功能软件结合,请注意:当这些设置生效时,会使 Sandboxie 的部分保护措施失效
-
+ 配置文本
-
+ 编辑配置
-
+ 取消
-
+ 保存
@@ -8468,27 +8493,27 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
QPlatformTheme
-
+ 确定
-
+ 应用
-
+ 取消
-
+ 是(&Y)
-
+ 否(&N)
@@ -8628,12 +8653,12 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
当沙盒自动化作业事件开始执行时,弹出托盘通知
-
+ 激活内核模式的对象过滤器
-
+ Hook 选定的 Win32k 系统调用钩子以启用 GPU 加速 (实验性)
@@ -8751,32 +8776,32 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
为沙盒与进程显示覆盖图标
-
+ Sandboxie-Plus 项目的支持者可以收到<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">支持者凭据</a>。这与许可证密钥类似,但适用于使用开源软件的优秀用户。:-)
-
+ 让 Sandboxie 跟上 Windows 的滚动发布并与所有网络浏览器兼容是一项永无止境的努力。您可以通过以下方式进行支持:<a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">直接为项目贡献</a>,通过<a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">购买赞助者凭据</a>,通过<a href="https://sandboxie-plus.com/go.php?to=patreon">在Patreon上订阅</a>,或通过<a href="https://sandboxie-plus.com/go.php?to=donate">PayPal捐赠</a>。<br/>您的支持对Sandboxie的发展和维护起着至关重要的作用。
-
+ 本地模板
-
+ 添加模板
-
+ 筛选文本
-
+ 该列表包含用户为沙盒选项创建的自定义模板
@@ -8797,8 +8822,8 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
-
-
+
+ 移除
@@ -8818,68 +8843,73 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
禁用SBIE消息弹出窗口(它们仍将记录到“消息”选项卡中)
-
+ Ini编辑器字体
-
+ 选择字体
-
+ 重置字体
-
+ #
-
+ 强迫症对齐,未想到合适的翻译之前,暂不打算跟进此处的翻译捐赠支持
-
+ 默认沙盒:
-
+ 程序警报
-
+ 当必沙进程被禁止时,提示问题代码 1301
-
+
+
+
+
+
+ 配置文本
-
+ 保存
-
+ 编辑配置
-
+ 取消
-
+ Version Updates增量更新
@@ -8889,7 +8919,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
来自选定发布通道的新的完整版本
-
+ 针对已安装版本的 Templates.ini 模板和翻译的热更新补丁
@@ -8901,12 +8931,12 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
界面选项
-
+ 图形选项
-
+ 预览版通道包含最新的 GitHub 预发布版本
@@ -8915,12 +8945,12 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
新版本:
-
+ 稳定版通道包含最新的 GitHub 稳定版本
-
+ 稳定版通道
@@ -8930,7 +8960,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
使 Sandboxie 与 Windows 的滚动更新保持同步,并和主流浏览器保持兼容性,这是一项永无止境的努力,请考虑捐赠以支持这项工作<br />您可以通过 <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">PayPal 捐赠</a> (支持使用信用卡付款)来支持项目的开发<br />您也可以通过 <a href="https://sandboxie-plus.com/go.php?to=patreon">Patreon 订阅</a> 来提供持续的捐赠支持
-
+ 预览版通道
@@ -8947,7 +8977,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
定期检查有无 Sandboxie-Plus 更新
-
+ 不再通知凭据过期的情况
@@ -8973,33 +9003,33 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
在清空沙盒时显示恢复窗口
-
+ 保护配置
-
+ 沙盒 <a href="sbie://docs/ipcrootpath">IPC 根目录</a>:
-
+ 沙盒 <a href="sbie://docs/keyrootpath">注册表根目录</a>:
-
+ 主窗口隐藏时清除密码
-
+ Only Administrator user accounts can use Pause Forced Programs Rules command仅管理员用户可「停用必沙程序规则」
-
+ 沙盒 <a href="sbie://docs/filerootpath">文件系统根目录</a>:
@@ -9049,43 +9079,43 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
沙盒管理器启动选项
-
+ 高级选项
-
+ 使用 Windows 筛选平台 (WFP) 限制网络访问
-
+ 沙盒功能
-
+ Config Protection保护配置
-
+ 仅管理员用户可更改
-
+ 更改必须输入密码
-
+ 更改密码
-
+ 在此输入赞助者凭据
@@ -9094,22 +9124,22 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
支持设置
-
+ 便携化根目录
-
+ ...
-
+ 沙盒预设
-
+ 监控 Sandboxie.ini 变更
@@ -9151,7 +9181,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
在沙盒列表中使用大图标 *
-
+ 高 DPI 缩放
@@ -9166,12 +9196,12 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
使用深色主题
-
+ 字体缩放
-
+ (需要重启沙盒)
@@ -9186,7 +9216,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
始终置顶恢复文件窗口
-
+ %
@@ -9206,10 +9236,10 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
-
-
-
-
+
+
+
+ 名称
@@ -9224,32 +9254,32 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
在“游戏/演示”模式下,禁止弹出通知
-
+ 路径
-
+ 删除程序
-
+ 添加程序
-
+ 下列程序在沙盒之外启动时,Sandboxie 将提示 SBIE1301 警告
-
+ 添加文件夹
-
+ 阻止下列程序在此系统中启动
@@ -9260,82 +9290,82 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
从任务列表中隐藏Sandboxie自身进程
-
+ Ini选项
-
+ 外部Ini编辑器
-
+ 加载项管理器
-
+ 可选加载项
-
+ Sandboxie Plus提供了许多选项,并支持广泛的扩展。在这个页面上,您可以配置插件、插件和其他第三方组件。可选组件可以从网络下载,安装某些扩展可能需要管理员权限。
-
+ 状态
-
+ 版本
-
+ 说明
-
+ <a href="sbie://addons">立即更新加载项列表</a>
-
+ 安装
-
+ 加载项配置
-
+ 启用内存虚拟磁盘创建
-
+ Kb
-
+ 磁盘映像支持
-
+ 内存大小限制
-
+ <a href="addon://ImDisk">安装 ImDisk</a> 驱动以启用内存虚拟磁盘和磁盘映像。
@@ -9385,179 +9415,184 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
最小化到托盘
-
+
+
+
+
+
+ 为内存盘分配驱动器号
-
+ 当已经装载内存盘时,您需要卸载它才能使此选项生效。
-
+ * 在磁盘创建时生效
-
+ Sandboxie 支持
-
+ 此赞助者凭据已过期,请<a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">更新凭据</a>。
-
+ 获取
-
+ 使用序列号检索/升级/续订凭据
-
+ SBIE_-_____-_____-_____-_____
-
+ <a href="https://sandboxie-plus.com/go.php?to=sbie-use-cert">凭据使用指南</a>
-
+ Sandboxie 更新器
-
+ 使加载项列表保持最新
-
+ 更新设置
-
+ 内部通道提供了对最终将向公众发布的新功能和错误修复的早期访问,以及稳定通道的所有相关改进。
与预览通道不同,它不包括未经测试的、潜在的破坏性的或可能无法广泛使用的实验性更改。
-
+ 在内部版通道中搜索
-
+ 所选发布频道的完整的安装程序。
-
+ 完整更新
-
+ 定期检查新的 Sandboxie Plus 版本
-
+ 查看有关<a href="https://sandboxie-plus.com/go.php?to=sbie-insider">内部通道</a>的更多信息
-
+ 使故障排除脚本保持最新
-
+ 检查更新间隔
-
+ 使用 Sandboxie 限权用户替代匿名令牌
-
+ Sandboxie.ini 预设选项
-
+ 程序控制
-
+ 程序启动失败时,提示问题代码 1308
-
+ USB驱动器沙盒
-
+ 卷
-
+ 信息
-
+ USB驱动器沙盒:
-
+ 自动为所有连接的USB设备使用沙盒
-
+ 应用模板
-
+ 软件兼容性
-
+ 之后不再检查软件兼容性
-
+ 启用
-
+ 禁用
-
+ 沙盒已检测到系统中安装了以下软件,点击“确定”应用配置,将改进与这些软件的兼容性,这些配置将作用于所有沙盒,包括现存和未来新增的沙盒
diff --git a/SandboxiePlus/SandMan/sandman_zh_TW.ts b/SandboxiePlus/SandMan/sandman_zh_TW.ts
index 4d7d8af3..c2ae03c0 100644
--- a/SandboxiePlus/SandMan/sandman_zh_TW.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_TW.ts
@@ -922,12 +922,12 @@ Error: %1
CCompletePage
-
+ 疑難排解已完成
-
+
@@ -1286,14 +1286,12 @@ You can use %USER% to save each users sandbox to an own fodler.
CMultiErrorDialog
-
- Sandboxie-Plus - 錯誤
+ Sandboxie-Plus - 錯誤
-
- 訊息
+ 訊息
@@ -1706,11 +1704,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
選擇目錄
-
+
-
-
+
+
@@ -1720,8 +1718,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
所有程式
-
-
+
+
@@ -1759,7 +1757,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1831,66 +1829,66 @@ Note: The update check is often behind the latest GitHub release to ensure that
沙箱 IPC 根目錄
-
+ 加入特殊選項:
-
-
+
+ 啟動階段
-
-
-
-
-
+
+
+
+
+ 執行命令
-
+ 啟動服務
-
+ 初始化階段
-
+ 檔案復原階段
-
+ 內容刪除階段
-
+ 終止階段
-
-
-
-
-
+
+
+
+
+ 請輸入將要執行的命令列
-
+ 請輸入程式檔案名稱以允許存取此沙箱
-
+ 請輸入程式檔案名稱以拒絕存取此沙箱
@@ -1899,12 +1897,12 @@ Note: The update check is often behind the latest GitHub release to ensure that
請輸入一個程式檔案名稱
-
+ 拒絕 (停用)
-
+ %1 (%2)
@@ -2151,7 +2149,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
已復原映像標頭
-
+ 請輸入服務識別字元
@@ -2221,7 +2219,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
阻止存取 - 透過拒絕對區域網路裝置的存取
-
+
@@ -2323,17 +2321,17 @@ Note: The update check is often behind the latest GitHub release to ensure that
錯誤:%1
-
+ 是否刪除選取的本地範本?
-
+ 僅可刪除本地範本!
-
+ 加入 %1 範本
-
+ 搜尋選項
-
+ 沙箱: %1
-
+ 範本: %1
-
+ 全域: %1
-
+ 預設: %1
-
+ 此沙箱已被刪除,因此組態無法儲存。
-
+ 部分變更未儲存,確定關閉這個選項視窗嗎?
-
+ 請輸入程式:
@@ -2760,13 +2758,13 @@ Full path: %4
此疑難排解流程無法被初始化。您可以點按「下一個」以提交問題回報。
-
+ Somethign failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.某些內部錯誤發生,導致此疑難排解流程無法繼續進行。你可以點按「下一個」以提交問題回報。
-
+
@@ -2901,22 +2899,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ 正在等待資料夾: %1
-
+ 正在刪除資料夾: %1
-
+ 正在合併資料夾: %1 >> %2
-
+ 正在完成快照合併...
@@ -2997,27 +2995,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1
-
+ 重設欄
-
+ 複製單元格
-
+ 複製列
-
+ 複製表格
@@ -3280,7 +3278,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ 關於 Sandboxie-Plus
@@ -3364,11 +3362,11 @@ Do you want to do the clean up?
-
-
-
-
-
+
+
+
+
+ 不再顯示此訊息。
@@ -3398,7 +3396,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
<br /><br />此類沙箱會<a href="sbie://docs/privacy-mode">阻止存取所有使用者資料</a>的位置,除非在資源存取選項中明確授權。
-
+ 透過命令列請求的未知操作 '%1'
@@ -3418,42 +3416,42 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
- 刪除沙箱內容
-
+ 在刪除沙箱時執行: %1
-
+ 自動刪除 %1 的內容
-
+ 自動刪除 %1 的內容
-
+ %1 目錄: %2
-
+ 應用程式
-
+ 安裝
-
+ 目前組態: %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3462,34 +3460,34 @@ Please check if there is an update for sandboxie.
請檢查 Sandboxie 是否有更新。
-
+ 不再於目前組建中顯示此訊息。
-
+ 您的 Windows 組建版本 %1 超出了 Sandboxie 版本目前已知的支援能力,Sandboxie 將嘗試使用最後已知的偏移值,這可能會導致系統不穩定。
-
+ 是否略過設定精靈?
-
-
-
+
+
+ Sandboxie-Plus - 錯誤
-
+ 停止所有 Sandboxie 元件失敗
-
+ 啟動所需 Sandboxie 元件失敗
@@ -3499,17 +3497,17 @@ Please check if there is an update for sandboxie.
警告: 無法寫入 %1 中的 Sandboxie-Plus.ini,設定將不會被儲存。
-
+ 部分相容性範本 (%1) 已遺失,可能是已被刪除,是否將其從所有沙箱中移除?
-
+ 清理已刪除的範本...
-
+
@@ -3518,12 +3516,12 @@ No will choose: %2
「否」將選擇: %2
-
+ 未找到預設沙箱; 建立中: %1
-
+ - 未連線
@@ -3536,7 +3534,7 @@ No will choose: %2
%1 (%2):
-
+ 選取的功能只對專案贊助者可用。如果沒有贊助者憑證,在啟用此功能的沙箱內啟動的處理程序,將在 5 分鐘後自動終止。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成為專案贊助者</a>,以取得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">贊助者憑證</a>
@@ -3596,22 +3594,22 @@ No will choose: %2
-
+ 僅管理員可變更此組態。
-
+ 請輸入組態的密碼。
-
+ 登入失敗: %1
-
+ 確定要終止所有沙箱中的所有處理程序嗎?
@@ -3620,133 +3618,133 @@ No will choose: %2
終止全部並不再詢問
-
+ Sandboxie-Plus 已於便攜模式中啟動,需建立必要的服務。這將需要管理員權限。
-
+ 注意: 另一個代理 (可能是 SbieCtrl.exe) 已經在管理這個 Sandboxie 工作階段,請先關閉其他代理並重新連線進行接管控制。
-
+ 正在執行維護作業,請稍候...
-
+ 請確認是否要重設已隱藏的訊息框 (選「是」),或者僅重設所有日誌訊息 (選「否」)?
-
+ 每當檔案儲存後更改將自動套用。
-
+ 變更將在編輯器關閉後自動提交。
-
+ 錯誤程式碼: 0x%1 (%2)
-
+ 未知
-
+ 刪除沙箱前必須先清空。
-
+ 複製沙箱資料檔案失敗
-
+ 移除舊沙箱資料檔案失敗
-
+ 未知錯誤狀態: 0x%1
-
+ 是否在沙箱化或非沙箱化網路瀏覽器中開啟 %1?
-
+ 沙箱化
-
+ 非沙箱化
-
+ 區分大小寫
-
+ 正規表示式
-
+ 醒目提示
-
+ 關閉
-
+ 尋找(&F)...
-
+ 所有欄
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p><h3>關於 Sandboxie-Plus</h3><p>版本 %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
-
+ 這一份 Sandboxie+ 已授權給: %1
-
+ Sandboxie+ 可免費用於個人和非商業用途。
-
+ Sandboxie-Plus 是著名程式 Sandboxie 自開源以來的一個延續。<br />造訪 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 來了解更多資訊。<br /><br />%3<br /><br />驅動版本: %1<br />功能: %2<br /><br />圖示來源 <a href="https://icons8.com">icons8.com</a>
-
+ 此操作需要管理員權限。
@@ -3785,7 +3783,7 @@ No will choose: %2
-
+ Sandboxie-Plus 測試人員 [%1]
@@ -3919,47 +3917,47 @@ No will choose: %2
按一下以下載更新
-
+ 沒有強制沙箱程序
-
+ 已移除捷徑: %1
-
+ 已更新捷徑至: %1
-
+ 加入捷徑至: %1
-
+ 自動刪除沙箱 %1
-
+ Sandboxie-Plus 版本: %1 (%2)
-
+ 資料目錄: %1
-
+ 個人使用者
-
+ - 僅用於非商業用途
@@ -3968,27 +3966,27 @@ No will choose: %2
是否略過設定精靈?
-
-
-
+
+
+ (%1)
-
+ 在沙箱 %2 中啟動的程式 %1 將在 5 分鐘之後自動終止,因為此沙箱被設定為使用專案贊助者的專有功能。
-
+ 沙箱 %1 被設定為使用專案贊助者專有的沙箱類型,這些預設選項將被忽略。
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成為專案贊助者</a>,以取得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">贊助者憑證</a>
@@ -4021,132 +4019,132 @@ No will choose: %2
此沙箱將被<a href="sbie://docs/boxencryption">加密</a>,並且<a href="sbie://docs/black-box">對沙箱處理程序的存取將被防衛< /a >。
-
+ 找不到 USB 沙箱; 建立中: %1
-
+ 執行 沙箱終止階段 中: %1
-
+ 設定快速鍵組態 %1 失敗,錯誤: %2
-
+ 沙箱 %1 之組態設定為使用專案贊助者獨有的功能。
-
+ 沙箱 %1 之組態設定為使用需要<b>進階</b>贊助者憑證的功能。
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">升級憑證</a>以解鎖進階功能。
-
+ 選定的功能需要<b>進階</b>贊助者憑證。
-
+ 所選功能集僅供專案贊助者使用。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成為專案贊助者</a >,並取得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">贊助者憑證</a>
-
+ 您正在嘗試使用的憑證已被封鎖,這意味著其已因某些原因而失效。任何試圖使用它的行為都違反了使用條款!
-
+ 憑證數位簽章無效!
-
+ 憑證不適用於此產品。
-
+ 憑證已被節點鎖定。
-
+ 贊助憑證無效。
錯誤: %1
-
+ The evaluation periode has expired!!!評估期已過!!!
-
-
+
+ 此後不再詢問
-
+ 是否終止加密沙箱中的所有處理程序並將其卸載?
-
+ 請輸入「停用強制沙箱程式規則」的持續時間 (單位:秒)。
-
+ 沒有復原檔案
-
+ 沒有訊息
-
+ <b>錯誤:</b> Sandboxie-Plus 管理員 (SandMan.exe) 沒有有效的數位簽章 (SandMan.exe.sig)。請從<a href="https://sandboxie-plus.com/go.php?to=sbie-get">官方下載頁面</a>下載可信賴的版本。
-
+ 維護作業執行失敗 (%1)
-
+ 維護作業完成
-
+ 在 Plus UI 中,此功能已被整合到主沙箱清單檢視中。
-
+ 使用「沙箱/群組」右鍵選單,您可以將沙箱在沙箱群組之間移動。同時,您也可以透過 Alt + 方向鍵或滑鼠拖曳來整理清單。<br />另外,您可以透過右鍵選單來新增「沙箱/群組」。
-
+ You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4155,199 +4153,199 @@ This file is part of Sandboxie and all changed done to it will be reverted next
因為該檔案是 Sandboxie 的一部分並且所有的變更會在下次 Sandboxie 更新時被還原。
-
+ 已重新載入 Sandboxie 組態
-
+ 執行失敗: %1
-
+ 連線驅動程式失敗
-
+ 無法與 Sandboxie 服務建立聯絡: %1
-
+ 已發現不相容的 Sandboxie %1。相容版本為: %2
-
+ 無法找到 Sandboxie 安裝路徑。
-
+ 複製沙箱組態 %1: %2 失敗
-
+ 沙箱名稱 %1 已存在
-
+ 刪除沙箱 %1: %2 失敗
-
+ 沙箱名稱不能超過 32 個字元。
-
+ 沙箱名稱不能為裝置名稱。
-
+ 沙箱名稱不能為空白,只能包含字母、數字和下劃線。
-
+ 終止所有處理程序失敗
-
+ 沙箱的刪除保護已被啟用
-
+ 在刪除沙箱內容之前,必須先停止沙箱內的所有處理程序
-
+ 刪除沙箱資料夾錯誤: %1
-
+ A all processes in a sandbox must be stopped before it can be renamed.在重新命名沙箱前,所有處理程序都應被停止。
-
+ 移動目錄 '%1' 到 '%2' 失敗
-
+ 移動沙箱映像 '%1' 至 '%2' 失敗
-
+ 因處理程序正在沙箱中執行,此快照操作無法完成。
-
+ 為新快照建立目錄失敗
-
+ 未發現快照
-
+ 合併快照目錄 '%1' 和 '%2' 錯誤,快照沒有被完全合併。
-
+ 移除舊快照的目錄 '%1' 失敗
-
+ 無法刪除由多個後續快照共享的快照
-
+ 您未被授權在 '%1' 更新組態
-
+ 在 %2: %3 中設定組態選項 %1 失敗
-
+ 無法為空的沙箱建立快照
-
+ 已存在同名沙箱
-
+ 組態密碼不得超過 64 個字元
-
+ 此操作已被使用者取消
-
+ The content of an un mounted sandbox can not be deleted未被裝載的沙箱之內容不可被刪除
-
+ %1
-
+ 匯入/匯出無法使用,無法載入 7z.dll
-
+ 無法建立沙箱封存檔案
-
+ 無法開啟 7z 封存檔案
-
+ 無法解壓縮沙箱封存檔案
-
+ 所選的 7z 檔案不是沙箱封存檔案
-
+ %1 項操作失敗。
@@ -4356,28 +4354,28 @@ This file is part of Sandboxie and all changed done to it will be reverted next
是否在沙箱化網頁瀏覽器開啟連結 %1 ?
-
+ 記住選擇供之後使用。
-
+ 此贊助者憑證對此版本沙箱無效,請取得更新的憑證
-
+ The supporter certificate is expired %1 days ago, please get an updated certificate此贊助者憑證已逾期%1,請取得更新的憑證
-
+ ,但它對目前組建的沙箱版本仍然有效
-
+ 此贊助者憑證將在 %1 天後逾期,請取得更新的憑證
@@ -5327,17 +5325,17 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSelectBoxWindow
-
+ Sandboxie-Plus - 在沙箱內執行
-
+ 您確定要在沙箱外執行程式嗎?
-
+ 請選擇一個沙箱。
@@ -5471,78 +5469,78 @@ This file is part of Sandboxie and all changed done to it will be reverted next
%1
-
+ 搜尋設定
-
-
-
+
+
+ 在沙箱中執行(&S)
-
+ KB (%1)
-
+ 未加入磁碟區
-
+ 此贊助者憑證已逾期,請<a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">取得更新的憑證</a>。
-
+ <br /><font color='red'>對於目前版本,Plus 功能仍然啟用</font>,但您無法再存取 Sandboxie-Live 服務,包括相容性更新和疑難排解資料庫。
-
+ 此贊助者憑證將<font color='red'>在 %1 天後逾期</font>,請<a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert " >取得更新的憑證</a>。
-
+
-
+ You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ 取得憑證中...
-
+ Error retriving certificate: %1
-
+
@@ -5551,98 +5549,98 @@ This file is part of Sandboxie and all changed done to it will be reverted next
取得憑證中...
-
+ 貢獻者
-
+ 永久
-
+ 商業
-
+ 個人
-
+ 大型 Patreon
-
+ Patreon
-
+ 家庭
-
+ 家用
-
+ 試用
-
+ 類型 %1
-
+ 進階
-
+ 最高等級
-
+ 等級 %1
-
+ 需要贊助者憑證以存取
-
+ 需要贊助者憑證以自動作業
-
+ 不幸的是,此憑證對於目前版本無效,您需要取得新憑證或降級到早期版本。
-
+ 儘管此憑證已逾期,但對於目前安裝的版本 Plus 功能仍保持啟用狀態。但是,您將無法再存取 Sandboxie-Live 服務,包括相容性更新和線上疑難排解資料庫。
-
+ 不幸的是,該憑證已逾期,您需要取得新憑證。
-
+ 沙箱化網頁瀏覽器
@@ -5665,53 +5663,53 @@ This file is part of Sandboxie and all changed done to it will be reverted next
下載並安裝
-
+ 瀏覽程式
-
+ 加入 %1 範本
-
+ 選取字型
-
+ 重設字型
-
+ %0, %1 pt
-
+ 請輸入訊息
-
+ 選擇程式
-
+ 可執行檔案 (*.exe *.cmd)
-
-
+
+ 請輸入一個選單標題
-
+ 請輸入一則命令
@@ -5720,7 +5718,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
此贊助者憑證已逾期,請<a href="sbie://update/cert">取得新憑證</a>。
-
+ <br /><font color='red'>Plus 附加的進階功能將在 %1 天後被停用。</font>
@@ -5729,7 +5727,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
<br /><font color='red'>在此版本中,Plus 附加的進階功能仍是可用的。</font>
-
+ <br />Plus 附加的進階功能已不再可用。
@@ -5743,12 +5741,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
需要贊助者憑證
-
+ 在沙箱外執行(&U)
-
+ 這看起來不像是一份憑證。請輸入完整的憑證,而不僅僅是其中的一部分。
@@ -5761,7 +5759,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
很不幸此憑證已廢止。
-
+ 感謝您對 Sandboxie-Plus 開發工作的支持。
@@ -5770,88 +5768,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
此贊助者憑證無效。
-
+ 更新可用
-
+ 已安裝
-
+ by %1
-
+ (資訊網站)
-
+ 此附加元件具有強制性且不可被移除。
-
-
+
+ 選擇目錄
-
+ <a href="check">立即檢查</a>
-
+ 請輸入新組態密碼。
-
+ 請再次輸入新組態密碼。
-
+ 密碼不匹配,請重新輸入。
-
+ 處理程序
-
+ 資料夾
-
+ 請輸入一個程式檔案名稱
-
+ 請輸入範本識別碼
-
+ 錯誤: %1
-
+ 要刪除所選取的本地範本嗎?
-
+ %1 (目前)
@@ -5971,17 +5969,17 @@ This file is part of Sandboxie and all changed done to it will be reverted next
CSubmitPage
-
+ 提交問題回報
-
+ 詳細問題說明
-
+ 附加 Sandboxie.ini
@@ -5991,17 +5989,17 @@ This file is part of Sandboxie and all changed done to it will be reverted next
沙箱相容性依賴於組態,因此附加 sandboxie.ini 將非常有助於找出問題。
-
+ 沙箱相容性依賴於組態,因此附加 Sandboxie.ini 將非常有助於找出問題。
-
+ 附加日誌
-
+ Select partially checked state to sends only message log but no trace log.
@@ -6010,70 +6008,70 @@ Before sending you can review the logs in the main window.
在發送前您可以在主視窗中檢查日誌。
-
+ 附加損毀傾印檔案
-
+ An applicatin crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.一個應用程式在疑難排解流程中崩潰,附加損毀傾印檔案將有助於除錯。
-
+ 電郵地址
-
+ 您可以選擇提供電郵地址,以便在確定問題的解決方案後接收通知。
-
+ 我們對您正在 Sandboxie-Plus 中面臨的不便深表歉意。
-
+ 不幸的是,自動化疑難排解流程失敗。
-
+ 非常抱歉,您描述的特定問題目前沒有自動化疑難排解流程可用。
-
+ 如果您希望提交問題回報,請檢查下面的報告並點按「完成」。
-
+ 正在壓縮日誌
-
+ 正在壓縮傾印檔案
-
+ 正在提交問題回報...
-
+ 提交問題報告失敗,錯誤 %1
正在嘗試不附加日誌提交。
-
+ Your issue report have been successfully submitted, thank you.您的問題回報已成功提交,非常感謝。
@@ -6726,32 +6724,32 @@ If you are a great patreaon supporter already, sandboxie can check online for an
沙箱結構
-
+ 安全性選項
-
+ 安全性強化
-
-
-
-
-
+
+
+
+
+ 保護系統免受來自沙箱化處理程序的存取
-
+ 權限提升限制
-
+ 廢棄來自管理員和 Power Users 使用者組的許可
@@ -6761,12 +6759,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
寬度像素
-
+ 使應用程式認為其已在權限提升狀態下執行 (允許安全地執行安裝程式)
-
+ 警告: 在內建的管理員帳戶下執行時,無法解除處理程序的管理員權限。
@@ -6776,7 +6774,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
外觀
-
+ (推薦)
@@ -6848,27 +6846,27 @@ If you are a great patreaon supporter already, sandboxie can check online for an
允許列印服務在沙箱外列印檔案
-
+ 移除列印限制,印表機可安裝至沙箱外
-
+ 阻止存取剪貼簿
-
+ 開放系統防護儲存空間
-
+ 阻止存取列印假離線序列
-
+ 其它限制
@@ -6878,160 +6876,160 @@ If you are a great patreaon supporter already, sandboxie can check online for an
列印限制
-
+ 區域網路限制
-
+ 阻止區域網路檔案和資料夾的存取,除非額外開啟。
-
+ 執行選單
-
+ 您可為「在沙箱中執行」選單設定自訂條目組態。
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ 名稱
-
+ 命令列
-
+ 加入程式
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 移除
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 類型
-
+ 程式群組
-
+ 加入群組
-
-
-
-
-
+
+
+
+
+ 加入程式
-
+ 強制執行資料夾
-
-
-
+
+
+ 路徑
-
+ 強制執行程式
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 顯示範本
-
+ 安全性提示: 在 Sandboxie 監管下執行的程式,若具有提升的管理員或系統權限權杖,將有更多機會繞過隔離,並修改沙箱外部的系統。
-
+ 允許 MSIServer 在沙箱內使用系統權杖執行,並在必要時給予其他限制方面的豁免
-
+ 注意: MSI 安裝程式豁免不是必須的。但是如果您在安裝您信任的 MSI 安裝檔時出現了問題,此選項可能會有助於成功完成安裝。您也可以嘗試關閉「廢棄管理員許可」選項。
@@ -7086,48 +7084,48 @@ If you are a great patreaon supporter already, sandboxie can check online for an
設定密碼
-
+ 開放 Windows 憑證儲存存取權限 (使用者模式)
-
+ 防止對區域網路及防火牆參數的變更 (使用者模式)
-
+ 停用安全性隔離
-
-
+
+ 沙箱防護
-
+ 保護沙箱中處理程序不被主機處理程序存取
-
+ 允許處理程序
-
+ 當主機處理程序嘗試存取沙箱處理程序/沙箱根目錄時提示訊息 1318/1317
-
+ Sandboxie-Plus 能夠建立機密型沙箱,提供強大的保護,防止未經授權的監視或主機處理程序的篡改。透過利用加密沙箱映像,此功能可提供最高等級的作業機密性,確保沙箱處理程序的安全性和完整性。
-
+ 拒絕處理程序
@@ -7137,130 +7135,124 @@ If you are a great patreaon supporter already, sandboxie can check online for an
- Prevents processes in the sandbox from interfering with power operation
- 防止沙箱中的執行緒幹擾電源作業
+ 防止沙箱中的執行緒幹擾電源作業
-
-
-
-
-
-
+ Prevents getting an image of the window in the sandbox.阻止對沙箱中視窗進行畫面擷取。
-
+ 允許實用 Windows 執行緒存取受保護的執行緒
-
+ 使用 Sandboxie 登入程序替代匿名權杖
-
+ 您可將程式分組並且給它們一個群組名稱。程式群組可以代替程式名稱被用於某些設定。在沙箱中定義的程式群組將覆蓋範本中定義的程式群組。
-
+ 此處輸入的程式,或指定位置啟動的程式,將自動加入此沙箱,除非它們被確定已在其他沙箱啟動。
-
+ <b><font color='red'>安全性建議</font>: </b>使用 <a href="sbie://docs/breakoutfolder">BreakoutFolder</a> 和/或 <a href=" sbie://docs/breakoutprocess">BreakoutProcess</a> 與 Open[File/Pipe]Path 指令結合使用可能會損害安全性,使用 <a href="sbie://docs/breakoutdocument">BreakoutDocument< /a > 將允許任何 * 或不安全的 (*.exe;*.dll;*.ocx;*.cmd;*.bat;*.lnk;*.pif;*.url;*.ps1;etc…) 副檔名。使用前請查看文件中每個選項的 安全性 部分。
-
-
+
+ 停止行為
-
+
-
+
-
+
-
+ 啟動限制
-
+ 當程式啟動失敗時提示錯誤代碼 1308
-
+ 僅允許被選取的程式在此沙箱中啟動。 *
-
+ 防止所選程式在此沙箱中啟動。
-
+ 允許所有程式在此沙箱中啟動。
-
+ * 注意: 安裝至此沙箱內的程式將完全無法啟動。
-
+ 設定哪些處理程序可以存取 Windows 等桌面物件。
-
+ 處理程序限制
-
+ 當程式被拒絕存取網路時提示錯誤代碼 1307
-
+ 詢問使用者是否允許封鎖豁免。
-
+ 注意: 安裝在此沙箱中的程式將完全無法存取網路。
-
-
-
-
-
-
+
+
+
+
+
+ 存取
@@ -7333,71 +7325,71 @@ If you are a great patreaon supporter already, sandboxie can check online for an
圖示
-
+ 向上移
-
+ 向下移
-
+ 安全性隔離
-
+ 注意: 各種隔離功能會破壞與某些應用程式的相容性<br />如果使用此沙箱<b>不是為了安全性</b>,而是為了應用程式的可移植性,可以透過變更這些選項,犧牲部分安全性來復原相容性。
-
+ 存取隔離
-
+ 映像保護
-
+ 當一個程式試圖載入一個沙箱內部的應用程式擴充 (DLL) 檔案時,提示錯誤代碼 1305
-
+ Prevent sandboxes programs installed on host from loading dll's from the sandbox防止安裝在主機上的沙箱程式從沙箱內部載入應用程式擴充 (DLL) 檔案
-
+ Dll && 擴充功能
-
+ 說明
-
+ Sandboxie 的資源存取規則通常對位於沙箱內的二進位程式具有歧視性。OpenFilePath 和 OpenKeyPath 只對主機上的原生程式 (安裝在主機上的) 有效。為了定義沒有此類限制的規則,則必須使用 OpenPipePath 和 OpenConfPath。同樣的,透過否定來定義所有的 Closed(File|Key|Ipc)Path 指令例如:'ClosedFilePath=! iexplore.exe,C:Users*' 將限制沙箱內的程式存取相應資源。這兩種限制原則都可以透過「存取原則」頁面來停用。
這樣做是為了防止沙箱內的流氓處理程序建立自己的重新命名複本並存取受保護的資源。另一個漏洞載體是將一個動態連結程式庫注入到一個被授權處理程序中,以取得對被授權處理程序所允許存取的一切資源的存取權。使用主機映像保護,可以透過阻止在沙箱內執行的應用程式 (安裝在主機上的) 載入來自沙箱的動態連結程式庫來防止此類現象。
-
+ Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Sandboxie 的功能可以透過使用可選 DLL 加以增強,這些 DLL 可在啟動時透過 SbieDll.dll 檔案載入到每個沙箱執行緒中,全域設定中的附加元件管理員提供了一些實用擴充套件,安裝後可以在此處對目前沙箱啟用。
-
+ Adcanced Security進階安全性
@@ -7407,125 +7399,119 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
使用 Sandboxie 限權使用者,而不是匿名權杖 (實驗性)
-
+ 其他隔離
-
+ 權限隔離
-
+ 使用自訂 Sandboxie 權杖可以更好地將各個沙箱相互隔離,同時可以實現在工作管理員的使用者欄位中顯示處理程序所屬的沙箱。但是,某些第三方安全性解決方案可能會與自訂權杖產生相容性問題。
-
+ 應用程式控制
-
+ 強制沙箱程式
-
+ 停用此沙箱的「強制處理程序/資料夾」規則
-
+ 分離程式
-
+ 分離程式
-
+ 分離資料夾
-
-
- Block process from taking screenshots of windows not belonging to the containing sandbox
-
-
-
-
+ Programs entered here will be allowed to break out of this box when thay start, you can capture them into an other box. For example to have your web browser always open in a dedicated box. This feature requires a valid supporter certificate to be installed.在此處設定的程式,在啟動時將被允許脫離這個沙箱,您可以把它們擷取到另一個沙箱中。例如,讓網頁瀏覽器總是在一個專門的沙箱內開啟。
-
+ 駐留程式
-
+ 其他所有程式得到終止後,仍在執行的駐留程式將自動終止。
-
+ 引導程式
-
+ 如果定義了引導處理程序,其他處理程序將被視作駐留處理程序。
-
+ 檔案
-
+ 設定哪些處理程序可以存取檔案、資料夾和管道。
「開放」存取權限只適用於原先已位於沙箱之外的程式二進位檔,您可以使用「完全開放」來對所有程式開放所有權限,或者在「原則」頁籤中改變這一行為。
-
+ 登錄
-
+ 設定哪些處理程序可以存取檔案、資料夾和管道。
「開放」存取權限只適用於原先已位於沙箱之外的程式二進位檔,您可以使用「完全開放」來對所有程式開放所有權限,或者在「原則」頁籤中改變這一行為。
-
+ IPC
-
+ 設定哪些處理程序可以存取 NT IPC 物件,如 ALPC 連接埠及其他處理程序的記憶體和相關執行狀態環境。
如需指定一個處理程序,使用「$:program.exe」作為路徑值。
-
+ 視窗
-
+ Wnd 元件
@@ -7534,362 +7520,387 @@ To specify a process use '$:program.exe' as path.
設定哪些處理程序可以存取桌面物件,如 Windows 或其它類似物件。
-
+ COM
-
+ 類別識別碼
-
+ 設定哪些處理程序可以存取 COM 物件。
-
+ 不使用虛擬化 COM,而是開放主機 COM 基礎結構的存取 (不推薦)
-
+ 存取原則
-
+ 區域網路選項
-
+ 為未列出的處理程序設定區域網路/網際網路存取權限:
-
+ 測試規則、程式:
-
+ 連接埠:
-
+ IP:
-
+ 協定:
-
+ X
-
+ 加入規則
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 程式
-
-
-
+
+
+ 動作
-
+ 連接埠
-
+ IP
-
+ 協定
-
+ 警告: 未在驅動程式中啟動 Windows 篩選平台,因此以下規則只能在使用者模式下生效,無法被強制執行!!!惡意程式可能會繞過這些規則的限制。
-
+ 資源存取
-
+ 加入檔案/資料夾
-
+ 加入視窗類別
-
+ 加入 IPC 路徑
-
+ 只在經過批准的 NT 系統呼叫中使用原始權杖
-
+ 啟用所有安全性強化 (安全性防護加固型沙箱選項)
-
+ 將對「驅動程式/裝置」的存取限制到已批准條目
-
+ 安全性增強措施
-
+ 處理程序被拒絕存取非沙箱處理程序記憶體時提示錯誤代碼 2111
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sandboxie 權杖
-
+ 加入登錄機碼
-
+ 加入 COM 物件
-
+ 將 Close...=!<program>,... 規則,套用到位於沙箱內的所有相關二進位檔。
-
+
-
+
-
+
-
+
-
+ 檔案復原
-
+ 快速復原
-
+ 加入資料夾
-
+ 即時復原
-
+ 忽略副檔名
-
+ 忽略資料夾
-
+ 啟用快速復原提示,以便快速復原建立的檔案。
-
+ 您可以從快速復原中排除特定目錄和檔案類型 (副檔名)。
-
+ 當快速復原功能被執行時,下列資料夾將為沙箱化內容被檢查。
-
+ 進階選項
-
+ 雜項
-
+ 不要改變由沙箱化程式建立的視窗類別名稱
-
+ 不啟動使用系統權杖的沙箱化服務 (建議)
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 保護沙箱本身的完整性
-
+ 廢棄以系統權杖執行中的程式的關鍵特權
-
-
+
+ (安全性關鍵)
-
+ 保護沙箱中的系統處理程序免受非特權處理程序的影響
-
+ 強制使用自訂虛擬 Manifest 檔案 (遺留行為)
-
+ 規則的明確性是衡量一個給定規則對特定路徑的相符程度,簡單地說,明確性是指從路徑的開始到最後一個相符的非萬用字元子串之間的字元長度。一個只相符「*.tmp」這樣的檔案類型規則將具有最高的明確性,因為它總是符合整個檔案路徑。
處理程序相符級別的優先順序高於明確性,它描述了一條規則如何適用於一個給定的處理程序。按處理程序名稱或組應用的規則具有最高的相符級別,其次是否定式相符 (例如: 適用於相符除給定處理程序以外的所有處理程序的規則),而最低的相符級別是全域符合,即適用於任何處理程序的規則。
-
+ 基於規則的明確性和處理程序相符級別,對規則進行優先順序排序
-
+ 隱私模式,阻止對通用系統目錄之外的所有檔案位置和登錄的存取
-
+ 存取權限模式
-
+ 當啟用隱私模式時,沙箱化處理程序將只能讀取 C:\Windows\*、C:\Program Files\* 和登錄 HKLM 的部分內容,除此之外的所有其它位置都需要明確的存取授權才能被讀取或寫入。在此模式下,明確性規則將總是被啟用。
-
+ 規則原則
-
+ 套用檔案和金鑰開放指令權限 (僅對位於沙箱之外的二進位檔)。
-
+ 以系統處理程序啟動沙箱化服務 RpcSs (不推薦)
-
+ 僅允許已有特權的處理程序存取服務控制管理員
-
-
+
+ 相容性
-
+ 加入沙箱化處理程序至作業物件 (推薦)
-
+ 為所有處理程序模擬沙箱化視窗站台
-
+ 透過嚴格限制處理程序權杖的使用來進行安全性隔離是 Sandboxie 執行沙箱化限制的主要手段,當它被停用時,沙箱將在應用程式區間模式下執行,此時將不再提供可靠的安全性限制,只是簡單進行應用程式隔離。
-
+ 允許沙箱內程式管理硬體/裝置
@@ -7898,96 +7909,96 @@ The process match level has a higher priority than the specificity and describes
停用安全性隔離 (實驗性)
-
+ 開放 Windows 安全性帳戶管理員 (SAM) 的存取權限
-
+ 開放 Windows 本地安全性認證 (LSA) 的存取權限
-
+ 允許讀取非沙箱處理程序的記憶體 (不推薦)
-
+ 預設情況下停用 RpcMgmtSetComTimeout (這可能會解決相容性問題)
-
+ 安全性隔離/篩選
-
+ 停用安全性篩選 (不推薦)
-
+ 安全性篩選被 Sandboxie 用來強制執行檔案系統和登錄存取限制,以及限制處理程序存取。
-
+ 以下選項可以在您未授予管理員許可時安全的使用。
-
+ 觸發器
-
+ 事件
-
-
-
-
+
+
+
+ 執行命令
-
+ 啟動服務
-
+ 這些事件當沙箱每次啟動時都會被執行
-
+ 沙箱啟動階段
-
-
+
+ 這些命令將在刪除沙箱的內容之前,以非沙箱化的方式被執行
-
+ 允許使用嵌套作業物件 (job object) (適用於 Windows 8 及更高版本)
-
+ 這些命令只在沙箱被初始化時執行。要使它們再次執行,必須刪除沙箱內容。
-
+ 沙箱初始化階段
@@ -7996,27 +8007,27 @@ The process match level has a higher priority than the specificity and describes
此命令在沙箱中所有執行緒完成後執行。
-
+ 沙箱終止階段
-
+ 在這裡,您可以設定各種沙箱事件中自動執行特定的動作。
-
+ 隱藏處理程序
-
+ 加入處理程序
-
+ 面向沙箱內執行的處理程序隱藏的主機處理程序。
@@ -8031,74 +8042,74 @@ The process match level has a higher priority than the specificity and describes
限制
-
+ 差異性選項
-
+ 套用 ElevateCreateProcess 因應措施 (遺留行為)
-
+ 對所有處理程序使用桌面物件因應措施
-
+ 當全域性快速鍵在短時間連續按下 3 次時,此異常將被忽略。
-
+ 當呼叫「終止所有執行緒」時,排除此沙箱。
-
+
-
+ 該命令將在刪除沙箱內容之前執行
-
+ 檔案復原階段
-
+ This command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked該命令將在檔案復原前執行,檔案路徑將作為第一個參數被傳遞,如果該命令的返回值不是 0,則復原將被阻止
-
+ 執行檔案檢查程式
-
+ 內容刪除階段
-
+ 不允許沙箱內的處理程序檢視其他沙箱內執行的處理程序
-
+ 保護此沙箱內的處理程序不被指定的沙箱外主機處理程序存取。
-
-
+
+ 處理程序
@@ -8107,22 +8118,22 @@ The process match level has a higher priority than the specificity and describes
阻止對位於該沙箱中的處理程序的讀取
-
+ 使用者
-
+ 僅允許管理員存取資源存取監控
-
+ 加入使用者
-
+
@@ -8131,23 +8142,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
注意: 沙箱的強制沙箱程式及資料夾設定不適用於不能使用沙箱的帳戶。
-
+ 加入選項
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.在此處可以設定各個處理程序的進階選項,以提高相容性或自訂沙箱的某些行為。
-
+ 選項
-
+ 追蹤
@@ -8156,22 +8167,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
API 呼叫追蹤 (需要在沙箱資料夾中安裝 LogAPI)
-
+ Pipe 追蹤
-
+ 記錄所有 SetError 至追蹤日誌 (產生大量輸出)
-
+ 紀錄偵錯輸出至追蹤日誌
-
+ Ntdll 系統呼叫追蹤 (將產生大量輸出)
-
+ 檔案追蹤
-
+ 停用資源存取監控
-
+ IPC 追蹤
-
+ GUI 追蹤
-
+ 資源存取監控
-
+ 存取追蹤
-
+ COM 類別追蹤
-
+ 機碼追蹤
-
+ 為了彌補失去的保護,請參考「限制」設定組中的「廢棄許可」部分。
-
-
+
+ 區域網路防火牆
-
+ API 呼叫追蹤 (追蹤全部 SBIE 勾點)
-
+ 偵錯
-
+ 警告,這些選項可使核心安全性保障失效並且破壞沙箱安全性!
-
+ 這些選項是為偵錯相容性問題設計的,請勿用於生產力用途。
-
+ 軟體範本
-
+ 篩選類別
-
+ 篩選文字
-
+ 加入範本
-
+ 此清單含有大量的相容性增強範本
-
+ 類別
-
+ 範本資料夾
-
+
@@ -8309,8 +8320,8 @@ Please note that this values are currently user specific and saved globally for
請注意,這些值為目前使用者針對所有沙箱儲存。
-
-
+
+ 值
@@ -8319,47 +8330,52 @@ Please note that this values are currently user specific and saved globally for
DNS 請求日誌紀錄
-
+ Syscall 追蹤 (建立大量輸出)
-
+ 範本
-
+
+
+
+
+
+ 協助工具
-
+ 螢幕閱讀器: JAWS、NVDA、Window-Eyes、系統協助工具
-
+ 以下設定允許 Sandboxie 與協助工具軟體結合。請注意當這些設定生效時,必然會失去部分 Sandboxie 保護措施。
-
+ 編輯 ini 區段
-
+ 編輯 ini
-
+ 取消
-
+ 儲存
@@ -8391,27 +8407,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ 確定
-
+ 套用
-
+ 取消
-
+ 是(&Y)
-
+ 否(&N)
@@ -8606,42 +8622,42 @@ Please note that this values are currently user specific and saved globally for
* 部分核取的項目核取方塊之行為取決於其檢視模式。
-
+ 進階組態
-
+ 啟動核心模式物件篩選
-
+ 沙箱 <a href="sbie://docs/filerootpath">檔案系統根目錄</a>:
-
+ 主視窗隱藏時清除密碼
-
+ 沙箱 <a href="sbie://docs/ipcrootpath">IPC 根目錄</a>:
-
+ 沙箱預設
-
+ 組態保護
-
+ ...
@@ -8738,12 +8754,12 @@ Please note that this values are currently user specific and saved globally for
介面選項
-
+ INI 編輯器字型
-
+ 圖形選項
@@ -8793,208 +8809,213 @@ Please note that this values are currently user specific and saved globally for
最小化至系統匣
-
+ 選取字型
-
+ 重設字型
-
+ Ini 選項
-
+ #
-
+ 外部 Ini 編輯器
-
+
+
+
+
+
+ 附加元件管理員
-
+ 可選附加元件
-
+ Sandboxie-Plus 提供眾多選項並支援大量擴充套件。在此頁面上,您可以設定附加元件、擴充套件和其他第三方組件的整合。可選組件可以從網際網路下載,某些安裝可能需要管理人員權限。
-
+ 狀態
-
+ 版本
-
+ 說明
-
+ <a href="sbie://addons">立即更新附加元件清單</a>
-
+ 安裝
-
+ 附加元件組態
-
+ 開啟 Ram 磁碟之建立
-
+ KB
-
+ 為 Ram 磁碟分配磁碟機序號
-
+ 磁碟映像支援
-
+ RAM 限制
-
+ <a href="addon://ImDisk">安裝 ImDisk</a> 驅動程式以啟用 Ram 磁碟和磁碟映像支援。
-
+ 當 Ram Disk 已裝載時,需要將其卸載才能使此選項生效。
-
+ * 磁碟建立時生效
-
+ Sandboxie 贊助
-
+ 此贊助者憑證已逾期,請<a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">取得更新的憑證</a>。
-
+ Sandboxie-Plus 專案的贊助者將收到<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">贊助者憑證</a>。這類似於授權碼,但是是為擁抱開放原始碼軟體的優秀人士準備的。:-)
-
+ 取得
-
+ 使用序號取得/升級/續期憑證
-
+ 使 Sandboxie 與 Windows 的持續性更新相同步,並和主流網頁瀏覽器保持相容性,是一項永無止境的努力。您可以透過<a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">直接參與專案</a>來支援開發、透過<a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">購買贊助者憑證</a>來表達您的支持、透過<a href="https://sandboxie-plus.com/go.php?to=patreon">在 Patreon 上訂閱</a>成為贊助者、或者透過 <a href="https://sandboxie-plus.com/go.php?to=donate">PayPal 捐款</a>。<br />您的支持對 Sandboxie 的進步和維護至關重要。
-
+ SBIE_-_____-_____-_____-_____
-
+ <a href="https://sandboxie-plus.com/go.php?to=sbie-use-cert">憑證使用指南</a>
-
+ 沙箱 <a href="sbie://docs/keyrootpath">登錄根目錄</a>:
-
+ 沙箱功能
-
+ Sandboxie.ini 預設選項
-
+ 變更密碼
-
+ 必須輸入密碼以進行變更
-
+ 僅限管理員帳戶進行變更
-
+ 追蹤 Sandboxie.ini 變更
-
+ 軟體範本
-
+ 軟體相容性
-
+ Only Administrator user accounts can use Pause Forced Programs Rules command僅管理員帳戶可使用「暫停強制沙箱程式」命令
-
+ 便攜化根目錄
@@ -9014,12 +9035,12 @@ Please note that this values are currently user specific and saved globally for
在系統匣中顯示圖示:
-
+ 使用 Windows 篩選平台 (WFP) 限制區域網路存取
-
+ 為選取的 Win32k 系統呼叫進行勾點以啟用 GPU 加速 (實驗性)
@@ -9055,7 +9076,7 @@ Please note that this values are currently user specific and saved globally for
在沙箱清單中使用大圖示 *
-
+ 高 DPI 縮放
@@ -9070,12 +9091,12 @@ Please note that this values are currently user specific and saved globally for
使用深色主題
-
+ 字型縮放
-
+ (需要重新啟動)
@@ -9091,7 +9112,7 @@ Please note that this values are currently user specific and saved globally for
在沙箱清單中顯示「披薩」背景 *
-
+ %
@@ -9111,45 +9132,45 @@ Please note that this values are currently user specific and saved globally for
-
-
-
-
+
+
+
+ 名稱
-
+ 路徑
-
+ 移除程式
-
+ 加入程式
-
+ 當下列程式在任意沙箱之外啟動時,Sandboxie 將提示錯誤代碼 SBIE1301。
-
+ 加入資料夾
-
+ 阻止下列程式在此系統中啟動
-
+ 當程式啟動失敗時提示錯誤代碼 1308
@@ -9189,22 +9210,22 @@ Please note that this values are currently user specific and saved globally for
使用新的組態對話框佈局 *
-
+ 應用程式控制
-
+ 程式警報
-
+ 當強制沙箱處理程序被停用時,提示錯誤代碼 1301
-
+ Config ProtectionSandboxie 組態
@@ -9241,8 +9262,8 @@ Please note that this values are currently user specific and saved globally for
-
-
+
+ 移除
@@ -9252,7 +9273,7 @@ Please note that this values are currently user specific and saved globally for
命令列
-
+ 支援 && 更新
@@ -9261,159 +9282,164 @@ Please note that this values are currently user specific and saved globally for
使 Sandboxie 與 Windows 的持續性更新相同步,並和主流網頁瀏覽器保持相容性,是一項永無止境的努力。您可以透過<a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">直接參與專案</a>來支援開發、透過<a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">購買贊助者憑證</a>來表達您的支持、透過<a href="https://sandboxie-plus.com/go.php?to=patreon">在 Patreon 上訂閱</a>成為贊助者、或者透過 <a href="https://sandboxie-plus.com/go.php?to=donate">PayPal 捐款</a>。<br />您的支持對 Sandboxie 的進步和維護至關重要。
-
+ Sandboxie 更新程式
-
+ 保持附加元件清單為最新
-
+ 更新設定
-
+ Insider 通道提供對「最終將公開發表的新功能和錯誤修復」的早期存取,以及包含穩定通道的所有相關改進。
與預覽通道不同,它不包含未經測試、可能會破壞或可能尚未準備好供更廣泛使用的實驗性變更。
-
+ 在測試人員通道中搜尋
-
+ 來自所選發行管道的全新完整安裝程式。
-
+ 完整升級
-
+ 定期檢查新的 Sandboxie-Plus 版本
-
+ 了解更多關於 <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">測試人員通道</a>
-
+ 保持疑難排解腳本為最新
-
+ 更新檢查間隔
-
+ 預設沙箱:
-
+ 使用 Sandboxie 登入程序替代匿名權杖
-
+ USB 裝置沙箱化
-
+ 磁碟區
-
+ 資訊
-
+ USB 裝置沙箱:
-
+ 自動將所有加入的 USB 裝置沙箱化
-
+ 以後不再檢查軟體相容性
-
+ 啟用
-
+ 停用
-
+ Sandboxie 偵測到您的系統中安裝了以下軟體。按下「確定」套用設定,將改進與這些軟體的相容性。這些設定作用於所有沙箱,包括現存的和未來新增的沙箱。
-
+ 本地範本
-
+ 加入範本
-
+ 篩選文字
-
+ 該清單包含使用者為沙箱選項建立的自訂範本
-
+
+
+
+
+
+ 編輯 ini 區段
-
+ 儲存
-
+ 編輯 ini
-
+ 取消
-
+ Version Updates增量升級
@@ -9423,7 +9449,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
新的來自所選取發佈通道的完整版本。
-
+ 更新已安裝版本的 Templates.ini 範本和翻譯的修補程式。
@@ -9432,7 +9458,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
此贊助者憑證已逾期,請<a href="sbie://update/cert">取得新憑證</a>。
-
+ 預覽通道包含最新的 GitHub 預先發佈版本。
@@ -9441,27 +9467,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
新版本
-
+ 穩定通道包含最新的 GitHub 穩定版本。
-
+ 在穩定通道中搜尋
-
+ 在預覽通道中搜尋
-
+ 不再通知憑證逾期的情況
-
+ 在此輸入贊助者憑證
From d09d17d49b3fe9e92c47e17c640a0f5de27ac278 Mon Sep 17 00:00:00 2001
From: DavidXanatos
Date: Sun, 21 Apr 2024 21:59:43 +0200
Subject: [PATCH 013/122] Update CHANGELOG.md
---
CHANGELOG.md | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5de7e848..1a3c2e00 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,10 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
-
-
-
-## [1.13.6 / 5.68.6] - 2024-04-
+## [1.13.6 / 5.68.6] - 2024-04-21
### Added
- added "BlockInterferenceControl=y" option to prevent sandboxed processes from forcing windows on top and moving the mounse pointer (thanks Yeyixiao)
From ba97a442fc90c84d49aff8aab2a7b1e56e1e9d56 Mon Sep 17 00:00:00 2001
From: isaak654
Date: Sun, 21 Apr 2024 22:26:07 +0200
Subject: [PATCH 014/122] Update CHANGELOG.md
---
CHANGELOG.md | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1a3c2e00..2cbaa124 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,12 +10,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- added "BlockInterferenceControl=y" option to prevent sandboxed processes from forcing windows on top and moving the mounse pointer (thanks Yeyixiao)
- Note: this option may cause issues in games hence do not enable it for gaming boxes.
-- added support for hardlinks [#3826](https://github.com/sandboxie-plus/Sandboxie/issues/3826)
+- added support for hard links [#3826](https://github.com/sandboxie-plus/Sandboxie/issues/3826)
- added mechanism to terminate stuck sandboxed processes from the driver
- added Make the trigger list editable [#3742](https://github.com/sandboxie-plus/Sandboxie/issues/3742)
- added Optionally extend the screenshot protection to the UI [#3739](https://github.com/sandboxie-plus/Sandboxie/issues/3739)
- added a button to edit local/custom templates [#3738](https://github.com/sandboxie-plus/Sandboxie/issues/3738)
-- asses Permanently Re-sizable or Larger "Run Sandboxed" Window [#3697](https://github.com/sandboxie-plus/Sandboxie/issues/3697)
+- added Permanently Re-sizable or Larger "Run Sandboxed" Window [#3697](https://github.com/sandboxie-plus/Sandboxie/issues/3697)
+- added Notepad++ template [#3836](https://github.com/sandboxie-plus/Sandboxie/pull/3836)
### Changed
- improved Avast template [#3777](https://github.com/sandboxie-plus/Sandboxie/pull/3777)
@@ -25,12 +26,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- fixed When I change the BlockDNS and BlockPorts options, the Apply button is not activated [#3807](https://github.com/sandboxie-plus/Sandboxie/issues/3807)
-- fixed troubleshooting wizard broke with new qt [#3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
+- fixed troubleshooting wizard broke with new Qt [#3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
- fixed Settings dialog now showing the right ram disk letter
-- fixed issues with updater broke with new qt due to missing SSL support [3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
+- fixed issues with updater broke with new Qt due to missing SSL support [3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
- fixed Enabling "DropAdminRights/FakeAdminRights" adds "BlockInterferePower and ForceProtectionOnMount" to the INI [#3825](https://github.com/sandboxie-plus/Sandboxie/issues/3825)
- fixed KeePass "Out of Memory" crash due to "BlockScreenCapture=y" [#3768](https://github.com/sandboxie-plus/Sandboxie/issues/3768)
-- fixed Sandboxie 1.13.4 with IsBlockCapture=y brakes on Windows 7 [#3769](https://github.com/sandboxie-plus/Sandboxie/issues/3769)
+- fixed Sandboxie 1.13.4 with IsBlockCapture=y not working on Windows 7 [#3769](https://github.com/sandboxie-plus/Sandboxie/issues/3769)
- fixed explorer.exe issue "FakeAdminRights=y" [#3638](https://github.com/sandboxie-plus/Sandboxie/issues/3638)
- fixed Make it possible to disable forced folder warning [#3569](https://github.com/sandboxie-plus/Sandboxie/issues/3569)
From 71dcf9533dbe3594a5e79ea8cfdac023208f97c5 Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Mon, 22 Apr 2024 17:51:06 +0300
Subject: [PATCH 015/122] Update SettingsWindow.cpp
Fixes the partially checked status of the `ui.chkSvcStart` checkbox.
---
SandboxiePlus/SandMan/Windows/SettingsWindow.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
index 524d9a23..a8f2c7f4 100644
--- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
@@ -875,7 +875,7 @@ void CSettingsWindow::LoadSettings()
ui.chkAutoStart->setChecked(IsAutorunEnabled());
if (theAPI->IsConnected()) {
if (theAPI->GetUserSettings()->GetBool("SbieCtrl_EnableAutoStart", true)) {
- if (theAPI->GetUserSettings()->GetText("SbieCtrl_AutoStartAgent", "") != "SandMan.exe")
+ if (theAPI->GetUserSettings()->GetText("SbieCtrl_AutoStartAgent", "").left(11) != "SandMan.exe")
ui.chkSvcStart->setCheckState(Qt::PartiallyChecked);
else
ui.chkSvcStart->setChecked(true);
From ee0693e17a8165f30ff7a6702375a8b3d3703325 Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Mon, 22 Apr 2024 18:13:29 +0300
Subject: [PATCH 016/122] update project files
MultiErrorDialog
---
SandboxiePlus/MiscHelpers/MiscHelpers.vcxproj | 2 ++
SandboxiePlus/MiscHelpers/MiscHelpers.vcxproj.filters | 6 ++++++
SandboxiePlus/SandMan/SandMan.vcxproj | 2 --
SandboxiePlus/SandMan/SandMan.vcxproj.filters | 9 ---------
4 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/SandboxiePlus/MiscHelpers/MiscHelpers.vcxproj b/SandboxiePlus/MiscHelpers/MiscHelpers.vcxproj
index 6e91d062..c0cf548e 100644
--- a/SandboxiePlus/MiscHelpers/MiscHelpers.vcxproj
+++ b/SandboxiePlus/MiscHelpers/MiscHelpers.vcxproj
@@ -234,6 +234,7 @@
+
@@ -278,6 +279,7 @@
+
diff --git a/SandboxiePlus/MiscHelpers/MiscHelpers.vcxproj.filters b/SandboxiePlus/MiscHelpers/MiscHelpers.vcxproj.filters
index 0318b6dc..8e4cc9c5 100644
--- a/SandboxiePlus/MiscHelpers/MiscHelpers.vcxproj.filters
+++ b/SandboxiePlus/MiscHelpers/MiscHelpers.vcxproj.filters
@@ -62,6 +62,9 @@
Common
+
+
+ CommonCommon
@@ -218,6 +221,9 @@
Common
+
+
+ CommonCommon
diff --git a/SandboxiePlus/SandMan/SandMan.vcxproj b/SandboxiePlus/SandMan/SandMan.vcxproj
index 6402621f..15a098c0 100644
--- a/SandboxiePlus/SandMan/SandMan.vcxproj
+++ b/SandboxiePlus/SandMan/SandMan.vcxproj
@@ -287,7 +287,6 @@
-
@@ -464,7 +463,6 @@
-
diff --git a/SandboxiePlus/SandMan/SandMan.vcxproj.filters b/SandboxiePlus/SandMan/SandMan.vcxproj.filters
index 469ab713..4cc9397d 100644
--- a/SandboxiePlus/SandMan/SandMan.vcxproj.filters
+++ b/SandboxiePlus/SandMan/SandMan.vcxproj.filters
@@ -32,9 +32,6 @@
{34eca1e5-cd50-4876-9f54-9eec4c393150}
-
- {6accf3ae-da17-4c0f-ba83-214e3874b029}
- {20d5954b-be86-4a34-948d-00954dcfd07b}
@@ -72,9 +69,6 @@
Views
-
- Dialogs
- SandMan
@@ -286,9 +280,6 @@
Views
-
- Dialogs
- SandMan
From 045c66b3680ff6873dbad9653a07c4379ce2ff37 Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Mon, 22 Apr 2024 19:14:11 +0300
Subject: [PATCH 017/122] typo
Co-Authored-By: Michael <33252157+APMichael@users.noreply.github.com>
#3843
---
SandboxiePlus/SandMan/Forms/OptionsWindow.ui | 6 +++---
SandboxiePlus/SandMan/Forms/SettingsWindow.ui | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
index 8ba0cd31..1e75279e 100644
--- a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
@@ -819,7 +819,7 @@
-
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -829,8 +829,8 @@
-
- This feature does not block all means of optaining a screen capture only some common once.
+
+ This feature does not block all means of obtaining a screen capture, only some common ones.Prevent sandboxed processes from capturing window images (Experimental, may cause UI glitches)
diff --git a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
index 94cb2953..7e4c009d 100644
--- a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
@@ -77,7 +77,7 @@
- Hotkey for suspending all process
+ Hotkey for suspending all process:
From 67245a35c167229778fe8e7bc69b9d92377680c0 Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Mon, 22 Apr 2024 19:46:05 +0300
Subject: [PATCH 018/122] Update OptionsWindow.ui
[skip ci]
---
SandboxiePlus/SandMan/Forms/OptionsWindow.ui | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
index 1e75279e..e31559ee 100644
--- a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
@@ -820,7 +820,7 @@
- Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
+ Prevent move mouse, bring in front, and similar operations, this is likely to cause issues with games.Prevent interference with the user interface (Experimental)
From f3a94eb589ea21c85a7a97d6f19efd2a9cc524f3 Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Mon, 22 Apr 2024 19:56:27 +0300
Subject: [PATCH 019/122] Update SettingsWindow.ui
[skip ci]
---
SandboxiePlus/SandMan/Forms/SettingsWindow.ui | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
index 7e4c009d..3aae82a1 100644
--- a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
@@ -77,7 +77,7 @@
- Hotkey for suspending all process:
+ Hotkey for suspending all processes:
From c353f9af42aba8c5c59773de45d7b6c6c0c8345a Mon Sep 17 00:00:00 2001
From: Tragic Life
Date: Tue, 23 Apr 2024 01:09:59 +0800
Subject: [PATCH 020/122] Update sandman_zh_TW.ts (#3841)
---
SandboxiePlus/SandMan/sandman_zh_TW.ts | 93 +++++++++++++-------------
1 file changed, 48 insertions(+), 45 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_zh_TW.ts b/SandboxiePlus/SandMan/sandman_zh_TW.ts
index c2ae03c0..f386dd77 100644
--- a/SandboxiePlus/SandMan/sandman_zh_TW.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_TW.ts
@@ -57,7 +57,7 @@
-
+ 當全部執行緒停止後鎖定沙箱。
@@ -263,7 +263,7 @@
Prevent sandboxes programs installed on host from loading dll's from the sandbox"應用程式擴充" is the actual translation showed in Windows for TradChinese
- 防止安裝在主機上各沙箱的程式從沙箱內部載入應用程式擴充 (DLL) 檔案
+ 防止主機上安裝的沙箱化程式從沙箱載入應用程式擴充 (DLL) 檔案
@@ -274,12 +274,12 @@
-
+ 共用範本
-
+ 共用範本模式
@@ -287,47 +287,50 @@
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
To disable this template for a sandbox, simply uncheck it in the template list.
-
+ 此選項將本機範本或其設定新增至沙箱組態中,以便此範本中的設定可於多個沙箱之間共用。
+但是,如果選擇「用作範本」選項作為共用模式,則某些設定可能不會反映在使用者介面中。
+若要變更範本之設定,只需在沙箱選項下的應用程式範本清單中找到範本「%1」,然後對其點按兩次進行編輯即可。
+若要為沙箱停用此範本,只需在範本清單中將其取消選中即可。
-
+ 此選項不會向沙箱組態中新增任何設定,也不會根據範本內的刪除設定移除預設沙箱之設定。
-
+ 此選項將共用範本作為本機範本新增至沙箱組態中,並且還可以根據範本內的刪除設定移除預設沙箱之設定。
-
+ 此選項將共用範本中的設定新增至沙箱組態中,也可根據範本內的刪除設定移除預設沙箱之設定。
-
+ 此選項不會向沙箱組態新增任何設定,但可能會根據範本內的刪除設定移除預設沙箱之設定。
-
+ 如果設定此項將刪除預設值
- 停用
+ 已停用
-
+ 用作範本
-
+ 追加至組態設定
@@ -1341,12 +1344,12 @@ You can use %USER% to save each users sandbox to an own fodler.
-
+ 在此列後追加您的自有設定。
-
+ 共用範本
@@ -3456,7 +3459,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Please check if there is an update for sandboxie.
Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.
- 您的 Windows 組建版本 %1 超出了 Sandboxie 版本的目前支援能力,這導致基於權杖的安全性隔離被停用。因此,所有應用程式都將在應用程式區間模式下運作而沒有安全性隔離。
+ 您的 Windows 組建版本 %1 超出了您目前使用的 Sandboxie 版本的支援能力,這導致基於權杖的安全性隔離被停用。因此,所有應用程式都將在應用程式區間模式下運作而沒有安全性隔離。
請檢查 Sandboxie 是否有更新。
@@ -3999,7 +4002,7 @@ No will choose: %2
-
+ 暫停全部執行緒
@@ -5508,25 +5511,25 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ 這看起來不像 Sandboxie-Plus 序號。<br />如果您嘗試的是輸入憑證的更新金鑰或簽章,這不是正確的操作,請在上方文字區域中輸入完整憑證。You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ 您正嘗試在未輸入作為前置條件的贊助者憑證的情況下使用功能升級金鑰。請注意,這種類型的金鑰 (<b>正如網站上以粗體明確說明的那樣</b>) 要求您預先擁有一個有效的贊助者憑證;<br />如果您想使用進階功能,您需要同時取得標準憑證和功能升級金鑰來解鎖進階功能。You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ 您正嘗試在未輸入作為前置條件的贊助者憑證的情況下使用續期金鑰。請注意,這種類型的金鑰 (<b>正如網站上以粗體明確說明的那樣</b>) 要求您預先擁有一個有效的贊助者憑證;沒有前者的情況下此金鑰完全無效。<br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ <br /><br /><u>如果您沒有閱讀產品說明並錯誤地取得了此金鑰,請透過電子郵件 (在我們的網站上提供) 聯絡我們以解決此問題。</u>
@@ -5537,12 +5540,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Error retriving certificate: %1
-
+ 取得憑證錯誤: %1
-
+ 未知錯誤 (可能是網際網路問題)
@@ -6792,7 +6795,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Auto delete content when last sandboxed process terminates
- 當最後的沙箱化的處理程序終止後自動刪除內容
+ 當最後的沙箱化處理程序終止後自動刪除內容變更
@@ -7132,7 +7135,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ 在裝載時執行強制保護
@@ -7143,7 +7146,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Prevents getting an image of the window in the sandbox.
- 阻止對沙箱中視窗進行畫面擷取。
+ 防止執行緒從沙箱化視窗擷取視窗之影像
@@ -7179,17 +7182,17 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ 停止選項
-
+ 使用延遲寬容性
-
+ 不停止 Windows 的延遲執行緒
@@ -7363,7 +7366,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Prevent sandboxes programs installed on host from loading dll's from the sandbox
- 防止安裝在主機上的沙箱程式從沙箱內部載入應用程式擴充 (DLL) 檔案
+ 防止主機上安裝的沙箱化程式從沙箱載入應用程式擴充 (DLL) 檔案
@@ -7672,27 +7675,27 @@ To specify a process use '$:program.exe' as path.
-
+ 防止沙箱化執行緒干預電源作業 (試驗性)
-
-
+
+ 防止移動滑鼠、移動視窗至前景、以及類似的作業,這可能對遊戲造成問題。
-
+ 防止干預使用者介面 (試驗性)
-
-
+
+ 此功能不會阻止所有能夠取得螢幕擷取內容的方法,僅阻止某些常見行為一次。
-
+ 防止沙箱化執行緒擷取視窗影像 (試驗性,可能造成 UI 故障)
@@ -7717,22 +7720,22 @@ To specify a process use '$:program.exe' as path.
-
+ 其他選項
-
+ 封鎖連接埠
-
+ 封鎖常見 SAMBA 連接埠
-
+ 封鎖 DNS UDP 連接埠 53
@@ -8069,7 +8072,7 @@ The process match level has a higher priority than the specificity and describes
-
+ 這些指令將在沙箱內全部執行緒完成後以「未沙箱化」狀態執行。
@@ -8342,7 +8345,7 @@ Please note that this values are currently user specific and saved globally for
-
+ 開啟範本
@@ -8836,7 +8839,7 @@ Please note that this values are currently user specific and saved globally for
-
+ 於螢幕擷取中隱藏 Sandboxie 管理員視窗 (需要重新啟動 UI)
@@ -9416,7 +9419,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ 開啟範本
From 513659240a2f2349e73897bc5f5a3d51473c78f6 Mon Sep 17 00:00:00 2001
From: Michael <33252157+APMichael@users.noreply.github.com>
Date: Mon, 22 Apr 2024 19:15:11 +0200
Subject: [PATCH 021/122] Update sandman_de.ts (#3842)
---
SandboxiePlus/SandMan/sandman_de.ts | 47 ++++++++---------------------
1 file changed, 12 insertions(+), 35 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts
index 5bd773a6..9d5fe996 100644
--- a/SandboxiePlus/SandMan/sandman_de.ts
+++ b/SandboxiePlus/SandMan/sandman_de.ts
@@ -1165,17 +1165,6 @@ Sie können %USER% verwenden, um für jeden Benutzer die Sandbox in einem eigene
Anzahl
-
- CMultiErrorDialog
-
-
- Sandboxie-Plus - Fehler
-
-
-
- Nachricht
-
-CNewBoxWizard
@@ -7227,23 +7216,11 @@ Dies wird gemacht um bösartige Prozesse in einer Sandbox daran zu hindern, eine
Breakout Ordner
-
-
- Hindere sandgeboxte Prozesse daran, mittels allgemein bekannter Methoden, Screenshots zu erstellen
-
-
-
- Hindere sandgeboxte Prozesse daran, Energievorgänge von Windows zu beeinträchtigen
- Erzwinge Schutz beim Einhängen
-
-
- Verhindere die Beeinträchtigung von Bedienvorgängen des Benutzers (Maus bewegen, nach vorne holen, usw...)
-
@@ -7864,27 +7841,27 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
-
+ Hindere sandgeboxte Prozesse daran, Energievorgänge von Windows zu beeinträchtigen (experimentell)
-
-
+
+ Verhindert Bewegen des Mauszeigers, in den Vordergrund holen und ähnliche Vorgänge. Dies verursacht wahrscheinlich Probleme bei Spielen.
-
+ Verhindere die Beeinträchtigung der Benutzeroberfläche (experimentell)
-
-
+
+ Diese Funktion blockiert nicht alle Mittel einen Screenshot zu erstellen, nur einige übliche.
-
+ Hindere sandgeboxte Prozesse daran, Screenshots zu erstellen (experimentell, kann Störungen der Benutzeroberfläche verursachen)
@@ -7950,7 +7927,7 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
-
+ Öffne Vorlage
@@ -8206,7 +8183,7 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
-
+ Öffne Vorlage
@@ -8832,8 +8809,8 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
-
- Hotkey zum Unterbrechen aller Prozesse
+
+ Hotkey zum Unterbrechen aller Prozesse:
@@ -8868,7 +8845,7 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
-
+ Verberge SandMan-Fenster vor der Erstellung von Screenshots (Neustart der Benutzeroberfläche erforderlich)
From 3e3d67e274941dcb1d37760ad72396dc8ed61555 Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Mon, 22 Apr 2024 20:16:30 +0300
Subject: [PATCH 022/122] Update sandman_tr.ts (#3846)
---
SandboxiePlus/SandMan/sandman_tr.ts | 71 +++++++----------------------
1 file changed, 17 insertions(+), 54 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_tr.ts b/SandboxiePlus/SandMan/sandman_tr.ts
index c78e8831..508ce8ed 100644
--- a/SandboxiePlus/SandMan/sandman_tr.ts
+++ b/SandboxiePlus/SandMan/sandman_tr.ts
@@ -237,7 +237,7 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
- Bu seçenek, paylaşımlı şablondaki ayarları korumalı alan yapılandırmasına ekler ve ayrıca şablon içindeki kaldırma ayarlarına bağlı olarak varsayılan korumalı alan ayarlarını da kaldırabilir.
+ Bu seçenek, paylaşımlı şablondaki ayarları korumalı alan yapılandırmasına ekler ve ayrıca şablon içindeki kaldırma ayarlarına bağlı olarak varsayılan korumalı alan ayarlarını kaldırabilir.
@@ -264,18 +264,6 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
Yapılandırmaya ekle
-
-
- Paylaşımlı yerel bir şablon kullan
-
-
-
- Bu ayar, korumalı alan yapılandırmasına yerel bir şablon ekler, böylece bu şablondaki ayarlar korumalı alanlar arasında paylaşılır. Ancak şablona eklenen bazı ayarlar kullanıcı arayüzüne yansımayabilir.
-Şablonun ayarlarını değiştirmek için Korumalı Alan Seçenekleri altındaki Uygulama Şablonları listesinde 'SharedTemplate' şablonunu bulup düzenlemeniz yeterlidir.
-Bu şablonu bir korumalı alan için devre dışı bırakmak istiyorsanız şablon listesindeki işaretini kaldırmanız yeterlidir.
-
@@ -1172,17 +1160,6 @@ Her kullanıcının korumalı alanını kendi klasörüne kaydetmek için %USER%
Yineleme
-
- CMultiErrorDialog
-
-
- Mesaj
-
-
-
- Sandboxie-Plus - Hata
-
-CNewBoxWizard
@@ -3987,9 +3964,7 @@ Hayır şunları seçer: %2
- Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
-Please check if there is an update for sandboxie.
- Windows derlemeniz %1, Sandboxie sürümünüzün mevcut destek yeteneklerini aşıyor ve belirteç tabanlı güvenlik yalıtımının devre dışı bırakılmasına neden oluyor. Sonuç olarak, tüm uygulamalar güvenlik yalıtımı olmadan Uygulama Bölmesi Modunda çalışacaktır.
+ Windows derlemeniz %1, Sandboxie sürümünüzün mevcut destek yeteneklerini aşıyor ve belirteç tabanlı güvenlik yalıtımının devre dışı bırakılmasına neden oluyor. Sonuç olarak, tüm uygulamalar güvenlik yalıtımı olmadan Uygulama Bölmesi Modunda çalışacaktır.
Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.
@@ -5159,19 +5134,17 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.
-
+ Bu, Sandboxie-Plus Seri Numarasına benzemiyor.<br />Bir sertifikanın yalnızca UPDATEKEY veya SIGNATURE değerini girmeyi denediyseniz, bu doğru değildir Lütfen bunun yerine yukarıdaki metin alanına sertifikanın tamamını giriniz.
- You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b>) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.
- Özellik yükseltme anahtarını mevcut bir destekçi sertifikası girmeden önce kullanmaya çalışıyorsunuz. Lütfen bu tür anahtarların (<b>web sitesinde kalın harflerle açıkça belirtildiği gibi</b>) mevcut geçerli bir destekçi sertifikasına sahip olmanızı gerektirdiğini, sertifika olmadan hiçbir işe yaramadığını unutmayın.<br />Gelişmiş özellikleri kullanmak için, hem standart bir sertifika hem de gelişmiş özelliklerin kilidini açacak bir özellik yükseltme anahtarı edinmeniz gerekir.
+ Özellik yükseltme anahtarını mevcut bir destekçi sertifikası girmeden önce kullanmaya çalışıyorsunuz. Lütfen bu tür anahtarların (<b>web sitesinde kalın harflerle açıkça belirtildiği gibi</b>) mevcut geçerli bir destekçi sertifikasına sahip olmanızı gerektirdiğini, sertifika olmadan hiçbir işe yaramadığını unutmayın.<br />Gelişmiş özellikleri kullanmak için, hem standart bir sertifika hem de gelişmiş özelliklerin kilidini açacak bir özellik yükseltme anahtarı edinmeniz gerekir.
- You are attempting to use a Renew-Key without having a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b>) requires you to have a pre-existing supporter certificate; it is useless without one.
- Yenileme anahtarını mevcut bir destekçi sertifikası girmeden önce kullanmaya çalışıyorsunuz. Lütfen bu tür anahtarların (<b>web sitesinde kalın harflerle açıkça belirtildiği gibi</b>) mevcut geçerli bir destekçi sertifikasına sahip olmanızı gerektirdiğini, sertifika olmadan hiçbir işe yaramadığını unutmayın.
+ Yenileme anahtarını mevcut bir destekçi sertifikası girmeden önce kullanmaya çalışıyorsunuz. Lütfen bu tür anahtarların (<b>web sitesinde kalın harflerle açıkça belirtildiği gibi</b>) mevcut geçerli bir destekçi sertifikasına sahip olmanızı gerektirdiğini, sertifika olmadan hiçbir işe yaramadığını unutmayın.
@@ -6863,8 +6836,7 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
- Auto delete content when last sandboxed process terminates
- Korumalı alandaki son işlem sonlandırıldığında içeriği otomatik olarak sil
+ Korumalı alandaki son işlem sonlandırıldığında içeriği otomatik olarak sil
@@ -7088,27 +7060,27 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
-
+ Korumalı alandaki işlemlerin güç operasyonlarına müdahale etmesini önle (Deneysel)
-
-
+
+ Fare imlecini hareket ettirme, bir pencereyi öne getirme ve benzeri işlemleri engelleyebilirsiniz fakat bu ayar oyunlarda sorunlara neden olabilir.
-
+ Kullanıcı arayüzüne müdahaleyi önle (Deneysel)
-
-
+
+ Bu özellik, ekran görüntüsü almanın tüm yollarını engellemez, yalnızca bazı yaygın olanları engeller.
-
+ Korumalı alan işlemlerinin pencere görüntüsü yakalamasını önle (Deneysel, kullanıcı arayüzü hatalarına neden olabilir)
@@ -7289,14 +7261,6 @@ Bu, korumalı alan içindeki haydut işlemlerin kendilerinin yeniden adlandırı
Çıkabilen Klasör
-
-
- Korumalı alandaki işlemlerin görüntü yakalamak için genel yöntemleri kullanmasını önle
-
-
-
- Korumalı alandaki işlemlerin güç işlevlerine müdahale etmesini önle
-
@@ -7346,7 +7310,6 @@ Bu, korumalı alan içindeki haydut işlemlerin kendilerinin yeniden adlandırı
- Stop BehavioureDurma Davranışı
@@ -7584,7 +7547,7 @@ Bir işlemi belirtmek için yol olarak '$:program.exe' kullanın.
-
+ Şablonu Aç
@@ -8787,7 +8750,7 @@ The process match level has a higher priority than the specificity and describes
-
+
Tüm işlemleri askıya almak için kısayol tuşu:
@@ -8823,7 +8786,7 @@ The process match level has a higher priority than the specificity and describes
-
+ SandMan penceresini ekran yakalamadan gizle (Kullanıcı arayüzünün yeniden başlatılması gerekir)
@@ -9000,7 +8963,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Şablonu Aç
From fb1ee261743db973e0d7eeb2dbf566182a4213e7 Mon Sep 17 00:00:00 2001
From: nkh0472 <67589323+nkh0472@users.noreply.github.com>
Date: Tue, 23 Apr 2024 01:33:48 +0800
Subject: [PATCH 023/122] Typo fix and Update sandman_zh_CN.ts (#3839)
---
SandboxiePlus/SandMan/sandman_zh_CN.ts | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index bcc9add3..c1d978c7 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -5516,7 +5516,7 @@ Error: %1
-
+ 这看起来不像是 Sandboxie Plus 的序列号<br/>如果您试图从证书中输入 UpdateKey 或 Signature ,无需这样做,请直接将整个证书输入到上面的文本区域。
@@ -8263,27 +8263,27 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
-
+ 防止沙盒进程干扰电源操作(实验性)
-
-
+
+ 防止移动鼠标、窗口前置和类似操作,这可能会导致游戏出现问题。
-
+ 防止干扰用户界面(实验性)
-
-
+
+ 此功能仅能阻止常见的一些,而不是所有的屏幕捕获方法。
-
+ 阻止沙盒进程捕获窗口图像(实验性,可能会导致UI故障)
@@ -8438,7 +8438,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
-
+ 打开模板
@@ -8886,7 +8886,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
-
+ 打开模板
@@ -9417,7 +9417,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
-
+ 从屏幕捕获中隐藏 SandMan 窗口(需要重新启动UI)
From 03aa918a47f09ff7dc037eb55d4ef146b380ad4f Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Mon, 22 Apr 2024 20:35:01 +0300
Subject: [PATCH 024/122] Update codespell.yml
[skip ci]
---
.github/workflows/codespell.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index 7e141489..63474e65 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -125,5 +125,5 @@ jobs:
echo 'tailing->trailing' >> dictionary_code.txt
# Only lowercase letters are allowed in --ignore-words-list
codespell --dictionary=dictionary.txt --dictionary=dictionary_rare.txt --dictionary=dictionary_code.txt \
- --ignore-words-list="wil,unknwn,tolen,pevent,doubleclick,parm,parms,etcp,ois,ba,ptd,modell,namesd,stdio,uint,errorstring,ontext,atend,deque,ecounter,nmake,namess,inh,daa,varient,lite,uis,emai,ws,slanguage,woh,tne,typpos,enew,shft,seh,ser,servent,socio-economic,rime" \
+ --ignore-words-list="wil,unknwn,tolen,pevent,doubleclick,parm,parms,etcp,ois,ba,ptd,modell,namesd,stdio,uint,errorstring,ontext,atend,deque,ecounter,nmake,namess,inh,daa,varient,lite,uis,emai,ws,slanguage,woh,tne,typpos,enew,shft,seh,ser,servent,socio-economic,rime,fAlt,infoR" \
--skip="./.git,./.github/workflows/codespell.yml,./dictionary*.txt,./Sandboxie/msgs/Text-*-*.txt,./Sandboxie/msgs/report/Report-*.txt,./SandboxiePlus/SandMan/*.ts,./Installer/Languages.iss,./Installer/isl/*.isl,./Sandboxie/common/Detours/Makefile,./Sandboxie/common/Detours/disasm.cpp,./Sandboxie/install/build.bat,./SandboxieTools/ImBox/dc/crypto_fast/xts_fast.c,./Sandboxie/apps/control/TreePropSheet.h,./Sandboxie/apps/control/PropPageFrame.h,./Sandboxie/apps/control/PropPageFrameDefault.h,./SandboxiePlus/SandMan/Troubleshooting/lang_*.json"
From f0ee2737eccb50f086568991eec209c7d8b57b6c Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Mon, 22 Apr 2024 21:22:37 +0200
Subject: [PATCH 025/122] Update sandman_fr.ts
---
SandboxiePlus/SandMan/sandman_fr.ts | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_fr.ts b/SandboxiePlus/SandMan/sandman_fr.ts
index eb2e30ba..681f8e04 100644
--- a/SandboxiePlus/SandMan/sandman_fr.ts
+++ b/SandboxiePlus/SandMan/sandman_fr.ts
@@ -3151,7 +3151,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Please check if there is an update for sandboxie.
Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.
- Votre version de Windows %1 excède les capacités de prise en charge actuelles de votre version de Sandboxie, entrainant la désactivation de l'isolation de sécurité basée sur les jetons. Par conséquent, toutes les applications s'exécuteront en mode conteneur d'applications sans isolation sécurisée.
+ Votre version de Windows %1 excède les capacités de prise en charge actuelles de votre version de Sandboxie, entrainant la désactivation de l'isolation de sécurité basée sur les jetons. Par conséquent, toutes les applications s'exécuteront en mode conteneur d'applications sans isolation sécurisée.
Veuillez vérifier s'il y a une mise à jour pour Sandboxie.
@@ -6076,7 +6076,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
+ Ceci ne ressemble pas à un numéro de série de Sandboxie-Plus.<br />Si vous avez essayé de saisir la clé de mise à jour ou la signature d'un certificat, c'est incorrect : à la place, veuillez saisir le certificat en entier dans la zone de texte ci-dessus.
@@ -7193,7 +7193,7 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Auto delete content when last sandboxed process terminates
- Supprimer automatiquement le contenu lorsque le dernier processus du bac prend fin
+ Supprimer automatiquement les modifications du contenu lorsque le dernier processus du bac prend fin
@@ -8531,27 +8531,27 @@ au lieu de « * ».
-
+ Empêcher les processus dans le bac à sable d'interférer avec des opérations d'alimentation (Expérimental)
-
+ Empêcher les mouvements à la souris, la mise au premier plan, et les opérations similaires (activer ceci est susceptible de causer des problèmes avec les jeux).
-
+ Empêcher les interférences avec l'interface utilisateur (Expérimental)
-
+ Cette fonction ne bloque pas tous les moyens d'obtenir une capture d'écran, seulement les plus communs.
-
+ Empêcher les processus dans un bac à sable de capturer des images de la fenêtre (Expérimental, peut provoquer des bogues d'interface utilisateur)
@@ -8936,7 +8936,7 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
-
+ Ouvrir le modèle
@@ -9609,7 +9609,7 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
-
+ Masquer les fenêtres de SandMan lors des captures d'écran (redémarrage de l'interface utilisateur nécessaire)
@@ -10053,7 +10053,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
-
+ Ouvrir le modèle
From 0492d8bf29ce60ea3e889a600a4826d22ecb6923 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 23 Apr 2024 01:26:54 +0000
Subject: [PATCH 026/122] Sync SBIE Plus language files (lupdate)
---
SandboxiePlus/SandMan/sandman_en.ts | 9 ++++++---
SandboxiePlus/SandMan/sandman_es.ts | 11 +++++++----
SandboxiePlus/SandMan/sandman_fr.ts | 15 +++++++++------
SandboxiePlus/SandMan/sandman_hu.ts | 9 ++++++---
SandboxiePlus/SandMan/sandman_it.ts | 9 ++++++---
SandboxiePlus/SandMan/sandman_ja.ts | 9 ++++++---
SandboxiePlus/SandMan/sandman_ko.ts | 11 +++++++----
SandboxiePlus/SandMan/sandman_nl.ts | 9 ++++++---
SandboxiePlus/SandMan/sandman_pl.ts | 9 ++++++---
SandboxiePlus/SandMan/sandman_pt_BR.ts | 9 ++++++---
SandboxiePlus/SandMan/sandman_pt_PT.ts | 9 ++++++---
SandboxiePlus/SandMan/sandman_ru.ts | 11 +++++++----
SandboxiePlus/SandMan/sandman_sv_SE.ts | 11 +++++++----
SandboxiePlus/SandMan/sandman_tr.ts | 5 +++--
SandboxiePlus/SandMan/sandman_uk.ts | 9 ++++++---
SandboxiePlus/SandMan/sandman_vi.ts | 9 ++++++---
SandboxiePlus/SandMan/sandman_zh_CN.ts | 5 +++--
SandboxiePlus/SandMan/sandman_zh_TW.ts | 5 +++--
18 files changed, 106 insertions(+), 58 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_en.ts b/SandboxiePlus/SandMan/sandman_en.ts
index 37d53000..3931b825 100644
--- a/SandboxiePlus/SandMan/sandman_en.ts
+++ b/SandboxiePlus/SandMan/sandman_en.ts
@@ -7305,7 +7305,8 @@ To specify a process use '$:program.exe' as path.
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -7315,7 +7316,8 @@ To specify a process use '$:program.exe' as path.
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -8784,7 +8786,8 @@ Please note that this values are currently user specific and saved globally for
-
+
+ Hotkey for suspending all process
diff --git a/SandboxiePlus/SandMan/sandman_es.ts b/SandboxiePlus/SandMan/sandman_es.ts
index ef4aab25..ba1ad31b 100644
--- a/SandboxiePlus/SandMan/sandman_es.ts
+++ b/SandboxiePlus/SandMan/sandman_es.ts
@@ -8337,7 +8337,8 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -8347,7 +8348,8 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -9080,8 +9082,9 @@ Por favor note que estos valores son especificos para usuario y guardados global
-
- Atajo para suspender todos los procesos
+
+ Hotkey for suspending all process
+ Atajo para suspender todos los procesos
diff --git a/SandboxiePlus/SandMan/sandman_fr.ts b/SandboxiePlus/SandMan/sandman_fr.ts
index 681f8e04..fc8212cf 100644
--- a/SandboxiePlus/SandMan/sandman_fr.ts
+++ b/SandboxiePlus/SandMan/sandman_fr.ts
@@ -8535,8 +8535,9 @@ au lieu de « * ».
-
- Empêcher les mouvements à la souris, la mise au premier plan, et les opérations similaires (activer ceci est susceptible de causer des problèmes avec les jeux).
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
+ Empêcher les mouvements à la souris, la mise au premier plan, et les opérations similaires (activer ceci est susceptible de causer des problèmes avec les jeux).
@@ -8545,8 +8546,9 @@ au lieu de « * ».
-
- Cette fonction ne bloque pas tous les moyens d'obtenir une capture d'écran, seulement les plus communs.
+
+ This feature does not block all means of optaining a screen capture only some common once.
+ Cette fonction ne bloque pas tous les moyens d'obtenir une capture d'écran, seulement les plus communs.
@@ -9433,8 +9435,9 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
-
- Raccourci pour suspendre tous les processus :
+
+ Hotkey for suspending all process
+ Raccourci pour suspendre tous les processus :
diff --git a/SandboxiePlus/SandMan/sandman_hu.ts b/SandboxiePlus/SandMan/sandman_hu.ts
index 68b94217..1c911157 100644
--- a/SandboxiePlus/SandMan/sandman_hu.ts
+++ b/SandboxiePlus/SandMan/sandman_hu.ts
@@ -7346,7 +7346,8 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -7356,7 +7357,8 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -8735,7 +8737,8 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
-
+
+ Hotkey for suspending all process
diff --git a/SandboxiePlus/SandMan/sandman_it.ts b/SandboxiePlus/SandMan/sandman_it.ts
index 44847755..e86e6eff 100644
--- a/SandboxiePlus/SandMan/sandman_it.ts
+++ b/SandboxiePlus/SandMan/sandman_it.ts
@@ -7724,7 +7724,8 @@ Per specificare un processo, utilizza '$:program.exe' come percorso.
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -7734,7 +7735,8 @@ Per specificare un processo, utilizza '$:program.exe' come percorso.
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -8855,7 +8857,8 @@ area virtuale
-
+
+ Hotkey for suspending all process
diff --git a/SandboxiePlus/SandMan/sandman_ja.ts b/SandboxiePlus/SandMan/sandman_ja.ts
index e4fe66c6..5949e73b 100644
--- a/SandboxiePlus/SandMan/sandman_ja.ts
+++ b/SandboxiePlus/SandMan/sandman_ja.ts
@@ -7611,7 +7611,8 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -7621,7 +7622,8 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -8083,7 +8085,8 @@ Please note that this values are currently user specific and saved globally for
-
+
+ Hotkey for suspending all process
diff --git a/SandboxiePlus/SandMan/sandman_ko.ts b/SandboxiePlus/SandMan/sandman_ko.ts
index dd69adff..bf769d97 100644
--- a/SandboxiePlus/SandMan/sandman_ko.ts
+++ b/SandboxiePlus/SandMan/sandman_ko.ts
@@ -7410,7 +7410,8 @@ If leader processes are defined, all others are treated as lingering processes.<
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -7420,7 +7421,8 @@ If leader processes are defined, all others are treated as lingering processes.<
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -9066,8 +9068,9 @@ Please note that this values are currently user specific and saved globally for
-
- 모든 프로세스를 일시 중지하는 단축키
+
+ Hotkey for suspending all process
+ 모든 프로세스를 일시 중지하는 단축키
diff --git a/SandboxiePlus/SandMan/sandman_nl.ts b/SandboxiePlus/SandMan/sandman_nl.ts
index a7ecb7f9..54b79f0f 100644
--- a/SandboxiePlus/SandMan/sandman_nl.ts
+++ b/SandboxiePlus/SandMan/sandman_nl.ts
@@ -8367,7 +8367,8 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -8377,7 +8378,8 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -8974,7 +8976,8 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+
+ Hotkey for suspending all process
diff --git a/SandboxiePlus/SandMan/sandman_pl.ts b/SandboxiePlus/SandMan/sandman_pl.ts
index 38f1cdab..a695a92c 100644
--- a/SandboxiePlus/SandMan/sandman_pl.ts
+++ b/SandboxiePlus/SandMan/sandman_pl.ts
@@ -6959,7 +6959,8 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -6969,7 +6970,8 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -8942,7 +8944,8 @@ Należy pamiętać, że te wartości są obecnie specyficzne dla użytkownika i
-
+
+ Hotkey for suspending all process
diff --git a/SandboxiePlus/SandMan/sandman_pt_BR.ts b/SandboxiePlus/SandMan/sandman_pt_BR.ts
index 959612f8..ad70ebf5 100644
--- a/SandboxiePlus/SandMan/sandman_pt_BR.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_BR.ts
@@ -8471,7 +8471,8 @@ ao invés de "*".
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -8481,7 +8482,8 @@ ao invés de "*".
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -9265,7 +9267,8 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
-
+
+ Hotkey for suspending all process
diff --git a/SandboxiePlus/SandMan/sandman_pt_PT.ts b/SandboxiePlus/SandMan/sandman_pt_PT.ts
index a70f46e4..b98a320e 100644
--- a/SandboxiePlus/SandMan/sandman_pt_PT.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_PT.ts
@@ -8471,7 +8471,8 @@ ao invés de "*".
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -8481,7 +8482,8 @@ ao invés de "*".
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -9265,7 +9267,8 @@ Por favor, note que este valores são atualmente para o utilizador específico e
-
+
+ Hotkey for suspending all process
diff --git a/SandboxiePlus/SandMan/sandman_ru.ts b/SandboxiePlus/SandMan/sandman_ru.ts
index 1a63a0fa..cbbc639f 100644
--- a/SandboxiePlus/SandMan/sandman_ru.ts
+++ b/SandboxiePlus/SandMan/sandman_ru.ts
@@ -7553,7 +7553,8 @@ The process match level has a higher priority than the specificity and describes
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -7563,7 +7564,8 @@ The process match level has a higher priority than the specificity and describes
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -8770,8 +8772,9 @@ Please note that this values are currently user specific and saved globally for
-
- Горячая клавиша для приостановки всех процессов
+
+ Hotkey for suspending all process
+ Горячая клавиша для приостановки всех процессов
diff --git a/SandboxiePlus/SandMan/sandman_sv_SE.ts b/SandboxiePlus/SandMan/sandman_sv_SE.ts
index ec8aae37..317f9fb8 100644
--- a/SandboxiePlus/SandMan/sandman_sv_SE.ts
+++ b/SandboxiePlus/SandMan/sandman_sv_SE.ts
@@ -7327,7 +7327,8 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -7337,7 +7338,8 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -9400,8 +9402,9 @@ istället för "*".
-
- Snabbkommando för att upphäva alla processer
+
+ Hotkey for suspending all process
+ Snabbkommando för att upphäva alla processer
diff --git a/SandboxiePlus/SandMan/sandman_tr.ts b/SandboxiePlus/SandMan/sandman_tr.ts
index 508ce8ed..ae539cd5 100644
--- a/SandboxiePlus/SandMan/sandman_tr.ts
+++ b/SandboxiePlus/SandMan/sandman_tr.ts
@@ -8750,8 +8750,9 @@ The process match level has a higher priority than the specificity and describes
-
- Tüm işlemleri askıya almak için kısayol tuşu:
+
+ Hotkey for suspending all process:
+ Tüm işlemleri askıya almak için kısayol tuşu:
diff --git a/SandboxiePlus/SandMan/sandman_uk.ts b/SandboxiePlus/SandMan/sandman_uk.ts
index 185e437b..f4a81b06 100644
--- a/SandboxiePlus/SandMan/sandman_uk.ts
+++ b/SandboxiePlus/SandMan/sandman_uk.ts
@@ -8344,7 +8344,8 @@ Please note that this values are currently user specific and saved globally for
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -8354,7 +8355,8 @@ Please note that this values are currently user specific and saved globally for
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -8938,7 +8940,8 @@ Please note that this values are currently user specific and saved globally for
-
+
+ Hotkey for suspending all process
diff --git a/SandboxiePlus/SandMan/sandman_vi.ts b/SandboxiePlus/SandMan/sandman_vi.ts
index 8ba42eb6..9056f5b4 100644
--- a/SandboxiePlus/SandMan/sandman_vi.ts
+++ b/SandboxiePlus/SandMan/sandman_vi.ts
@@ -8188,7 +8188,8 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
-
+
+ Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
@@ -8198,7 +8199,8 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
-
+
+ This feature does not block all means of optaining a screen capture only some common once.
@@ -8781,7 +8783,8 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
-
+
+ Hotkey for suspending all process
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index c1d978c7..5338e595 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -9381,8 +9381,9 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
-
- 暂停沙盒内所有进程的热键:
+
+ Hotkey for suspending all process
+ 暂停沙盒内所有进程的热键:
diff --git a/SandboxiePlus/SandMan/sandman_zh_TW.ts b/SandboxiePlus/SandMan/sandman_zh_TW.ts
index f386dd77..8666caf2 100644
--- a/SandboxiePlus/SandMan/sandman_zh_TW.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_TW.ts
@@ -8778,8 +8778,9 @@ Please note that this values are currently user specific and saved globally for
-
- 用於暫停全部執行緒的快速鍵
+
+ Hotkey for suspending all process
+ 用於暫停全部執行緒的快速鍵
From dba441136ad677c002222742f7830870c19e1b07 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Wed, 24 Apr 2024 10:01:04 +0200
Subject: [PATCH 027/122] 1.13.7
---
CHANGELOG.md | 7 +++++++
Sandboxie/common/my_version.h | 4 ++--
SandboxiePlus/version.h | 2 +-
3 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2cbaa124..695a2f1a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
+## [1.13.7 / 5.68.7] - 2024-04-
+
+### Fixed
+ - fixed issue with start agent UI option [#3844](https://github.com/sandboxie-plus/Sandboxie/pull/3844) (thanks offhub)
+
+
+
## [1.13.6 / 5.68.6] - 2024-04-21
### Added
diff --git a/Sandboxie/common/my_version.h b/Sandboxie/common/my_version.h
index 2a326d52..bde9e8ea 100644
--- a/Sandboxie/common/my_version.h
+++ b/Sandboxie/common/my_version.h
@@ -21,8 +21,8 @@
#ifndef _MY_VERSION_H
#define _MY_VERSION_H
-#define MY_VERSION_BINARY 5,68,6
-#define MY_VERSION_STRING "5.68.6"
+#define MY_VERSION_BINARY 5,68,7
+#define MY_VERSION_STRING "5.68.7"
#define MY_ABI_VERSION 0x56800
// These #defines are used by either Resource Compiler or NSIS installer
diff --git a/SandboxiePlus/version.h b/SandboxiePlus/version.h
index 8329ac0f..5b2cfcb5 100644
--- a/SandboxiePlus/version.h
+++ b/SandboxiePlus/version.h
@@ -2,7 +2,7 @@
#define VERSION_MJR 1
#define VERSION_MIN 13
-#define VERSION_REV 6
+#define VERSION_REV 7
#define VERSION_UPD 0
#ifndef STR
From 356955140b7e871e92ec27cc6f0fefb47abc0b4c Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Wed, 24 Apr 2024 10:47:28 +0200
Subject: [PATCH 028/122] Update SettingsWindow.cpp
---
SandboxiePlus/SandMan/Windows/SettingsWindow.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
index a8f2c7f4..413d21ed 100644
--- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
@@ -1567,7 +1567,7 @@ void CSettingsWindow::SaveSettings()
if (theAPI->IsConnected()) {
if (ui.chkSvcStart->checkState() == Qt::Checked) {
theAPI->GetUserSettings()->SetBool("SbieCtrl_EnableAutoStart", true);
- theAPI->GetUserSettings()->SetText("SbieCtrl_AutoStartAgent", "SandMan.exe");
+ theAPI->GetUserSettings()->SetText("SbieCtrl_AutoStartAgent", "SandMan.exe -autorun");
}
else if (ui.chkSvcStart->checkState() == Qt::Unchecked)
theAPI->GetUserSettings()->SetBool("SbieCtrl_EnableAutoStart", false);
From 7adaf857ab0e2e45c194dceb4492e31816740c26 Mon Sep 17 00:00:00 2001
From: isaak654
Date: Wed, 24 Apr 2024 11:01:24 +0200
Subject: [PATCH 029/122] Update codespell.yml
Only lowercase letters are allowed in --ignore-words-list
---
.github/workflows/codespell.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index 63474e65..34e9e937 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -125,5 +125,5 @@ jobs:
echo 'tailing->trailing' >> dictionary_code.txt
# Only lowercase letters are allowed in --ignore-words-list
codespell --dictionary=dictionary.txt --dictionary=dictionary_rare.txt --dictionary=dictionary_code.txt \
- --ignore-words-list="wil,unknwn,tolen,pevent,doubleclick,parm,parms,etcp,ois,ba,ptd,modell,namesd,stdio,uint,errorstring,ontext,atend,deque,ecounter,nmake,namess,inh,daa,varient,lite,uis,emai,ws,slanguage,woh,tne,typpos,enew,shft,seh,ser,servent,socio-economic,rime,fAlt,infoR" \
+ --ignore-words-list="wil,unknwn,tolen,pevent,doubleclick,parm,parms,etcp,ois,ba,ptd,modell,namesd,stdio,uint,errorstring,ontext,atend,deque,ecounter,nmake,namess,inh,daa,varient,lite,uis,emai,ws,slanguage,woh,tne,typpos,enew,shft,seh,ser,servent,socio-economic,rime,falt,infor" \
--skip="./.git,./.github/workflows/codespell.yml,./dictionary*.txt,./Sandboxie/msgs/Text-*-*.txt,./Sandboxie/msgs/report/Report-*.txt,./SandboxiePlus/SandMan/*.ts,./Installer/Languages.iss,./Installer/isl/*.isl,./Sandboxie/common/Detours/Makefile,./Sandboxie/common/Detours/disasm.cpp,./Sandboxie/install/build.bat,./SandboxieTools/ImBox/dc/crypto_fast/xts_fast.c,./Sandboxie/apps/control/TreePropSheet.h,./Sandboxie/apps/control/PropPageFrame.h,./Sandboxie/apps/control/PropPageFrameDefault.h,./SandboxiePlus/SandMan/Troubleshooting/lang_*.json"
From 6b6186d6a35babeb12fc330a4d25d374a339959d Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Thu, 25 Apr 2024 03:17:36 +0300
Subject: [PATCH 030/122] Update NewBoxWizard.cpp
minor fix for SharedTemplate
---
SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp
index 83384246..ee9c0ab3 100644
--- a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp
+++ b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp
@@ -102,8 +102,8 @@ SB_STATUS CNewBoxWizard::TryToCreateBox()
const QString REMOVE_DEFAULT_ALL = "#RemoveDefaultAll";
const QString REMOVE_DEFAULT_RECOVERS = "#RemoveDefaultRecovers";
const QString REMOVE_DEFAULT_TEMPLATES = "#RemoveDefaultTemplates";
- const QString ENABLED_PREFIX = "Enabled=";
- const QString CFGLVL_PREFIX = "ConfigLevel=";
+ const QString ENABLED_PREFIX = "Enabled";
+ const QString CFGLVL_PREFIX = "ConfigLevel";
const QString TMPL_PREFIX = "Tmpl.";
const QString BOX_DISABLED_SUFFIX = "Disabled";
const QStringList SPECIAL_SETTINGS = { "BorderColor", "BoxIcon", "BoxNameTitle", "ConfigLevel", "CopyLimitKb" };
@@ -148,7 +148,7 @@ SB_STATUS CNewBoxWizard::TryToCreateBox()
if (bParts.size() == 2) {
QString bKey = bParts[0].trimmed();
QString bValue = bParts[1].trimmed();
- if (!bLine.startsWith(ENABLED_PREFIX) && !bLine.startsWith(CFGLVL_PREFIX)) { // Do not remove Enabled and ConfigLevel
+ if (bKey.compare(ENABLED_PREFIX, Qt::CaseInsensitive) != 0 && bKey.compare(CFGLVL_PREFIX) != 0) { // Do not remove Enabled and ConfigLevel
pBox->DelValue(bKey, bValue);
}
}
@@ -172,7 +172,7 @@ SB_STATUS CNewBoxWizard::TryToCreateBox()
QString tKey = tParts[0].trimmed();
QString tValue = tParts[1].trimmed();
- if (tKey.startsWith(ENABLED_PREFIX) || tKey.startsWith(TMPL_PREFIX) || tKey.startsWith("#") || tKey.endsWith(BOX_DISABLED_SUFFIX)) {
+ if (tKey.compare(ENABLED_PREFIX, Qt::CaseInsensitive) == 0 || tKey.startsWith(TMPL_PREFIX) || tKey.startsWith("#") || tKey.endsWith(BOX_DISABLED_SUFFIX)) {
continue; // Skip lines that start or end with one of these
}
From b30b910f11ecad2b7321275d1fc779c94395d91c Mon Sep 17 00:00:00 2001
From: DavidXanatos
Date: Thu, 25 Apr 2024 10:57:50 +0200
Subject: [PATCH 031/122] Update key_del.c
---
Sandboxie/core/dll/key_del.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Sandboxie/core/dll/key_del.c b/Sandboxie/core/dll/key_del.c
index e8d3a63f..401e9227 100644
--- a/Sandboxie/core/dll/key_del.c
+++ b/Sandboxie/core/dll/key_del.c
@@ -266,11 +266,13 @@ _FX NTSTATUS Key_MarkDeletedEx_v2(const WCHAR* TruePath, const WCHAR* ValueName)
NtClose(hPathsFile);
+ Key_PathsVersion++;
+
File_GetAttributes_internal(KEY_PATH_FILE_NAME, &Key_PathsFileSize, &Key_PathsFileDate, NULL);
}
}
else
- Key_SavePathTree();
+ Key_SavePathTree();
}
File_ReleaseMutex(hMutex);
From 1de1d1f57e75a7570cac29885be19cdd275bf3a1 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Thu, 25 Apr 2024 10:59:08 +0200
Subject: [PATCH 032/122] Update CHANGELOG.md
---
CHANGELOG.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 695a2f1a..60905114 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,7 +8,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.13.7 / 5.68.7] - 2024-04-
### Fixed
- - fixed issue with start agent UI option [#3844](https://github.com/sandboxie-plus/Sandboxie/pull/3844) (thanks offhub)
+ - fixed issue with start agent option [#3844](https://github.com/sandboxie-plus/Sandboxie/pull/3844) (thanks offhub)
+ - fixed issue with Delete V2 introduced in 1.13.5
From 676684776b1dbdf77b61aa4dcd96218d944dbcc3 Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Thu, 25 Apr 2024 17:50:32 +0300
Subject: [PATCH 033/122] Added DropAdmin and improved related checkboxes
resolves #3848
---
.../SandMan/Wizards/NewBoxWizard.cpp | 47 +++++++++++++++----
SandboxiePlus/SandMan/Wizards/NewBoxWizard.h | 2 +
2 files changed, 39 insertions(+), 10 deletions(-)
diff --git a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp
index ee9c0ab3..2f012b7d 100644
--- a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp
+++ b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp
@@ -252,23 +252,27 @@ SB_STATUS CNewBoxWizard::TryToCreateBox()
//pBox->InsertText("ClosedFilePath", ",InternetAccessDevices");
}
pBox->SetBool("BlockNetworkFiles", !field("shareAccess").toBool());
-
- if (field("fakeAdmin").toBool()) {
+
+ bool bHardened = (BoxType == CSandBoxPlus::eHardenedPlus || BoxType == CSandBoxPlus::eHardened);
+ bool bDropAdmin = field("dropAdmin").toBool();
+ if (field("dropAdmin").toBool() && !bHardened)
pBox->SetBool("DropAdminRights", true);
+
+ if (field("fakeAdmin").toBool())
pBox->SetBool("FakeAdminRights", true);
- }
- if(field("msiServer").toBool())
+
+ if(field("msiServer").toBool() && !bDropAdmin && !bHardened)
pBox->SetBool("MsiInstallerExemptions", true);
-
+
if(field("boxToken").toBool())
pBox->SetBool("SandboxieLogon", true);
-
+
if(field("imagesProtection").toBool())
pBox->SetBool("ProtectHostImages", true);
-
+
if (!Password.isEmpty())
pBox->ImBoxCreate(ImageSize / 1024, Password);
-
+
if (field("boxVersion").toInt() == 1) {
if (theConf->GetBool("Options/WarnDeleteV2", true)) {
bool State = false;
@@ -741,6 +745,12 @@ CAdvancedPage::CAdvancedPage(QWidget *parent)
pAdminLabel->setFont(fnt);
layout->addWidget(pAdminLabel, row++, 0);
+ m_pDropAdmin = new QCheckBox(tr("Drop rights from Administrators and Power Users groups"));
+ m_pDropAdmin->setChecked(theConf->GetBool("BoxDefaults/DropAdmin", false));
+ layout->addWidget(m_pDropAdmin, row++, 1, 1, 3);
+ connect(m_pDropAdmin, &QCheckBox::stateChanged, this, &CAdvancedPage::OnDropAdminChanged);
+ registerField("dropAdmin", m_pDropAdmin);
+
QCheckBox* pFakeAdmin = new QCheckBox(tr("Make applications think they are running elevated"));
pFakeAdmin->setChecked(theConf->GetBool("BoxDefaults/FakeAdmin", false));
layout->addWidget(pFakeAdmin, row++, 1, 1, 3);
@@ -748,7 +758,8 @@ CAdvancedPage::CAdvancedPage(QWidget *parent)
m_pMSIServer = new QCheckBox(tr("Allow MSIServer to run with a sandboxed system token"));
m_pMSIServer->setToolTip(tr("This option is not recommended for Hardened boxes"));
- m_pMSIServer->setChecked(theConf->GetBool("BoxDefaults/MsiExemptions", false));
+ if (!theConf->GetBool("BoxDefaults/DropAdmin", false))
+ m_pMSIServer->setChecked(theConf->GetBool("BoxDefaults/MsiExemptions", false));
layout->addWidget(m_pMSIServer, row++, 1, 1, 3);
registerField("msiServer", m_pMSIServer);
@@ -817,8 +828,11 @@ void CAdvancedPage::initializePage()
int BoxType = wizard()->field("boxType").toInt();
bool bHardened = (BoxType == CSandBoxPlus::eHardenedPlus || BoxType == CSandBoxPlus::eHardened);
- m_pMSIServer->setEnabled(!bHardened);
+ bool bDropAdmin = field("dropAdmin").toBool();
+ m_pMSIServer->setEnabled(!bHardened && !bDropAdmin);
m_pShareAccess->setEnabled(!bHardened);
+ m_pDropAdmin->setEnabled(!bHardened);
+ m_pDropAdmin->setChecked(bDropAdmin || bHardened);
bool bAppBox = (BoxType == CSandBoxPlus::eAppBoxPlus || BoxType == CSandBoxPlus::eAppBox);
m_pBoxToken->setEnabled(!bAppBox);
@@ -829,6 +843,18 @@ bool CAdvancedPage::validatePage()
return true;
}
+void CAdvancedPage::OnDropAdminChanged(int state) {
+ // If m_pDropAdmin is checked, disable m_pMSIServer
+ if (state == Qt::Checked) {
+ m_pMSIServer->setEnabled(false);
+ m_pMSIServer->setChecked(false);
+ }
+ else {
+ // If m_pDropAdmin is unchecked, enable m_pMSIServer
+ m_pMSIServer->setEnabled(true);
+ }
+}
+
//////////////////////////////////////////////////////////////////////////////////////////
// CSummaryPage
@@ -921,6 +947,7 @@ bool CSummaryPage::validatePage()
theConf->SetValue("BoxDefaults/BlockNetwork", field("blockNetwork").toInt());
theConf->SetValue("BoxDefaults/ShareAccess", field("shareAccess").toBool());
+ theConf->SetValue("BoxDefaults/DropAdmin", field("dropAdmin").toBool());
theConf->SetValue("BoxDefaults/FakeAdmin", field("fakeAdmin").toBool());
theConf->SetValue("BoxDefaults/MsiExemptions", field("msiServer").toBool());
diff --git a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.h b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.h
index c2f5431f..fa92319f 100644
--- a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.h
+++ b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.h
@@ -116,11 +116,13 @@ public:
int nextId() const override;
void initializePage() override;
bool validatePage() override;
+ void OnDropAdminChanged(int state);
private:
QCheckBox* m_pShareAccess;
QCheckBox* m_pMSIServer;
QCheckBox* m_pBoxToken;
+ QCheckBox* m_pDropAdmin;
};
From 8a4b5e82de72e57396783a9b4d7b0fa3fc77dd2e Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Thu, 25 Apr 2024 18:32:04 +0200
Subject: [PATCH 034/122] Update sandman_sv_SE.ts
---
SandboxiePlus/SandMan/sandman_sv_SE.ts | 67 ++++++++++++++------------
1 file changed, 35 insertions(+), 32 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_sv_SE.ts b/SandboxiePlus/SandMan/sandman_sv_SE.ts
index 317f9fb8..1a4d1f16 100644
--- a/SandboxiePlus/SandMan/sandman_sv_SE.ts
+++ b/SandboxiePlus/SandMan/sandman_sv_SE.ts
@@ -57,7 +57,7 @@
- Lås lådan när alla processer stoppar
+ Lås lådan när alla processer stoppar.
@@ -272,7 +272,7 @@
-
+ Delad mall
@@ -285,32 +285,35 @@
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
To disable this template for a sandbox, simply uncheck it in the template list.
-
+ Denna inställning lägger till en lokal mall eller dess inställningar till sandlådekonfigurationen så att inställningarna i den mallen delas mellan sandlådor.
+Hursom, om alternativet Använd en mall är valt som delningsläge, kanske vissa inställningar inte återspeglas i användragränssnittet.
+För att ändra mallens inställningar, lokalisera helt enkelt '%1' -mallen i Appmallslistan under Sandlådealternativ, dubbelklicka sedan på den för redigering.
+För att inaktivera denna mall för en sandlåda, avbocka den helt enkelt i mall listan.
-
+ Detta alternativ adderar inga inställningar till lådkonfigurationen och tar inte bort de förvalda lådinställningarna baserade på borttagningsinställningarna inom mallen.
-
+ Detta alternativ adderar den delade mallen till lådkonfigurationen som en lokal mall och kanske också tar bort de förvalda lådinställningarna baserade på borttagningsinställningarna inom mallen.
-
+ Detta alternativ adderar inställningarna från den delade mallen till lådkonfigurationen och kanske också tar bort de förvalda lådinställningarna baserat på borttagningsinställningarna inom mallen.
-
+ Detta alternativ adderar inte några inställningar till lådkonfigurationen, men kanske tar bort de förvalda lådinställningarna baserat på borttagningsinställningarna inom mallen.
-
+ Ta bort förvalda om angivetCFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioure
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -942,64 +947,64 @@ You can use %USER% to save each users sandbox to an own fodler.
-
+ Sandboxed Files
-
+ Select Directory
-
+ Virtualization scheme
-
+ Version 1
-
+ Version 2
-
+ Separate user folders
-
+ Use volume serial numbers for drives
-
+ Auto delete content when last process terminates
-
+ Enable Immediate Recovery of files from recovery locations
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.
@@ -1193,14 +1198,14 @@ You can use %USER% to save each users sandbox to an own fodler.
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.
-
+ Don't show this message again.
@@ -2685,22 +2690,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1
-
+ Deleting folder: %1
-
+ Merging folders: %1 >> %2
-
+ Finishing Snapshot Merge...
@@ -2782,22 +2787,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Reset Columns
-
+ Copy Cell
-
+ Copy Row
-
+ Copy Panel
@@ -3060,7 +3065,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-Plus
@@ -3435,56 +3440,35 @@ No will choose: %2
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ Close
-
+ &Find ...
-
+ All columns
-
-
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
-
-
-
-
- This copy of Sandboxie+ is certified for: %1
-
-
-
-
- Sandboxie+ is free for personal and non-commercial use.
-
-
-
-
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
-
- Administrator rights are required for this operation.
@@ -4108,6 +4092,26 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Remember choice for later.
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ The supporter certificate is not valid for this build, please get an updated certificate
@@ -5556,7 +5560,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ %1 (Current)
@@ -5780,34 +5784,34 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new Sandbox
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.
-
+ Save options as new defaults
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)
-
+
This Sandbox will be saved to: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -5815,19 +5819,19 @@ This box's content will be DISCARDED when its closed, and the box will be r
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -5835,13 +5839,13 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -5849,7 +5853,7 @@ Processes in this box will be running with a custom process token indicating the
-
+ Failed to create new box: %1
@@ -7987,27 +7991,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK
-
+ Apply
-
+ Cancel
-
+ &Yes
-
+ &No
diff --git a/SandboxiePlus/SandMan/sandman_es.ts b/SandboxiePlus/SandMan/sandman_es.ts
index ba1ad31b..a726c09d 100644
--- a/SandboxiePlus/SandMan/sandman_es.ts
+++ b/SandboxiePlus/SandMan/sandman_es.ts
@@ -135,95 +135,100 @@
CAdvancedPage
-
+ Advanced Sandbox optionsOpciones de Sandbox avanzadas
-
+ On this page advanced sandbox options can be configured.En esta página se pueden configurar opciones avanzadas de la sandbox.
-
+ Network AccessAcceso a la red
-
+ Allow network/internet accessPermitir acceso a la red/Internet
-
+ Block network/internet by denying access to Network devicesBloquear acceso a la red/Internet denegando acceso a los dispositivos de red
-
+ Block network/internet using Windows Filtering PlatformBloquear acceso a la red/Internet usando la Plataforma de filtrado de Windows
-
+ Allow access to network files and foldersPermitir acceso a archivos y carpetas en la red
-
-
+
+ This option is not recommended for Hardened boxesEsta opción no es recomendada para cajas endurecidas
-
+ Admin OptionsOpciones de administrador
-
+
+ Drop rights from Administrators and Power Users groups
+ Rebajar permisos de grupos Administradores y Usuarios Avanzados
+
+
+ Make applications think they are running elevatedHacer creer a las aplicaciones que se ejecutan con privilegios elevados
-
+ Allow MSIServer to run with a sandboxed system tokenPermitir a MSIServer ejecutarse con un token de sistema aislado
-
+ Box OptionsOpciones de Sandbox
-
+ Use a Sandboxie login instead of an anonymous tokenUsar un acceso de Sandboxie en vez de un token anónimo
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxImpedir que los programas de aislamiento instalados en el ordenador carguen DLLs de la sandbox
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.Esta característica puede reducir compatibilidad, ya que también evita que los procesos ubicados en la caja escriban en los ubicados en el ordenador e incluso los inicien.
-
+ Shared TemplatePlantilla Compartida
-
+ Shared template modeModo de Plantilla Compartida
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -234,27 +239,27 @@ Para cambiar los ajustes de la plantilla, simplemente localiza la plantilla &apo
Para desactivar esta plantilla para una sandbox, simplemente desmárcala en la lista de plantillas.
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.Este ajuste no añade ninguna configuración a la configuración de la caja y no elimina la configuración predeterminada de la caja basada en los ajustes de eliminación dentro de la plantilla.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.Este ajuste agrega la plantilla compartida a la configuración de la caja como una plantilla local y también puede eliminar la configuración predeterminada de la caja en función de los ajustes de eliminación dentro de la plantilla.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.Este ajuste agrega la configuración de la plantilla compartida a la configuración de la caja como una plantilla local y también puede eliminar la configuración predeterminada de la caja en función de los ajustes de eliminación dentro de la plantilla.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.Este ajuste no añade ninguna configuración a la configuración de la caja, pero puede eliminar la configuración predeterminada de la caja en función de los ajustes de eliminación dentro de la plantilla.
-
+ Remove defaults if setEliminar valores predeterminados si establecidos
@@ -268,22 +273,22 @@ Para cambiar los ajustes de la plantilla, simplemente ubica y edita la plantilla
Para deshabilitar esta plantilla para un sandbox, simplemente desmárcala en la lista de plantillas.
-
+ DisabledDeshabilitado
-
+ Use as a templateUsar como plantilla
-
+ Append to the configurationAnexar a la configuración
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.Usar un token Sandboxie personalizado permite aislar mejor los entornos sandbox individuales entre sí y muestra en la columna de usuario de los administradores de tareas el nombre de la caja a la que pertenece un proceso. Sin embargo, algunas soluciones de seguridad de terceros pueden tener problemas con los tokens personalizados.
@@ -437,22 +442,22 @@ aumenta a 512 bits con la aplicación de modificaciones en el lenguaje Leet (L33
CBoxTypePage
-
+ Create new SandboxCrear nueva Sandbox
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. Una sandbox aísla su sistema de los procesos ejecutados dentro de la caja, previene que estos hagan cambios permanentes en otros programas y en datos de tu ordenador.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.Una sandbox aísla su sistema de los procesos ejecutados dentro de la caja, previene que estos hagan cambios permanentes en otros programas y en datos de tu ordenador. El nivel de aislamiento afecta su seguridad, así como la compatibilidad con las aplicaciones, por lo tanto, habrá un nivel diferente de aislamiento dependiendo del tipo de caja seleccionado. Sandboxie también puede proteger sus datos personales de ser accedidos por procesos que se ejecutan bajo su supervisión.
-
+ Enter box name:Introduzca nombre de la caja:
@@ -461,17 +466,17 @@ aumenta a 512 bits con la aplicación de modificaciones en el lenguaje Leet (L33
Nueva Sandbox
-
+ Select box type:Elija tipo de caja:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>Sandbox con <a href="sbie://docs/security-mode">Seguridad Endurecida</a> y <a href="sbie://docs/privacy-mode">Protección de Datos</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
@@ -480,64 +485,64 @@ Limita estrictamente el acceso a los datos del usuario, permitiendo que los proc
Todo el perfil del usuario permanece oculto, asegurando la máxima seguridad.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> SandboxSandbox con <a href="sbie://docs/security-mode">Seguridad Endurecida</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.Este tipo de caja ofrece el nivel más alto de protección al reducir significativamente la superficie de ataque expuesta a los procesos en entornos aislados.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>Sandbox con <a href="sbie://docs/privacy-mode">Protección de Datos</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.En este tipo de caja, se impide que los procesos aislados accedan a cualquier archivo o dato personal del usuario. El enfoque se centra en proteger los datos del usuario y, como tal,
solo los directorios C:\Windows y C:\Program Files son accesibles para los procesos que funcionan dentro de esta sandbox. Esto asegura que los archivos personales permanezcan seguros.
-
+ Standard SandboxSandbox Estándar
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.Este tipo de caja ofrece el comportamiento por defecto de Sandboxie clásico. Proporciona a los usuarios un esquema de aislamiento seguro y familiar.
Las aplicaciones pueden ejecutarse dentro de este sandbox, asegurando que operen dentro de un espacio controlado y aislado.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>Caja de <a href="sbie://docs/compartment-mode">Compartimento de aplicación</a> con <a href="sbie://docs/privacy-mode">Protección de Datos</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.Este tipo de caja prioriza la compatibilidad a la vez que proporciona un buen nivel de aislamiento. Está diseñado para ejecutar aplicaciones confiables dentro de compartimientos separados.
Aunque el nivel de aislamiento es menor en comparación con otros tipos de cajas, ofrece una mejor compatibilidad con una amplia gama de aplicaciones, asegurando un funcionamiento fluido dentro del entorno aislado.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> BoxCaja de <a href="sbie://docs/compartment-mode">Compartimento de aplicación</a>
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a><a href="sbie://docs/boxencryption">Encripta</a> el contenido de la caja y establecer como <a href="sbie://docs/black-box">Confidencial</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
@@ -546,42 +551,42 @@ El acceso al disco virtual cuando está montado está restringido a los programa
Esto garantiza el máximo nivel de privacidad y protección de datos dentro del entorno confidencial de la sandbox.
-
+ Hardened Sandbox with Data ProtectionSandbox endurecida con protección de datos
-
+ Security Hardened SandboxSandbox con Seguridad Endurecida
-
+ Sandbox with Data ProtectionSandbox con Protección de Datos
-
+ Standard Isolation Sandbox (Default)Sandbox Aislada Estándar (por defecto)
-
+ Application Compartment with Data ProtectionCompartimiento de aplicación con Protección de Datos
-
+ Application Compartment BoxCaja de Compartimento de aplicación
-
+ Confidential Encrypted BoxCaja Confidencial Encriptada
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?Para usar cajas encriptadas necesita instalar el controlador ImDisk, ¿desea descargarlo e instalarlo?
@@ -591,17 +596,17 @@ Esto garantiza el máximo nivel de privacidad y protección de datos dentro del
Compartimiento de aplicación (sin aislamiento)
-
+ Remove after useBorrar tras uso
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.Tras la finalización del último proceso en la caja, todo los datos de la caja se borrarán y esta será eliminada.
-
+ Configure advanced optionsConfigurar opciones avanzadas
@@ -981,74 +986,74 @@ Puede hacer clic en Finalizar para cerrar este asistente.
CFilesPage
-
+ Sandbox location and behaviorUbicación y comportamiento de la sandbox
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.En esta página se puede personalizar la ubicación y el comportamiento de la sandbox.
Puedes usar %USER% para guardar la sandbox de cada usuario en su propia carpeta.
-
+ Sandboxed FilesArchivos aislados
-
+ Select DirectoryElegir Directorio
-
+ Virtualization schemeEsquema de virtualización
-
+ Version 1Versión 1
-
+ Version 2Versión 2
-
+ Separate user foldersSeparar carpetas de usuario
-
+ Use volume serial numbers for drivesUsar números de serie de volumen para las unidades
-
+ Auto delete content when last process terminatesBorrar contenido automáticamente cuando el último proceso finaliza
-
+ Enable Immediate Recovery of files from recovery locationsHabilitar Recuperación Inmediata de archivos en ubicaciones de recuperación
-
+ The selected box location is not a valid path.La ubicación seleccionada de la caja no es una ruta válida.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?La ubicación seleccionada de la caja existe y no está vacía, es recomendable elegir una carpeta nueva o vacía. ¿Está seguro de usar una carpeta existente?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.La ubicación seleccionada de la caja no está en una unidad actualmente disponible.
@@ -1306,13 +1311,13 @@ Puedes usar %USER% para guardar la sandbox de cada usuario en su propia carpeta.
Plantilla Compartida
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.La nueva sandbox se ha creado usando el nuevo <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Esquema de Virtualización Versión 2</a>, si experimenta alguna incidencia inesperada con esta caja, por favor cambie al Esquema de Virtualización Versión 1 e informe del problema, la opción para cambiar este ajuste se encuentra en las Opciones de Caja en rl grupo Estructura de Caja.
-
+ Don't show this message again.No mostrar de nuevo este mensaje.
@@ -2934,22 +2939,22 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
CSandBox
-
+ Waiting for folder: %1Esperando a carpeta: %1
-
+ Deleting folder: %1Borrando carpeta: %1
-
+ Merging folders: %1 >> %2Fusionando carpetas: %1 >> %2
-
+ Finishing Snapshot Merge...Terminando fusionado de instantánea...
@@ -3088,22 +3093,22 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
Instalación
-
+ Reset ColumnsReestablecer Columnas
-
+ Copy CellCopiar Celda
-
+ Copy RowCopiar Fila
-
+ Copy PanelCopiar Panel
@@ -3388,7 +3393,7 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
-
+ About Sandboxie-PlusSobre Sandboxie-Plus
@@ -3719,40 +3724,59 @@ Error: %1
No aislado
-
+ Case SensitiveSensible a mayúsculas y minúsculas
-
+ RegExpRegExp
-
+ HighlightResaltar
-
+ CloseCerrar
-
+ &Find ...&Buscar ...
-
+ All columnsTodas las columnas
-
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>Sobre Sandboxie-Plus</h3><p>Versión %1</p><p>Copyright (c) 2020-2024 por DavidXanatos</p>
+ <h3>Sobre Sandboxie-Plus</h3><p>Versión %1</p><p>Copyright (c) 2020-2024 por DavidXanatos</p>
@@ -4126,19 +4150,16 @@ Este archivo es parte de Sandboxie y todos los cambios realizados en él serán
<h3>Sobre Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2022 by DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- Esta copia de Sandboxie+ esta certificada para: %1
+ Esta copia de Sandboxie+ esta certificada para: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ es libre para uso personal y no comercial.
+ Sandboxie+ es libre para uso personal y no comercial.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus es una continuación de Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para mas informacion.<br /><br />%3<br /><br />Driver versión: %1<br />Características: %2<br /><br />Íconos de <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus es una continuación de Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para mas informacion.<br /><br />%3<br /><br />Driver versión: %1<br />Características: %2<br /><br />Íconos de <a href="https://icons8.com">icons8.com</a>Select box:
@@ -6104,7 +6125,7 @@ NO seleccionará: %2
¿Desea realmente borrar la(s) plantilla(s) local(es) seleccionada(s)?
-
+ %1 (Current)%1 (Actual)
@@ -6330,70 +6351,70 @@ Pruebe a enviarlo sin adjuntar el registro.
CSummaryPage
-
+ Create the new SandboxCrear nueva Sandbox
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.Casi listo, presione Finalizar para crear una nueva sandbox y concluir el asistente.
-
+ Save options as new defaultsGuardar opciones como predeterminadas
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)Saltar esta página de resumen cuando las opciones avanzadas no estén configuradas
-
+
This Sandbox will be saved to: %1
Esta Sandbox se guardará en: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
Los contenidos de esta caja se DESCARTARÁN cuando se cierre, y la caja se eliminará.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
Esta caja ELIMINARÁ sus contenidos cuando se cierre, al ser apropiada únicamente para datos temporales.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
Los procesos en esta caja no podrán acceder a Internet o a la red local, esto asegura que todos los datos accedidos estén confidenciales.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
Esta caja correrá MSIServer (servicio de instalación de *.msi) con un token del sistema, esto mejora la compatibilidad pero reduce la seguridad de aislamiento.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
Procesos en esta caja pensarán que están siendo ejecutados con privilegios de administrador, sin que realmente los tengas, de ahí que los instaladores se puedan usar incluso en una caja con seguridad mejorada.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6402,7 +6423,7 @@ Processes in this box will be running with a custom process token indicating the
Procesos en esta caja se ejecutarán con un token de proceso personalizado indicando la sandbox a la que pertenecen.
-
+ Failed to create new box: %1Error al crear nueva caja: %1
@@ -8837,27 +8858,27 @@ Por favor note que estos valores son especificos para usuario y guardados global
QPlatformTheme
-
+ OKOK
-
+ ApplyAplicar
-
+ CancelCancelar
-
+ &Yes&Si
-
+ &No&No
diff --git a/SandboxiePlus/SandMan/sandman_fr.ts b/SandboxiePlus/SandMan/sandman_fr.ts
index fc8212cf..1f3a87a5 100644
--- a/SandboxiePlus/SandMan/sandman_fr.ts
+++ b/SandboxiePlus/SandMan/sandman_fr.ts
@@ -135,97 +135,102 @@
CAdvancedPage
-
+ Advanced Sandbox optionsOptions de bac à sable avancées
-
+ On this page advanced sandbox options can be configured.Sur cette page peuvent être configurées les options de bac à sable avancées.
-
+ Network AccessAccès réseau
-
+ Allow network/internet accessAutoriser l'accès au réseau/à Internet
-
+ Block network/internet by denying access to Network devicesBloquer le réseau/Internet en refusant l'accès aux périphériques réseau
-
+ Block network/internet using Windows Filtering PlatformBloquer le réseau/Internet en utilisant la plateforme de filtrage Windows
-
+ Allow access to network files and foldersAllow access to network files and fodlersAutoriser l'accès aux fichiers et dossiers réseau
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxesCette option n'est pas recommandée pour les bacs renforcés
-
+ Admin OptionsOptions d'admin
-
+
+ Drop rights from Administrators and Power Users groups
+ Retirer les droits des groupes Administrateurs et Utilisateurs Avancés
+
+
+ Make applications think they are running elevatedFaire croire aux applications qu'elles ont des privilèges élevés
-
+ Allow MSIServer to run with a sandboxed system tokenAutoriser MSIServer à s'exécuter dans le bac à sable avec un jeton système
-
+ Box OptionsOptions du bac
-
+ Use a Sandboxie login instead of an anonymous tokenUtiliser un identifiant de Sandboxie au lieu d'un jeton anonyme
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxEmpêcher les programmes d'un bac installé sur l'hôte de charger des DLL depuis le bac
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.Cette fonction peut réduire la compatibilité car elle empêche également les processus situés dans les bacs d'écrire à ceux situés sur l'hôte et même de les démarrer.
-
+ Shared TemplateModèle partagé
-
+ Shared template modeMode de modèle partagé
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -236,42 +241,42 @@ Pour modifier les paramètres du modèle, trouvez simplement le modèle « %1 »
Pour désactiver ce modèle pour un bac à sable, décochez-le simplement de la liste des modèles.
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.Cette option n'ajoute aucun paramètre à la configuration du bac et ne supprime pas les paramètres de bac par défaut même s'il existe des paramètres de suppression à l'intérieur du modèle.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.Cette option ajoute le modèle partagé à la configuration du bac en tant que modèle local et peut également supprimer les paramètres de bac par défaut en fonction des paramètres de suppression à l'intérieur du modèle.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.Cette option ajoute les paramètres du modèle partagé à la configuration du bac et peut également supprimer les paramètres de bac par défaut en fonction des paramètres de suppression à l'intérieur du modèle.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.Cette option n'ajoute aucun paramètre à la configuration du bac, mais peut supprimer les paramètres de bac par défaut en fonction des paramètres de suppression à l'intérieur du modèle.
-
+ Remove defaults if setSupprimer ceux par défaut si définis
-
+ DisabledDésactivé
-
+ Use as a templateUtiliser comme modèle
-
+ Append to the configurationAjouter à la configuration
@@ -292,7 +297,7 @@ Pour désactiver ce modèle pour un bac à sable, décochez-le simplement dans l
Utiliser un identifiant de Sandboxie au lieu d'un jeton anonyme (expérimental)
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.L'utilisation d'un jeton de Sandboxie personnalisé permet de mieux isoler les bacs à sable individuels entre eux, et d'afficher dans la colonne Utilisateurs des gestionnaires des tâches le nom du bac dans lequel un processus s'exécute. Certaines solutions de sécurité tierces peuvent cependant avoir des problèmes avec les jetons personnalisés.
@@ -446,22 +451,22 @@ Cette longueur permet environ 384 bits d'entropie avec une phrase secrète
CBoxTypePage
-
+ Create new SandboxCréation d'un nouveau bac à sable
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. Un bac à sable isole votre système hôte des processus lancés dans le bac ; il les empêche de faire des changements permanents à d'autres programmes ou données de votre ordinateur.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.Un bac à sable isole le système hôte des processus lancés dans le bac. Cela les empêche de faire des changements permanents aux autres programmes ou aux données de votre ordinateur. Le niveau d'isolation affecte la sécurité mais aussi la compatibilité avec les applications, c'est pourquoi il y a différents niveaux d'isolation en fonction du type de bac choisi. Sandboxie peut aussi empêcher l'accès à vos données personnelles aux processus tournant sous sa supervision.
-
+ Enter box name:Saisir le nom du bac :
@@ -470,18 +475,18 @@ Cette longueur permet environ 384 bits d'entropie avec une phrase secrète
Nouveau bac
-
+ Select box type:Sellect box type:Choisir le type de bac :
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>Bac à sable <a href="sbie://docs/security-mode">à sécurité renforcée</a> avec <a href="sbie://docs/privacy-mode">protection des données</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
@@ -490,59 +495,59 @@ Il limite l'accès aux données de l'utilisateur de manière stricte,
Le profil complet de l'utilisateur demeure masqué, assurant ainsi une sécurité maximale.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> SandboxBac à sable <a href="sbie://docs/security-mode">à sécurité renforcée</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.Ce type de bac offre le plus haut niveau de protection en résuisant de manière significative la surface d'attaque exposée aux processus dans le bac.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>Bac à sable avec <a href="sbie://docs/privacy-mode">protection des données</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.Avec ce type de bac, les processus dans le bac sont empêchés d'accéder aux fichiers ou données de l'utilisateur. L'accent est mis sur la protection des données d'utilisateur, et ainsi,
seuls les répertoires « C:\Windows » et « C:\Program Files » sont accessibles aux processus lancés dans ce bac à sable. Ceci garantit que les fichiers personnels restent sécurisés.
-
+ Standard SandboxBac à sable standard
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.Ce type de bac offre le comportement par défaut de la version classique de Sandboxie. Il fournit aux utilisateurs un schéma de mise en bac à sable familier et fiable.
Les applications peuvent être lancées dans ce bac à sable, en s'assurant qu'elles opèrent dans un espace contrôlé et isolé.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>Bac <a href="sbie://docs/compartment-mode">conteneur d'applications</a> avec <a href="sbie://docs/privacy-mode">protection des données</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.Ce type de bac donne la priorité à la compatibilité tout en fournissant un bon niveau d'isolation. Il est destiné à lancer des applications fiables dans des compartiments séparés.
Bien que le niveau d'isolation soit réduit par rapport à d'autres types de bac, il offre une compatibilité améliorée avec un large éventail d'applications, assurant des opérations fluides au sein de l'environnement du bac à sable.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> BoxBac <a href="sbie://docs/compartment-mode">conteneur d'applications</a>
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a><a href="sbie://docs/boxencryption">Chiffrer</a> le contenu du bac et le définir sur <a href="sbie://docs/black-box">« Confidentiel »</a>
@@ -551,7 +556,7 @@ Bien que le niveau d'isolation soit réduit par rapport à d'autres ty
Bac <a href="sbie://docs/black-box">confidentiel</a> <a href="sbie://docs/boxencryption">chiffré</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
@@ -560,42 +565,42 @@ Lorsqu'il est monté, l'accès au disque virtuel est restreint aux pro
Cela fournit le niveau ultime de confidentialité et de protection des données au sein d'un environnement de bac à sable confidentiel.
-
+ Hardened Sandbox with Data ProtectionBac à sable renforcé avec protection des données
-
+ Security Hardened SandboxBac à sable à sécurité renforcée
-
+ Sandbox with Data ProtectionBac à sable avec protection des données
-
+ Standard Isolation Sandbox (Default)Bac à sable à isolation standard (par défaut)
-
+ Application Compartment with Data ProtectionConteneur d'applications avec protection des données
-
+ Application Compartment BoxBac conteneur d'applications
-
+ Confidential Encrypted BoxBac chiffré confidentiel
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?Afin d'utiliser des bacs chiffrés, vous devez installer le pilote ImDisk. Voulez-vous le télécharger puis l'installer ?
@@ -605,17 +610,17 @@ Cela fournit le niveau ultime de confidentialité et de protection des données
Conteneur d'applications (SANS isolation)
-
+ Remove after useSupprimer après utilisation
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.Après la fermeture du dernier processus dans le bac, toutes les données du bac ainsi que le bac lui-même seront supprimés.
-
+ Configure advanced optionsConfigurer les options avancées
@@ -995,13 +1000,13 @@ Vous pouvez appuyer sur « Terminer » pour fermer cet assistant.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioureEmplacement et comportement du bac à sable
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -1010,64 +1015,64 @@ You can use %USER% to save each users sandbox to an own fodler.
Utilisez « %USER% » pour enregistrer le bac de chaque utilisateur dans son propre dossier.
-
+ Sandboxed FilesFichiers dans le bac
-
+ Select DirectoryChoisir le répertoire
-
+ Virtualization schemeSchéma de virtualisation :
-
+ Version 1Version 1
-
+ Version 2Version 2
-
+ Separate user foldersSéparer les dossiers d'utilisateurs
-
+ Use volume serial numbers for drivesUtiliser les numéros de série de volume des lecteurs
-
+ Auto delete content when last process terminatesSupprimer automatiquement le contenu lorsque le dernier processus prend fin
-
+ Enable Immediate Recovery of files from recovery locationsActiver la récupération immédiate des fichiers depuis les emplacements de récupération
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.L'emplacement de bac choisi n'est pas un chemin valide.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?L'emplacement de bac choisi n'est pas vide ; il est recommandé de choisir un répertoire nouveau ou vide. Êtes-vous sûr de vouloir utiliser un dossier existant ?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.L'emplacement de bac choisi n'est pas situé sur un lecteur actuellement disponible.
@@ -1335,14 +1340,14 @@ Utilisez « %USER% » pour enregistrer le bac de chaque utilisateur dans son pro
Modèle partagé
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.Le nouveau bac à sable a été créé en utilisant le nouveau <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">schéma de virtualisation version 2</a>. Si vous rencontrez des problèmes inattendus avec ce bac, veuillez basculer le schéma de virtualisation sur la version 1 et signaler le problème. Cette option se trouve dans les paramètres du bac, dans « Options des fichiers » -> « Structure de bac ».
-
+ Don't show this message again.Ne plus afficher ce message
@@ -2969,22 +2974,22 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
CSandBox
-
+ Waiting for folder: %1Dossier en attente : %1
-
+ Deleting folder: %1Suppression du dossier : %1
-
+ Merging folders: %1 >> %2Fusion des dossiers : %1 >> %2
-
+ Finishing Snapshot Merge...Finalisation de la fusion des instantanés...
@@ -3242,22 +3247,22 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
Le fichier 7z choisi n'est PAS une archive de bac
-
+ Reset ColumnsRéinitialiser les colonnes
-
+ Copy CellCopier la cellule
-
+ Copy RowCopier la rangée
-
+ Copy PanelCopier le tableau
@@ -3565,7 +3570,7 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
-
+ About Sandboxie-PlusÀ propos de Sandboxie-Plus
@@ -3751,6 +3756,26 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
USB sandbox not found; creating: %1Bac à sable USB introuvable ; création : %1
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Your Windows build exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.
@@ -3875,32 +3900,32 @@ Erreur : %1
En dehors d'un bac à sable
-
+ Case SensitiveSensible à la casse
-
+ RegExpRegex
-
+ HighlightSurligner
-
+ CloseFermer
-
+ &Find ...&Rechercher...
-
+ All columnsToutes les colonnes
@@ -4404,25 +4429,21 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
<p>Une nouvelle version de Sandboxie-Plus a été téléchargée à l'emplacement suivant : </p><p><a href="%2">%1</a></p><p>Procéder à l'installation ? Si des programmes tournent dans les bacs à sable, ils seront arrêtés.</p>
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>À propos de Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 par DavidXanatos</p>
+ <h3>À propos de Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 par DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- Cette copie de Sanboxie+ est certifiée pour : %1
+ Cette copie de Sanboxie+ est certifiée pour : %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ est gratuit pour un usage personnel et non commercial.
+ Sandboxie+ est gratuit pour un usage personnel et non commercial.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus est la poursuite en code source ouvert de Sandboxie.<br />Visitez <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> pour plus d'informations.<br /><br />%3<br /><br />Version du pilote : %1<br />Fonctions : %2<br /><br />Icônes provenant de <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus est la poursuite en code source ouvert de Sandboxie.<br />Visitez <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> pour plus d'informations.<br /><br />%3<br /><br />Version du pilote : %1<br />Fonctions : %2<br /><br />Icônes provenant de <a href="https://icons8.com">icons8.com</a>Error Status: %1
@@ -6221,7 +6242,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Voulez-vous vraiment supprimer le ou les modèles locaux sélectionnés ?
-
+ %1 (Current)%1 (Actuel)
@@ -6459,35 +6480,35 @@ Veuillez le soumettre à nouveau, sans joindre le journal.
CSummaryPage
-
+ Create the new SandboxCréation du nouveau bac à sable
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.C'est presque fini. Appuyez sur « Terminer » pour créer un nouveau bac et conclure l'assistant.
-
+ Save options as new defaultsEnregistrer les options comme nouvelles options par défaut
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)Ne plus afficher le résumé si des options avancées n'ont pas été définies
-
+
This Sandbox will be saved to: %1
Ce bac sera enregistré dans : %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -6496,21 +6517,21 @@ This box's content will be DISCARDED when its closed, and the box will be r
Le contenu de ce bac sera ÉLIMINÉ lors de sa fermeture, et le bac sera supprimé.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
Ce bac ÉLIMINERA son contenu lors de sa fermeture ; cela convient uniquement aux données temporaires.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
Les processus de ce bac ne seront pas capables d'accéder à Internet ou au réseau local. Cela garantit que toutes les données consultées restent confidentielles.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6519,14 +6540,14 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
Ce bac lancera MSIServer (service d'installation *.msi) avec un jeton système. Cela améliore la compatibilité, mais réduit l'isolation de sécurité.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
Les processus de ce bac penseront qu'ils sont lancés avec des privilèges d'administrateur, sans en fait les avoir. Les installeurs seront donc en mesure d'être utilisés même dans un bac à sécurité renforcée.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6535,7 +6556,7 @@ Processes in this box will be running with a custom process token indicating the
Les processus dans ce bac seront lancés avec un jeton de processus personnalisé indiquant à quel bac à sable ils appartiennent.
-
+ Failed to create new box: %1Échec de création du nouveau bac : %1
@@ -8993,27 +9014,27 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
QPlatformTheme
-
+ OKOK
-
+ ApplyAppliquer
-
+ CancelAnnuler
-
+ &Yes&Oui
-
+ &No&Non
diff --git a/SandboxiePlus/SandMan/sandman_hu.ts b/SandboxiePlus/SandMan/sandman_hu.ts
index 1c911157..386ccaad 100644
--- a/SandboxiePlus/SandMan/sandman_hu.ts
+++ b/SandboxiePlus/SandMan/sandman_hu.ts
@@ -135,97 +135,102 @@
CAdvancedPage
-
+ Advanced Sandbox optionsSpeciális sandbox-beállításo
-
+ On this page advanced sandbox options can be configured.Ezen az oldalon speciális sandbox-beállítások konfigurálhatók.
-
+ Network AccessHálózati hozzáférés
-
+ Allow network/internet accessHálózati/internet-hozzáférés engedélyezése
-
+ Block network/internet by denying access to Network devicesBlockiere Netzwerk-/ Internetzugriff durch Ablehnung des Zugriffs auf Netzwerkgeräte
-
+ Block network/internet using Windows Filtering PlatformHálózati/internet-hozzáférés blokkolása a Windows szűrőplatform segítségével
-
+ Allow access to network files and foldersAllow access to network files and fodlersHozzáférés engedélyezése a hálózati fájlokhoz és mappákhoz
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxesEz a beállítás nem ajánlott megerősített homokozókhoz
-
+ Admin OptionsRendszergazdai beállítások
-
+
+ Drop rights from Administrators and Power Users groups
+ Rendszergazdai és fő felhasználói jogok törlése
+
+
+ Make applications think they are running elevatedElhitetheti a programokkal, hogy emelt szintű jogosultságokkal futnak
-
+ Allow MSIServer to run with a sandboxed system tokenEngedélyezze az MSIServer futtatását egy sandbox rendszerjogkivonattal
-
+ Box OptionsHomokozó beállítások
-
+ Use a Sandboxie login instead of an anonymous token
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.
-
+ Shared Template
-
+ Shared template mode
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -233,47 +238,47 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.
-
+ Remove defaults if set
-
+ DisabledLetiltva
-
+ Use as a template
-
+ Append to the configuration
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.Egyéni Sandboxie token használata lehetővé teszi az egyes sandboxok jobb elkülönítését egymástól, és a feladatkezelők felhasználói oszlopában megmutatja annak a homokozónak a nevét, amelyhez egy folyamat tartozik. Néhány harmadik féltől származó biztonsági megoldás azonban problémákat okozhat az egyéni tokenekkel.
@@ -423,22 +428,22 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new SandboxÚj homokozó létrehozása
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.A homokozó elszigeteli a gazdagépet a homokozón belül futó folyamatoktól, és megakadályozza, hogy állandó változtatásokat hajtsanak végre a számítógépen lévő egyéb programokon és adatokon. Az elszigeteltség szintje hatással van az Ön biztonságára, valamint az alkalmazásokkal való kompatibilitásra, ezért a kiválasztott homokozótípustól függően eltérő szintű lesz az elkülönítés. A Sandboxie emellett megvédheti személyes adatait attól, hogy a felügyelete alatt futó folyamatok hozzáférjenek hozzájuk.
-
+ Enter box name:Homokozó nevének megadása:
@@ -447,121 +452,121 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
Új homokozó
-
+ Select box type:Sellect box type:Homokozó típusának kiválasztása:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.
-
+ Standard Sandbox
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
-
+ Hardened Sandbox with Data ProtectionMegerősített homokozó adatvédelemmel
-
+ Security Hardened SandboxBiztonságos megerősített homokozó
-
+ Sandbox with Data ProtectionHomokó adatvédelemmel
-
+ Standard Isolation Sandbox (Default)Általános biztonságú homokozó (alapértelmezett)
-
+ Application Compartment with Data ProtectionAlkalmazásrekesz adatvédelemmel
-
+ Application Compartment Box
-
+ Confidential Encrypted Box
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?
@@ -571,17 +576,17 @@ This ensures the utmost level of privacy and data protection within the confiden
Alkalmazásrekesz (NINCS izoláció)
-
+ Remove after useEltávolítás használaz után
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.Miután a mezőben lévő utolsó folyamat befejeződik, a homokozóban lévő összes adat törlődik, és magát a homokozót eltávolítjuk.
-
+ Configure advanced optionsSpeciális beállítások konfigurálása
@@ -936,13 +941,13 @@ You can click Finish to close this wizard.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioureSandbox helye és viselkedése
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -951,64 +956,64 @@ You can use %USER% to save each users sandbox to an own fodler.
A %USER% segítségével minden felhasználót saját mappába menthet.
-
+ Sandboxed FilesSandbox-fájlok
-
+ Select DirectoryKönyvtár kiválasztása
-
+ Virtualization schemeVirtualizációs séma
-
+ Version 1Verzió 1
-
+ Version 2Verzió 2
-
+ Separate user foldersKülön felhasználói mappák
-
+ Use volume serial numbers for drivesKötet sorozatszámainak használata a meghajtókhoz
-
+ Auto delete content when last process terminatesTartalom automatikus törlése az utolsó folyamat befejezésekor
-
+ Enable Immediate Recovery of files from recovery locationsA fájlok azonnali helyreállításának engedélyezése a helyreállítási helyekről
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.A kijelölt homokozó helye nem érvényes elérési út.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?A kiválasztott homokozó helye létezik, és nem üres, ajánlatos új vagy üres mappát választani. Biztos benne, hogy egy meglévő mappát használna?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.A kiválasztott homokozó nem található a jelenleg elérhető meghajtón.
@@ -1252,14 +1257,14 @@ A %USER% segítségével minden felhasználót saját mappába menthet.
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.Az új homokozó létrehozva a virtualizációs séma verzió 2-vel: <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, Ha váratlan problémákat tapasztal ezzel a homokozóval, kérjük, váltson a "Virtualizációs séma 1-es verziójára", és jelentse a problémát. Az előbeállítás módosításának lehetősége a "Homokozóstruktúra csoport" "Homokozó beállításaiban" található.
-
+ Don't show this message again.Ne jelenítse meg újra ezt az üzenetet.
@@ -2784,22 +2789,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Várakozás a mappára: %1
-
+ Deleting folder: %1Mappa törlése: %1
-
+ Merging folders: %1 >> %2Mappák egyesítése: %1 >> %2
-
+ Finishing Snapshot Merge...Pillanatkép-egyesítés befejezése...
@@ -2885,22 +2890,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie-Plus v%1
-
+ Reset ColumnsOszlopok visszaállítása
-
+ Copy CellCella másolása
-
+ Copy RowSor másolása
-
+ Copy PanelPanel másolása
@@ -3163,7 +3168,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusSandboxie-Plus névjegye
@@ -3602,55 +3607,51 @@ Nem választás: %2
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseBezárás
-
+ &Find ...
-
+ All columns
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>Sandboxie-Plus névjegye</h3><p>Verzió %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
+ <h3>Sandboxie-Plus névjegye</h3><p>Verzió %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- A Sandboxie+ ezen példánya a következőre van hitelesítve: %1
+ A Sandboxie+ ezen példánya a következőre van hitelesítve: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ ingyenes személyes és nem kereskedelmi használatra.
+ Sandboxie+ ingyenes személyes és nem kereskedelmi használatra.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- SandboxiePlus a nyilt forráskodú Sandboxie folytatása. <br />Keresse fel a <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> weblapot több információért. <br /><br />%3<br /><br />Driver verzió: %1<br />Funkciók: %2<br /><br />Ikonok: <a href="https://icons8.com">icons8.com</a>
+ SandboxiePlus a nyilt forráskodú Sandboxie folytatása. <br />Keresse fel a <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> weblapot több információért. <br /><br />%3<br /><br />Driver verzió: %1<br />Funkciók: %2<br /><br />Ikonok: <a href="https://icons8.com">icons8.com</a>
@@ -3946,6 +3947,26 @@ Nem választás: %2
The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.%1 homokozó úgy van beállítva, hogy kizárólag a projekt támogatói számára elérhető szolgáltatásokat használja, ezeket az előre beállított értékeket figyelmen kívül hagyja.
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+
@@ -5738,7 +5759,7 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
-
+ %1 (Current)%1 (jelenlegi)
@@ -5962,34 +5983,34 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new SandboxÚj Sandbox létrehozása
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.Majdnem kész, kattintson a "Befejezés" gombra egy új homokozó létrehozásához és a varázsló befejezéséhez.
-
+ Save options as new defaultsBeállítások mentése új alapértelmezettként
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)Ne jelenítse meg a jövőben az összefoglaló oldalt (hacsak nincs beállítva speciális beállítások)
-
+
This Sandbox will be saved to: %1Ez a homokozó a következő helyre kerül mentésre: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -5997,19 +6018,19 @@ This box's content will be DISCARDED when its closed, and the box will be r
A homokozó tartalmát a rendszer ELVETI, amikor bezárja, és a homokozó eltávolításra kerül.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.Ez a homokozó ELVETI a tartalmát, ha bezárja, csak ideiglenes adatok tárolására alkalmas.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.Az ebben a mezőben szereplő folyamatok nem fognak tudni hozzáférni az internethez vagy a helyi hálózathoz, ez biztosítja, hogy az összes elért adat bizalmas maradjon.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6017,13 +6038,13 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
Ez a homokozó az MSIServer (*.msi telepítő szolgáltatás) rendszerjogkivonattal fog futni, ez javítja a kompatibilitást, de csökkenti a biztonsági elszigeteltséget.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.Az ebben a homokozóban lévő folyamatok azt gondolják, hogy rendszergazdai jogosultságokkal futnak, anélkül, hogy ténylegesen rendelkeznének velük, így a telepítők még egy megerősített homokozóban is használhatók..
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6031,7 +6052,7 @@ Processes in this box will be running with a custom process token indicating the
-
+ Failed to create new box: %1Nem sikerült létrehozni az új homokozót: %1
@@ -8269,27 +8290,27 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
QPlatformTheme
-
+ OKOK
-
+ ApplyAlkalmazás
-
+ CancelMégse
-
+ &Yes&Igen
-
+ &No&Nem
diff --git a/SandboxiePlus/SandMan/sandman_it.ts b/SandboxiePlus/SandMan/sandman_it.ts
index e86e6eff..98f63166 100644
--- a/SandboxiePlus/SandMan/sandman_it.ts
+++ b/SandboxiePlus/SandMan/sandman_it.ts
@@ -189,95 +189,100 @@
CAdvancedPage
-
+ Advanced Sandbox optionsOpzioni avanzate dell'area virtuale
-
+ On this page advanced sandbox options can be configured.In questa sezione è possibile configurare le opzioni avanzate per l'area virtuale.
-
+ Network AccessAccesso di rete
-
+ Allow network/internet accessConsenti accesso di rete/Internet
-
+ Block network/internet by denying access to Network devicesBlocca rete/Internet negando l'accesso ai dispositivi di rete
-
+ Block network/internet using Windows Filtering PlatformBlocca rete/Internet usando la piattaforma di filtraggio di Windows
-
+ Allow access to network files and foldersConsenti accesso ai file e alle cartelle di rete
-
-
+
+ This option is not recommended for Hardened boxesQuesta opzione non è raccomandata per le aree virtuali ristrette
-
+ Admin OptionsOpzioni amministrative
-
+
+ Drop rights from Administrators and Power Users groups
+ Limita i privilegi dei gruppi Administrators e Power Users
+
+
+ Make applications think they are running elevatedFai credere alle applicazioni di avviarsi con privilegi elevati
-
+ Allow MSIServer to run with a sandboxed system tokenConsenti l'avvio di Windows Installer con un token di sistema nell'area virtuale
-
+ Box OptionsOpzioni area virtuale
-
+ Use a Sandboxie login instead of an anonymous tokenUsa autenticazione di Sandboxie invece di un token anonimo
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxImpedisci ai programmi in esecuzione nell'area virtuale (installati sul sistema host) di caricare file DLL
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.Questa funzione può ridurre la compatibilità, in quanto impedisce anche ai processi presenti nell'area virtuale di scrivere su quelli situati nell'host e persino di avviarli.
-
+ Shared Template
-
+ Shared template mode
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -285,42 +290,42 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.
-
+ Remove defaults if set
-
+ DisabledDisattivata
-
+ Use as a template
-
+ Append to the configuration
@@ -329,7 +334,7 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
Usa autenticazione di Sandboxie invece di un token anonimo (sperimentale)
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.L'uso di un token di Sandboxie personalizzato consente di isolare meglio le singole aree virtuali e di mostrare nella colonna utente del task manager il nome dell'area virtuale a cui appartiene un processo. Alcune soluzioni di sicurezza di terze parti potrebbero tuttavia avere problemi con i token personalizzati.
@@ -479,140 +484,140 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new SandboxCrea nuova area virtuale
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.Un'area virtuale isola il sistema dai processi avviati nell'area virtuale, impedendogli di effettuare modifiche permanenti ad altri programmi e ai dati presenti nel computer. Il livello di isolamento impatta la tua sicurezza tanto quanto la compatibilità con le applicazioni, quindi ci sarà un livello diverso di isolamento in funzione del tipo di area virtuale selezionata. Sandboxie può anche proteggere i dati personali dall'accesso di processi avviati sotto la sua supervisione.
-
+ Enter box name:Immetti il nome dell'area virtuale:
-
+ Select box type:Seleziona tipo di area virtuale:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.
-
+ Standard Sandbox
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
-
+ Hardened Sandbox with Data ProtectionArea virtuale ristretta con protezione dati
-
+ Security Hardened SandboxArea virtuale ristretta
-
+ Sandbox with Data ProtectionArea virtuale con protezione dati
-
+ Standard Isolation Sandbox (Default)Area virtuale con isolamento standard (Default)
-
+ Application Compartment with Data ProtectionCompartimento applicazioni con protezione dati
-
+ Application Compartment Box
-
+ Confidential Encrypted Box
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?
@@ -622,17 +627,17 @@ This ensures the utmost level of privacy and data protection within the confiden
Compartimento applicazioni (nessun isolamento)
-
+ Remove after useRimuovi dopo l'uso
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.Una volta terminato l'ultimo processo nell'area virtuale, tutti i dati presenti verranno eliminati e l'area virtuale stessa verrà rimossa.
-
+ Configure advanced optionsConfigura opzioni avanzate
@@ -987,74 +992,74 @@ Clicca su Fine per concludere la procedura guidata.
CFilesPage
-
+ Sandbox location and behaviorPercorso e comportamento dell'area virtuale
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.In questa sezione, il percorso dell'area virtuale e il suo comportamento possono essere personalizzati.
È possibile inserire %USER% per memorizzare ogni utente dell'area virtuale su una propria cartella.
-
+ Sandboxed FilesFile dell'area virtuale
-
+ Select DirectorySeleziona directory
-
+ Virtualization schemeSchema di virtualizzazione
-
+ Version 1Versione 1
-
+ Version 2Versione 2
-
+ Separate user foldersSepara cartelle utente
-
+ Use volume serial numbers for drivesUtilizzare i numeri di serie dei volumi per le unità
-
+ Auto delete content when last process terminatesElimina automaticamente il contenuto dell'area virtuale una volta terminato l'ultimo processo
-
+ Enable Immediate Recovery of files from recovery locationsAttiva recupero immediato dei file dai percorsi di recupero
-
+ The selected box location is not a valid path.La posizione dell'area virtuale selezionata non è un percorso valido.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?La posizione dell'area virtuale selezionata esiste e non è vuota, si consiglia di scegliere una nuova cartella oppure una vuota. Si desidera utilizzare una cartella esistente?
-
+ The selected box location is not placed on a currently available drive.La posizione dell'area virtuale selezionata non si trova su un'unità attualmente disponibile.
@@ -1297,13 +1302,13 @@ You can use %USER% to save each users sandbox to an own folder.
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.L'area virtuale è stata creata usando il nuovo <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">schema di virtualizzazione versione 2</a>. Se si verificano problemi imprevisti, passare allo schema di virtualizzazione versione 1 e segnalare il problema. L'opzione per modificare questa impostazione si trova su Opzioni area virtuale -> Opzioni File nel gruppo Struttura area virtuale.
-
+ Don't show this message again.Non mostrare più questo messaggio.
@@ -2832,22 +2837,22 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
CSandBox
-
+ Waiting for folder: %1In attesa della cartella: %1
-
+ Deleting folder: %1Eliminazione della cartella: %1
-
+ Merging folders: %1 >> %2Unione cartelle: %1 >> %2
-
+ Finishing Snapshot Merge...Completamento unione istantanea...
@@ -2943,22 +2948,22 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
<a href="sbie://update/apply" style="color: red;">Un nuovo aggiornamento %1 di Sandboxie Plus è pronto da installare</a>
-
+ Reset ColumnsReimposta colonne
-
+ Copy CellCopia cella
-
+ Copy RowCopia riga
-
+ Copy PanelCopia riquadro
@@ -3244,7 +3249,7 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
-
+ About Sandboxie-PlusInformazioni su Sandboxie Plus
@@ -3719,10 +3724,9 @@ Errore: %1
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>Informazioni su Sandboxie Plus</h3><p>Versione %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
+ <h3>Informazioni su Sandboxie Plus</h3><p>Versione %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
@@ -4254,6 +4258,26 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Operation failed for %1 item(s).Operazione fallita per %1 elemento(i).
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Do you want to open %1 in a sandboxed (yes) or unsandboxed (no) Web browser?Aprire %1 nel browser dell'area virtuale (sì) o all'esterno (no)?
@@ -4264,49 +4288,46 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Ricorda la scelta per dopo.
-
+ Case Sensitive&Maiuscole/minuscole
-
+ RegExpEspressione regolare
-
+ HighlightEvidenzia
-
+ CloseChiudi
-
+ &Find ...&Trova ...
-
+ All columnsTutte le colonne
- This copy of Sandboxie+ is certified for: %1
- Questa copia di Sandboxie+ è certificata per: %1
+ Questa copia di Sandboxie+ è certificata per: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ è gratuito per uso personale e non commerciale.
+ Sandboxie+ è gratuito per uso personale e non commerciale.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie Plus è la continuazione open source di Sandboxie.<br />Visita <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> per informazioni.<br /><br />%3<br /><br />Versione driver: %1<br />Funzioni attive: %2<br /><br />Icone by <a href="https://icons8.com">icons8.com</a><br /><br />Traduzione italiana a cura di <a href="https://eng2ita.altervista.org">Eng2ita</a><br />
+ Sandboxie Plus è la continuazione open source di Sandboxie.<br />Visita <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> per informazioni.<br /><br />%3<br /><br />Versione driver: %1<br />Funzioni attive: %2<br /><br />Icone by <a href="https://icons8.com">icons8.com</a><br /><br />Traduzione italiana a cura di <a href="https://eng2ita.altervista.org">Eng2ita</a><br />
@@ -5812,7 +5833,7 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Eliminare i modelli locali selezionati?
-
+ %1 (Current)%1 (Attuale)
@@ -6039,70 +6060,70 @@ Provare ad inviare senza allegare il log.
CSummaryPage
-
+ Create the new SandboxCrea nuova area virtuale
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.Hai quasi finito, fare clic su Fine per creare una nuova area virtuale e concludere la procedura guidata.
-
+ Save options as new defaultsSalva le opzioni come default
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)Non mostrare la pagina di riepilogo in futuro (a meno che non siano state definite opzioni avanzate)
-
+
This Sandbox will be saved to: %1
Questa area virtuale verrà salvata in: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
Il contenuto di questa area virtuale verrà SCARTATO alla chiusura e l'area virtuale sarà rimossa.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
Quest'area virtuale SCARTERÀ il suo contenuto non appena viene chiusa, è adatta solo per dati temporanei.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
I processi in questa area virtuale non potranno accedere a Internet o alla rete locale, in modo da garantire la riservatezza di tutti i dati consultati.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
Quest'area virtuale eseguirà Windows Installer (servizio di installazione *.msi) con un token di sistema, questo migliora la compatibilità ma riduce l'isolamento di sicurezza.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
I processi in questa area virtuale penseranno di essere eseguiti con privilegi amministrativi, senza averli realmente, quindi gli installer possono essere usati anche in un'area virtuale ristretta.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6111,7 +6132,7 @@ Processes in this box will be running with a custom process token indicating the
I processi in questa area virtuale verranno eseguiti con un token di processo personalizzato che indica l'area virtuale a cui appartengono.
-
+ Failed to create new box: %1Impossibile creare la nuova area virtuale: %1
@@ -8355,27 +8376,27 @@ area virtuale
QPlatformTheme
-
+ OKOK
-
+ ApplyApplica
-
+ CancelAnnulla
-
+ &Yes&Sì
-
+ &No&No
diff --git a/SandboxiePlus/SandMan/sandman_ja.ts b/SandboxiePlus/SandMan/sandman_ja.ts
index 5949e73b..6524a86e 100644
--- a/SandboxiePlus/SandMan/sandman_ja.ts
+++ b/SandboxiePlus/SandMan/sandman_ja.ts
@@ -131,99 +131,104 @@
CAdvancedPage
-
+ Advanced Sandbox options
-
+ On this page advanced sandbox options can be configured.
-
+ Network Access
-
+ Allow network/internet access
-
+ Block network/internet by denying access to Network devices
-
+ Block network/internet using Windows Filtering Platform
-
+ Allow access to network files and folders
-
-
+
+ This option is not recommended for Hardened boxes
-
+ Admin Options
-
+
+ Drop rights from Administrators and Power Users groups
+
+
+
+ Make applications think they are running elevated
-
+ Allow MSIServer to run with a sandboxed system token
-
+ Box Options
-
+ Use a Sandboxie login instead of an anonymous token
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.
-
+ Shared Template
-
+ Shared template mode
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -231,42 +236,42 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.
-
+ Remove defaults if set
-
+ Disabled
-
+ Use as a template
-
+ Append to the configuration
@@ -413,155 +418,155 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new Sandbox
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.
-
+ Enter box name:
-
+ Select box type:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.
-
+ Standard Sandbox
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
-
+ Hardened Sandbox with Data Protection
-
+ Security Hardened Sandbox
-
+ Sandbox with Data Protection
-
+ Standard Isolation Sandbox (Default)
-
+ Application Compartment with Data Protection
-
+ Application Compartment Box
-
+ Confidential Encrypted Box
-
+ Remove after use
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.
-
+ Configure advanced options
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?
@@ -906,73 +911,73 @@ You can click Finish to close this wizard.
CFilesPage
-
+ Sandbox location and behavior
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.
-
+ Sandboxed Files
-
+ Select Directoryディレクトリの選択
-
+ Virtualization scheme
-
+ Version 1
-
+ Version 2
-
+ Separate user folders
-
+ Use volume serial numbers for drives
-
+ Auto delete content when last process terminates
-
+ Enable Immediate Recovery of files from recovery locations
-
+ The selected box location is not a valid path.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?
-
+ The selected box location is not placed on a currently available drive.
@@ -1153,7 +1158,7 @@ You can use %USER% to save each users sandbox to an own folder.
-
+ Don't show this message again.
@@ -1168,7 +1173,7 @@ You can use %USER% to save each users sandbox to an own folder.
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.
@@ -2636,22 +2641,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1
-
+ Deleting folder: %1
-
+ Merging folders: %1 >> %2
-
+ Finishing Snapshot Merge...
@@ -2880,7 +2885,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusSandboxie-Plus について
@@ -3928,74 +3933,73 @@ This file is part of Sandboxie and all change done to it will be reverted next t
-
+ Reset Columns列をリセット
-
+ Copy Cell
-
+ Copy Row
-
+ Copy Panel
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ Close閉じる
-
+ &Find ...
-
+ All columns
-
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
- This copy of Sandboxie+ is certified for: %1
+
+ This copy of Sandboxie-Plus is certified for: %1
-
- Sandboxie+ is free for personal and non-commercial use.
+
+ Sandboxie-Plus is free for personal and non-commercial use.
-
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -5485,7 +5489,7 @@ This file is part of Sandboxie and all change done to it will be reverted next t
-
+ %1 (Current)
@@ -5707,69 +5711,69 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new Sandbox
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.
-
+ Save options as new defaults
-
+ Skip this summary page when advanced options are not set
-
+
This Sandbox will be saved to: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
-
+ Failed to create new box: %1
@@ -7895,27 +7899,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK
-
+ Apply
-
+ Cancelキャンセル
-
+ &Yes
-
+ &No
diff --git a/SandboxiePlus/SandMan/sandman_ko.ts b/SandboxiePlus/SandMan/sandman_ko.ts
index bf769d97..576daafb 100644
--- a/SandboxiePlus/SandMan/sandman_ko.ts
+++ b/SandboxiePlus/SandMan/sandman_ko.ts
@@ -191,97 +191,102 @@
CAdvancedPage
-
+ Advanced Sandbox options고급 샌드박스 옵션
-
+ On this page advanced sandbox options can be configured.이 페이지에서 고급 샌드박스 옵션을 구성할 수 있습니다.
-
+ Network Access네트워크 액세스
-
+ Allow network/internet access네트워크/인터넷 액세스 허용
-
+ Block network/internet by denying access to Network devices네트워크 장치에 대한 액세스를 거부하여 네트워크/인터넷 차단
-
+ Block network/internet using Windows Filtering PlatformWindows 필터링 플랫폼을 사용하여 네트워크/인터넷 차단
-
+ Allow access to network files and foldersAllow access to network files and fodlers네트워크 파일 및 폴더에 대한 액세스 허용
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxes강화 박스에는 이 옵션을 사용하지 않는 것이 좋습니다
-
+ Admin Options관리자 옵션
-
+
+ Drop rights from Administrators and Power Users groups
+ 관리자 및 Power Users 그룹에서 권한 삭제
+
+
+ Make applications think they are running elevated응용 프로그램이 권한 상승으로 실행되고 있다고 생각하게 합니다
-
+ Allow MSIServer to run with a sandboxed system tokenMSI 서버가 샌드박스 시스템 토큰으로 실행되도록 허용
-
+ Box Options박스 옵션
-
+ Use a Sandboxie login instead of an anonymous token익명 토큰 대신 샌드박스 로그인 사용
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox호스트에 설치된 샌드박스 프로그램이 샌드박스에서 DLL을 로드하지 못하도록 방지
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.이 기능은 박스에 위치한 프로세스가 한 번 위치한 호스트에 기록되고 심지어 시작되는 것을 방지하기 때문에 호환성을 줄일 수 있습니다.
-
+ Shared Template공유 템플릿
-
+ Shared template mode공유 템플릿 모드
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -292,42 +297,42 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
샌드박스에 대해 이 템플릿을 비활성화하려면 템플릿 목록에서 이 템플릿의 선택을 취소하기만 하면 됩니다.
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.이 옵션은 박스 구성에 설정을 추가하지 않으며 템플릿 내의 제거 설정에 따라 기본 박스 설정을 제거하지 않습니다.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.이 옵션은 공유 템플릿을 로컬 템플릿으로 박스 구성에 추가하고 템플릿 내의 제거 설정에 따라 기본 박스 설정을 제거할 수도 있습니다.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.이 옵션은 공유 템플릿의 설정을 박스 구성에 추가하고 템플릿 내의 제거 설정에 따라 기본 박스 설정을 제거할 수도 있습니다.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.이 옵션은 박스 구성에 설정을 추가하지 않지만 템플릿 내의 제거 설정에 따라 기본 박스 설정을 제거할 수 있습니다.
-
+ Remove defaults if set설정된 경우 기본값 제거
-
+ Disabled사용 안 함
-
+ Use as a template템플릿으로 사용
-
+ Append to the configuration구성에 추가
@@ -336,7 +341,7 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
익명 토큰 대신 샌드박스 로그인 사용 (실험)
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.사용자 지정 샌드박스 토큰을 사용하면 개별 샌드박스를 서로 더 잘 격리할 수 있으며, 프로세스가 속한 박스의 이름을 작업 관리자의 사용자 열에 표시합니다. 그러나 일부 타사 보안 솔루션은 사용자 지정 토큰에 문제가 있을 수 있습니다.
@@ -503,22 +508,22 @@ Leet (L337) 말하기 수정을 적용하면 512비트로 증가하며, 완전
CBoxTypePage
-
+ Create new Sandbox새 샌드박스 만들기
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. 샌드박스는 호스트 시스템을 박스 내에서 실행되는 프로세스로부터 격리시켜 호스트 시스템이 컴퓨터의 다른 프로그램 및 데이터를 영구적으로 변경할 수 없도록 합니다.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.샌드박스는 사용자의 호스트 시스템을 박스 내에서 실행 중인 프로세스에서 분리하여 사용자의 컴퓨터에 있는 다른 프로그램 및 데이터를 영구적으로 변경하지 못하도록 합니다. 격리 수준은 응용프로그램과의 호환성뿐만 아니라 보안에도 영향을 미치므로 선택한 박스 유형에 따라 격리 수준이 달라집니다. Sandboxie는 또한 Sandboxie의 감독 하에 실행되는 프로세스에 의해 개인 데이터가 액세스되는 것을 방지할 수 있습니다.
-
+ Enter box name:박스 이름 입력:
@@ -527,18 +532,18 @@ Leet (L337) 말하기 수정을 적용하면 512비트로 증가하며, 완전
새 박스
-
+ Select box type:Sellect box type:박스 유형 선택:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/privacy-mode">데이터 보호</a>가 있는 <a href="sbie://docs/security-mode">보안 강화</a> 샌드박스
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
@@ -547,59 +552,59 @@ The entire user profile remains hidden, ensuring maximum security.
전체 사용자 프로파일은 숨김 상태를 유지하여 최대한의 보안을 보장합니다.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox<a href="sbie://docs/security-mode">보안 강화</a> Sandbox
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.이 박스 유형은 샌드박스 프로세스에 노출되는 공격 표면을 크게 줄여 최고 수준의 보호를 제공합니다.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/privacy-mode">데이터 보호</a>가 있는 샌드박스
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.이 박스 유형에서는 샌드박스 프로세스가 개인 사용자 파일이나 데이터에 액세스하지 못하도록 합니다. 사용자 데이터를 보호하는 데 중점을 두고 있습니다,
C:\Windows 및 C:\Program Files 디렉터리만 이 샌드박스 내에서 실행되는 프로세스에 액세스할 수 있습니다. 그러면 개인 파일이 안전하게 유지됩니다.
-
+ Standard Sandbox표준 샌드박스
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.이 박스 유형은 Sandboxie 클래식의 기본 동작을 제공합니다. 친숙하고 신뢰할 수 있는 샌드박스 방식을 사용자에게 제공합니다.
응용 프로그램은 이 샌드박스 내에서 실행되어 제어되고 격리된 공간에서 작동할 수 있습니다.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/privacy-mode">데이터 보호</a>가 있는 <a href="sbie://docs/compartment-mode">응용 프로그램 구획</a> 박스
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.이 박스 유형은 분리 수준을 양호하게 유지하면서 호환성을 우선시합니다. 이 박스 유형은 개별 구획에서 신뢰할 수 있는 응용 프로그램을 실행하도록 설계되었습니다.
다른 박스 유형에 비해 격리 수준은 감소하지만 광범위한 응용 프로그램과의 호환성이 향상되어 샌드박스 환경 내에서 원활한 작동을 보장합니다.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box<a href="sbie://docs/compartment-mode">응용 프로그램 구획</a> 박스
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a>박스 내용 <a href="sbie://docs/boxencryption">암호화</a> 및 <a href="sbie://docs/black-box">기밀</a>설정
@@ -608,7 +613,7 @@ While the level of isolation is reduced compared to other box types, it offers i
<a href="sbie://docs/boxencryption">암호화된</a> <a href="sbie://docs/black-box">기밀 </a> 박스
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
@@ -617,42 +622,42 @@ This ensures the utmost level of privacy and data protection within the confiden
이를 통해 기밀 샌드박스 환경 내에서 최고 수준의 개인 정보 보호 및 데이터 보호를 보장할 수 있습니다.
-
+ Hardened Sandbox with Data Protection데이터 보호 기능을 갖춘 강화된 샌드박스
-
+ Security Hardened Sandbox보안 강화된 샌드박스
-
+ Sandbox with Data Protection데이터 보호 기능이 있는 샌드박스
-
+ Standard Isolation Sandbox (Default)표준 분리 샌드박스 (기본값)
-
+ Application Compartment with Data Protection데이터 보호 기능이 있는 응용 프로그램 구획
-
+ Application Compartment Box응용 프로그램 구획 박스
-
+ Confidential Encrypted Box기밀 암호화 박스
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?암호화된 박스를 사용하려면 ImDisk 드라이버를 설치해야 합니다. 다운로드하여 설치하시겠습니까?
@@ -662,17 +667,17 @@ This ensures the utmost level of privacy and data protection within the confiden
응용 프로그램 구획 (격리 없음)
-
+ Remove after use사용 후 제거
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.박스의 마지막 프로세스가 종료되면 박스의 모든 데이터가 삭제되고 박스 자체가 제거됩니다.
-
+ Configure advanced options고급 옵션 구성
@@ -1035,13 +1040,13 @@ You can click Finish to close this wizard.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioure샌드박스 위치 및 동작
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -1050,64 +1055,64 @@ You can use %USER% to save each users sandbox to an own fodler.
%USER%를 사용하여 각 사용자 샌드박스를 자신의 폴더에 저장할 수 있습니다.
-
+ Sandboxed Files샌드박스 파일
-
+ Select Directory디렉터리 선택
-
+ Virtualization scheme가상화 구성표
-
+ Version 1버전 1
-
+ Version 2버전 2
-
+ Separate user folders개별 사용자 폴더
-
+ Use volume serial numbers for drives드라이브에 볼륨 일련 번호 사용
-
+ Auto delete content when last process terminates마지막 프로세스가 종료될 때 내용 자동 삭제
-
+ Enable Immediate Recovery of files from recovery locations복구 위치에서 파일 즉시 복구 사용
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.선택한 박스 위치가 올바른 경로가 아닙니다.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?선택한 박스 위치가 존재하며 비어 있지 않습니다. 새 폴더나 빈 폴더를 선택하는 것이 좋습니다. 기존 폴더를 사용하시겠습니까?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.선택한 박스 위치가 현재 사용 가능한 드라이브에 있지 않습니다.
@@ -1355,14 +1360,14 @@ You can use %USER% to save each users sandbox to an own fodler.
공유 템플릿
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.<a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">새 가상화 구성표 버전 2</a>를 사용하여 새 샌드박스가 생성되었습니다. 이 박스에서 예기치 않은 문제가 발생하면 가상화 구성표를 버전 1로 전환하고 문제를 보고하십시오. 이 사전 설정을 변경하는 옵션은 박스 구조 그룹의 박스 옵션에서 찾을 수 있습니다.
-
+ Don't show this message again.이 메시지를 다시 표시하지 않습니다.
@@ -2948,22 +2953,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1폴더 대기 중: %1
-
+ Deleting folder: %1폴더 삭제 중: %1
-
+ Merging folders: %1 >> %2폴더 병합: %1 >> %2
-
+ Finishing Snapshot Merge...스냅샷 병합을 완료하는 중...
@@ -3049,22 +3054,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie-Plus v%1
-
+ Reset Columns열 초기화
-
+ Copy Cell셀 복사
-
+ Copy Row행 복사
-
+ Copy Panel패널 복사
@@ -3340,7 +3345,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusSandboxie-Plus 정보
@@ -3820,55 +3825,51 @@ No will choose: %2
샌드박스 안 함
-
+ Case Sensitive대소문자 구분
-
+ RegExp정규식
-
+ Highlight강조
-
+ Close닫기
-
+ &Find ...찾기(&F)...
-
+ All columns모든 열
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>Sandboxie-Plus 정보 - 한국어: VenusGirl</h3><p>버전 %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
+ <h3>Sandboxie-Plus 정보 - 한국어: VenusGirl</h3><p>버전 %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- Sandboxie+의 이 사본은 다음에 대해 인증되었습니다: %1
+ Sandboxie+의 이 사본은 다음에 대해 인증되었습니다: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+는 개인 및 비상업적인 사용에 대해 무료입니다.
+ Sandboxie+는 개인 및 비상업적인 사용에 대해 무료입니다.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus는 Sandboxie의 오픈 소스 연속입니다.<br />더 많은 정보는 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a>를 방문하세요.<br /><br />%3<br /><br />드라이버 버전: %1<br />기능: %2<br /><br />아이콘 제공은 <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus는 Sandboxie의 오픈 소스 연속입니다.<br />더 많은 정보는 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a>를 방문하세요.<br /><br />%3<br /><br />드라이버 버전: %1<br />기능: %2<br /><br />아이콘 제공은 <a href="https://icons8.com">icons8.com</a>
@@ -4456,6 +4457,26 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Operation failed for %1 item(s).%1 항목에 대한 작업에 실패했습니다.
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Do you want to open %1 in a sandboxed (yes) or unsandboxed (no) Web browser?샌드박스에서 (예) 또는 샌드박스가 없는 (아니오) 웹 브라우저에서 %1을 여시겠습니까?
@@ -5987,7 +6008,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
선택한 로컬 템플릿을 삭제하시겠습니까?
-
+ %1 (Current)%1 (현재)
@@ -6231,35 +6252,35 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new Sandbox새 샌드박스 만들기
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.거의 완료되었습니다. 마침을 클릭하여 새 샌드박스를 만들고 마법사를 종료합니다.
-
+ Save options as new defaults옵션을 새 기본값으로 저장
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)고급 옵션이 설정되지 않은 경우 이 요약 페이지 건너뛰기
-
+
This Sandbox will be saved to: %1
이 샌드박스는 다음 위치에 저장됩니다: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -6268,21 +6289,21 @@ This box's content will be DISCARDED when its closed, and the box will be r
이 박스의 내용물은 닫히면 폐기되고 박스는 제거됩니다.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
이 박스는 닫히면 내용을 삭제하고 임시 데이터에만 적합합니다.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
이 박스의 프로세스는 인터넷 또는 로컬 네트워크에 액세스할 수 없으므로 액세스된 모든 데이터가 기밀로 유지됩니다.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6291,14 +6312,14 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
이 박스는 시스템 토큰으로 MSI 서버 (*.msi 설치 관리자 서비스)를 실행합니다. 이렇게 하면 호환성은 향상되지만 보안 분리는 줄어듭니다.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
이 박스의 프로세스는 관리자 권한 없이 실행되므로 보안 강화 박스에서도 설치 프로그램을 사용할 수 있습니다.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6307,7 +6328,7 @@ Processes in this box will be running with a custom process token indicating the
이 박스의 프로세스는 자신이 속한 샌드박스를 나타내는 사용자 지정 프로세스 토큰으로 실행됩니다.
-
+ Failed to create new box: %1새 박스를 만들지 못했습니다: %1
@@ -8678,27 +8699,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK확인
-
+ Apply적용
-
+ Cancel취소
-
+ &Yes예(&Y)
-
+ &No아니오(&N)
diff --git a/SandboxiePlus/SandMan/sandman_nl.ts b/SandboxiePlus/SandMan/sandman_nl.ts
index 54b79f0f..8d8f027f 100644
--- a/SandboxiePlus/SandMan/sandman_nl.ts
+++ b/SandboxiePlus/SandMan/sandman_nl.ts
@@ -135,97 +135,102 @@
CAdvancedPage
-
+ Advanced Sandbox options
-
+ On this page advanced sandbox options can be configured.
-
+ Network Access
-
+ Allow network/internet access
-
+ Block network/internet by denying access to Network devices
-
+ Block network/internet using Windows Filtering Platform
-
+ Allow access to network files and foldersAllow access to network files and fodlers
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxes
-
+ Admin Options
-
+
+ Drop rights from Administrators and Power Users groups
+ Rechten ontnemen van administrator- en poweruser-groepen
+
+
+ Make applications think they are running elevated
-
+ Allow MSIServer to run with a sandboxed system token
-
+ Box OptionsBox-opties
-
+ Use a Sandboxie login instead of an anonymous token
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.
-
+ Shared Template
-
+ Shared template mode
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -233,47 +238,47 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.
-
+ Remove defaults if set
-
+ DisabledUitgeschakeld
-
+ Use as a template
-
+ Append to the configuration
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.
@@ -423,22 +428,22 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new Sandbox
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.Een sandbox isoleert uw hostsysteem van processen die binnen de box draaien. Het voorkomt dat ze permanente veranderingen aanbrengen aan andere programma's en gegevens op uw computer. Het niveau van isolatie heeft invloed op uw veiligheid en de compatibiliteit met toepassingen, vandaar dat er een verschillend niveau van isolatie zal zijn afhankelijk van het geselecteerde type box. Sandboxie kan ook uw persoonlijke gegevens beschermen tegen toegang door processen die onder zijn supervisie draaien.
-
+ Enter box name:
@@ -447,121 +452,121 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
Nieuwe box
-
+ Select box type:Sellect box type:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.
-
+ Standard Sandbox
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
-
+ Hardened Sandbox with Data ProtectionGeharde sandbox met gegevensbescherming
-
+ Security Hardened SandboxSandbox met geharde beveiliging
-
+ Sandbox with Data ProtectionSandbox met gegevensbescherming
-
+ Standard Isolation Sandbox (Default)Standaard isolatie-sandbox (standaard)
-
+ Application Compartment with Data ProtectionToepassingscompartiment met gegevensbescherming
-
+ Application Compartment Box
-
+ Confidential Encrypted Box
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?
@@ -571,17 +576,17 @@ This ensures the utmost level of privacy and data protection within the confiden
Toepassingscompartiment (GEEN isolatie)
-
+ Remove after use
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.
-
+ Configure advanced options
@@ -956,13 +961,13 @@ You can click Finish to close this wizard.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioure
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -970,64 +975,64 @@ You can use %USER% to save each users sandbox to an own fodler.
-
+ Sandboxed Files
-
+ Select DirectoryMap selecteren
-
+ Virtualization scheme
-
+ Version 1
-
+ Version 2
-
+ Separate user foldersGescheiden gebruikersmappen
-
+ Use volume serial numbers for drives
-
+ Auto delete content when last process terminates
-
+ Enable Immediate Recovery of files from recovery locations
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.
@@ -1267,14 +1272,14 @@ You can use %USER% to save each users sandbox to an own fodler.
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.
-
+ Don't show this message again.Dit bericht niet meer weergeven
@@ -2823,22 +2828,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Wachten op map: %1
-
+ Deleting folder: %1Map verwijderen: %1
-
+ Merging folders: %1 >> %2Mappen samenvoegen: %1 >> %2
-
+ Finishing Snapshot Merge...Samenvoegen van snapshot afwerken...
@@ -2996,22 +3001,22 @@ Please check if there is an update for sandboxie.
-
+ Reset ColumnsKolommen herstellen
-
+ Copy CellCel kopiëren
-
+ Copy RowRij kopiëren
-
+ Copy PanelDeelvenster kopiëren
@@ -3306,7 +3311,7 @@ Please check if there is an update for sandboxie.
-
+ About Sandboxie-PlusOver Sandboxie-Plus
@@ -3843,55 +3848,51 @@ Nee zal %2 kiezen
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseSluiten
-
+ &Find ...
-
+ All columns
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>Over Sandboxie-Plus</h3><p>Versie %1</p><p>Auteursrecht (c) 2020-2022 door DavidXanatos</p>
+ <h3>Over Sandboxie-Plus</h3><p>Versie %1</p><p>Auteursrecht (c) 2020-2022 door DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- Deze kopie van Sandboxie+ is gecertificeerd voor %1
+ Deze kopie van Sandboxie+ is gecertificeerd voor %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ is gratis voor persoonlijk en niet-commercieel gebruik.
+ Sandboxie+ is gratis voor persoonlijk en niet-commercieel gebruik.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus is een open source verderzetting van Sandboxie.<br />Bezoek <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> voor meer informatie.<br /><br />%3<br /><br />Driver-versie: %1<br />Functies: %2<br /><br />Pictogrammen van <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus is een open source verderzetting van Sandboxie.<br />Bezoek <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> voor meer informatie.<br /><br />%3<br /><br />Driver-versie: %1<br />Functies: %2<br /><br />Pictogrammen van <a href="https://icons8.com">icons8.com</a>
@@ -4313,6 +4314,26 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Operation failed for %1 item(s).Bewerking mislukt voor %1 item(s).
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Do you want to open %1 in a sandboxed (yes) or unsandboxed (no) Web browser?Wilt u %1 openen in een gesandboxte (ja) of niet-gesandboxte (nee) webbrowser?
@@ -5894,7 +5915,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ %1 (Current)
@@ -6118,34 +6139,34 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new Sandbox
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.
-
+ Save options as new defaults
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)
-
+
This Sandbox will be saved to: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -6153,19 +6174,19 @@ This box's content will be DISCARDED when its closed, and the box will be r
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6173,13 +6194,13 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6187,7 +6208,7 @@ Processes in this box will be running with a custom process token indicating the
-
+ Failed to create new box: %1
@@ -8491,27 +8512,27 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
QPlatformTheme
-
+ OKOk
-
+ ApplyToepassen
-
+ CancelAnnuleren
-
+ &YesJa
-
+ &NoNee
diff --git a/SandboxiePlus/SandMan/sandman_pl.ts b/SandboxiePlus/SandMan/sandman_pl.ts
index a695a92c..820fba54 100644
--- a/SandboxiePlus/SandMan/sandman_pl.ts
+++ b/SandboxiePlus/SandMan/sandman_pl.ts
@@ -140,97 +140,102 @@
CAdvancedPage
-
+ Advanced Sandbox optionsZaawansowane opcje piaskownicy
-
+ On this page advanced sandbox options can be configured.Na tej stronie można skonfigurować zaawansowane opcje piaskownicy.
-
+ Network AccessDostęp do sieci
-
+ Allow network/internet accessZezwalaj na dostęp do sieci/internetu
-
+ Block network/internet by denying access to Network devicesZablokuj sieć/internet, odmawiając dostępu urządzeniom sieciowym
-
+ Block network/internet using Windows Filtering PlatformZablokuj sieć/internet przy użyciu platformy filtrującej Windows
-
+ Allow access to network files and foldersAllow access to network files and fodlersZezwól na dostęp do plików i folderów sieciowych
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxesTa opcja nie jest zalecana dla wzmocnionych boksów
-
+ Admin OptionsOpcje administratora
-
+
+ Drop rights from Administrators and Power Users groups
+ Porzuć prawa z grup Administratorzy i Użytkownicy Zaawansowani
+
+
+ Make applications think they are running elevatedSpraw, by aplikacje reagowały jakby były uruchomione z podwyższonym poziomem uprawnień
-
+ Allow MSIServer to run with a sandboxed system tokenZezwól na uruchamianie MSIServer z tokenem systemowym w trybie piaskownicy
-
+ Box OptionsOpcje piaskownicy
-
+ Use a Sandboxie login instead of an anonymous tokenUżyj loginu Sandboxie zamiast anonimowego tokena
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxZapobieganie ładowaniu dll'ów z piaskownicy przez programy zainstalowane na hoście
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.Ta funkcja może zmniejszyć kompatybilność, ponieważ zapobiega również zapisywaniu procesów zlokalizowanych w boksie do procesów zlokalizowanych na hoście, a nawet ich uruchamianiu.
-
+ Shared Template
-
+ Shared template mode
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -238,42 +243,42 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.
-
+ Remove defaults if set
-
+ DisabledWyłączone
-
+ Use as a template
-
+ Append to the configuration
@@ -282,7 +287,7 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
Użyj loginu Sandboxie zamiast anonimowego tokena (eksperymentalne)
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.Użycie niestandardowego tokena sandboxie pozwala na lepsze odizolowanie poszczególnych sandboxów od siebie, a także pokazuje w kolumnie użytkownika w menedżerach zadań nazwę sandboxa, do którego należy dany proces. Niektóre rozwiązania bezpieczeństwa firm trzecich mogą jednak mieć problemy z niestandardowymi tokenami.
@@ -435,22 +440,22 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new SandboxUtwórz nową piaskownicę
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. Piaskownica izoluje system hosta od procesów uruchomionych w piaskownicy, uniemożliwiając im wprowadzanie trwałych zmian w innych programach i danych na komputerze.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.Piaskownica izoluje system hosta od procesów uruchomionych wewnątrz boksu, uniemożliwia im dokonywanie trwałych zmian w innych programach i danych w komputerze. Poziom izolacji ma wpływ na bezpieczeństwo użytkownika oraz kompatybilność z aplikacjami, dlatego też w zależności od wybranego Typu Boksu, poziom izolacji będzie różny. Sandboxie może również chronić dane osobowe użytkownika przed dostępem do nich przez procesy działające pod jego nadzorem.
-
+ Enter box name:Podaj nazwę boksu:
@@ -459,18 +464,18 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
Nowy boks
-
+ Select box type:Sellect box type:Wybierz typ skrzynki:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/security-mode">Wzmocnione zabezpieczenia</a> Piaskownica z <a href="sbie://docs/privacy-mode">Ochroną danych</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
@@ -479,64 +484,64 @@ The entire user profile remains hidden, ensuring maximum security.
Cały profil użytkownika pozostaje ukryty, zapewniając maksymalne bezpieczeństwo.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox<a href="sbie://docs/security-mode">Zaawansowane zabezpieczenia</a> Piaskownica
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.Ten typ skrzynki oferuje najwyższy poziom ochrony poprzez znaczne ograniczenie obszaru ataku narażonego na procesy w piaskownicy.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>Piaskownica z <a href="sbie://docs/privacy-mode">ochroną danych</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.W tym typie pola procesy działające w trybie piaskownicy nie mają dostępu do jakichkolwiek osobistych plików ani danych użytkownika. Koncentrujemy się na ochronie danych użytkowników i jako takie,
tylko katalogi C:\Windows i C:\Program Files są dostępne dla procesów działających w tym obszarze izolowanym. Dzięki temu pliki osobiste pozostają bezpieczne.
-
+ Standard SandboxStandardowa piaskownica
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.Ten typ boksu oferuje domyślne zachowanie klasycznego Sandboxie. Zapewnia użytkownikom znajomy i niezawodny schemat piaskownicy.
Aplikacje mogą być uruchamiane w tej piaskownicy, zapewniając, że działają w kontrolowanej i odizolowanej przestrzeni.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/compartment-mode">Przedział aplikacji</a> Boks z <a href="sbie://docs/privacy-mode">Ochroną danych</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.Ten typ boksu priorytetowo traktuje kompatybilność, zapewniając jednocześnie dobry poziom izolacji. Jest przeznaczony do uruchamiania zaufanych aplikacji w oddzielnych przedziałach.
Chociaż poziom izolacji jest zmniejszony w porównaniu do innych typów skrzynek, oferuje lepszą kompatybilność z szeroką gamą aplikacji, zapewniając płynne działanie w środowisku piaskownicy.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box<a href="sbie://docs/compartment-mode">Przedział aplikacji</a> Boks
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a><a href="sbie://docs/boxencryption">Zaszyfruj</a> zawartość boksu i ustaw <a href="sbie://docs/black-box">Poufne</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
@@ -545,42 +550,42 @@ Dostęp do wirtualnego dysku po zamontowaniu jest ograniczony do programów dzia
Zapewnia to najwyższy poziom prywatności i ochrony danych w poufnym środowisku piaskownicy.
-
+ Hardened Sandbox with Data ProtectionWzmocniona piaskownica z ochroną danych
-
+ Security Hardened SandboxWzmocniona ochrona piaskownicy
-
+ Sandbox with Data ProtectionPiaskownica z ochroną danych
-
+ Standard Isolation Sandbox (Default)Piaskownica izolowana standardowo (domyślnie)
-
+ Application Compartment with Data ProtectionKomora aplikacji z ochroną danych
-
+ Application Compartment BoxBoks z przegródkami na aplikacje
-
+ Confidential Encrypted BoxPoufna szyfrowany boks
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?Aby korzystać z zaszyfrowanych skrzynek, musisz zainstalować sterownik ImDisk, czy chcesz go pobrać i zainstalować?
@@ -590,17 +595,17 @@ Zapewnia to najwyższy poziom prywatności i ochrony danych w poufnym środowisk
Komora aplikacji (bez izolacji)
-
+ Remove after useUsuń po użyciu
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.Po zakończeniu ostatniego procesu w boksie, wszystkie dane w nim zawarte zostaną usunięte, a sam boks zostanie usunięta.
-
+ Configure advanced optionsSkonfiguruj opcje zaawansowane
@@ -981,13 +986,13 @@ Możesz kliknąć Zakończ, aby zamknąć tego kreatora.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioureLokalizacja i zachowanie piaskownicy
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -996,64 +1001,64 @@ You can use %USER% to save each users sandbox to an own fodler.
Możesz użyć %USER%, aby zapisać piaskownicę każdego użytkownika w jego własnym folderze.
-
+ Sandboxed FilesPliki w piaskownicy
-
+ Select DirectoryWybierz katalog
-
+ Virtualization schemeSchemat wirtualizacji
-
+ Version 1Wersja 1
-
+ Version 2Wersja 2
-
+ Separate user foldersOddziel foldery użytkowników
-
+ Use volume serial numbers for drivesUżyj numerów seryjnych woluminów dla napędów
-
+ Auto delete content when last process terminatesAutomatycznie usuwaj zawartość po zakończeniu ostatniego procesu
-
+ Enable Immediate Recovery of files from recovery locationsWłącz natychmiastowe odzyskiwanie plików z lokalizacji odzyskiwania
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.Wybrana lokalizacja skrzynki nie jest prawidłową ścieżką.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?Wybrana lokalizacja skrzynki istnieje i nie jest pusta, zaleca się wybrać nowy lub pusty folder. Czy na pewno chcesz użyć istniejącego folderu?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.Wybrana lokalizacja skrzynki nie została umieszczona na aktualnie dostępnym dysku.
@@ -1307,14 +1312,14 @@ Możesz użyć %USER%, aby zapisać piaskownicę każdego użytkownika w jego w
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.Nowa piaskownica została utworzona przy użyciu nowego <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Schemat Wirtualizacji Wersja 2</a>, jeśli wystąpią jakieś nieoczekiwane problemy z tym boksem, proszę przełączyć się na Schemat Wirtualizacji Wersja 1 i zgłosić problem. Opcja zmiany tego ustawienia wstępnego znajduje się w Opcjach boksu w grupie Struktura boksu.
-
+ Don't show this message again.Nie pokazuj ponownie tej wiadomości.
@@ -2927,22 +2932,22 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
CSandBox
-
+ Waiting for folder: %1Oczekiwanie na folder: %1
-
+ Deleting folder: %1Usuwanie folderu: %1
-
+ Merging folders: %1 >> %2Scalanie folderów: %1 >> %2
-
+ Finishing Snapshot Merge...Kończenie scalania migawek...
@@ -3087,22 +3092,22 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Bez piaskownicy
-
+ Reset ColumnsZresetuj kolumny
-
+ Copy CellSkopiuj komórkę
-
+ Copy RowSkopiuj linijkę
-
+ Copy PanelSkopiuj wszystko
@@ -3603,25 +3608,21 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
<p>Pobrano aktualizację Sandboxie-Plus do następującej lokalizacji:</p><p><a href="%2">%1</a></p><p>Czy chcesz rozpocząć instalację? Jeśli jakieś programy działają w trybie piaskownicy, zostaną zakończone.</p>
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>O Sandboxie-Plus</h3><p>Wersja %1</p><p>Prawo autorskie (c) 2020-2022 DavidXanatos</p>
+ <h3>O Sandboxie-Plus</h3><p>Wersja %1</p><p>Prawo autorskie (c) 2020-2022 DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- Ta kopia Sandboxie+ jest certyfikowana dla: %1
+ Ta kopia Sandboxie+ jest certyfikowana dla: %1
- Sandboxie+ is free for personal and non-commercial use.
- Program Sandboxie+ jest bezpłatny do użytku osobistego i niekomercyjnego.
+ Program Sandboxie+ jest bezpłatny do użytku osobistego i niekomercyjnego.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus to kontynuacja Sandboxie o otwartym kodzie źródłowym.<br />Odwiedź stronę <a href="https://sandboxie-plus.com">sandboxie-plus.com</a>, aby uzyskać więcej informacji.<br />< br />%3<br /><br />Wersja sterownika: %1<br />Funkcje: %2<br /><br />Ikony z <a href="https://icons8.com"> icons8.com</a>
+ Sandboxie-Plus to kontynuacja Sandboxie o otwartym kodzie źródłowym.<br />Odwiedź stronę <a href="https://sandboxie-plus.com">sandboxie-plus.com</a>, aby uzyskać więcej informacji.<br />< br />%3<br /><br />Wersja sterownika: %1<br />Funkcje: %2<br /><br />Ikony z <a href="https://icons8.com"> icons8.com</a>
@@ -3714,7 +3715,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
-
+ About Sandboxie-PlusO Sandboxie-Plus
@@ -4436,6 +4437,26 @@ Ten plik jest częścią Sandboxie i wszystkie zmiany w nim dokonane zostaną co
Operation failed for %1 item(s).Błąd przy wykonywaniu %1 operacji.
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Do you want to open %1 in a sandboxed (yes) or unsandboxed (no) Web browser?Czy przeglądarka WWW z %1 ma być otwarta w piaskownicy (tak), czy poza piaskownicą (nie)?
@@ -4446,33 +4467,33 @@ Ten plik jest częścią Sandboxie i wszystkie zmiany w nim dokonane zostaną co
Zapamiętaj wybór na później.
-
+ Case SensitiveI don't know what it's for
-
+ RegExp
-
+ HighlightPodkreśl
-
+ CloseZamknij
-
+ &Find ...&Znajdź...
-
+ All columnsWszystkie kolumny
@@ -6078,7 +6099,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Czy naprawdę chcesz usunąć wybrany lokalny szablon(-y)?
-
+ %1 (Current)%1 (aktualne)
@@ -6316,17 +6337,17 @@ Spróbuj przesłać bez załączonego dziennika.
CSummaryPage
-
+ Create the new SandboxUtwórz nową piaskownicę
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.Prawie ukończone, kliknij Zakończ, aby utworzyć nową piaskownicę i zakończyć działanie kreatora.
-
+ Save options as new defaultsZapisz opcje jako nowe ustawienia domyślne
@@ -6335,19 +6356,19 @@ Spróbuj przesłać bez załączonego dziennika.
Nie pokazuj strony podsumowania w przyszłości (chyba że ustawiono opcje zaawansowane)
-
+ Skip this summary page when advanced options are not setPomiń tę stronę podsumowania, gdy opcje zaawansowane nie są ustawione.
-
+
This Sandbox will be saved to: %1
Ta piaskownica zostanie zapisana w: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -6356,21 +6377,21 @@ This box's content will be DISCARDED when its closed, and the box will be r
Zawartość tego boksu zostanie USUNIĘTA, a po jego zamknięciu, boks zostanie usunięty.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
Ten boks po zamknięciu wyrzuci swoją zawartość, nadaje się tylko dla danych tymczasowych.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
Procesy w tym boksie nie będą miały dostępu do Internetu ani sieci lokalnej, co zapewnia poufność wszystkich udostępnianych danych.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6379,14 +6400,14 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
Ten boks uruchomi MSIServer (usługę instalatora *.msi) z tokenem systemowym, poprawia to kompatybilność, ale zmniejsza izolację bezpieczeństwa.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
Procesy w tym boksie reagowały tak jakby były uruchamiane z uprawnieniami administracyjnymi, choć w rzeczywistości ich nie mają, stąd instalatory mogą być używane nawet w zabezpieczonych boksach.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6395,7 +6416,7 @@ Processes in this box will be running with a custom process token indicating the
Procesy w tym polu będą uruchamiane z niestandardowym tokenem procesu wskazującym piaskownicę, do której należą.
-
+ Failed to create new box: %1Nie udało się utworzyć nowego boksu: %1
@@ -8788,27 +8809,27 @@ Należy pamiętać, że te wartości są obecnie specyficzne dla użytkownika i
QPlatformTheme
-
+ OKOK
-
+ ApplyZastosuj
-
+ CancelAnuluj
-
+ &Yes&Tak
-
+ &No&Nie
diff --git a/SandboxiePlus/SandMan/sandman_pt_BR.ts b/SandboxiePlus/SandMan/sandman_pt_BR.ts
index ad70ebf5..7205dc10 100644
--- a/SandboxiePlus/SandMan/sandman_pt_BR.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_BR.ts
@@ -135,97 +135,102 @@
CAdvancedPage
-
+ Advanced Sandbox optionsOpções avançadas da caixa de areia
-
+ On this page advanced sandbox options can be configured.Nessa página, as opções avançadas da caixa podem ser configuradas.
-
+ Network AccessAcesso à Rede
-
+ Allow network/internet accessPermitir acesso à rede/internet
-
+ Block network/internet by denying access to Network devicesBloquear rede/internet negando acesso a dispositivos de rede
-
+ Block network/internet using Windows Filtering PlatformBloquear rede/internet usando a Plataforma de Filtragem do Windows
-
+ Allow access to network files and foldersAllow access to network files and fodlersPermitir acessar arquivos e pastas de rede
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxesEssa opção não é recomendada para caixas com segurança rigorosas
-
+ Admin OptionsOpções de Administrador
-
+
+ Drop rights from Administrators and Power Users groups
+ Retirar direitos de grupos de Administradores e Usuários Avançados
+
+
+ Make applications think they are running elevatedFazer os aplicativos pensarem que estão sendo executados em nível elevado
-
+ Allow MSIServer to run with a sandboxed system tokenPermitir que MSIServer seja executado com um token de sistema na caixa
-
+ Box OptionsOpções da Caixa
-
+ Use a Sandboxie login instead of an anonymous tokenUsar um login do Sandboxie em vez de um token anônimo
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxImpedir que programas das caixas de areia instalados no host carreguem dll's da caixa de areia
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.Esse recurso pode reduzir a compatibilidade, pois também impede que processos localizados em caixas gravem no host local e até mesmo os iniciem.
-
+ Shared Template
-
+ Shared template mode
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -233,42 +238,42 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.
-
+ Remove defaults if set
-
+ DisabledDesativado
-
+ Use as a template
-
+ Append to the configuration
@@ -277,7 +282,7 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
Usar login do Sandboxie em vez de um token anônimo (experimental)
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.Usar um token do sandboxie personalizado permite isolar melhor as caixas individuais umas das outras e mostra na coluna do usuário dos gerenciadores de tarefas o nome da caixa à qual um processo pertence. Algumas soluções de segurança de terceiros podem, no entanto, ter problemas com tokens personalizados.
@@ -427,22 +432,22 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new SandboxCriar nova Caixa de Areia
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.Uma caixa de areia isola seu sistema host de processos em execução dentro da caixa, ela os impede de fazer alterações permanentes em outros programas e dados no seu computador. O nível de isolamento impacta sua segurança, bem como a compatibilidade com aplicativos, portanto, haverá um nível diferente de isolamento, dependendo do tipo de caixa selecionada. O Sandboxie também pode proteger seus dados pessoais de serem acessados por processos em execução sob sua supervisão.
-
+ Enter box name:Digite o nome da caixa:
@@ -451,121 +456,121 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
Nova Caixa
-
+ Select box type:Sellect box type:Selecione o tipo de caixa:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.
-
+ Standard Sandbox
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
-
+ Hardened Sandbox with Data ProtectionCaixa com Proteção de Dados Rigorosa
-
+ Security Hardened SandboxCaixa com Segurança Rigorosa
-
+ Sandbox with Data ProtectionCaixa com Proteção de Dados
-
+ Standard Isolation Sandbox (Default)Caixa com Isolamento Padrão (Padrão)
-
+ Application Compartment with Data ProtectionCompartimento de Aplicativos com Proteção de Dados
-
+ Application Compartment Box
-
+ Confidential Encrypted Box
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?
@@ -575,17 +580,17 @@ This ensures the utmost level of privacy and data protection within the confiden
Compartimento de Aplicativos (SEM Isolamento)
-
+ Remove after useRemover após o uso
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.Depois que o último processo na caixa terminar, todos os dados na caixa serão excluídos e a própria caixa será removida.
-
+ Configure advanced optionsConfigurar opções avançadas
@@ -962,13 +967,13 @@ You can click Finish to close this wizard.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioureLocalização e comportamento da caixa de areia
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -977,64 +982,64 @@ You can use %USER% to save each users sandbox to an own fodler.
Você pode usar %USER% para salvar a caixa de proteção de cada usuário em uma pasta própria.
-
+ Sandboxed FilesArquivos da Caixa
-
+ Select DirectorySelecionar Diretório
-
+ Virtualization schemeEsquema de virtualização
-
+ Version 1Versão 1
-
+ Version 2Versão 2
-
+ Separate user foldersPasta de usuários separada
-
+ Use volume serial numbers for drivesUsar números de série de volume para unidades
-
+ Auto delete content when last process terminatesExcluir conteúdo automaticamente quando o último processo terminar
-
+ Enable Immediate Recovery of files from recovery locationsAtivar recuperação imediata de arquivos em locais de recuperação
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.A localização da caixa selecionada não é um caminho válido.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?A localização da caixa selecionada existe e não está vazia, é recomendável escolher uma pasta nova ou vazia. Tem certeza de que deseja usar uma pasta existente?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.O local da caixa selecionada não foi colocado em uma unidade disponível no momento.
@@ -1295,14 +1300,14 @@ Você pode usar %USER% para salvar a caixa de proteção de cada usuário em uma
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.A nova caixa foi criada usando o novo <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Esquema de Virtualização Versão 2</a>, se você tiver problemas inesperados com esta caixa, mude para o Esquema de Virtualização para a Versão 1 e relate o problema, a opção para alterar esta predefinição pode ser encontrada nas Opções de Caixa no grupo Estrutura de Caixa.
-
+ Don't show this message again.Não mostrar essa mensagem novamente.
@@ -2904,17 +2909,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Aguardando pela pasta: %1
-
+ Deleting folder: %1Excluíndo pasta: %1
-
+ Merging folders: %1 >> %2Mesclando pastas: %1 >> %2
@@ -2923,7 +2928,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Mesclando pastas: %1 >> %2
-
+ Finishing Snapshot Merge...Mesclagem de Instantâneo Finalizada...
@@ -3113,22 +3118,22 @@ Error: %1
-
+ Reset ColumnsRedefinir Colunas
-
+ Copy CellCopiar Célula
-
+ Copy RowCopiar Linha
-
+ Copy PanelCopiar Painel
@@ -3423,7 +3428,7 @@ Error: %1
-
+ About Sandboxie-PlusSobre o Sandboxie-Plus
@@ -3650,6 +3655,26 @@ Error: %1
Time|Box Name|File PathHorário|Nome da Caixa|Caminho do Arquivo
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+
@@ -3895,55 +3920,51 @@ Este arquivo faz parte do Sandboxie e todas as alterações feitas nele serão r
-
+ Case SensitiveMaiúsculas e minúsculas
-
+ RegExp
-
+ HighlightRealçar
-
+ CloseFechar
-
+ &Find ...&Localizar ...
-
+ All columnsTodas as colunas
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>Sobre Sandboxie-Plus</h3><p>Versão %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
+ <h3>Sobre Sandboxie-Plus</h3><p>Versão %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- Essa cópia do Sandboxie+ é certificada para: %1
+ Essa cópia do Sandboxie+ é certificada para: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ é gratuito para uso pessoal e não comercial.
+ Sandboxie+ é gratuito para uso pessoal e não comercial.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus é uma continuação de código aberto do Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para mais informações.<br /><br />%3<br /><br />Versão do driver: %1<br />Recursos: %2<br /><br />Ícones de <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus é uma continuação de código aberto do Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para mais informações.<br /><br />%3<br /><br />Versão do driver: %1<br />Recursos: %2<br /><br />Ícones de <a href="https://icons8.com">icons8.com</a>
@@ -6075,7 +6096,7 @@ Não vou escolher: %2
Você realmente deseja excluir o(s) modelo(s) local(is) selecionado(s)?
-
+ %1 (Current)%1 (Atual)
@@ -6300,35 +6321,35 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new SandboxCriar nova Caixa de Areia
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.Quase concluído, clique em Concluir para criar a nova caixa de areia e concluir o assistente.
-
+ Save options as new defaultsSalvar opções como novos padrões
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)Não exibir a página de resumo no futuro (a menos que opções avançadas tenham sido marcada)
-
+
This Sandbox will be saved to: %1
Essa caixa será salva em: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -6337,21 +6358,21 @@ This box's content will be DISCARDED when its closed, and the box will be r
O conteúdo desta caixa será DESCARTADO quando ela for fechada, e a caixa será removida.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
Esta caixa irá DESCARTAR seu conteúdo quando for fechada, é adequada apenas para dados temporários.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
Os processos nesta caixa não poderão acessar a internet ou a rede local, isso garante que todos os dados acessados permaneçam confidenciais.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6360,14 +6381,14 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
Esta caixa executará o MSIServer (*.msi installer service) com um token do sistema, isso melhora a compatibilidade, mas reduz o isolamento de segurança.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
Os processos nesta caixa pensarão que são executados com privilégios administrativos, sem realmente tê-los, portanto, os instaladores podem ser usados mesmo em uma caixa de segurança reforçada.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6376,7 +6397,7 @@ Processes in this box will be running with a custom process token indicating the
Os processos nessa caixa serão executados com um token de processo personalizado indicando a caixa de areia à qual pertencem.
-
+ Failed to create new box: %1Falha ao criar nova caixa: %1
@@ -8820,27 +8841,27 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
QPlatformTheme
-
+ OK
-
+ ApplyAplicar
-
+ CancelCancelar
-
+ &Yes&Sim
-
+ &No&Não
diff --git a/SandboxiePlus/SandMan/sandman_pt_PT.ts b/SandboxiePlus/SandMan/sandman_pt_PT.ts
index b98a320e..840ec0d5 100644
--- a/SandboxiePlus/SandMan/sandman_pt_PT.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_PT.ts
@@ -135,97 +135,102 @@
CAdvancedPage
-
+ Advanced Sandbox optionsOpções avançadas da caixa de areia
-
+ On this page advanced sandbox options can be configured.Nesta página, as opções avançadas da caixa podem ser definidas.
-
+ Network AccessAcesso à Rede
-
+ Allow network/internet accessPermitir acesso à rede/internet
-
+ Block network/internet by denying access to Network devicesBloquear rede/internet negando acesso a dispositivos de rede
-
+ Block network/internet using Windows Filtering PlatformBloquear rede/internet usando a Plataforma de Filtragem do Windows
-
+ Allow access to network files and foldersAllow access to network files and fodlersPermitir acessar ficheiros e pastas de rede
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxesEssa opção não é recomendada para caixas com segurança rigorosas
-
+ Admin OptionsOpções de Administrador
-
+
+ Drop rights from Administrators and Power Users groups
+ Retirar direitos de grupos de Administradores e Usuários Avançados
+
+
+ Make applications think they are running elevatedFazer os aplicativos pensarem que estão sendo executados em nível elevado
-
+ Allow MSIServer to run with a sandboxed system tokenPermitir que MSIServer seja executado com um token de sistema na caixa
-
+ Box OptionsOpções da Caixa
-
+ Use a Sandboxie login instead of an anonymous tokenUtilizar um login do Sandboxie em vez de um token anônimo
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxImpedir que programas das caixas de areia instalados no host carreguem dll's da caixa de areia
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.Este recurso pode reduzir a compatibilidade, pois também impede que processos localizados em caixas gravem no host local e até mesmo os iniciem.
-
+ Shared Template
-
+ Shared template mode
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -233,42 +238,42 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.
-
+ Remove defaults if set
-
+ DisabledDesativado
-
+ Use as a template
-
+ Append to the configuration
@@ -277,7 +282,7 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
Utilizar login do Sandboxie em vez de um token anônimo (experimental)
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.O uso de um token do sandboxie personalizado permite isolar melhor as caixas individuais umas das outras e mostra na coluna do utilizador dos gerenciadores de tarefas o nome da caixa à qual um processo pertence. Algumas soluções de segurança de terceiros podem, no entanto, ter problemas com tokens personalizados.
@@ -427,22 +432,22 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new SandboxCriar nova Caixa de Areia
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.Uma caixa de areia isolou seu sistema host de processos em execução dentro da caixa, ele os impede de fazer alterações permanentes em outros programas e dados no seu computador. O nível de isolamento impacta sua segurança, bem como a compatibilidade com aplicativos, portanto, haverá um nível diferente de isolamento, dependendo do tipo de caixa selecionada. A Sandboxie também pode proteger seus dados pessoais de serem acessados por processos em execução sob sua supervisão.
-
+ Enter box name:Digite o nome da caixa:
@@ -451,121 +456,121 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
Nova Caixa
-
+ Select box type:Sellect box type:Seleccione o tipo de caixa:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.
-
+ Standard Sandbox
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
-
+ Hardened Sandbox with Data ProtectionCaixa com Proteção de Dados Rigorosa
-
+ Security Hardened SandboxCaixa com Segurança Rigorosa
-
+ Sandbox with Data ProtectionCaixa com Proteção de Dados
-
+ Standard Isolation Sandbox (Default)Caixa com Isolamento Padrão (Padrão)
-
+ Application Compartment with Data ProtectionCompartimento de Aplicação com Proteção de Dados
-
+ Application Compartment Box
-
+ Confidential Encrypted Box
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?
@@ -575,17 +580,17 @@ This ensures the utmost level of privacy and data protection within the confiden
Compartimento de Aplicação (SEM Isolamento)
-
+ Remove after useRemover após utilizar
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.Depois que o último processo na caixa encerrar, todos os dados na caixa serão excluídos e a própria caixa será removida.
-
+ Configure advanced optionsDefinir opções avançadas
@@ -962,13 +967,13 @@ You can click Finish to close this wizard.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioureLocalização e comportamento da caixa de areia
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -977,64 +982,64 @@ You can use %USER% to save each users sandbox to an own fodler.
Você pode utilizar %USER% para salvar a caixa de proteção de cada utilizador em uma pasta própria.
-
+ Sandboxed FilesFicheiros da Caixa
-
+ Select DirectorySeleccionar Diretório
-
+ Virtualization schemeEsquema de virtualização
-
+ Version 1Versão 1
-
+ Version 2Versão 2
-
+ Separate user foldersPastas do utilizador separadas
-
+ Use volume serial numbers for drivesUtilizar números de série de volume para unidades
-
+ Auto delete content when last process terminatesAuto apagar conteúdo quando o último processo terminar
-
+ Enable Immediate Recovery of files from recovery locationsActivar recuperação imediata de ficheiros em locais de recuperação
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.A localização da caixa selecionada não é um caminho válido.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?A localização da caixa selecionada existe e não está vazia, é recomendável escolher uma pasta nova ou vazia. Tem certeza de que deseja utilizar uma pasta existente?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.O local da caixa selecionada não foi colocado em uma unidade disponível no momento.
@@ -1295,14 +1300,14 @@ Você pode utilizar %USER% para salvar a caixa de proteção de cada utilizador
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.A nova caixa foi criada usando o novo <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Esquema de Virtualização Versão 2</a>, se você tiver problemas inesperados com esta caixa, mude para o Esquema de Virtualização para a Versão 1 e relate o problema, a opção para alterar esta predefinição pode ser encontrada nas Opções de Caixa no grupo Estrutura de Caixa.
-
+ Don't show this message again.Não mostrar esta mensagem novamente.
@@ -2904,17 +2909,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1A aguar pela pasta: %1
-
+ Deleting folder: %1A apagar pasta: %1
-
+ Merging folders: %1 >> %2A fundir pastas: %1 >> %2
@@ -2923,7 +2928,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
A fundir pastas: %1 >> %2
-
+ Finishing Snapshot Merge...A fundir Instantâneo Finalizada...
@@ -3113,22 +3118,22 @@ Error: %1
-
+ Reset ColumnsRepor Colunas
-
+ Copy CellCopiar Célula
-
+ Copy RowCopiar Linha
-
+ Copy PanelCopiar Painel
@@ -3423,7 +3428,7 @@ Error: %1
-
+ About Sandboxie-PlusAcerca do Sandboxie-Plus
@@ -3650,6 +3655,26 @@ Error: %1
Time|Box Name|File PathHorário|Nome da Caixa|Localização do Ficheiro
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+
@@ -3900,55 +3925,51 @@ Este ficheiro faz parte do Sandboxie e todas as alterações feitas nele serão
-
+ Case SensitiveMaiúsculas e minúsculas
-
+ RegExp
-
+ HighlightRealçar
-
+ CloseFechar
-
+ &Find ...&Localizar ...
-
+ All columnsTodas as colunas
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>Acerca do Sandboxie-Plus</h3><p>Versão %1</p><p>Copyright (c) 2020-2022 by DavidXanatos</p>
+ <h3>Acerca do Sandboxie-Plus</h3><p>Versão %1</p><p>Copyright (c) 2020-2022 by DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- Esta cópia do Sandboxie+ é certificada para: %1
+ Esta cópia do Sandboxie+ é certificada para: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ é gratuito para uso pessoal e não comercial.
+ Sandboxie+ é gratuito para uso pessoal e não comercial.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus é uma continuação de código aberto do Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para mais informações.<br /><br />%3<br /><br />Versão do controlador: %1<br />Recursos: %2<br /><br />Ícones de <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus é uma continuação de código aberto do Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para mais informações.<br /><br />%3<br /><br />Versão do controlador: %1<br />Recursos: %2<br /><br />Ícones de <a href="https://icons8.com">icons8.com</a>
@@ -6079,7 +6100,7 @@ Não vou definir: %2
Você realmente deseja excluir o(s) modelo(s) local(is) selecionado(s)?
-
+ %1 (Current)%1 (Actual)
@@ -6304,35 +6325,35 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new Sandbox
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.
-
+ Save options as new defaults
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)Não exibir a página de resumo no futuro (a menos que opções avançadas tenham sido marcada)
-
+
This Sandbox will be saved to: %1
Essa caixa será salva em: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -6341,21 +6362,21 @@ This box's content will be DISCARDED when its closed, and the box will be r
O conteúdo desta caixa será DESCARTADO quando ela for fechada, e a caixa será removida.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
Esta caixa irá DESCARTAR seu conteúdo quando for fechada, é adequada apenas para dados temporários.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
Os processos nesta caixa não poderão acessar a internet ou a rede local, isso garante que todos os dados acessados permaneçam confidenciais.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6364,14 +6385,14 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
Esta caixa executará o MSIServer (*.msi installer service) com um token do sistema, isso melhora a compatibilidade, mas reduz o isolamento de segurança.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
Os processos nesta caixa pensarão que são executados com privilégios administrativos, sem realmente tê-los, portanto, os instaladores podem ser usados mesmo em uma caixa de segurança reforçada.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6380,7 +6401,7 @@ Processes in this box will be running with a custom process token indicating the
Os processos nesta caixa serão executados com um token de processo personalizado indicando a caixa de areia à qual pertencem.
-
+ Failed to create new box: %1Falha ao criar nova caixa: %1
@@ -8820,27 +8841,27 @@ Por favor, note que este valores são atualmente para o utilizador específico e
QPlatformTheme
-
+ OK
-
+ ApplyAplicar
-
+ CancelCancelar
-
+ &Yes&Sim
-
+ &No&Não
diff --git a/SandboxiePlus/SandMan/sandman_ru.ts b/SandboxiePlus/SandMan/sandman_ru.ts
index cbbc639f..c8488ddd 100644
--- a/SandboxiePlus/SandMan/sandman_ru.ts
+++ b/SandboxiePlus/SandMan/sandman_ru.ts
@@ -131,94 +131,99 @@
CAdvancedPage
-
+ Advanced Sandbox optionsРасширенные параметры песочницы
-
+ On this page advanced sandbox options can be configured.На этой странице можно настроить дополнительные параметры песочницы.
-
+ Network AccessДоступ к сети
-
+ Allow network/internet accessРазрешить доступ к сети/интернету
-
+ Block network/internet by denying access to Network devicesБлокировать доступ к сети/интернету, запрещая доступ к сетевым устройствам
-
+ Block network/internet using Windows Filtering PlatformБлокировка доступа к сети/интернету с помощью Windows Filtering Platform
-
+ Allow access to network files and foldersРазрешить доступ к сетевым файлам и папкам
-
-
+
+ This option is not recommended for Hardened boxesЭтот параметр не рекомендуется для песочниц с усиленной изоляцией
-
+ Admin OptionsПараметры администратора
-
+
+ Drop rights from Administrators and Power Users groups
+ Удаление прав из групп администраторов и опытных пользователей
+
+
+ Make applications think they are running elevatedЗаставить приложения думать, что они работают с повышенными правами
-
+ Allow MSIServer to run with a sandboxed system tokenРазрешить запуск MSIServer с изолированным системным токеном
-
+ Box OptionsОпции песочницы
-
+ Use a Sandboxie login instead of an anonymous tokenИспользовать логин Sandboxie вместо анонимного токена
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxЗапретить программам в песочнице, установленным на хосте, загружать dll из песочницы
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.Эта функция может снизить совместимость, поскольку она также не позволяет процессам, расположенным в песочнице, записывать данные в процессы, расположенные на хосте, и даже запускать их.
-
+ Shared Template
-
+ Shared template mode
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -226,42 +231,42 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.
-
+ Remove defaults if set
-
+ DisabledОтключено
-
+ Use as a template
-
+ Append to the configuration
@@ -278,7 +283,7 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
Чтобы отключить этот шаблон для песочницы, просто снимите флажок с него в списке шаблонов.
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.Использование пользовательского токена Sandboxie позволяет лучше изолировать отдельные песочницы друг от друга, а также показывает в пользовательском столбце диспетчеров задач имя песочницы, к которой принадлежит процесс. Однако у некоторых сторонних решений безопасности могут быть проблемы с пользовательскими токенами.
@@ -429,37 +434,37 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new SandboxСоздать новую песочницу
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. Песочница изолирует вашу хост-систему от процессов, выполняющихся внутри нее, и не позволяет им вносить необратимые изменения в другие программы и данные на вашем компьютере.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.Песочница изолирует вашу хост-систему от процессов, запущенных в ней, и не позволяет им вносить постоянные изменения в другие программы и данные на вашем компьютере. Уровень изоляции влияет на вашу безопасность, а также на совместимость с приложениями, поэтому от типа выбранной песочницы зависит уровень ее изоляции. Sandboxie также может защитить ваши личные данные от доступа со стороны процессов, запущенных под его контролем.
-
+ Enter box name:Введите имя песочницы:
-
+ Select box type:Выберите тип песочницы:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>Песочница с <a href="sbie://docs/security-mode">усиленной безопасностью</a> и <a href="sbie://docs/privacy-mode">защитой данных</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
@@ -468,59 +473,59 @@ The entire user profile remains hidden, ensuring maximum security.
Весь профиль пользователя остается скрытым, что обеспечивает максимальную безопасность.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> SandboxПесочница с <a href="sbie://docs/security-mode">усиленной безопасностью</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.Этот тип песочницы обеспечивает высочайший уровень защиты за счет значительного уменьшения поверхности атаки, подверженной изолированным процессам.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>Песочница с <a href="sbie://docs/privacy-mode">защитой данных</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.В этом типе песочницы изолированным процессам запрещается доступ к каким-либо личным файлам или данным пользователя. Основное внимание уделяется защите пользовательских данных, поэтому
только каталоги C:\Windows и C:\Program Files доступны процессам, работающим в этой песочнице. Это гарантирует, что личные файлы останутся в безопасности.
-
+ Standard SandboxСтандартная песочница
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.Этот тип песочницы предлагает поведение по умолчанию, как в Sandboxie classic. Он предоставляет пользователям знакомую и надежную схему песочницы.
Приложения можно запускать в этой песочнице, гарантируя, что они будут работать в контролируемом и изолированном пространстве.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/compartment-mode">Контейнер для приложений</a> с <a href="sbie://docs/privacy-mode">защитой данных</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.Этот тип песочницы отдает приоритет совместимости, обеспечивая при этом хороший уровень изоляции. Он предназначен для запуска доверенных приложений в отдельных контейнерах.
Хотя уровень изоляции снижен по сравнению с другими типами песочниц, он обеспечивает улучшенную совместимость с широким спектром приложений, обеспечивая бесперебойную работу в изолированной среде.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box<a href="sbie://docs/compartment-mode">Контейнер для приложений</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
@@ -529,62 +534,62 @@ This ensures the utmost level of privacy and data protection within the confiden
Это обеспечивает максимальный уровень конфиденциальности и защиты данных в конфиденциальной изолированной среде.
-
+ Hardened Sandbox with Data ProtectionПесочница с усиленной изоляцией и защитой данных
-
+ Security Hardened SandboxПесочница с усиленной изоляцией
-
+ Sandbox with Data ProtectionПесочница с защитой данных
-
+ Standard Isolation Sandbox (Default)Песочница со стандартной изоляцией (по умолчанию)
-
+ Application Compartment with Data ProtectionКонтейнер для приложений с защитой данных
-
+ Application Compartment BoxКонтейнер для приложений
-
+ Confidential Encrypted BoxКонфиденциальная зашифрованная песочница
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?Для использования зашифрованных песочниц необходимо установить драйвер ImDisk, хотите его скачать и установить?
-
+ Remove after useУдалить после использования
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a><a href="sbie://docs/boxencryption">Зашифруйте</a> содержимое песочницы и установите <a href="sbie://docs/black-box">конфиденциальность</a>
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.После завершения последнего процесса в песочнице, эта песочница и все данные в ней будут удалены.
-
+ Configure advanced optionsНастроить дополнительные параметры
@@ -934,74 +939,74 @@ You can click Finish to close this wizard.
CFilesPage
-
+ Sandbox location and behaviorМестоположение и поведение песочницы
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.На этой странице можно настроить расположение песочницы и ее поведение.
Вы можете использовать %USER%, чтобы сохранить песочницу каждого пользователя в отдельной папке.
-
+ Sandboxed FilesФайлы в песочнице
-
+ Select DirectoryВыбрать каталог
-
+ Virtualization schemeСхема виртуализации
-
+ Version 1Версия 1
-
+ Version 2Версия 2
-
+ Separate user foldersРаздельные папки пользователей
-
+ Use volume serial numbers for drivesИспользовать серийные номера томов для дисков
-
+ Auto delete content when last process terminatesАвтоматическое удаление содержимого при завершении последнего процесса
-
+ Enable Immediate Recovery of files from recovery locationsВключить немедленное восстановление файлов из мест восстановления
-
+ The selected box location is not a valid path.Выбранное расположение песочницы не является допустимым путем.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?Выбранное местоположение песочницы существует и не является пустым, рекомендуется выбрать новую или пустую папку. Вы уверены, что хотите использовать существующую папку?
-
+ The selected box location is not placed on a currently available drive.Выбранное расположение песочницы не размещено на доступном в данный момент диске.
@@ -1208,13 +1213,13 @@ You can use %USER% to save each users sandbox to an own folder.
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.Новая песочница была создана с использованием новой <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">схемы виртуализации версии 2</a>, если у вас возникнут какие-либо непредвиденные проблемы с этой песочницей, переключитесь на схему виртуализации до версии 1 и сообщите о проблеме, возможность изменить этот пресет можно найти в параметрах песочницы в группе "Структура песочницы".
-
+ Don't show this message again.Больше не показывать это сообщение.
@@ -2699,22 +2704,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Ожидание папки: %1
-
+ Deleting folder: %1Удаление папки: %1
-
+ Merging folders: %1 >> %2Слияние папок: %1 и %2
-
+ Finishing Snapshot Merge...Завершение слияния снимков...
@@ -2796,22 +2801,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie-Plus v%1
-
+ Reset ColumnsСбросить столбцы
-
+ Copy CellКопировать ячейку
-
+ Copy RowКопировать строку
-
+ Copy PanelКопировать панель
@@ -3048,7 +3053,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusО Sandboxie-Plus
@@ -3402,55 +3407,51 @@ No will choose: %2
Без песочницы
-
+ Case SensitiveЧувствительный к регистру
-
+ RegExpРегулярное выражение
-
+ HighlightПодсветить
-
+ CloseЗакрыть
-
+ &Find ...Найти (&) ...
-
+ All columnsВсе столбцы
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>О Sandboxie-Plus</h3><p>Версия %1</p><p> Авторское право (c) 2020-2024 DavidXanatos</p>
+ <h3>О Sandboxie-Plus</h3><p>Версия %1</p><p> Авторское право (c) 2020-2024 DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- Эта копия Sandboxie+ сертифицирована для: %1
+ Эта копия Sandboxie+ сертифицирована для: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ бесплатен для личного и некоммерческого использования.
+ Sandboxie+ бесплатен для личного и некоммерческого использования.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus - это продолжение Sandboxie с открытым исходным кодом.<br />Посетите <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> для получения дополнительной информации.<br /><br />%3<br /><br />Версия драйвера: %1<br />Возможности: %2<br /><br />Иконки взяты с <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus - это продолжение Sandboxie с открытым исходным кодом.<br />Посетите <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> для получения дополнительной информации.<br /><br />%3<br /><br />Версия драйвера: %1<br />Возможности: %2<br /><br />Иконки взяты с <a href="https://icons8.com">icons8.com</a>
@@ -4140,6 +4141,26 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Remember choice for later.Запомнить выбор.
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ The selected window is running as part of program %1 in sandbox %2
@@ -5565,7 +5586,7 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Вы действительно хотите удалить выбранные локальные шаблоны?
-
+ %1 (Current)%1 (Текущая)
@@ -5787,76 +5808,76 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new SandboxСоздать новую песочницу
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.Почти завершено, нажмите "Готово", чтобы создать новую песочницу и завершить работу мастера.
-
+ Save options as new defaultsСохранить параметры как новые значения по умолчанию
-
+ Skip this summary page when advanced options are not setПропустить эту страницу сводки, если расширенные параметры не установлены
-
+
This Sandbox will be saved to: %1
Эта песочница будет сохранена в: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
Содержимое этой песочницы будет ПОТЕРЯНО, когда она будет закрыта, и песочница будет удалена.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
Эта песочница ТЕРЯЕТ свое содержимое, при закрытии, она подходит только для временных данных.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
Процессы в этой песочнице не смогут получить доступ к Интернету или локальной сети, это гарантирует, что все данные, к которым осуществляется доступ, останутся конфиденциальными.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
В этой песочнице будет запускаться MSIServer (служба установщика *.msi) с системным токеном, это улучшает совместимость, но снижает изоляцию безопасности.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
Процессы в этой песочнице будут думать, что они запущены с правами администратора, но на самом деле не имеют их, поэтому установщики можно использовать даже в защищенной песочнице.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
Процессы в этой песочнице будут запускаться с пользовательским токеном процесса, указывающим на песочницу, к которой они принадлежат.
-
+ Failed to create new box: %1Не удалось создать новую песочницу: %1
@@ -8010,27 +8031,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OKОК
-
+ ApplyПрименить
-
+ CancelОтмена
-
+ &YesДа (&Y)
-
+ &NoНет (&N)
diff --git a/SandboxiePlus/SandMan/sandman_sv_SE.ts b/SandboxiePlus/SandMan/sandman_sv_SE.ts
index 1a4d1f16..585e4936 100644
--- a/SandboxiePlus/SandMan/sandman_sv_SE.ts
+++ b/SandboxiePlus/SandMan/sandman_sv_SE.ts
@@ -191,96 +191,101 @@
CAdvancedPage
-
+ Advanced Sandbox optionsAvancerade sandlådealternativ
-
+ On this page advanced sandbox options can be configured.På denna sida kan avancerade sandlådealternativ konfigureras.
-
+ Network AccessNätverkstillgång
-
+ Allow network/internet accessTillåt nätverks-/internettillgång
-
+ Block network/internet by denying access to Network devicesBlockera nätverk/internet via nekande av tillgång till Nätverksenheter
-
+ Block network/internet using Windows Filtering PlatformBlockera nätverk/internet som använder Windows Filtering Platform
-
+ Allow access to network files and foldersAllow access to network files and fodlersTillåt tillgång till nätverksfiler och -mappar
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxesDetta alternativ rekommenderas inte för härdade lådor
-
+ Admin OptionsAdminalternativ
-
+
+ Drop rights from Administrators and Power Users groups
+ Skippa rättigheter från Administratörs- och Power Users-grupper
+
+
+ Make applications think they are running elevatedFå applikationer att tro att de körs upphöjda
-
+ Allow MSIServer to run with a sandboxed system tokenTillåt MSIServer att köra med ett sandlådat systemtecken
-
+ Box OptionsLådalternativ
-
+ Use a Sandboxie login instead of an anonymous tokenAnvänd en Sandboxie-inloggning istället för ett anonymt tecken
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxFörhindra sandlådade program installerade på värden från att ladda DLL:s från sandlådan
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.Denna egenskap kan reducera kompatibilitet då den även förhindrar lådlokaliserade processer från att skriva till värdlokaliserade sådana och även starta dem.
-
+ Shared TemplateDelad mall
-
+ Shared template modeDelat mallläge
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -291,27 +296,27 @@ För att ändra mallens inställningar, lokalisera helt enkelt '%1' -m
För att inaktivera denna mall för en sandlåda, avbocka den helt enkelt i mall listan.
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.Detta alternativ adderar inga inställningar till lådkonfigurationen och tar inte bort de förvalda lådinställningarna baserade på borttagningsinställningarna inom mallen.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.Detta alternativ adderar den delade mallen till lådkonfigurationen som en lokal mall och kanske också tar bort de förvalda lådinställningarna baserade på borttagningsinställningarna inom mallen.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.Detta alternativ adderar inställningarna från den delade mallen till lådkonfigurationen och kanske också tar bort de förvalda lådinställningarna baserat på borttagningsinställningarna inom mallen.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.Detta alternativ adderar inte några inställningar till lådkonfigurationen, men kanske tar bort de förvalda lådinställningarna baserat på borttagningsinställningarna inom mallen.
-
+ Remove defaults if setTa bort förvalda om angivet
@@ -326,17 +331,17 @@ För att ändra mallinställningarna, lokalisera helt enkelt "DeladMall&quo
För att inaktivera denna mall för en sandlåda, avbocka den helt enkelt i malllistan.
-
+ DisabledInaktiverad
-
+ Use as a templateAnvänd som en mall
-
+ Append to the configurationBifoga till konfigurationen
@@ -345,7 +350,7 @@ För att inaktivera denna mall för en sandlåda, avbocka den helt enkelt i mall
Använd en Sandboxie-inloggning istället för ett anonymt tecken (experimentellt)
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.Använda ett anpassat Sandboxie-tecken tillåter att bättre isolera individuella sandlådor från varandra, och det visar i användarkolumnen hos aktivitetshanterare namnet på lådan en process tillhör. Vissa 3:dje parts säkerhetslösningar kan dock ha problem med anpassade tecken.
@@ -512,22 +517,22 @@ utökas till 512-bitar med tillämpandet av Leet (L337) talmodifikationer, och
CBoxTypePage
-
+ Create new SandboxSkapa ny sandlåda
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. En sandlåda isolerar ditt värdsystem från processer körandes i lådan, den förhindrar dem från att göra permanenta ändringar till andra program och data i din dator.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.En sandlåda isolerar ditt värdsystem från processer körandes i lådan, den förhindrar dem från att göra permanenta ändringar i andra program och i data i din dator. Nivån av isolering påverkar din säkerhet såväl som kompatibiliteten med applikationer, därav kommer det vara olika nivåer av isolering beroende på den valda lådtypen. Sandboxie kan också skydda dina personliga data från tillgång av processer körandes under dess övervakning.
-
+ Enter box name:För in lådnamn:
@@ -536,18 +541,18 @@ utökas till 512-bitar med tillämpandet av Leet (L337) talmodifikationer, och
Ny låda
-
+ Select box type:Sellect box type:Välj lådtyp:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/security-mode">Säkerhetshärdad</a> sandlåda med <a href="sbie://docs/privacy-mode">dataskydd</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
@@ -556,59 +561,59 @@ Den begränsar strikt tillgång till användardata, tillåter processer i denna
Hela användarprofilen förblir dold, säkerställande maximal säkerhet.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox<a href="sbie://docs/security-mode">Säkerhetshärdad</a> sandlåda
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.Denna lådtyp erbjuder den högsta nivån av skydd via signifikant reducering av utsatt attackyta hos sandlådade processer.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>Sandlåda med <a href="sbie://docs/privacy-mode">dataskydd</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.I denna lådtyp, är sandlådade processer förhindrade från att tillgå några personliga användarfiler eller data. Fokuset är på att skydda användardata, och då är,
endast C:\Windows och C:\Program Files kataloger tillgängliga till processer körandes i denna sandlåda. Detta säkerställer att personliga filer förblir säkra.
-
+ Standard SandboxStandardsandlåda
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.Denna lådtyp erbjuder standardbeteendet hos Sandboxie classic. Det tillhandahåller användare med ett familjärt och pålitligt sandboxningsarrangemang.
Applikationer kan köras i denna sandlåda, säkerställandes att de opererar inom ett kontrollerat och isolerat utrymme.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/compartment-mode">Applikationutrymmeslåda</a> med <a href="sbie://docs/privacy-mode">dataskydd</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.Denna lådtyp prioriterar kompatibilitet medans fortfarande tillhandahålla en god nivå av isolering. Den är designad för att köra pålitliga applikationer i separata utrymmen.
Emedan nivån av isolering är reducerad jämfört med andra lådtyper, erbjuder den förbättrad kompatibilitet med ett brett omfång av applikationer, säkerställandes smidigt opererande inom den sandlådade miljön.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box<a href="sbie://docs/compartment-mode">Applikationutrymmeslåda</a>
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a><a href="sbie://docs/boxencryption">Kryptera</a> lådinnehåll och ange <a href="sbie://docs/black-box">Konfidentiellt</a>
@@ -617,7 +622,7 @@ Emedan nivån av isolering är reducerad jämfört med andra lådtyper, erbjuder
<a href="sbie://docs/boxencryption">Krypterad</a> <a href="sbie://docs/black-box">konfidentiell</a> låda
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
@@ -626,42 +631,42 @@ Tillgång till den virtuella disken vid montering är begränsad till program k
Detta säkerställer den yttersta nivån av integritets- och dataskydd inom den konfidentiella sandlådemiljön.
-
+ Hardened Sandbox with Data ProtectionHärdad sandlåda med dataskydd
-
+ Security Hardened SandboxSäkerhetshärdad sandlåda
-
+ Sandbox with Data ProtectionSandlåda med dataskydd
-
+ Standard Isolation Sandbox (Default)Standardisolerad sandlåda (standard)
-
+ Application Compartment with Data ProtectionApplikationsutrymme med dataskydd
-
+ Application Compartment BoxApplikationutrymmeslåda
-
+ Confidential Encrypted BoxKonfidentiell krypterad låda
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?För att använda krypterade lådor behöver du installera ImDisk:s drivrutin, vill du nerladda och installera den?
@@ -671,17 +676,17 @@ Detta säkerställer den yttersta nivån av integritets- och dataskydd inom den
Applikationsutrymme (INGEN isolering)
-
+ Remove after useTa bort efter användande
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.Efter att den sista processen i lådan avslutats, kommer alla data i lådan raderas och själva lådan tas bort.
-
+ Configure advanced optionsKonfigurera avancerade alternativ
@@ -1069,13 +1074,13 @@ Du kan klicka på Avsluta för att stänga denna guide.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioureSandlådeplats och beteende
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -1084,64 +1089,64 @@ You can use %USER% to save each users sandbox to an own fodler.
Du kan använda %ANVÄNDARE% för att spara varje användares sandlåda till en egen mapp.
-
+ Sandboxed FilesSandlådade filer
-
+ Select DirectoryVälj katalog
-
+ Virtualization schemeVirtualiseringsschema
-
+ Version 1Version 1
-
+ Version 2Version 2
-
+ Separate user foldersSeparata användarmappar
-
+ Use volume serial numbers for drivesAnvänd volymserienummer för enheter
-
+ Auto delete content when last process terminatesAutoradera innehåll när sista processen avslutar
-
+ Enable Immediate Recovery of files from recovery locationsAktivera Omedelbart återställande av filer från återställningsplatser
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.Den valda lådplatsen är inte en giltig sökväg.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?Den valda lådplatsen existerar och är inte tom, det rekommenderas att välja en ny eller tom mapp. Säkert att du vill använda en existerande mapp?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.Den valda lådplatsen är inte placerad på en nuvarande tillgänglig enhet.
@@ -1395,14 +1400,14 @@ Du kan använda %ANVÄNDARE% för att spara varje användares sandlåda till en
Delad mall
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.Den nya sandlådan har skapats användandes det nya <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">virtualiseringsschemat Version 2</a>, om du erfar några oväntade problem med denna låda, vänligen byt till virtualiseringsschemat Version 1 och rapportera problemet. Alternativet att ändra denna förinställning kan hittas i Filalternativ > Lådstruktur.
-
+ Don't show this message again.Visa inte detta meddelande igen.
@@ -2990,22 +2995,22 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
CSandBox
-
+ Waiting for folder: %1Väntar på mapp: %1
-
+ Deleting folder: %1Raderar mapp: %1
-
+ Merging folders: %1 >> %2Sammanför mappar: %1 >> %2
-
+ Finishing Snapshot Merge...Slutför sammanförande av ögonblicksbilder...
@@ -3170,22 +3175,22 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
Den valda 7z-filen är INTE ett lådarkiv
-
+ Reset ColumnsÅterställ kolumner
-
+ Copy CellKopiera cellen
-
+ Copy RowKopiera raden
-
+ Copy PanelKopiera panelen
@@ -3472,7 +3477,7 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
-
+ About Sandboxie-PlusOm Sandboxie-Plus
@@ -4473,35 +4478,55 @@ Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs
Osandlådad
-
+ Case SensitiveSkiftlägeskänslig
-
+ RegExpRegExp
-
+ HighlightMarkera
-
+ CloseStäng
-
+ &Find ...&Hitta ...
-
+ All columnsAlla kolumner
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Failed to Create Box ArchiveMisslyckades att skapa lådarkiv
@@ -4595,25 +4620,21 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
<p>En Sandboxie-Plus uppdatering har nerladdats till följande plats:</p><p><a href="%2">%1</a></p><p>Vill du påbörja installationen? Om några program körs sandlådade, kommer de avslutas.</p>
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>Om Sandboxie-Plus</h3><p>Version %1</p><p>Upphovsrättigheter (c) 2020-2024 av DavidXanatos</p>
+ <h3>Om Sandboxie-Plus</h3><p>Version %1</p><p>Upphovsrättigheter (c) 2020-2024 av DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- Denna kopia av Sandboxie-Plus är certifierad för: %1
+ Denna kopia av Sandboxie-Plus är certifierad för: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie-Plus är gratis för personlig och icke-kommersiell användning.
+ Sandboxie-Plus är gratis för personlig och icke-kommersiell användning.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus är en öppen källa fortsättning av Sandboxie.<br />Besök <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> för mer information.<br /><br />%3<br /><br />Drivrutinsversion: %1<br />Funktioner: %2<br /><br />Ikoner från <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus är en öppen källa fortsättning av Sandboxie.<br />Besök <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> för mer information.<br /><br />%3<br /><br />Drivrutinsversion: %1<br />Funktioner: %2<br /><br />Ikoner från <a href="https://icons8.com">icons8.com</a>Checking for certificate...
@@ -6135,7 +6156,7 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Vill du verkligen radera de(n) valda lokala mall(arna)(en)?
-
+ %1 (Current)%1 (Nuvarande)
@@ -6366,35 +6387,35 @@ Försök skicka utan bifogad logg.
CSummaryPage
-
+ Create the new SandboxSkapa den nya sandlådan
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.Nästan avklarat, klicka på Avsluta för att skapa en ny sandlåda och avsluta guiden.
-
+ Save options as new defaultsSpara alternativen som ny standard
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)Skippa denna summeringssida när avancerade alternativ inte är angivna
-
+
This Sandbox will be saved to: %1
Denna sandlåda kommer sparas till: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -6403,21 +6424,21 @@ This box's content will be DISCARDED when its closed, and the box will be r
Denna lådas innehåll kommer KASSERAS när den stängs, och lådan tas bort.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
Denna låda kommer KASSERA dess innehåll när den stängs, den är endast lämplig för temporära data.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
Processer i denna låda kommer inte kunna tillgå internet eller det lokala nätverket, detta säkerställer att tillgången data förblir konfidentiell.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6426,14 +6447,14 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
Denna låda kommer köra MSIServer (*.msi installer service) med ett systemtecken, detta förbättrar kompatibilitet men reducerar säkerhetsisoleringen.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
Processer i denna låda kommer tro att de körs med adminprivilegier, utan att faktiskt ha dem, därmed kan installerare användas även i en säkerhetshärdad låda.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6442,7 +6463,7 @@ Processes in this box will be running with a custom process token indicating the
Processer i denna låda kommer att köra med ett anpassat processtecken indikerandes sandlådan de tillhör.
-
+ Failed to create new box: %1Lyckades inte skapa ny låda: %1
@@ -8884,27 +8905,27 @@ istället för "*".
QPlatformTheme
-
+ OKOK
-
+ ApplyTillämpa
-
+ CancelAvbryt
-
+ &Yes&Ja
-
+ &No&Nej
diff --git a/SandboxiePlus/SandMan/sandman_tr.ts b/SandboxiePlus/SandMan/sandman_tr.ts
index ae539cd5..bc10b87b 100644
--- a/SandboxiePlus/SandMan/sandman_tr.ts
+++ b/SandboxiePlus/SandMan/sandman_tr.ts
@@ -131,93 +131,98 @@
CAdvancedPage
-
+ Advanced Sandbox optionsGelişmiş Korumalı Alan Seçenekleri
-
+ On this page advanced sandbox options can be configured.Bu sayfada gelişmiş korumalı alan seçenekleri yapılandırılabilir.
-
+ Network AccessAğ Erişimi
-
+ Allow network/internet accessAğ/internet erişimine izin ver
-
+ Block network/internet by denying access to Network devicesAğ cihazlarına erişimi reddederek ağı/interneti engelleyin
-
+ Block network/internet using Windows Filtering PlatformWindows Filtreleme Platformunu kullanarak ağı/interneti engelle
-
+ Allow access to network files and foldersAğ dosyalarına ve klasörlerine erişime izin ver
-
-
+
+ This option is not recommended for Hardened boxesGüçlendirilmiş alanlar için bu seçenek önerilmez
-
+ Admin OptionsYönetici Seçenekleri
-
+
+ Drop rights from Administrators and Power Users groups
+ Yöneticiler ve Yetkili Kullanıcılar grupları haklarını bırak
+
+
+ Make applications think they are running elevatedUygulamaların yetkilendirilmiş çalıştıklarını düşünmelerini sağla
-
+ Allow MSIServer to run with a sandboxed system tokenMSIServer'ın korumalı alan sistem belirteci ile çalışmasına izin ver
-
+ Box OptionsAlan Seçenekleri
-
+ Use a Sandboxie login instead of an anonymous tokenAnonim kullanıcı yerine Sandboxie oturum açma belirteci kullan
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxSistemde yüklü korumalı alanda çalışan programların alan içinden DLL yüklemesini önle
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.Bu özellik, alanda konumlu işlemlerin ana sistemde konumlu olanlara yazmasını ve hatta onları başlatmasını da engellediği için uyumluluğu azaltabilir.
-
+ Shared TemplatePaylaşımlı Şablon
-
+ Shared template modePaylaşımlı şablon modu
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -225,47 +230,47 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
Bu ayar, korumalı alan yapılandırmasına yerel bir şablon veya bunun ayarlarını ekler, böylece bu şablondaki ayarlar korumalı alanlar arasında paylaşılır. Ancak paylaşım modu olarak 'Şablon olarak kullan' seçeneği seçildiğinde bazı ayarların durumu kullanıcı arayüzüne yansımayabilir. Şablonun ayarlarını değiştirmek için, Korumalı Alan Seçenekleri altındaki Uygulama Şablonları listesinde '%1' şablonunu bulmanız ve ardından düzenlemek için üzerine çift tıklamanız yeterlidir. Bu şablonu bir korumalı alan için devre dışı bırakmak istiyorsanız şablon listesindeki işaretini kaldırmanız yeterlidir.
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.Bu seçenek, korumalı alan yapılandırmasına herhangi bir ayar eklemez ve şablon içindeki kaldırma ayarlarına bağlı olarak varsayılan korumalı alan ayarlarını kaldırmaz.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.Bu seçenek, paylaşımlı şablonu korumalı alan yapılandırmasına bir yerel şablon olarak ekler ve şablon içindeki kaldırma ayarlarına bağlı olarak varsayılan korumalı alan ayarlarını kaldırabilir.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.Bu seçenek, paylaşımlı şablondaki ayarları korumalı alan yapılandırmasına ekler ve ayrıca şablon içindeki kaldırma ayarlarına bağlı olarak varsayılan korumalı alan ayarlarını kaldırabilir.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.Bu seçenek, korumalı alan yapılandırmasına herhangi bir ayar eklemez ancak şablon içindeki kaldırma ayarlarına bağlı olarak varsayılan korumalı alan ayarlarını kaldırabilir.
-
+ Remove defaults if setAyarlıysa varsayılanları kaldır
-
+ DisabledDevre dışı
-
+ Use as a templateŞablon olarak kullan
-
+ Append to the configurationYapılandırmaya ekle
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.Özel bir Sandboxie belirteci kullanmak, birbirinden ayrı korumalı alanların daha iyi yalıtılmasını sağlar ve görev yöneticilerinin kullanıcı sütununda bir işlemin hangi alana ait olduğunu gösterir. Ancak bazı 3. parti güvenlik çözümleri özel belirteçlerle sorun yaşayabilir.
@@ -415,38 +420,38 @@ Leet (L337) Konuşma değişikliklerinin uygulanmasıyla 512 bit'e çıkar
CBoxTypePage
-
+ Create new SandboxYeni Korumalı Alan Oluştur
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. Korumalı alan, ana sisteminizi korumalı alan içinde çalışan işlemlerden yalıtır ve onların diğer programlarda ve bilgisayarınızdaki verilerde kalıcı değişiklikler yapmasını engeller.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.Korumalı alan, ana sisteminizi korumalı alan içinde çalışan işlemlerden yalıtır ve onların diğer programlarda ve bilgisayarınızdaki verilerde kalıcı değişiklikler yapmasını engeller. Yalıtım düzeyi, güvenliği ve uygulama uyumluluğunu etkiler, dolayısıyla seçilmiş 'Alan Türüne' bağlı olarak farklı bir yalıtım düzeyi sağlayacaktır. Sandboxie ayrıca kişisel verilerinize, kendi gözetimi altında çalışan işlemler tarafından erişilmesine karşı da koruyabilir.
-
+ Enter box name:'Sandbox' için 'Korumalı Alan' kullanıldığından dolayı 'Box' için de 'Alan' kullanıldı.Alan adı girin:
-
+ Select box type:Alan türü seçin:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/privacy-mode">Veri Korumalı</a> <a href="sbie://docs/security-mode">Güçlendirilmiş</a> Alan
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
@@ -455,58 +460,58 @@ Kullanıcı verilerine erişimi katı bir biçimde sınırlandırarak bu alandak
Kullanıcı profilinin tamamı gizlenerek en yüksek derecede güvenlik sağlanır.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox<a href="sbie://docs/security-mode">Güvenliği Güçlendirilmiş</a> Alan
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.Bu alan türü, korumalı alan işlemlerinin maruz kalabileceği saldırı yüzeyini önemli ölçüde azaltarak en yüksek derecede koruma sağlar.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/privacy-mode">Veri Korumalı</a> Alan
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.Bu alan türü, korumalı alan işlemlerinin herhangi bir kişisel kullanıcı dosyasına veya verisine erişimi engeller. Odak noktası ise kullanıcı verilerinin korunmasıdır.
Bu nedenle bu korumalı alanda çalışan işlemler yalnızca C:\Windows ve C:\Program Files dizinlerine erişebilir. Bu kısıtlama, kişisel dosyaların güvende kalmasını sağlar.
-
+ Standard SandboxStandart Korumalı Alan
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.Bu alan türü, Sandboxie Classic'in varsayılan davranışını sunar. Kullanıcıların alıştığı ve güvenilir bir korumalı alan şeması sunar. Uygulamalar bu korumalı alanda çalıştırılarak denetimli ve yalıtılmış bir alanda çalışmaları sağlanır.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/privacy-mode">Veri Korumalı</a> <a href="sbie://docs/compartment-mode">Uygulama Bölmesi</a> Alanı
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.Bu alan türü, uyumluluğa öncelik verirken iyi düzeyde yalıtım sağlar. Güvenilir uygulamaları ayrı bölmelerde çalıştırmak için tasarlanmıştır.
Diğer alan türlerine göre yalıtım seviyesi azalırken, çok çeşitli uygulamalarla uyumluluğu arttırır ve böylece korumalı alanda sorunsuz çalışmalarını sağlar.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box<a href="sbie://docs/compartment-mode">Uygulama Bölmesi</a> Alanı
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
@@ -515,62 +520,62 @@ Korumalı alan sisteme bağlandığında onun sanal diskine erişebilecek progra
Bu şekilde gizli korumalı alan ortamında en yüksek düzeyde gizlilik ve veri koruması sağlanmış olur.
-
+ Hardened Sandbox with Data ProtectionVeri Korumalı Güçlendirilmiş Alan
-
+ Security Hardened SandboxGüvenliği Güçlendirilmiş Alan
-
+ Sandbox with Data ProtectionVeri Korumalı Alan
-
+ Standard Isolation Sandbox (Default)Standart Yalıtımlı Korumalı Alan (Varsayılan)
-
+ Application Compartment with Data ProtectionVeri Korumalı Uygulama Bölmesi
-
+ Application Compartment BoxUygulama Bölmesi
-
+ Confidential Encrypted BoxGizli Şifreli Alan
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?Şifreli alanları kullanmak için ImDisk sürücüsünü yüklemeniz gerekir. Şimdi indirip yüklemek ister misiniz?
-
+ Remove after useKullanıldıktan sonra kaldır
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a>Alan içeriğini <a href="sbie://docs/boxencryption">Şifrele</a> ve <a href="sbie://docs/black-box">Gizle</a>
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.Alandaki son işlem sona erdikten sonra alandaki tüm verilerle birlikte alanın kendisi de kaldırılacaktır.
-
+ Configure advanced optionsGelişmiş seçenekleri yapılandır
@@ -920,74 +925,74 @@ Bu sihirbazı kapatmak için Son'a tıklayabilirsiniz.
CFilesPage
-
+ Sandbox location and behaviorKorumalı Alan Konumu ve Davranışı
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.Bu sayfadan korumalı alan konumu ve davranışı özelleştirilebilir.
Her kullanıcının korumalı alanını kendi klasörüne kaydetmek için %USER% kullanabilirsiniz.
-
+ Sandboxed FilesKorumalı Alan Dosyaları
-
+ Select DirectoryDizin Seç
-
+ Virtualization schemeSanallaştırma şeması
-
+ Version 1Sürüm 1
-
+ Version 2Sürüm 2
-
+ Separate user foldersAyrı kullanıcı klasörleri
-
+ Use volume serial numbers for drivesSürücüler için birim seri numaralarını kullan
-
+ Auto delete content when last process terminatesSon işlem sona erdiğinde içeriği otomatik olarak sil
-
+ Enable Immediate Recovery of files from recovery locationsKurtarma konumlarındaki dosyalar için Anında Kurtarmayı etkinleştir
-
+ The selected box location is not a valid path.Seçilen alan konumu geçerli bir yol değildir.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?Seçilen alan konumu zaten mevcut ve boş değil, yeni veya boş bir klasör seçmeniz önerilir. Mevcut klasörü kullanmak istediğinizden emin misiniz?
-
+ The selected box location is not placed on a currently available drive.Seçilen alan konumu şu anda kullanılabilir bir sürücüde bulunmuyor.
@@ -1183,13 +1188,13 @@ Her kullanıcının korumalı alanını kendi klasörüne kaydetmek için %USER%
Paylaşımlı Şablon
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.Yeni korumalı alan, yeni <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Sanallaştırma Şeması Sürüm 2</a> kullanılarak oluşturulmuştur. Bu alanla ilgili herhangi bir beklenmeyen sorunla karşılaşırsanız, lütfen Sanallaştırma Şeması Sürüm 1'e geçip sorunu bize bildirin. Bu ön ayarı değiştirmek için Alan Seçenekleri sayfasındaki Dosya Seçenekleri grubunda bulunan Alan Yapısı bölümüne bakabilirsiniz.
-
+ Don't show this message again.Bu mesajı bir daha gösterme.
@@ -2673,22 +2678,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Klasör bekleniyor: %1
-
+ Deleting folder: %1Klasör siliniyor: %1
-
+ Merging folders: %1 >> %2Klasörler birleştiriliyor: %1 >> %2
-
+ Finishing Snapshot Merge...Anlık Görüntü Birleştirme Tamamlanıyor...
@@ -2797,7 +2802,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusSandboxie-Plus Hakkında
@@ -3477,20 +3482,40 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Seçimi sonrası için hatırla.
-
+ Copy CellHücreyi Kopyala
-
+ Copy RowSatırı Kopyala
-
+ Copy PanelPaneli Kopyala
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Failed to stop all Sandboxie components
@@ -3533,7 +3558,7 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Bu adda bir korumalı alan zaten var
-
+ Reset ColumnsSütunları Sıfırla
@@ -3691,19 +3716,16 @@ Hayır şunları seçer: %2
Seçilen özellik seti yalnızca proje destekçileri tarafından kullanılabilir. Bu özellik setinin destekçi sertifikası olmadan etkinleştirildiği bir alanda başlatılan işlemler 5 dakika sonra sonlandırılacaktır.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Proje destekçisi olmak</a> için bir <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">destekçi sertifikası</a> edinin
- This copy of Sandboxie+ is certified for: %1
- Sandboxie+'nın bu kopyası şu kişiler için sertifikalandırılmıştır: %1
+ Sandboxie+'nın bu kopyası şu kişiler için sertifikalandırılmıştır: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+, kişisel ve ticari olmayan kullanım için ücretsizdir.
+ Sandboxie+, kişisel ve ticari olmayan kullanım için ücretsizdir.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus, Sandboxie'nin açık kaynaklı bir devamıdır.<br />Daha fazla bilgi için <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> adresini ziyaret edin.<br /><br />%3<br /><br />Sürücü versiyonu: %1<br />Özellikler: %2<br /><br />Simgeler için <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus, Sandboxie'nin açık kaynaklı bir devamıdır.<br />Daha fazla bilgi için <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> adresini ziyaret edin.<br /><br />%3<br /><br />Sürücü versiyonu: %1<br />Özellikler: %2<br /><br />Simgeler için <a href="https://icons8.com">icons8.com</a>
@@ -4023,39 +4045,38 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Korumasız
-
+ Case SensitiveHarfe Duyarlı
-
+ RegExpDüzİfa
-
+ HighlightVurgula
-
+ CloseKapat
-
+ &Find ...&Bul ...
-
+ All columnsTüm Sütunlar
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
- <h3>Sandboxie-Plus hakkında</h3><p>Sürüm %1</p><p>Telif hakkı (c) 2020-2024, DavidXanatos</p>
+ <h3>Sandboxie-Plus hakkında</h3><p>Sürüm %1</p><p>Telif hakkı (c) 2020-2024, DavidXanatos</p>
@@ -5521,7 +5542,7 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Seçili yerel şablonları gerçekten silmek istiyor musunuz?
-
+ %1 (Current)%1 (Kullanılan)
@@ -5753,76 +5774,76 @@ Günlük eklemeden göndermeyi deneyin.
CSummaryPage
-
+ Create the new SandboxYeni Korumalı Alanı Oluştur
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.Neredeyse tamamlandı, yeni bir korumalı alan oluşturmak ve sihirbazı tamamlamak için Bitiş'e tıklayın.
-
+ Save options as new defaultsSeçenekleri yeni varsayılanlar olarak kaydet
-
+ Skip this summary page when advanced options are not setGelişmiş seçenekler ayarlanmadığında bu özet sayfasını atla
-
+
This Sandbox will be saved to: %1
Bu Korumalı Alan şuraya kaydedilecek: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
Bu alandaki son işlem sona erdikten sonra alanın içeriği ATILACAKTIR ve alan kaldırılacaktır.
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
Bu alan kapandığında kendi içeriğini ATACAKTIR, yalnızca geçici veriler için uygundur.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
Bu alandaki işlemler internete veya yerel ağa erişemez, böylece erişilen tüm verilerin gizli kalmasını sağlar.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
Bu alan, MSIServer'ı (*.msi yükleyici hizmeti) bir sistem belirteci ile çalıştıracaktır, bu uyumluluğu artırır ancak güvenlik yalıtımını azaltır.
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
Bu alandaki işlemler, aslında yönetici ayrıcalıklarına sahip olmadan, yönetici ayrıcalıklarıyla çalıştırıldıklarını düşünecektir. Böylece yükleyiciler güvenliği güçlendirilmiş bir alanda bile kullanılabilir.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
Bu alandaki işlemler, ait oldukları korumalı alanı belirten özel bir işlem belirteci ile çalışacaktır.
-
+ Failed to create new box: %1Yeni alan oluşturulamadı: %1
@@ -7963,27 +7984,27 @@ The process match level has a higher priority than the specificity and describes
QPlatformTheme
-
+ OKTAMAM
-
+ ApplyUygula
-
+ Cancelİptal
-
+ &Yes&Evet
-
+ &No&Hayır
diff --git a/SandboxiePlus/SandMan/sandman_uk.ts b/SandboxiePlus/SandMan/sandman_uk.ts
index f4a81b06..0632fa96 100644
--- a/SandboxiePlus/SandMan/sandman_uk.ts
+++ b/SandboxiePlus/SandMan/sandman_uk.ts
@@ -135,97 +135,102 @@
CAdvancedPage
-
+ Advanced Sandbox options
-
+ On this page advanced sandbox options can be configured.
-
+ Network Access
-
+ Allow network/internet access
-
+ Block network/internet by denying access to Network devices
-
+ Block network/internet using Windows Filtering Platform
-
+ Allow access to network files and foldersAllow access to network files and fodlers
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxes
-
+ Admin Options
-
+
+ Drop rights from Administrators and Power Users groups
+ Прибрати права в групи Адміністраторів
+
+
+ Make applications think they are running elevated
-
+ Allow MSIServer to run with a sandboxed system token
-
+ Box OptionsНалаштування пісочниці
-
+ Use a Sandboxie login instead of an anonymous token
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.
-
+ Shared Template
-
+ Shared template mode
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -233,42 +238,42 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.
-
+ Remove defaults if set
-
+ DisabledВимкнений
-
+ Use as a template
-
+ Append to the configuration
@@ -277,7 +282,7 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
Використовувати логін Sandboxie замість анонімного токена (експериментально)
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.
@@ -427,22 +432,22 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new Sandbox
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.Пісочниця ізольовує Вашу систему від процесів, які є в пісочниці, це захищає від змін в інших програмах та даних на вашому комп'ютері. Рівень безпеки впливає на Вашу безпеку, так й на сумісність з іншими додатками, кожний тип пісочниці має свій рівень безпеки. Sandboxie може захистити Ваші персональні файли від процесів, які виконані у пісочниці.
-
+ Enter box name:
@@ -451,136 +456,136 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
Новий контейнер
-
+ Select box type:Sellect box type:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.
-
+ Standard Sandbox
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
-
+ Hardened Sandbox with Data ProtectionЗміцнений контейнер зі захистом даних
-
+ Security Hardened SandboxЗміцнений контейнер
-
+ Sandbox with Data ProtectionКонтейнер зі захистом даних
-
+ Standard Isolation Sandbox (Default)Стандартний ізольований контейнер (За замовчуванням)
-
+ Application Compartment with Data ProtectionКонтейнер для додатків зі захистом даних
-
+ Application Compartment Box
-
+ Confidential Encrypted Box
-
+ Remove after use
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.
-
+ Configure advanced options
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?
@@ -936,13 +941,13 @@ You can click Finish to close this wizard.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioure
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -950,64 +955,64 @@ You can use %USER% to save each users sandbox to an own fodler.
-
+ Sandboxed Files
-
+ Select DirectoryОберіть каталог
-
+ Virtualization scheme
-
+ Version 1
-
+ Version 2
-
+ Separate user foldersРозділити папки користувачів
-
+ Use volume serial numbers for drives
-
+ Auto delete content when last process terminates
-
+ Enable Immediate Recovery of files from recovery locations
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.
@@ -1255,14 +1260,14 @@ You can use %USER% to save each users sandbox to an own fodler.
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.
-
+ Don't show this message again.Не показувати це повідомлення знову.
@@ -2817,22 +2822,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Очікування папки: %1
-
+ Deleting folder: %1Видалення папки: %1
-
+ Merging folders: %1 >> %2Злиття папок: %1 та %2
-
+ Finishing Snapshot Merge...Завершення злиття знімків...
@@ -2953,22 +2958,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Reset ColumnsСкинути налаштування стовців
-
+ Copy CellСкопіювати клітинку
-
+ Copy RowСкопіювати рядок
-
+ Copy PanelСкопіювати панель
@@ -3257,7 +3262,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusПро Sandboxie-Plus
@@ -3756,25 +3761,21 @@ Note: The update check is often behind the latest GitHub release to ensure that
<p>Оновлення Sandboxie-Plus завантажено в таке розташування:</p><p><a href="%2">%1</a></p><p>Ви хочете почати встановлення? Якщо будь-які програми запущені у пісочниці, вони будуть зупинені.</p>
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>Про Sandboxie-Plus</h3><p>Версія %1</p><p>Copyright (c) 2020-2022 by DavidXanatos</p>
+ <h3>Про Sandboxie-Plus</h3><p>Версія %1</p><p>Copyright (c) 2020-2022 by DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- Ця копія Sandboxie+ зарестрована для: %1
+ Ця копія Sandboxie+ зарестрована для: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ безкоштовний для персонального та некомерційного викоростання.
+ Sandboxie+ безкоштовний для персонального та некомерційного викоростання.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus - це продовження Sandboxie з відкритим кодом.<br />Відвідайте <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> для більш детальної інформації.<br /><br />%3<br /><br />Версія драйвера: %1<br />Особливості: %2<br /><br />Зображення з <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus - це продовження Sandboxie з відкритим кодом.<br />Відвідайте <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> для більш детальної інформації.<br /><br />%3<br /><br />Версія драйвера: %1<br />Особливості: %2<br /><br />Зображення з <a href="https://icons8.com">icons8.com</a>
@@ -4309,6 +4310,26 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Operation failed for %1 item(s).Дія не вдалась для %1 елемента(ів).
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Do you want to open %1 in a sandboxed (yes) or unsandboxed (no) Web browser?Ви хочете відкрити %1 у веб-браузері із пісочниці (так) чи ззовні (ні)?
@@ -4319,32 +4340,32 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Запам'ятати цей вибір.
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseЗакрити
-
+ &Find ...
-
+ All columns
@@ -5856,7 +5877,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ %1 (Current)
@@ -6080,34 +6101,34 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new Sandbox
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.
-
+ Save options as new defaults
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)
-
+
This Sandbox will be saved to: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -6115,19 +6136,19 @@ This box's content will be DISCARDED when its closed, and the box will be r
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6135,13 +6156,13 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6149,7 +6170,7 @@ Processes in this box will be running with a custom process token indicating the
-
+ Failed to create new box: %1
@@ -8468,27 +8489,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OKОК
-
+ ApplyЗастосувати
-
+ CancelВідмінити
-
+ &YesТак (&Y)
-
+ &NoНі (&N)
diff --git a/SandboxiePlus/SandMan/sandman_vi.ts b/SandboxiePlus/SandMan/sandman_vi.ts
index 9056f5b4..fe9cbf77 100644
--- a/SandboxiePlus/SandMan/sandman_vi.ts
+++ b/SandboxiePlus/SandMan/sandman_vi.ts
@@ -135,97 +135,102 @@
CAdvancedPage
-
+ Advanced Sandbox options
-
+ On this page advanced sandbox options can be configured.
-
+ Network Access
-
+ Allow network/internet access
-
+ Block network/internet by denying access to Network devices
-
+ Block network/internet using Windows Filtering Platform
-
+ Allow access to network files and foldersAllow access to network files and fodlers
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxes
-
+ Admin Options
-
+
+ Drop rights from Administrators and Power Users groups
+ Bỏ quyền khỏi nhóm Quản trị viên và Người dùng quyền lực
+
+
+ Make applications think they are running elevated
-
+ Allow MSIServer to run with a sandboxed system token
-
+ Box OptionsTùy chọn Sandbox
-
+ Use a Sandboxie login instead of an anonymous token
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.
-
+ Shared Template
-
+ Shared template mode
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -233,42 +238,42 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.
-
+ Remove defaults if set
-
+ DisabledVô hiệu hóa
-
+ Use as a template
-
+ Append to the configuration
@@ -277,7 +282,7 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
Sử dụng thông tin đăng nhập Sandboxie thay vì mã thông báo ẩn danh (thử nghiệm)
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.Sử dụng Mã thông báo Sandbox tùy chỉnh cho phép cô lập các Sandbox riêng lẻ với nhau tốt hơn và nó hiển thị trong cột người dùng của người quản lý tác vụ tên của Sandbox mà một quy trình thuộc về. Tuy nhiên, một số giải pháp bảo mật của bên thứ 3 có thể gặp sự cố với mã thông báo tùy chỉnh.
@@ -427,22 +432,22 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new Sandbox
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer.
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.Sandbox cát cô lập hệ thống máy chủ của bạn khỏi các quy trình đang chạy trong Sandbox, nó ngăn chúng thực hiện các thay đổi vĩnh viễn đối với các chương trình và dữ liệu khác trong máy tính của bạn. Mức độ cô lập ảnh hưởng đến bảo mật của bạn cũng như khả năng tương thích với các ứng dụng, do đó sẽ có mức độ cô lập khác nhau tùy thuộc vào Loại Sandbox được chọn. Sandboxie cũng có thể bảo vệ dữ liệu cá nhân của bạn khỏi bị truy cập bởi các quy trình đang chạy dưới sự giám sát của nó.
-
+ Enter box name:
@@ -451,136 +456,136 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
Sandbox mới
-
+ Select box type:Sellect box type:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.
-
+ Standard Sandbox
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a>
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
-
+ Hardened Sandbox with Data Protection
-
+ Security Hardened SandboxHardened Sandbox Bảo Mật
-
+ Sandbox with Data Protection
-
+ Standard Isolation Sandbox (Default)
-
+ Application Compartment with Data ProtectionNgăn Ứng dụng với Bảo vệ Dữ liệu
-
+ Application Compartment Box
-
+ Confidential Encrypted Box
-
+ Remove after use
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.
-
+ Configure advanced options
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?
@@ -936,13 +941,13 @@ You can click Finish to close this wizard.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioure
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -950,64 +955,64 @@ You can use %USER% to save each users sandbox to an own fodler.
-
+ Sandboxed Files
-
+ Select Directory
-
+ Virtualization scheme
-
+ Version 1
-
+ Version 2
-
+ Separate user foldersTách các thư mục người dùng
-
+ Use volume serial numbers for drives
-
+ Auto delete content when last process terminates
-
+ Enable Immediate Recovery of files from recovery locations
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.
@@ -1251,14 +1256,14 @@ You can use %USER% to save each users sandbox to an own fodler.
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.
-
+ Don't show this message again.Không hiển thị lại thông báo này.
@@ -2797,22 +2802,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Đang đợi thư mục: %1
-
+ Deleting folder: %1Xóa thư mục: %1
-
+ Merging folders: %1 >> %2Hợp nhất các thư mục: %1 >> %2
-
+ Finishing Snapshot Merge...Kết thúc Hợp nhất Bản Ghi chụp nhanh...
@@ -2898,22 +2903,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie-Plus v%1
-
+ Reset ColumnsĐặt lại cột
-
+ Copy CellSao chép ô
-
+ Copy RowSao chép hàng
-
+ Copy PanelSao chép bảng điều khiển
@@ -3189,7 +3194,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusVề Sandboxie-Plus
@@ -3629,55 +3634,51 @@ Please check if there is an update for sandboxie.
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseĐóng
-
+ &Find ...
-
+ All columns
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>Về Sandboxie-Plus</h3><p>Phiên bản %1</p><p>Copyright (c) 2020-2022 by DavidXanatos</p>
+ <h3>Về Sandboxie-Plus</h3><p>Phiên bản %1</p><p>Copyright (c) 2020-2022 by DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- Bản sao Sandboxie + này được chứng nhận cho: %1
+ Bản sao Sandboxie + này được chứng nhận cho: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie + miễn phí cho mục đích sử dụng cá nhân và phi thương mại.
+ Sandboxie + miễn phí cho mục đích sử dụng cá nhân và phi thương mại.
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus là phần tiếp theo mã nguồn mở của Sandboxie.<br />Ghé thăm <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> để biết thêm thông tin.<br /><br />%3<br /><br />Phiên bản trình điều khiển: %1<br />Đặc trưng: %2<br /><br />Biểu tượng từ <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus là phần tiếp theo mã nguồn mở của Sandboxie.<br />Ghé thăm <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> để biết thêm thông tin.<br /><br />%3<br /><br />Phiên bản trình điều khiển: %1<br />Đặc trưng: %2<br /><br />Biểu tượng từ <a href="https://icons8.com">icons8.com</a>
@@ -4267,6 +4268,26 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Operation failed for %1 item(s).Thao tác không thành công cho %1 mục.
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Do you want to open %1 in a sandboxed (yes) or unsandboxed (no) Web browser?Bạn muốn mở %1 trong trình duyệt Web có Sandbox (có) hay không có Sandbox (không)?
@@ -5768,7 +5789,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ %1 (Current)%1 (Hiện hành)
@@ -6004,34 +6025,34 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new Sandbox
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.
-
+ Save options as new defaults
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)
-
+
This Sandbox will be saved to: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -6039,19 +6060,19 @@ This box's content will be DISCARDED when its closed, and the box will be r
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6059,13 +6080,13 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6073,7 +6094,7 @@ Processes in this box will be running with a custom process token indicating the
-
+ Failed to create new box: %1
@@ -8311,27 +8332,27 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
QPlatformTheme
-
+ OKOK
-
+ ApplyÁp dụng
-
+ CancelHủy bỏ
-
+ &Yes&Có
-
+ &No&Không
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index 5338e595..b3bc895b 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -191,96 +191,101 @@
CAdvancedPage
-
+ Advanced Sandbox options高级沙盒选项
-
+ On this page advanced sandbox options can be configured.本页面用于配置沙盒的高级选项
-
+ Network Access网络权限
-
+ Allow network/internet access允许网络访问
-
+ Block network/internet by denying access to Network devices通过阻止访问网络设备禁用网络权限
-
+ Block network/internet using Windows Filtering Platform通过 Windows 筛选平台 (WFP) 禁用网络权限
-
+ Allow access to network files and foldersAllow access to network files and fodlers允许访问网络文件与文件夹
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxes不推荐加固型沙盒启用该选项
-
+ Admin Options管理员选项
-
+
+ Drop rights from Administrators and Power Users groups
+ 撤销管理员和 Power Users 用户组的权限
+
+
+ Make applications think they are running elevated让应用认为自身在管理员权限下运行
-
+ Allow MSIServer to run with a sandboxed system token允许 MSIServer 在沙盒内使用系统令牌运行
-
+ Box Options沙盒选项
-
+ Use a Sandboxie login instead of an anonymous token使用 Sandboxie 限权用户替代匿名令牌
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox阻止安装在宿主上的沙盒程序从沙盒内部加载动态链接库(.dll)文件
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.该功能可能对兼容性造成影响,因为它阻止了沙盒内的进程向主机进程写入数据,以及启动它们。
-
+ Shared Template共享模板
-
+ Shared template mode共享模板模式
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -291,27 +296,27 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
要为沙盒禁用此模板,只需在模板列表中取消选中它即可。
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.此选项不会向沙盒配置添加任何新设置,也不会根据模板中的移除设置删除沙盒的默认设置。
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.此选项将共享模板作为本地模板添加到沙盒配置中,还可以根据模板中的移除设置删除沙盒的默认设置。
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.此选项将共享模板中的设置添加到沙盒配置中,还可以根据模板中的移除设置删除沙盒的默认配置。
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.此选项不会向沙盒配置添加任何新设置,但可能会根据模板中的移除设置删除沙盒的默认配置。
-
+ Remove defaults if set如果设置了默认值,则删除
@@ -325,17 +330,17 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
要更改模板的设置,只需在“沙盒选项”下的“应用程序模板”列表中找到“共享模板”,然后双击它进行编辑。要为沙盒禁用此模板,只需在模板列表中取消选中即可。
-
+ Disabled禁用
-
+ Use as a template作为模板使用
-
+ Append to the configuration追加到配置中
@@ -356,7 +361,7 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
使用 Sandboxie 限权用户,而不是匿名令牌 (实验性)
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.使用自定义沙盒令牌可以更好地将各个沙盒相互隔离,同时可以实现在任务管理器的用户栏中显示进程所属的沙盒。但是,某些第三方安全解决方案可能会与自定义令牌产生兼容性问题
@@ -523,38 +528,38 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new Sandbox创建新沙盒
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. 沙盒将您的主机系统与沙盒内运行的进程隔离开来,防止它们对计算机中的其他程序和数据进行永久更改。
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.沙盒将主机系统与在沙盒内运行的进程隔离开来,可以防止它们对计算机中的其它程序和数据进行永久性的更改。隔离级别会影响您的安全性以及与应用程序的兼容性,因此根据所选的沙盒类型会有不同的隔离级别。此外沙盒还可以保护你的个人数据不被受限制下运行的进程的访问
-
+ Enter box name:输入沙盒名称:
-
+ Select box type:Sellect box type:选择沙盒类型:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>具有<a href="sbie://docs/privacy-mode">数据保护</a>且具有<a href="sbie://docs/security-mode">安全强化</a>的沙盒
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
@@ -563,58 +568,58 @@ The entire user profile remains hidden, ensuring maximum security.
全部的用户数据及文件对沙盒进程保持隐藏状态,确保最大程度的安全性。
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox具有<a href="sbie://docs/security-mode">安全强化</a>的沙盒
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.该沙盒类型通过显著主机减少暴露于沙盒进程的攻击面来提供最高级别的保护。
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>具有<a href="sbie://docs/privacy-mode">数据保护</a>的沙盒
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.在该沙盒类型中,任何沙盒进程都将被阻止访问任何个人用户文件和数据。 保护的重点是保护用户数据,因此,该沙盒中运行的进程只能访问 %SystemRoot% (一般为C:\Windows)和 %ProgramW6432%(一般为C:\Program Files)以及Sandboxie安装目录。 这可确保个人文件的安全。
-
+ Standard Sandbox标准沙盒
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.该沙盒类型提供 Sandboxie Classic 的默认行为。 它为用户提供了熟悉且可靠的沙盒方案。
应用程序可以在该沙盒内运行,并确保它们操作受控且隔离的运行空间。
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>具有<a href="sbie://docs/privacy-mode">数据保护</a>的<a href="sbie://docs/compartment-mode">应用程序隔离</a>沙盒
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.该沙盒类型优先考虑兼容性,同时仍然提供良好的隔离级别。 它被设计用于在单独隔离的沙盒中运行受信任的应用程序。
虽然与其他沙盒类型相比,其隔离级别有所降低,但它提供了与各种应用程序的更高兼容性,确保该沙盒环境中应用的平稳运行。
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box<a href="sbie://docs/compartment-mode">应用程序隔离</a>沙盒
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a><a href="sbie://docs/boxencryption">加密</a> 沙盒内容并设置 <a href="sbie://docs/black-box">凭据</a>
@@ -623,7 +628,7 @@ While the level of isolation is reduced compared to other box types, it offers i
<a href="sbie://docs/boxencryption">加密</a> <a href="sbie://docs/black-box">凭据</a> 沙盒
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
@@ -631,42 +636,42 @@ This ensures the utmost level of privacy and data protection within the confiden
当虚拟磁盘被挂载时,只有沙盒内的程序可以访问,而其他进程将会被阻止访问。这确保了在该沙盒环境中最高级别的隐私和数据保护。
-
+ Hardened Sandbox with Data Protection带数据保护的加固型沙盒
-
+ Security Hardened Sandbox安全防护加固型沙盒
-
+ Sandbox with Data Protection带数据保护的沙盒
-
+ Standard Isolation Sandbox (Default)标准隔离沙盒(默认)
-
+ Application Compartment with Data Protection带数据保护的应用隔间
-
+ Application Compartment Box应用程序隔离沙盒
-
+ Confidential Encrypted Box凭据加密沙盒
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?使用加密沙盒需要安装 ImDisk 驱动,您要下载安装它吗?
@@ -676,17 +681,17 @@ This ensures the utmost level of privacy and data protection within the confiden
应用隔间(无隔离防护)
-
+ Remove after use在使用结束后删除
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.在沙盒中所有进程结束后,沙盒中所有数据及沙盒本身将会被删除
-
+ Configure advanced options高级选项
@@ -1054,13 +1059,13 @@ You can click Finish to close this wizard.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioure沙盒位置与行为
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -1069,64 +1074,64 @@ You can use %USER% to save each users sandbox to an own fodler.
可以使用 %USER% 来将用户拥有的沙盒存储到自身的用户目录下
-
+ Sandboxed Files沙盒化文件
-
+ Select Directory选择目录
-
+ Virtualization scheme虚拟化方案
-
+ Version 1版本 1
-
+ Version 2版本 2
-
+ Separate user folders区分用户文件夹
-
+ Use volume serial numbers for drives使用驱动器的卷序列号
-
+ Auto delete content when last process terminates当所有进程结束后删除所有内容
-
+ Enable Immediate Recovery of files from recovery locations启用立即恢复功能
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.所选的沙盒存储路径无效
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?所选的沙盒存储路径不是空的,推荐选择空文件夹或新建文件夹。确定要使用当前选择的文件夹吗?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.所选的沙盒存储路径所在的驱动器当前不可用
@@ -1372,14 +1377,14 @@ You can use %USER% to save each users sandbox to an own fodler.
共享模板
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.新沙盒将按照新的 <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">虚拟化方案 2</a>创建,如果您在使用该沙盒的时候遇到任何问题,请尝试切换至旧版本的虚拟化方案并反馈相应的问题,该选项可以在沙盒结构菜单中找到。
-
+ Don't show this message again.不再显示此消息
@@ -2920,22 +2925,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1正在等待文件夹: %1
-
+ Deleting folder: %1正在删除文件夹: %1
-
+ Merging folders: %1 >> %2正在合并文件夹: %1 >> %2
-
+ Finishing Snapshot Merge...正在完成快照合并...
@@ -3041,22 +3046,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
没有必沙程序
-
+ Reset Columns重置列
-
+ Copy Cell复制此格
-
+ Copy Row复制此行
-
+ Copy Panel复制此表
@@ -3343,7 +3348,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-Plus关于 Sandboxie-Plus
@@ -3765,55 +3770,51 @@ Please check if there is an update for sandboxie.
沙盒外的
-
+ Case Sensitive区分大小写
-
+ RegExp正则表达式
-
+ Highlight高亮显示
-
+ Close关闭
-
+ &Find ...查找(&F)...
-
+ All columns所有列
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>关于 Sandboxie-Plus</h3><p>版本 %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
+ <h3>关于 Sandboxie-Plus</h3><p>版本 %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- 此 Sandboxie+ 副本已授权给: %1
+ 此 Sandboxie+ 副本已授权给: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ 可免费用于个人和其他非商业用途
+ Sandboxie+ 可免费用于个人和其他非商业用途
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus 是知名程序 Sandboxie 自开源以来的一个延续。<br />访问 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 来了解更多信息<br /><br />%3<br /><br />驱动版本: %1<br />特性: %2<br /><br />图标来源: <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus 是知名程序 Sandboxie 自开源以来的一个延续。<br />访问 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 来了解更多信息<br /><br />%3<br /><br />驱动版本: %1<br />特性: %2<br /><br />图标来源: <a href="https://icons8.com">icons8.com</a>
@@ -4409,6 +4410,26 @@ Error: %1
Operation failed for %1 item(s).%1 项操作失败
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Do you want to open %1 in a sandboxed (yes) or unsandboxed (no) Web browser?是否在沙盒中的浏览器打开链接 %1 ?
@@ -5900,7 +5921,7 @@ Error: %1
你真的想删除选定的本地模板吗?
-
+ %1 (Current)%1 (当前)
@@ -6131,35 +6152,35 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new Sandbox创建新沙盒
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.即将就绪, 点击完成按钮结束沙盒创建向导
-
+ Save options as new defaults保存选项为新的默认配置
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)以后不再显示总结页面 (除非启用高级选项)
-
+
This Sandbox will be saved to: %1
该沙盒将保存到: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -6168,21 +6189,21 @@ This box's content will be DISCARDED when its closed, and the box will be r
该沙盒中的内容将在所有程序结束后被删除,同时沙盒本身将被移除
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
该沙盒中的内容将在所有程序结束后被删除,因此仅适合临时数据
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
该沙盒中所有进程将无法访问网络和本地连接,以确保所有可访问的数据不被泄露
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6191,14 +6212,14 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
该沙盒允许 MSIServer (*.msi 安装服务) 在沙盒内使用系统令牌运行,这将改善兼容性但会影响安全隔离效果
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
该沙盒中所有进程将认为其运行在管理员模式下,即使实际上并没有该权限,这有助于在安全加固型沙盒中运行安装程序
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6207,7 +6228,7 @@ Processes in this box will be running with a custom process token indicating the
该沙盒中的进程将会以沙盒专属的自定义进程凭据运行
-
+ Failed to create new box: %1无法创建新沙盒: %1
@@ -8493,27 +8514,27 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
QPlatformTheme
-
+ OK确定
-
+ Apply应用
-
+ Cancel取消
-
+ &Yes是(&Y)
-
+ &No否(&N)
diff --git a/SandboxiePlus/SandMan/sandman_zh_TW.ts b/SandboxiePlus/SandMan/sandman_zh_TW.ts
index 8666caf2..777f0430 100644
--- a/SandboxiePlus/SandMan/sandman_zh_TW.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_TW.ts
@@ -191,98 +191,103 @@
CAdvancedPage
-
+ Advanced Sandbox options進階沙箱選項
-
+ On this page advanced sandbox options can be configured.在此頁面上,可以設定進階沙箱選項。
-
+ Network Access區域網路存取
-
+ Allow network/internet access允許區域網路/網際網路存取
-
+ Block network/internet by denying access to Network devices透過拒絕存取區域網路裝置來阻止區域網路/網際網路
-
+ Block network/internet using Windows Filtering Platform使用 Windows 篩選平台阻止區域網路/網際網路
-
+ Allow access to network files and foldersAllow access to network files and fodlers允許存取區域網路檔案和資料夾
-
-
+
+ This option is not recommended for Hardened boxesThis option is not recomended for Hardened boxes不建議將此選項用於加固型沙箱
-
+ Admin Options管理員選項
-
+
+ Drop rights from Administrators and Power Users groups
+ 廢棄來自管理員和 Power Users 使用者組的許可
+
+
+ Make applications think they are running elevated使應用程式認為其已在權限提升狀態下執行
-
+ Allow MSIServer to run with a sandboxed system token允許 MSIServer 使用沙箱化系統權杖執行
-
+ Box Options沙箱選項
-
+ Use a Sandboxie login instead of an anonymous token使用 Sandboxie 登入程序替代匿名權杖
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox"應用程式擴充" is the actual translation showed in Windows for TradChinese防止主機上安裝的沙箱化程式從沙箱載入應用程式擴充 (DLL) 檔案
-
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.This feature may reduce compatybility as it also prevents box located processes from writing to host located once and even starting them.此功能可能降低相容性,因為這將阻止沙箱中的處理程序寫入到主機對應目標,甚至於阻止處理程序本身的啟動。
-
+ Shared Template共用範本
-
+ Shared template mode共用範本模式
-
+ This setting adds a local template or its settings to the sandbox configuration so that the settings in that template are shared between sandboxes.
However, if 'use as a template' option is selected as the sharing mode, some settings may not be reflected in the user interface.
To change the template's settings, simply locate the '%1' template in the App Templates list under Sandbox Options, then double-click on it to edit it.
@@ -293,47 +298,47 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
若要為沙箱停用此範本,只需在範本清單中將其取消選中即可。
-
+ This option does not add any settings to the box configuration and does not remove the default box settings based on the removal settings within the template.此選項不會向沙箱組態中新增任何設定,也不會根據範本內的刪除設定移除預設沙箱之設定。
-
+ This option adds the shared template to the box configuration as a local template and may also remove the default box settings based on the removal settings within the template.此選項將共用範本作為本機範本新增至沙箱組態中,並且還可以根據範本內的刪除設定移除預設沙箱之設定。
-
+ This option adds the settings from the shared template to the box configuration and may also remove the default box settings based on the removal settings within the template.此選項將共用範本中的設定新增至沙箱組態中,也可根據範本內的刪除設定移除預設沙箱之設定。
-
+ This option does not add any settings to the box configuration, but may remove the default box settings based on the removal settings within the template.此選項不會向沙箱組態新增任何設定,但可能會根據範本內的刪除設定移除預設沙箱之設定。
-
+ Remove defaults if set如果設定此項將刪除預設值
-
+ Disabled已停用
-
+ Use as a template用作範本
-
+ Append to the configuration追加至組態設定
-
+ Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.使用自訂 Sandboxie 權杖可以更好地將各個沙箱相互隔離,同時可以實現在工作管理員的使用者欄位中顯示處理程序所屬的沙箱。但是,某些第三方安全性解決方案可能會與自訂權杖產生相容性問題。
@@ -500,38 +505,38 @@ increases to 512 bits with the application of Leet (L337) speak modifications, a
CBoxTypePage
-
+ Create new Sandbox建立新沙箱
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. 沙箱將您的主機系統與沙箱內運作的處理程序相隔離,防止它們對電腦中的其他程式和資料進行永久更改。
-
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.沙箱會將您的主機系統與沙箱內執行的處理程序隔離開來,以防止它們對電腦中的其他程式和資料進行永久性變更。隔離的級別會影響您的安全性以及與應用程式的相容性,因此根據所選的沙箱類型,將有不同的隔離級別。Sandboxie 還可以保護您的個人資料在其監督下不會被執行的處理程序存取。
-
+ Enter box name:輸入沙箱名稱:
-
+ Select box type:Sellect box type:選擇沙箱類型:
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/security-mode">安全性強化型</a>沙箱並包含<a href="sbie://docs/privacy-mode">資料防護</a>
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
The entire user profile remains hidden, ensuring maximum security.
@@ -540,59 +545,59 @@ The entire user profile remains hidden, ensuring maximum security.
全部使用者設定檔將保持隱藏狀態,以確保最大程度的安全性。
-
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox<a href="sbie://docs/security-mode">安全性強化</a>沙箱
-
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.這種沙箱類型透過顯著減少暴露於沙箱化處理程序的攻擊面,來提供最高等級的保護。
-
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/privacy-mode">資料防護型</a>沙箱
-
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.在此沙箱類型中,沙箱化處理程序被阻止存取任何個人使用者檔案或資料。功能的重點是保護使用者資料,而因為如此,
在此沙箱中執行的處理程序只能存取 C:\Windows 和 C:\Program Files 目錄。這可確保個人檔案的安全。
-
+ Standard Sandbox標準型沙箱
-
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.此沙箱類型提供 Sandboxie 經典版本的預設行為。它為使用者提供了熟悉且可靠的沙箱化方案。
應用程式可以在該沙箱內運作,確保它們在受控且隔離的空間內進行作業。
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a><a href="sbie://docs/compartment-mode">應用程式區間型</a>沙箱並包含<a href="sbie://docs/privacy-mode">資料防護</a>
-
-
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.這種沙箱類型優先考慮相容性,同時仍提供良好的隔離等級。它設計用於在單獨的隔間中運作受信任的應用程式。
雖然與其他沙箱類型相比隔離等級有所降低,但它提供了與各種應用程式的更高相容性,確保沙箱化環境中的平穩運作。
-
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box<a href="sbie://docs/compartment-mode">應用程式區間型</a>沙箱
-
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a><a href="sbie://docs/boxencryption">加密</a>沙箱內容並設定為<a href="sbie://docs/black-box">機密</a>
@@ -601,7 +606,7 @@ While the level of isolation is reduced compared to other box types, it offers i
<a href="sbie://docs/boxencryption">加密</a><a href="sbie://docs/black-box">機密型</a>沙箱
-
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.
@@ -610,42 +615,42 @@ This ensures the utmost level of privacy and data protection within the confiden
這確保了機密型沙箱環境中最高水準的隱私和資料保護。
-
+ Hardened Sandbox with Data Protection具有資料保護功能的加固型沙箱
-
+ Security Hardened Sandbox安全性防護加固型沙箱
-
+ Sandbox with Data Protection資料保護型沙箱
-
+ Standard Isolation Sandbox (Default)標準隔離型沙箱 (預設)
-
+ Application Compartment with Data Protection資料保護型應用程式區間
-
+ Application Compartment Box應用程式區間沙箱
-
+ Confidential Encrypted Box機密加密型沙箱
-
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?To use ancrypted boxes you need to install the ImDisk driver, do you want to download and install it?要使用加密沙箱,您需要安裝 ImDisk 驅動程式,是否下載並安裝?
@@ -655,17 +660,17 @@ This ensures the utmost level of privacy and data protection within the confiden
應用程式區間 (無隔離防護)
-
+ Remove after use使用後移除
-
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.當沙箱中的最後一個處理程序終止後,沙箱中的所有資料將被刪除,沙箱本身也將會刪除。
-
+ Configure advanced options設定進階選項組態
@@ -1034,13 +1039,13 @@ You can click Finish to close this wizard.
CFilesPage
-
+ Sandbox location and behaviorSandbox location and behavioure沙箱位置和行為
-
+ On this page the sandbox location and its behavior can be customized.
You can use %USER% to save each users sandbox to an own folder.On this page the sandbox location and its behaviorue can be customized.
@@ -1049,64 +1054,64 @@ You can use %USER% to save each users sandbox to an own fodler.
您可以使用 %USER% 將每個使用者的沙箱儲存到各自的資料夾中。
-
+ Sandboxed Files沙箱化檔案
-
+ Select Directory選擇目錄
-
+ Virtualization scheme虛擬化方案
-
+ Version 1版本 1
-
+ Version 2版本 2
-
+ Separate user folders分離使用者資料夾
-
+ Use volume serial numbers for drives使用磁碟的磁碟區序號
-
+ Auto delete content when last process terminates當所有處理程序結束後自動刪除全部內容
-
+ Enable Immediate Recovery of files from recovery locations啟用檔案立即復原 (從設定的復原位置)
-
+ The selected box location is not a valid path.The sellected box location is not a valid path.選取的沙箱儲存位置是無效路徑。
-
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?The sellected box location exists and is not empty, it is recomended to pick a new or empty folder. Are you sure you want to use an existing folder?選取的沙箱儲存位置已存在且不是空白目錄,推薦選擇新資料夾或是空白資料夾。確定要使用已存在的資料夾嗎?
-
+ The selected box location is not placed on a currently available drive.The selected box location not placed on a currently available drive.選取的沙箱儲存位置不在目前可用的磁碟上。
@@ -1352,14 +1357,14 @@ You can use %USER% to save each users sandbox to an own fodler.
共用範本
-
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you expirience any unecpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure groupe.新沙箱按照新的 <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">虛擬化方案 V2</a> 建立,如果您在使用該沙箱的時候遇到任何問題,請嘗試切換至虛擬化方案 V1 並向我們反應問題,變更此預設的選項可以在「沙箱選項」中「檔案選項」的「沙箱結構」選項組內找到。
-
+ Don't show this message again.不再顯示此訊息。
@@ -2902,22 +2907,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1正在等待資料夾: %1
-
+ Deleting folder: %1正在刪除資料夾: %1
-
+ Merging folders: %1 >> %2正在合併資料夾: %1 >> %2
-
+ Finishing Snapshot Merge...正在完成快照合併...
@@ -3003,22 +3008,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie-Plus v%1
-
+ Reset Columns重設欄
-
+ Copy Cell複製單元格
-
+ Copy Row複製列
-
+ Copy Panel複製表格
@@ -3281,7 +3286,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-Plus關於 Sandboxie-Plus
@@ -3696,55 +3701,51 @@ No will choose: %2
非沙箱化
-
+ Case Sensitive區分大小寫
-
+ RegExp正規表示式
-
+ Highlight醒目提示
-
+ Close關閉
-
+ &Find ...尋找(&F)...
-
+ All columns所有欄
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
- <h3>關於 Sandboxie-Plus</h3><p>版本 %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
+ <h3>關於 Sandboxie-Plus</h3><p>版本 %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
- This copy of Sandboxie+ is certified for: %1
- 這一份 Sandboxie+ 已授權給: %1
+ 這一份 Sandboxie+ 已授權給: %1
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ 可免費用於個人和非商業用途。
+ Sandboxie+ 可免費用於個人和非商業用途。
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus 是著名程式 Sandboxie 自開源以來的一個延續。<br />造訪 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 來了解更多資訊。<br /><br />%3<br /><br />驅動版本: %1<br />功能: %2<br /><br />圖示來源 <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus 是著名程式 Sandboxie 自開源以來的一個延續。<br />造訪 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 來了解更多資訊。<br /><br />%3<br /><br />驅動版本: %1<br />功能: %2<br /><br />圖示來源 <a href="https://icons8.com">icons8.com</a>
@@ -4352,6 +4353,26 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Operation failed for %1 item(s).%1 項操作失敗。
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
+
+
+
+
+ This copy of Sandboxie-Plus is certified for: %1
+
+
+
+
+ Sandboxie-Plus is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+ Do you want to open %1 in a sandboxed (yes) or unsandboxed (no) Web browser?是否在沙箱化網頁瀏覽器開啟連結 %1 ?
@@ -5852,7 +5873,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
要刪除所選取的本地範本嗎?
-
+ %1 (Current)%1 (目前)
@@ -6083,35 +6104,35 @@ Try submitting without the log attached.
CSummaryPage
-
+ Create the new Sandbox建立新沙箱
-
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.即將就緒,按下「完成」按鈕以建立新沙箱並結束精靈。
-
+ Save options as new defaults儲存選項為新的預設設定
-
+ Skip this summary page when advanced options are not setDon't show the summary page in future (unless advanced options were set)以後不再顯示總結頁面 (除非啟用進階選項)
-
+
This Sandbox will be saved to: %1
該沙箱將儲存至: %1
-
+
This box's content will be DISCARDED when it's closed, and the box will be removed.
@@ -6120,21 +6141,21 @@ This box's content will be DISCARDED when its closed, and the box will be r
該沙箱中的內容將在所有程式結束後被刪除,同時沙箱本身將被移除。
-
+
This box will DISCARD its content when its closed, its suitable only for temporary data.
該沙箱中的內容將在所有程式結束後被刪除,僅適合暫存的臨時資料。
-
+
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
該沙箱中所有處理程序無法存取網際網路和區域網路,以確保所有可存取的資料不被洩露。
-
+
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
@@ -6143,14 +6164,14 @@ This box will run the MSIServer (*.msi installer service) with a system token, t
該沙箱允許 MSIServer (*.msi 安裝程式服務) 在沙箱內使用系統權杖執行,這將改善相容性但會影響安全性隔離效果。
-
+
Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
該沙箱中所有處理程序將認為它們執行在系統管理員模式下,即使實際上並沒有該權限,這有助於在安全性防護加固型沙箱中執行安裝程式。
-
+
Processes in this box will be running with a custom process token indicating the sandbox they belong to.
@@ -6159,7 +6180,7 @@ Processes in this box will be running with a custom process token indicating the
在此沙箱內的處理程序將以自訂處理程序權杖執行,以表明其沙箱歸屬。
-
+ Failed to create new box: %1無法建立新沙箱: %1
@@ -8410,27 +8431,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK確定
-
+ Apply套用
-
+ Cancel取消
-
+ &Yes是(&Y)
-
+ &No否(&N)
From 664d721b0b72464bf679e46fc79d8841eb925fe8 Mon Sep 17 00:00:00 2001
From: Sebastian G
Date: Sat, 27 Apr 2024 07:02:44 +0200
Subject: [PATCH 041/122] Update sandman_de.ts
---
SandboxiePlus/SandMan/sandman_de.ts | 26 +++++---------------------
1 file changed, 5 insertions(+), 21 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts
index 61f9bf8c..d36d36ec 100644
--- a/SandboxiePlus/SandMan/sandman_de.ts
+++ b/SandboxiePlus/SandMan/sandman_de.ts
@@ -179,7 +179,7 @@
Drop rights from Administrators and Power Users groups
- Die Rechte der Administratoren und Hauptbenutzergruppe einschränken
+ Die Rechte der Administratoren und Hauptbenutzergruppe einschränken
@@ -3455,38 +3455,22 @@ Fehler: %1
<h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ <h3>Über Sandboxie-Plus</h3><p>Version %1</p><p>This copy of Sandboxie-Plus is certified for: %1
-
+ Diese Kopie von Sandboxie-Plus ist zertifiziert für: %1Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus ist gratis für persönliche und nicht-kommerzielle Nutzung.Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
-
-
-
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
- <h3>Über Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
-
-
- This copy of Sandboxie+ is certified for: %1
- Diese Kopie von Sandboxie+ ist zertifiziert für: %1
-
-
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+ ist gratis für persönliche und nicht-kommerzielle Nutzung.
-
-
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus ist eine Open-Source Fortsetzung von Sandboxie.<br />Besuchen Sie <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> für mehr Informationen.<br /><br />%3<br /><br />Treiberversion: %1<br />Funktionen: %2<br /><br />Icons von <a href="https://icons8.com">icons8.com</a>
+ Sandboxie-Plus ist eine Open-Source Fortsetzung von Sandboxie.<br />Besuchen Sie <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> für mehr Informationen.<br /><br />%2<br /><br />Funktionen: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons von <a href="https://icons8.com">icons8.com</a>
From b2e057ff79a642cb0585884f14a8360f8714ec46 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 27 Apr 2024 15:20:44 +0200
Subject: [PATCH 042/122] 1.13.7
---
CHANGELOG.md | 5 +++++
Sandboxie/core/dll/file_pipe.c | 15 ++++++++++-----
2 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 95f8e54b..71a5a523 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- added DropAdmin and improved related checkboxes #3851 https://github.com/sandboxie-plus/Sandboxie/pull/3851 (thanks offhub)
- added file version info doe SbieDll.dll and SbieSvc.exe to the Plus About dialog
+### Changed
+- changed when creating reparse points (symlinks/junctions) the target path remains teh TruePath [#3852](https://github.com/sandboxie-plus/Sandboxie/issues/3852)
+ - the old behavioure can be restored with "BoxReparsTarget=y"
+ - this change should work fine with the resent improvements in handling reparse points
+
### Fixed
- fixed issue with start agent option [#3844](https://github.com/sandboxie-plus/Sandboxie/pull/3844) (thanks offhub)
- fixed issue with Delete V2 introduced in 1.13.5
diff --git a/Sandboxie/core/dll/file_pipe.c b/Sandboxie/core/dll/file_pipe.c
index d9b0467a..0dd7408a 100644
--- a/Sandboxie/core/dll/file_pipe.c
+++ b/Sandboxie/core/dll/file_pipe.c
@@ -1152,11 +1152,17 @@ _FX NTSTATUS File_NtFsControlFile(
handle = File_GetProxyPipe(FileHandle, NULL);
if (! handle) {
+ status = STATUS_BAD_INITIAL_PC;
+
if (IoControlCode == FSCTL_SET_REPARSE_POINT) {
- status = File_SetReparsePoint(
- FileHandle, InputBuffer, InputBufferLength);
- SetLastError(LastError);
+ BOOLEAN BoxReparsTarget = SbieApi_QueryConfBool(NULL, L"BoxReparsTarget", FALSE);
+ if(BoxReparsTarget) {
+
+ status = File_SetReparsePoint(
+ FileHandle, InputBuffer, InputBufferLength);
+ SetLastError(LastError);
+ }
} else if (IoControlCode == FSCTL_PIPE_WAIT) {
@@ -1172,8 +1178,7 @@ _FX NTSTATUS File_NtFsControlFile(
else
status = STATUS_ACCESS_DENIED;
- } else
- status = STATUS_BAD_INITIAL_PC;
+ }
if (status == STATUS_BAD_INITIAL_PC) {
From 75fe0a1ff1e1c1cb04f0aeaee1886757af1afb28 Mon Sep 17 00:00:00 2001
From: isaak654
Date: Sat, 27 Apr 2024 16:10:14 +0200
Subject: [PATCH 043/122] Typo fixes
---
CHANGELOG.md | 14 +++++++-------
Sandboxie/core/dll/file_pipe.c | 4 ++--
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 71a5a523..2a248dca 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,13 +8,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.13.7 / 5.68.7] - 2024-04-
### Added
-- added DropAdmin and improved related checkboxes #3851 https://github.com/sandboxie-plus/Sandboxie/pull/3851 (thanks offhub)
-- added file version info doe SbieDll.dll and SbieSvc.exe to the Plus About dialog
+- added file version information for SbieDll.dll and SbieSvc.exe in the Sandboxie Plus About dialog
### Changed
-- changed when creating reparse points (symlinks/junctions) the target path remains teh TruePath [#3852](https://github.com/sandboxie-plus/Sandboxie/issues/3852)
- - the old behavioure can be restored with "BoxReparsTarget=y"
- - this change should work fine with the resent improvements in handling reparse points
+- when creating reparse points (symlinks/junctions), the target path remains the TruePath [#3852](https://github.com/sandboxie-plus/Sandboxie/issues/3852)
+ - the old behaviour can be restored with "BoxReparseTarget=y"
+ - this change should work fine with the recent improvements in handling reparse points
+- improved checkboxes about DropAdminRights in SandMan [#3851](https://github.com/sandboxie-plus/Sandboxie/pull/3851) (thanks offhub)
### Fixed
- fixed issue with start agent option [#3844](https://github.com/sandboxie-plus/Sandboxie/pull/3844) (thanks offhub)
@@ -26,7 +26,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- added "BlockInterferenceControl=y" option to prevent sandboxed processes from forcing windows on top and moving the mounse pointer (thanks Yeyixiao)
- - Note: this option may cause issues in games hence do not enable it for gaming boxes.
+ - Note: this option may cause issues in games hence do not enable it for gaming boxes
- added support for hard links [#3826](https://github.com/sandboxie-plus/Sandboxie/issues/3826)
- added mechanism to terminate stuck sandboxed processes from the driver
- added Make the trigger list editable [#3742](https://github.com/sandboxie-plus/Sandboxie/issues/3742)
@@ -45,7 +45,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed When I change the BlockDNS and BlockPorts options, the Apply button is not activated [#3807](https://github.com/sandboxie-plus/Sandboxie/issues/3807)
- fixed troubleshooting wizard broke with new Qt [#3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
- fixed Settings dialog now showing the right ram disk letter
-- fixed issues with updater broke with new Qt due to missing SSL support [3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
+- fixed issues with updater broke with new Qt due to missing SSL support [#3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
- fixed Enabling "DropAdminRights/FakeAdminRights" adds "BlockInterferePower and ForceProtectionOnMount" to the INI [#3825](https://github.com/sandboxie-plus/Sandboxie/issues/3825)
- fixed KeePass "Out of Memory" crash due to "BlockScreenCapture=y" [#3768](https://github.com/sandboxie-plus/Sandboxie/issues/3768)
- fixed Sandboxie 1.13.4 with IsBlockCapture=y not working on Windows 7 [#3769](https://github.com/sandboxie-plus/Sandboxie/issues/3769)
diff --git a/Sandboxie/core/dll/file_pipe.c b/Sandboxie/core/dll/file_pipe.c
index 0dd7408a..f1cc0f30 100644
--- a/Sandboxie/core/dll/file_pipe.c
+++ b/Sandboxie/core/dll/file_pipe.c
@@ -1156,8 +1156,8 @@ _FX NTSTATUS File_NtFsControlFile(
if (IoControlCode == FSCTL_SET_REPARSE_POINT) {
- BOOLEAN BoxReparsTarget = SbieApi_QueryConfBool(NULL, L"BoxReparsTarget", FALSE);
- if(BoxReparsTarget) {
+ BOOLEAN BoxReparseTarget = SbieApi_QueryConfBool(NULL, L"BoxReparseTarget", FALSE);
+ if(BoxReparseTarget) {
status = File_SetReparsePoint(
FileHandle, InputBuffer, InputBufferLength);
From 4fd9bae3d2af001d390843dcf8d7db54a8412a55 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 27 Apr 2024 17:32:52 +0200
Subject: [PATCH 044/122] 1.13.7
---
Sandboxie/core/dll/file_link.c | 4 ++--
SandboxiePlus/SandMan/SandMan.vcxproj | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Sandboxie/core/dll/file_link.c b/Sandboxie/core/dll/file_link.c
index 238eb532..5aea5e45 100644
--- a/Sandboxie/core/dll/file_link.c
+++ b/Sandboxie/core/dll/file_link.c
@@ -962,7 +962,7 @@ _FX NTSTATUS File_OpenForAddTempLink(HANDLE* handle, WCHAR *path, BOOLEAN OpenRe
handle, (OpenReparsePoint ? FILE_GENERIC_READ : FILE_READ_ATTRIBUTES) | SYNCHRONIZE, &objattrs,
&IoStatusBlock, NULL, 0, FILE_SHARE_VALID_FLAGS,
FILE_OPEN,
- FILE_DIRECTORY_FILE | FILE_SYNCHRONOUS_IO_NONALERT | (OpenReparsePoint ? FILE_OPEN_REPARSE_POINT : 0),
+ /*FILE_DIRECTORY_FILE |*/ FILE_SYNCHRONOUS_IO_NONALERT | (OpenReparsePoint ? FILE_OPEN_REPARSE_POINT : 0),
NULL, 0);
Dll_PopTlsNameBuffer(TlsData);
@@ -983,7 +983,7 @@ _FX NTSTATUS File_OpenForAddTempLink(HANDLE* handle, WCHAR *path, BOOLEAN OpenRe
handle, (OpenReparsePoint ? FILE_GENERIC_READ : FILE_READ_ATTRIBUTES) | SYNCHRONIZE, &objattrs,
&IoStatusBlock, NULL, 0, FILE_SHARE_VALID_FLAGS,
FILE_OPEN,
- FILE_DIRECTORY_FILE | FILE_SYNCHRONOUS_IO_NONALERT | (OpenReparsePoint ? FILE_OPEN_REPARSE_POINT : 0),
+ /*FILE_DIRECTORY_FILE |*/ FILE_SYNCHRONOUS_IO_NONALERT | (OpenReparsePoint ? FILE_OPEN_REPARSE_POINT : 0),
NULL, 0);
}
diff --git a/SandboxiePlus/SandMan/SandMan.vcxproj b/SandboxiePlus/SandMan/SandMan.vcxproj
index 15a098c0..c90a2545 100644
--- a/SandboxiePlus/SandMan/SandMan.vcxproj
+++ b/SandboxiePlus/SandMan/SandMan.vcxproj
@@ -160,7 +160,7 @@
Windows$(OutDir)\$(ProjectName).exetrue
- QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;%(AdditionalDependencies)
+ QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;Version.lib;%(AdditionalDependencies)
From 9df1e546cd74202bae4305679fe3de0d8d66cf59 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 27 Apr 2024 17:49:03 +0200
Subject: [PATCH 045/122] Update CHANGELOG.md
---
CHANGELOG.md | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2a248dca..5a4502dd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,8 +17,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- improved checkboxes about DropAdminRights in SandMan [#3851](https://github.com/sandboxie-plus/Sandboxie/pull/3851) (thanks offhub)
### Fixed
- - fixed issue with start agent option [#3844](https://github.com/sandboxie-plus/Sandboxie/pull/3844) (thanks offhub)
- - fixed issue with Delete V2 introduced in 1.13.5
+- fixed issue with start agent option [#3844](https://github.com/sandboxie-plus/Sandboxie/pull/3844) (thanks offhub)
+- fixed issue with Delete V2 introduced in 1.13.5
+
From af54571823d6b3fffa6d5779a4ddb99acf4ca2fa Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Sun, 28 Apr 2024 03:36:00 +0300
Subject: [PATCH 046/122] Update sandman_tr.ts
---
SandboxiePlus/SandMan/sandman_tr.ts | 31 +++++++----------------------
1 file changed, 7 insertions(+), 24 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_tr.ts b/SandboxiePlus/SandMan/sandman_tr.ts
index bc10b87b..075f88cb 100644
--- a/SandboxiePlus/SandMan/sandman_tr.ts
+++ b/SandboxiePlus/SandMan/sandman_tr.ts
@@ -179,7 +179,7 @@
Drop rights from Administrators and Power Users groups
- Yöneticiler ve Yetkili Kullanıcılar grupları haklarını bırak
+ Yöneticiler ve Yetkili Kullanıcılar grupları haklarını bırak
@@ -3499,22 +3499,22 @@ This file is part of Sandboxie and all change done to it will be reverted next t
<h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ <h3>Sandboxie-Plus Hakkında</h3><p>Sürüm %1</p><p>This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie'nin bu kopyası şu kişiler için sertifikalandırılmıştır: %1Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus, kişisel ve ticari olmayan kullanım için ücretsizdir.Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
-
+ Sandboxie-Plus, Sandboxie'nin açık kaynaklı bir devamıdır.<br />Daha fazla bilgi için <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> adresini ziyaret ediniz.<br /><br />%2<br /><br />Özellikler: %3<br /><br />Kurulum: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Simgeler için <a href="https://icons8.com">icons8.com</a>
@@ -3715,18 +3715,6 @@ Hayır şunları seçer: %2
The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Seçilen özellik seti yalnızca proje destekçileri tarafından kullanılabilir. Bu özellik setinin destekçi sertifikası olmadan etkinleştirildiği bir alanda başlatılan işlemler 5 dakika sonra sonlandırılacaktır.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Proje destekçisi olmak</a> için bir <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">destekçi sertifikası</a> edinin
-
- This copy of Sandboxie+ is certified for: %1
- Sandboxie+'nın bu kopyası şu kişiler için sertifikalandırılmıştır: %1
-
-
- Sandboxie+ is free for personal and non-commercial use.
- Sandboxie+, kişisel ve ticari olmayan kullanım için ücretsizdir.
-
-
- Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
- Sandboxie-Plus, Sandboxie'nin açık kaynaklı bir devamıdır.<br />Daha fazla bilgi için <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> adresini ziyaret edin.<br /><br />%3<br /><br />Sürücü versiyonu: %1<br />Özellikler: %2<br /><br />Simgeler için <a href="https://icons8.com">icons8.com</a>
- Uninstall All
@@ -4074,10 +4062,6 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.All columns
Tüm Sütunlar
-
- <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
- <h3>Sandboxie-Plus hakkında</h3><p>Sürüm %1</p><p>Telif hakkı (c) 2020-2024, DavidXanatos</p>
- The supporter certificate is not valid for this build, please get an updated certificate
@@ -5654,7 +5638,7 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.
Revert to empty box
- Boş alan haline geri dön
+ Boş alan haline geri döndür
@@ -8772,8 +8756,7 @@ The process match level has a higher priority than the specificity and describes
Hotkey for suspending all processes:
- Hotkey for suspending all process:
- Tüm işlemleri askıya almak için kısayol tuşu:
+ Tüm işlemleri askıya almak için kısayol tuşu:
From eebaecd6e3ded9fe9d017d5f20a448de4a2e60a5 Mon Sep 17 00:00:00 2001
From: nkh0472 <67589323+nkh0472@users.noreply.github.com>
Date: Sun, 28 Apr 2024 10:14:04 +0800
Subject: [PATCH 047/122] Update sandman_zh_CN.ts
---
SandboxiePlus/SandMan/sandman_zh_CN.ts | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index b3bc895b..5d322ddb 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -241,7 +241,7 @@
Drop rights from Administrators and Power Users groups
- 撤销管理员和 Power Users 用户组的权限
+ 撤销管理员和 Power Users 用户组的权限
@@ -4408,27 +4408,27 @@ Error: %1
Operation failed for %1 item(s).
- %1 项操作失败
+ %1 项操作失败。<h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ <h3>关于 Sandboxie+</h3><p>版本 %1</p><p>This copy of Sandboxie-Plus is certified for: %1
-
+ 本 Sandboxie+ 副本已授权为: %1Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie+ 可免费用于个人和其他非商业用途。Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
-
+ Sandboxie+ 是 Sandboxie 的开源延续。<br />前往 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 了解更多信息。<br /><br />%2<br /><br />特性: %3<br /><br />已安装: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />图标来自于 <a href="https://icons8.com">icons8.com</a>Do you want to open %1 in a sandboxed (yes) or unsandboxed (no) Web browser?
@@ -9404,7 +9404,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
Hotkey for suspending all processes:Hotkey for suspending all process
- 暂停沙盒内所有进程的热键:
+ 暂停沙盒内所有进程的热键:
From fe10924e7155115d169b66dc8bd8e8caef7d7e97 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 28 Apr 2024 11:03:12 +0200
Subject: [PATCH 048/122] symlink fix
---
CHANGELOG.md | 4 +-
Sandboxie/core/dll/file.c | 109 +++++++++++++++++++++------------
Sandboxie/core/dll/file_dir.c | 56 ++++++++++++-----
Sandboxie/core/dll/file_pipe.c | 15 ++---
4 files changed, 116 insertions(+), 68 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5a4502dd..6977b328 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,12 +11,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- added file version information for SbieDll.dll and SbieSvc.exe in the Sandboxie Plus About dialog
### Changed
-- when creating reparse points (symlinks/junctions), the target path remains the TruePath [#3852](https://github.com/sandboxie-plus/Sandboxie/issues/3852)
- - the old behaviour can be restored with "BoxReparseTarget=y"
- - this change should work fine with the recent improvements in handling reparse points
- improved checkboxes about DropAdminRights in SandMan [#3851](https://github.com/sandboxie-plus/Sandboxie/pull/3851) (thanks offhub)
### Fixed
+- Issue with symbolic linking of files [#3852](https://github.com/sandboxie-plus/Sandboxie/issues/3852)
- fixed issue with start agent option [#3844](https://github.com/sandboxie-plus/Sandboxie/pull/3844) (thanks offhub)
- fixed issue with Delete V2 introduced in 1.13.5
diff --git a/Sandboxie/core/dll/file.c b/Sandboxie/core/dll/file.c
index 2c5eaa20..15dfc6e3 100644
--- a/Sandboxie/core/dll/file.c
+++ b/Sandboxie/core/dll/file.c
@@ -262,6 +262,9 @@ static NTSTATUS File_NtDeleteFile(OBJECT_ATTRIBUTES *ObjectAttributes);
static NTSTATUS File_NtDeleteFileImpl(OBJECT_ATTRIBUTES *ObjectAttributes);
+static NTSTATUS File_OpenForRenameFile(
+ HANDLE* pSourceHandle, const WCHAR *TruePath);
+
static NTSTATUS File_RenameFile(
HANDLE FileHandle, void *info, BOOLEAN LinkOp);
@@ -6659,6 +6662,63 @@ _FX LONG File_RenameOpenFile(
}
+//---------------------------------------------------------------------------
+// File_OpenForRenameFile
+//---------------------------------------------------------------------------
+
+
+_FX NTSTATUS File_OpenForRenameFile(
+ HANDLE* pSourceHandle, const WCHAR *TruePath)
+{
+ THREAD_DATA *TlsData = Dll_GetTlsData(NULL);
+
+ NTSTATUS status;
+ OBJECT_ATTRIBUTES objattrs;
+ UNICODE_STRING objname;
+ IO_STATUS_BLOCK IoStatusBlock;
+
+ InitializeObjectAttributes(
+ &objattrs, &objname, OBJ_CASE_INSENSITIVE, NULL, Secure_NormalSD);
+
+ //
+ // open the file for write access. this should cause the file
+ // to be migrated into the sandbox, including its parent directories
+ //
+
+ RtlInitUnicodeString(&objname, TruePath);
+
+ ++TlsData->file_dont_strip_write_access;
+
+ status = NtCreateFile(
+ pSourceHandle, FILE_GENERIC_WRITE | DELETE, &objattrs,
+ &IoStatusBlock, NULL, 0, FILE_SHARE_VALID_FLAGS,
+ FILE_OPEN, FILE_SYNCHRONOUS_IO_NONALERT, NULL, 0);
+
+ if (status == STATUS_SHARING_VIOLATION ||
+ status == STATUS_ACCESS_DENIED) {
+
+ //
+ // Windows Mail opens *.eml files with a combination of
+ // FILE_SHARE_READ | FILE_SHARE_DELETE, but not FILE_SHARE_WRITE,
+ // which means we can't open them with FILE_GENERIC_WRITE
+ // during rename processing here
+ //
+ // also, for read-only files, we get an error when we open them
+ // for FILE_GENERIC_WRITE, but just DELETE should also work
+ //
+
+ status = NtCreateFile(
+ pSourceHandle, SYNCHRONIZE | DELETE, &objattrs,
+ &IoStatusBlock, NULL, 0, FILE_SHARE_VALID_FLAGS,
+ FILE_OPEN, FILE_SYNCHRONOUS_IO_NONALERT, NULL, 0);
+ }
+
+ --TlsData->file_dont_strip_write_access;
+
+ return status;
+}
+
+
//---------------------------------------------------------------------------
// File_RenameFile
//---------------------------------------------------------------------------
@@ -6718,52 +6778,23 @@ _FX NTSTATUS File_RenameFile(
__leave;
//
- // open the file for write access. this should cause the file
- // to be migrated into the sandbox, including its parent directories
+ // migrate into the sandbox, including its parent directories
//
- RtlInitUnicodeString(&objname, TruePath);
+ status = File_OpenForRenameFile(&SourceHandle, TruePath);
- ++TlsData->file_dont_strip_write_access;
+ //
+ // if we still get STATUS_SHARING_VIOLATION, give up on trying
+ // to make sure the file is migrated into the sandbox, and hope
+ // that the input FileHandle is suitable for a rename operation
+ //
- status = NtCreateFile(
- &SourceHandle, FILE_GENERIC_WRITE | DELETE, &objattrs,
- &IoStatusBlock, NULL, 0, FILE_SHARE_VALID_FLAGS,
- FILE_OPEN, FILE_SYNCHRONOUS_IO_NONALERT, NULL, 0);
+ if (status == STATUS_SHARING_VIOLATION) {
- if (status == STATUS_SHARING_VIOLATION ||
- status == STATUS_ACCESS_DENIED) {
-
- //
- // Windows Mail opens *.eml files with a combination of
- // FILE_SHARE_READ | FILE_SHARE_DELETE, but not FILE_SHARE_WRITE,
- // which means we can't open them with FILE_GENERIC_WRITE
- // during rename processing here
- //
- // also, for read-only files, we get an error when we open them
- // for FILE_GENERIC_WRITE, but just DELETE should also work
- //
-
- status = NtCreateFile(
- &SourceHandle, SYNCHRONIZE | DELETE, &objattrs,
- &IoStatusBlock, NULL, 0, FILE_SHARE_VALID_FLAGS,
- FILE_OPEN, FILE_SYNCHRONOUS_IO_NONALERT, NULL, 0);
-
- //
- // if we still get STATUS_SHARING_VIOLATION, give up on trying
- // to make sure the file is migrated into the sandbox, and hope
- // that the input FileHandle is suitable for a rename operation
- //
-
- if (status == STATUS_SHARING_VIOLATION) {
-
- SourceHandle = FileHandle;
- status = STATUS_SUCCESS;
- }
+ SourceHandle = FileHandle;
+ status = STATUS_SUCCESS;
}
- --TlsData->file_dont_strip_write_access;
-
if (! NT_SUCCESS(status))
__leave;
diff --git a/Sandboxie/core/dll/file_dir.c b/Sandboxie/core/dll/file_dir.c
index 8b433bfb..87d5e9de 100644
--- a/Sandboxie/core/dll/file_dir.c
+++ b/Sandboxie/core/dll/file_dir.c
@@ -3170,7 +3170,8 @@ _FX NTSTATUS File_NtQueryVolumeInformationFile(
_FX NTSTATUS File_SetReparsePoint(
HANDLE FileHandle, PREPARSE_DATA_BUFFER Data, ULONG DataLen)
{
- THREAD_DATA *TlsData;
+ THREAD_DATA *TlsData = Dll_GetTlsData(NULL);
+
NTSTATUS status;
UNICODE_STRING objname;
OBJECT_ATTRIBUTES objattrs;
@@ -3180,13 +3181,15 @@ _FX NTSTATUS File_SetReparsePoint(
PREPARSE_DATA_BUFFER NewData = NULL;
ULONG NewDataLen;
IO_STATUS_BLOCK MyIoStatusBlock;
+ BOOLEAN MigrateTarget = FALSE;
+
+ if (! Data)
+ return STATUS_BAD_INITIAL_PC;
//
// get paths to source and target directories
//
- TlsData = Dll_GetTlsData(NULL);
-
Dll_PushTlsNameBuffer(TlsData);
__try {
@@ -3194,10 +3197,6 @@ _FX NTSTATUS File_SetReparsePoint(
WCHAR* SubstituteNameBuffer;
USHORT PrintNameLength;
WCHAR* PrintNameBuffer;
- //BOOLEAN RelativePath = FALSE;
-
- if (! Data)
- return STATUS_BAD_INITIAL_PC;
if (Data->ReparseTag == IO_REPARSE_TAG_SYMLINK)
{
@@ -3205,8 +3204,16 @@ _FX NTSTATUS File_SetReparsePoint(
SubstituteNameBuffer = &Data->SymbolicLinkReparseBuffer.PathBuffer[Data->SymbolicLinkReparseBuffer.SubstituteNameOffset/sizeof(WCHAR)];
PrintNameLength = Data->SymbolicLinkReparseBuffer.PrintNameLength;
PrintNameBuffer = &Data->SymbolicLinkReparseBuffer.PathBuffer[Data->SymbolicLinkReparseBuffer.PrintNameOffset/sizeof(WCHAR)];
- if (Data->SymbolicLinkReparseBuffer.Flags & SYMLINK_FLAG_RELATIVE)
- return STATUS_BAD_INITIAL_PC; //RelativePath = TRUE; // let it be done normally
+ if (Data->SymbolicLinkReparseBuffer.Flags & SYMLINK_FLAG_RELATIVE) {
+
+ //
+ // We can allow for a relative path in the box but must ensure the hatget gets migrated
+ //
+
+ MigrateTarget = TRUE;
+ status = STATUS_BAD_INITIAL_PC;
+ __leave;
+ }
NewDataLen = (UFIELD_OFFSET(REPARSE_DATA_BUFFER, SymbolicLinkReparseBuffer.PathBuffer) - UFIELD_OFFSET(REPARSE_DATA_BUFFER, GenericReparseBuffer));
}
@@ -3219,14 +3226,17 @@ _FX NTSTATUS File_SetReparsePoint(
NewDataLen = (UFIELD_OFFSET(REPARSE_DATA_BUFFER, MountPointReparseBuffer.PathBuffer) - UFIELD_OFFSET(REPARSE_DATA_BUFFER, GenericReparseBuffer));
}
- else
- return STATUS_BAD_INITIAL_PC;
+ else {
+ status = STATUS_BAD_INITIAL_PC;
+ __leave;
+ }
//
// get copy path of reparse source
//
RtlInitUnicodeString(&objname, L"");
+
InitializeObjectAttributes(
&objattrs, &objname, OBJ_CASE_INSENSITIVE, NULL, NULL);
@@ -3320,17 +3330,14 @@ _FX NTSTATUS File_SetReparsePoint(
if (NT_SUCCESS(status)) {
- File_CreateBoxedPath(TruePath);
-
status = __sys_NtFsControlFile(
FileHandle, NULL, NULL, NULL,
&MyIoStatusBlock, FSCTL_SET_REPARSE_POINT,
NewData, NewDataLen,
NULL, 0);
- }
- if (NewData)
- Dll_Free(NewData);
+ MigrateTarget = NT_SUCCESS(status);
+ }
/*
//
@@ -3378,6 +3385,23 @@ _FX NTSTATUS File_SetReparsePoint(
if (TargetPath)
Dll_Free(TargetPath);*/
+ if (MigrateTarget) {
+
+ //
+ // We must migrate the file or directory into the sandbox as the path reparsing by NtCreateFile
+ // is done by the kernel and we do not "manually" reparse the path before invoking it,
+ // hence there must be the expected file at the path we are linking to.
+ //
+
+ HANDLE SourceHandle;
+ status = File_OpenForRenameFile(&SourceHandle, TruePath);
+ if (NT_SUCCESS(status))
+ NtClose(SourceHandle);
+ }
+
+ if (NewData)
+ Dll_Free(NewData);
+
Dll_PopTlsNameBuffer(TlsData);
return status;
diff --git a/Sandboxie/core/dll/file_pipe.c b/Sandboxie/core/dll/file_pipe.c
index f1cc0f30..d9b0467a 100644
--- a/Sandboxie/core/dll/file_pipe.c
+++ b/Sandboxie/core/dll/file_pipe.c
@@ -1152,17 +1152,11 @@ _FX NTSTATUS File_NtFsControlFile(
handle = File_GetProxyPipe(FileHandle, NULL);
if (! handle) {
- status = STATUS_BAD_INITIAL_PC;
-
if (IoControlCode == FSCTL_SET_REPARSE_POINT) {
- BOOLEAN BoxReparseTarget = SbieApi_QueryConfBool(NULL, L"BoxReparseTarget", FALSE);
- if(BoxReparseTarget) {
-
- status = File_SetReparsePoint(
- FileHandle, InputBuffer, InputBufferLength);
- SetLastError(LastError);
- }
+ status = File_SetReparsePoint(
+ FileHandle, InputBuffer, InputBufferLength);
+ SetLastError(LastError);
} else if (IoControlCode == FSCTL_PIPE_WAIT) {
@@ -1178,7 +1172,8 @@ _FX NTSTATUS File_NtFsControlFile(
else
status = STATUS_ACCESS_DENIED;
- }
+ } else
+ status = STATUS_BAD_INITIAL_PC;
if (status == STATUS_BAD_INITIAL_PC) {
From 18a6535bac5b0930cd37dfd4d610500d22abb6a2 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 28 Apr 2024 13:10:53 +0200
Subject: [PATCH 049/122] Update file_dir.c
---
Sandboxie/core/dll/file_dir.c | 145 +++++++++++++++++++++++++---------
1 file changed, 108 insertions(+), 37 deletions(-)
diff --git a/Sandboxie/core/dll/file_dir.c b/Sandboxie/core/dll/file_dir.c
index 87d5e9de..adb06215 100644
--- a/Sandboxie/core/dll/file_dir.c
+++ b/Sandboxie/core/dll/file_dir.c
@@ -3162,6 +3162,59 @@ _FX NTSTATUS File_NtQueryVolumeInformationFile(
}
+//---------------------------------------------------------------------------
+// File_CanonizePath
+//---------------------------------------------------------------------------
+
+
+WCHAR* File_CanonizePath(const wchar_t* absolute_path, ULONG abs_path_len, const wchar_t* relative_path, ULONG rel_path_len)
+{
+ ULONG i, j;
+
+ while(absolute_path[abs_path_len-1] == L'\\')
+ abs_path_len--;
+
+ WCHAR* result = Dll_Alloc((abs_path_len + rel_path_len + 1) * sizeof(wchar_t));
+ if (!result) return NULL;
+ wcsncpy(result, absolute_path, abs_path_len);
+ result[abs_path_len] = 0;
+
+ for (i = 0; i < rel_path_len; ) {
+
+ if (relative_path[i] == L'.' && relative_path[i + 1] == L'.' && (relative_path[i + 2] == L'\\' || relative_path[i + 2] == L'\0')) {
+
+ for (j = abs_path_len - 1; j >= 0 && result[j] != L'\\'; --j)
+ result[j] = L'\0';
+ if (j >= 0)
+ result[j] = L'\0';
+
+ abs_path_len = j;
+
+ i += 3;
+
+ } else if (relative_path[i] == L'.') {
+
+ i += 2;
+
+ } else {
+
+ for (j = i; j < rel_path_len && relative_path[j] != L'\\' && relative_path[j] != L'\0'; ++j)
+ ;
+
+ result[abs_path_len] = L'\\';
+ wcsncpy(result + abs_path_len + 1, &relative_path[i], j - i);
+ result[abs_path_len + j - i + 1] = L'\0';
+
+ abs_path_len += j - i + 1;
+
+ i = j + 1;
+ }
+ }
+
+ return result;
+}
+
+
//---------------------------------------------------------------------------
// File_SetReparsePoint
//---------------------------------------------------------------------------
@@ -3177,6 +3230,7 @@ _FX NTSTATUS File_SetReparsePoint(
OBJECT_ATTRIBUTES objattrs;
WCHAR *TruePath, *CopyPath;
//WCHAR *SourcePath = NULL, *TargetPath = NULL;
+ WCHAR* AbsolutePath = NULL;
ULONG FileFlags, mp_flags;
PREPARSE_DATA_BUFFER NewData = NULL;
ULONG NewDataLen;
@@ -3198,39 +3252,6 @@ _FX NTSTATUS File_SetReparsePoint(
USHORT PrintNameLength;
WCHAR* PrintNameBuffer;
- if (Data->ReparseTag == IO_REPARSE_TAG_SYMLINK)
- {
- SubstituteNameLength = Data->SymbolicLinkReparseBuffer.SubstituteNameLength;
- SubstituteNameBuffer = &Data->SymbolicLinkReparseBuffer.PathBuffer[Data->SymbolicLinkReparseBuffer.SubstituteNameOffset/sizeof(WCHAR)];
- PrintNameLength = Data->SymbolicLinkReparseBuffer.PrintNameLength;
- PrintNameBuffer = &Data->SymbolicLinkReparseBuffer.PathBuffer[Data->SymbolicLinkReparseBuffer.PrintNameOffset/sizeof(WCHAR)];
- if (Data->SymbolicLinkReparseBuffer.Flags & SYMLINK_FLAG_RELATIVE) {
-
- //
- // We can allow for a relative path in the box but must ensure the hatget gets migrated
- //
-
- MigrateTarget = TRUE;
- status = STATUS_BAD_INITIAL_PC;
- __leave;
- }
-
- NewDataLen = (UFIELD_OFFSET(REPARSE_DATA_BUFFER, SymbolicLinkReparseBuffer.PathBuffer) - UFIELD_OFFSET(REPARSE_DATA_BUFFER, GenericReparseBuffer));
- }
- else if (Data->ReparseTag == IO_REPARSE_TAG_MOUNT_POINT)
- {
- SubstituteNameLength = Data->MountPointReparseBuffer.SubstituteNameLength;
- SubstituteNameBuffer = &Data->MountPointReparseBuffer.PathBuffer[Data->MountPointReparseBuffer.SubstituteNameOffset/sizeof(WCHAR)];
- PrintNameLength = Data->MountPointReparseBuffer.PrintNameLength;
- PrintNameBuffer = &Data->MountPointReparseBuffer.PathBuffer[Data->MountPointReparseBuffer.PrintNameOffset/sizeof(WCHAR)];
-
- NewDataLen = (UFIELD_OFFSET(REPARSE_DATA_BUFFER, MountPointReparseBuffer.PathBuffer) - UFIELD_OFFSET(REPARSE_DATA_BUFFER, GenericReparseBuffer));
- }
- else {
- status = STATUS_BAD_INITIAL_PC;
- __leave;
- }
-
//
// get copy path of reparse source
//
@@ -3261,6 +3282,38 @@ _FX NTSTATUS File_SetReparsePoint(
__leave;
}
+ //
+ // get the absolute reparse target path
+ //
+
+ if (Data->ReparseTag == IO_REPARSE_TAG_SYMLINK)
+ {
+ SubstituteNameLength = Data->SymbolicLinkReparseBuffer.SubstituteNameLength;
+ SubstituteNameBuffer = &Data->SymbolicLinkReparseBuffer.PathBuffer[Data->SymbolicLinkReparseBuffer.SubstituteNameOffset/sizeof(WCHAR)];
+ PrintNameLength = Data->SymbolicLinkReparseBuffer.PrintNameLength;
+ PrintNameBuffer = &Data->SymbolicLinkReparseBuffer.PathBuffer[Data->SymbolicLinkReparseBuffer.PrintNameOffset/sizeof(WCHAR)];
+ if (Data->SymbolicLinkReparseBuffer.Flags & SYMLINK_FLAG_RELATIVE) {
+
+ WCHAR* LinkName = wcsrchr(TruePath, L'\\');
+ AbsolutePath = File_CanonizePath(TruePath, (ULONG)(LinkName - TruePath), SubstituteNameBuffer, SubstituteNameLength / sizeof(wchar_t));
+ }
+
+ NewDataLen = (UFIELD_OFFSET(REPARSE_DATA_BUFFER, SymbolicLinkReparseBuffer.PathBuffer) - UFIELD_OFFSET(REPARSE_DATA_BUFFER, GenericReparseBuffer));
+ }
+ else if (Data->ReparseTag == IO_REPARSE_TAG_MOUNT_POINT)
+ {
+ SubstituteNameLength = Data->MountPointReparseBuffer.SubstituteNameLength;
+ SubstituteNameBuffer = &Data->MountPointReparseBuffer.PathBuffer[Data->MountPointReparseBuffer.SubstituteNameOffset/sizeof(WCHAR)];
+ PrintNameLength = Data->MountPointReparseBuffer.PrintNameLength;
+ PrintNameBuffer = &Data->MountPointReparseBuffer.PathBuffer[Data->MountPointReparseBuffer.PrintNameOffset/sizeof(WCHAR)];
+
+ NewDataLen = (UFIELD_OFFSET(REPARSE_DATA_BUFFER, MountPointReparseBuffer.PathBuffer) - UFIELD_OFFSET(REPARSE_DATA_BUFFER, GenericReparseBuffer));
+ }
+ else {
+ status = STATUS_BAD_INITIAL_PC;
+ __leave;
+ }
+
//if (File_Snapshot != NULL){
// WCHAR* TmplName = File_FindSnapshotPath(CopyPath);
// if (TmplName) CopyPath = TmplName;
@@ -3273,14 +3326,30 @@ _FX NTSTATUS File_SetReparsePoint(
// get copy path of reparse target
//
- objname.Length = SubstituteNameLength;
+ if (AbsolutePath) {
+ objname.Length = wcslen(AbsolutePath) * sizeof(wchar_t);
+ objname.Buffer = AbsolutePath;
+ } else {
+ objname.Length = SubstituteNameLength;
+ objname.Buffer = SubstituteNameBuffer;
+ }
objname.MaximumLength = objname.Length;
- objname.Buffer = SubstituteNameBuffer;
status = File_GetName(NULL, &objname, &TruePath, &CopyPath, NULL);
if (! NT_SUCCESS(status))
__leave;
+ if (AbsolutePath) {
+
+ //
+ // We can allow for a relative path in the box but must ensure the hatget gets migrated
+ //
+
+ MigrateTarget = TRUE;
+ status = STATUS_BAD_INITIAL_PC;
+ __leave;
+ }
+
//TargetPath = Dll_Alloc((wcslen(CopyPath) + 4) * sizeof(WCHAR));
//wcscpy(TargetPath, CopyPath);
@@ -3394,11 +3463,13 @@ _FX NTSTATUS File_SetReparsePoint(
//
HANDLE SourceHandle;
- status = File_OpenForRenameFile(&SourceHandle, TruePath);
- if (NT_SUCCESS(status))
+ if (NT_SUCCESS(File_OpenForRenameFile(&SourceHandle, TruePath)))
NtClose(SourceHandle);
}
+ if (AbsolutePath)
+ Dll_Free(AbsolutePath);
+
if (NewData)
Dll_Free(NewData);
From f5070bbe8172c1f4a8e23e76ae4a2923204547a3 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 28 Apr 2024 15:19:13 +0200
Subject: [PATCH 050/122] symlink fix
---
Sandboxie/core/dll/file_del.c | 2 +-
Sandboxie/core/dll/file_dir.c | 17 +++++++++++++++--
2 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/Sandboxie/core/dll/file_del.c b/Sandboxie/core/dll/file_del.c
index 6b77e140..107c933a 100644
--- a/Sandboxie/core/dll/file_del.c
+++ b/Sandboxie/core/dll/file_del.c
@@ -558,7 +558,7 @@ _FX WCHAR* File_TranslateNtToDosPath2(const WCHAR *NtPath)
WCHAR *DosPath = NULL;
ULONG len_nt;
- len_nt = wcslen(NtPath) + 11;
+ len_nt = wcslen(NtPath) + 16;
DosPath = Dll_Alloc(len_nt * sizeof(WCHAR));
wcscpy(DosPath, NtPath);
diff --git a/Sandboxie/core/dll/file_dir.c b/Sandboxie/core/dll/file_dir.c
index adb06215..b2506b54 100644
--- a/Sandboxie/core/dll/file_dir.c
+++ b/Sandboxie/core/dll/file_dir.c
@@ -3353,9 +3353,19 @@ _FX NTSTATUS File_SetReparsePoint(
//TargetPath = Dll_Alloc((wcslen(CopyPath) + 4) * sizeof(WCHAR));
//wcscpy(TargetPath, CopyPath);
+ WCHAR* NewSubstituteNameBuffer = NULL;
WCHAR* OldPrintNameBuffer = PrintNameBuffer; // we don't need to change the display name
+
+ if (Data->ReparseTag) {
- SubstituteNameLength = wcslen(CopyPath) * sizeof(WCHAR);
+ NewSubstituteNameBuffer = File_TranslateNtToDosPath2(CopyPath);
+ memmove(NewSubstituteNameBuffer + 4, NewSubstituteNameBuffer, (wcslen(NewSubstituteNameBuffer) + 1) * sizeof(wchar_t)); // File_TranslateNtToDosPath2 alocates 16 extry chars for such cases
+ wcsncpy(NewSubstituteNameBuffer, L"\\??\\", 4);
+
+ } else
+ NewSubstituteNameBuffer = CopyPath;
+
+ SubstituteNameLength = wcslen(NewSubstituteNameBuffer) * sizeof(WCHAR);
NewDataLen += SubstituteNameLength + sizeof(WCHAR) + PrintNameLength + sizeof(WCHAR) + 8;
NewData = Dll_Alloc(NewDataLen);
@@ -3385,9 +3395,12 @@ _FX NTSTATUS File_SetReparsePoint(
PrintNameBuffer = &NewData->MountPointReparseBuffer.PathBuffer[NewData->MountPointReparseBuffer.PrintNameOffset/sizeof(WCHAR)];
}
- memcpy(SubstituteNameBuffer, CopyPath, SubstituteNameLength + sizeof(WCHAR));
+ memcpy(SubstituteNameBuffer, NewSubstituteNameBuffer, SubstituteNameLength + sizeof(WCHAR));
memcpy(PrintNameBuffer, OldPrintNameBuffer, PrintNameLength + sizeof(WCHAR));
+ if (Data->ReparseTag)
+ Dll_Free(NewSubstituteNameBuffer);
+
} __except (EXCEPTION_EXECUTE_HANDLER) {
status = GetExceptionCode();
}
From bda087c1a63d5acdb7fc951a7c6bb007cd6e5f72 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 28 Apr 2024 15:20:23 +0200
Subject: [PATCH 051/122] Update file_dir.c
---
Sandboxie/core/dll/file_dir.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Sandboxie/core/dll/file_dir.c b/Sandboxie/core/dll/file_dir.c
index b2506b54..a892b977 100644
--- a/Sandboxie/core/dll/file_dir.c
+++ b/Sandboxie/core/dll/file_dir.c
@@ -3356,7 +3356,7 @@ _FX NTSTATUS File_SetReparsePoint(
WCHAR* NewSubstituteNameBuffer = NULL;
WCHAR* OldPrintNameBuffer = PrintNameBuffer; // we don't need to change the display name
- if (Data->ReparseTag) {
+ if (Data->ReparseTag == IO_REPARSE_TAG_SYMLINK) {
NewSubstituteNameBuffer = File_TranslateNtToDosPath2(CopyPath);
memmove(NewSubstituteNameBuffer + 4, NewSubstituteNameBuffer, (wcslen(NewSubstituteNameBuffer) + 1) * sizeof(wchar_t)); // File_TranslateNtToDosPath2 alocates 16 extry chars for such cases
@@ -3398,7 +3398,7 @@ _FX NTSTATUS File_SetReparsePoint(
memcpy(SubstituteNameBuffer, NewSubstituteNameBuffer, SubstituteNameLength + sizeof(WCHAR));
memcpy(PrintNameBuffer, OldPrintNameBuffer, PrintNameLength + sizeof(WCHAR));
- if (Data->ReparseTag)
+ if (Data->ReparseTag == IO_REPARSE_TAG_SYMLINK)
Dll_Free(NewSubstituteNameBuffer);
} __except (EXCEPTION_EXECUTE_HANDLER) {
From 4a8650ca9df21fb587bbd079acaa192f04fa6d97 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 28 Apr 2024 16:36:37 +0200
Subject: [PATCH 052/122] refactory
---
Sandboxie/core/dll/file.c | 6 +++
Sandboxie/core/dll/file_del.c | 16 +++---
Sandboxie/core/dll/file_dir.c | 13 ++---
Sandboxie/core/dll/file_init.c | 44 +++++++++++-----
Sandboxie/core/dll/file_link.c | 95 +++++++++++++++++++---------------
5 files changed, 103 insertions(+), 71 deletions(-)
diff --git a/Sandboxie/core/dll/file.c b/Sandboxie/core/dll/file.c
index 15dfc6e3..b9831f18 100644
--- a/Sandboxie/core/dll/file.c
+++ b/Sandboxie/core/dll/file.c
@@ -118,6 +118,9 @@ SBIEDLL_EXPORT NTSTATUS File_GetName(
HANDLE RootDirectory, UNICODE_STRING *ObjectName,
WCHAR **OutTruePath, WCHAR **OutCopyPath, ULONG *OutFlags);
+static WCHAR *File_TranslateDosToNtPath2(
+ const WCHAR *DosPath, ULONG DosPathLen);
+
static WCHAR *File_GetName_TranslateSymlinks(
THREAD_DATA *TlsData, const WCHAR *objname_buf, ULONG objname_len,
BOOLEAN *translated);
@@ -262,6 +265,9 @@ static NTSTATUS File_NtDeleteFile(OBJECT_ATTRIBUTES *ObjectAttributes);
static NTSTATUS File_NtDeleteFileImpl(OBJECT_ATTRIBUTES *ObjectAttributes);
+static WCHAR* File_CanonizePath(
+ const wchar_t* absolute_path, ULONG abs_path_len, const wchar_t* relative_path, ULONG rel_path_len);
+
static NTSTATUS File_OpenForRenameFile(
HANDLE* pSourceHandle, const WCHAR *TruePath);
diff --git a/Sandboxie/core/dll/file_del.c b/Sandboxie/core/dll/file_del.c
index 107c933a..111fa6bd 100644
--- a/Sandboxie/core/dll/file_del.c
+++ b/Sandboxie/core/dll/file_del.c
@@ -549,16 +549,16 @@ _FX VOID File_SavePathTree_internal(LIST* Root, const WCHAR* name, WCHAR* (*Tran
//---------------------------------------------------------------------------
-// File_TranslateNtToDosPath2
+// File_TranslateNtToDosPathForDatFile
//---------------------------------------------------------------------------
-_FX WCHAR* File_TranslateNtToDosPath2(const WCHAR *NtPath)
+_FX WCHAR* File_TranslateNtToDosPathForDatFile(const WCHAR *NtPath)
{
WCHAR *DosPath = NULL;
ULONG len_nt;
- len_nt = wcslen(NtPath) + 16;
+ len_nt = wcslen(NtPath) + 11;
DosPath = Dll_Alloc(len_nt * sizeof(WCHAR));
wcscpy(DosPath, NtPath);
@@ -635,7 +635,7 @@ _FX BOOLEAN File_SavePathTree()
{
EnterCriticalSection(File_PathRoot_CritSec);
- File_SavePathTree_internal(&File_PathRoot, FILE_PATH_FILE_NAME, File_TranslateNtToDosPath2);
+ File_SavePathTree_internal(&File_PathRoot, FILE_PATH_FILE_NAME, File_TranslateNtToDosPathForDatFile);
File_GetAttributes_internal(FILE_PATH_FILE_NAME, &File_PathsFileSize, &File_PathsFileDate, NULL);
@@ -764,11 +764,11 @@ _FX BOOLEAN File_LoadPathTree_internal(LIST* Root, const WCHAR* name, WCHAR* (*T
//---------------------------------------------------------------------------
-// File_TranslateDosToNtPath2
+// File_TranslateDosToNtPathForDatFile
//---------------------------------------------------------------------------
-_FX WCHAR *File_TranslateDosToNtPath2(const WCHAR *DosPath)
+_FX WCHAR *File_TranslateDosToNtPathForDatFile(const WCHAR *DosPath)
{
WCHAR *NtPath = NULL;
ULONG len_dos;
@@ -841,7 +841,7 @@ _FX BOOLEAN File_LoadPathTree()
EnterCriticalSection(File_PathRoot_CritSec);
- File_LoadPathTree_internal(&File_PathRoot, FILE_PATH_FILE_NAME, File_TranslateDosToNtPath2);
+ File_LoadPathTree_internal(&File_PathRoot, FILE_PATH_FILE_NAME, File_TranslateDosToNtPathForDatFile);
LeaveCriticalSection(File_PathRoot_CritSec);
@@ -1038,7 +1038,7 @@ _FX NTSTATUS File_MarkDeleted_v2(const WCHAR* TruePath)
HANDLE hPathsFile;
if (File_OpenDataFile(FILE_PATH_FILE_NAME, &hPathsFile, TRUE))
{
- File_AppendPathEntry_internal(hPathsFile, Path, FILE_DELETED_FLAG, NULL, File_TranslateNtToDosPath2);
+ File_AppendPathEntry_internal(hPathsFile, Path, FILE_DELETED_FLAG, NULL, File_TranslateNtToDosPathForDatFile);
NtClose(hPathsFile);
diff --git a/Sandboxie/core/dll/file_dir.c b/Sandboxie/core/dll/file_dir.c
index a892b977..8ccf8f68 100644
--- a/Sandboxie/core/dll/file_dir.c
+++ b/Sandboxie/core/dll/file_dir.c
@@ -3353,17 +3353,15 @@ _FX NTSTATUS File_SetReparsePoint(
//TargetPath = Dll_Alloc((wcslen(CopyPath) + 4) * sizeof(WCHAR));
//wcscpy(TargetPath, CopyPath);
- WCHAR* NewSubstituteNameBuffer = NULL;
+ WCHAR* NewSubstituteNameBuffer = CopyPath;
WCHAR* OldPrintNameBuffer = PrintNameBuffer; // we don't need to change the display name
if (Data->ReparseTag == IO_REPARSE_TAG_SYMLINK) {
- NewSubstituteNameBuffer = File_TranslateNtToDosPath2(CopyPath);
- memmove(NewSubstituteNameBuffer + 4, NewSubstituteNameBuffer, (wcslen(NewSubstituteNameBuffer) + 1) * sizeof(wchar_t)); // File_TranslateNtToDosPath2 alocates 16 extry chars for such cases
+ SbieDll_TranslateNtToDosPath(NewSubstituteNameBuffer);
+ memmove(NewSubstituteNameBuffer + 4, NewSubstituteNameBuffer, (wcslen(NewSubstituteNameBuffer) + 1) * sizeof(wchar_t));
wcsncpy(NewSubstituteNameBuffer, L"\\??\\", 4);
-
- } else
- NewSubstituteNameBuffer = CopyPath;
+ }
SubstituteNameLength = wcslen(NewSubstituteNameBuffer) * sizeof(WCHAR);
@@ -3398,9 +3396,6 @@ _FX NTSTATUS File_SetReparsePoint(
memcpy(SubstituteNameBuffer, NewSubstituteNameBuffer, SubstituteNameLength + sizeof(WCHAR));
memcpy(PrintNameBuffer, OldPrintNameBuffer, PrintNameLength + sizeof(WCHAR));
- if (Data->ReparseTag == IO_REPARSE_TAG_SYMLINK)
- Dll_Free(NewSubstituteNameBuffer);
-
} __except (EXCEPTION_EXECUTE_HANDLER) {
status = GetExceptionCode();
}
diff --git a/Sandboxie/core/dll/file_init.c b/Sandboxie/core/dll/file_init.c
index a6994128..87beb244 100644
--- a/Sandboxie/core/dll/file_init.c
+++ b/Sandboxie/core/dll/file_init.c
@@ -1665,14 +1665,29 @@ _FX WCHAR *File_AllocAndInitEnvironment_2(
//---------------------------------------------------------------------------
-// File_TranslateDosToNtPath
+// File_ConcatPath2
//---------------------------------------------------------------------------
-_FX WCHAR *File_TranslateDosToNtPath(const WCHAR *DosPath)
+_FX WCHAR *File_ConcatPath2(const WCHAR *Path1, ULONG Path1Len, const WCHAR *Path2, ULONG Path2Len)
+{
+ ULONG len_dos = Path1Len + Path2Len;
+ WCHAR* Path = Dll_Alloc((len_dos + 1) * sizeof(WCHAR));
+ wmemcpy(Path, Path1, Path1Len);
+ wmemcpy(Path + Path1Len, Path2, Path2Len);
+ Path[len_dos] = L'\0';
+ return Path;
+}
+
+
+//---------------------------------------------------------------------------
+// File_TranslateDosToNtPath2
+//---------------------------------------------------------------------------
+
+
+_FX WCHAR *File_TranslateDosToNtPath2(const WCHAR *DosPath, ULONG DosPathLen)
{
WCHAR *NtPath = NULL;
- ULONG len_dos;
if (DosPath && DosPath[0] && DosPath[1]) {
@@ -1682,11 +1697,7 @@ _FX WCHAR *File_TranslateDosToNtPath(const WCHAR *DosPath)
// network path
//
- DosPath += 2;
- len_dos = wcslen(DosPath) + 1;
- NtPath = Dll_Alloc((File_MupLen + len_dos) * sizeof(WCHAR));
- wmemcpy(NtPath, File_Mup, File_MupLen);
- wmemcpy(NtPath + File_MupLen, DosPath, len_dos);
+ NtPath = File_ConcatPath2(File_Mup, File_MupLen, DosPath + 2, DosPathLen - 2);
} else if (DosPath[1] == L':' &&
(DosPath[2] == L'\\' || DosPath[2] == L'\0')) {
@@ -1698,11 +1709,7 @@ _FX WCHAR *File_TranslateDosToNtPath(const WCHAR *DosPath)
FILE_DRIVE *drive = File_GetDriveForLetter(DosPath[0]);
if (drive) {
- DosPath += 2;
- len_dos = wcslen(DosPath) + 1;
- NtPath = Dll_Alloc((drive->len + len_dos) * sizeof(WCHAR));
- wmemcpy(NtPath, drive->path, drive->len);
- wmemcpy(NtPath + drive->len, DosPath, len_dos);
+ NtPath = File_ConcatPath2(drive->path, drive->len, DosPath + 2, DosPathLen - 2);
LeaveCriticalSection(File_DrivesAndLinks_CritSec);
}
@@ -1713,6 +1720,17 @@ _FX WCHAR *File_TranslateDosToNtPath(const WCHAR *DosPath)
}
+//---------------------------------------------------------------------------
+// File_TranslateDosToNtPath
+//---------------------------------------------------------------------------
+
+
+_FX WCHAR *File_TranslateDosToNtPath(const WCHAR *DosPath)
+{
+ return File_TranslateDosToNtPath2(DosPath, DosPath ? wcslen(DosPath) : 0);
+}
+
+
//---------------------------------------------------------------------------
// File_GetSetDeviceMap
//---------------------------------------------------------------------------
diff --git a/Sandboxie/core/dll/file_link.c b/Sandboxie/core/dll/file_link.c
index 5aea5e45..0fc1708f 100644
--- a/Sandboxie/core/dll/file_link.c
+++ b/Sandboxie/core/dll/file_link.c
@@ -323,34 +323,45 @@ _FX FILE_GUID *File_GetLinkForGuid(const WCHAR* guid_str)
//---------------------------------------------------------------------------
-// File_TranslateGuidToNtPath
+// File_TranslateGuidToNtPath2
//---------------------------------------------------------------------------
-_FX WCHAR* File_TranslateGuidToNtPath(const WCHAR* input_str)
+
+_FX WCHAR* File_TranslateGuidToNtPath2(const WCHAR* GuidPath, ULONG GuidPathLen)
{
ULONG len;
WCHAR* NtPath;
- if (_wcsnicmp(input_str, L"\\??\\Volume{", 11) != 0)
- return NULL;
+ if (GuidPath && GuidPathLen >= 48 && _wcsnicmp(GuidPath, L"\\??\\Volume{", 11) == 0) {
- FILE_GUID* guid = File_GetLinkForGuid(&input_str[10]);
- if (guid) {
+ //
+ // guid path
+ //
- input_str += 48;
- len = wcslen(input_str) + 1;
- NtPath = Dll_Alloc((guid->len + len) * sizeof(WCHAR));
- wmemcpy(NtPath, guid->path, guid->len);
- wmemcpy(NtPath + guid->len, input_str, len);
+ FILE_GUID* guid = File_GetLinkForGuid(&GuidPath[10]);
+ if (guid) {
- LeaveCriticalSection(File_DrivesAndLinks_CritSec);
+ File_ConcatPath2(guid->path + 48, guid->len - 48, GuidPath, GuidPathLen);
- return NtPath;
+ LeaveCriticalSection(File_DrivesAndLinks_CritSec);
+ }
}
- return NULL;
+ return NtPath;
}
+
+//---------------------------------------------------------------------------
+// File_TranslateGuidToNtPath
+//---------------------------------------------------------------------------
+
+
+_FX WCHAR* File_TranslateGuidToNtPath(const WCHAR* GuidPath)
+{
+ return File_TranslateGuidToNtPath2(GuidPath, GuidPath ? wcslen(GuidPath) : 0);
+}
+
+
//---------------------------------------------------------------------------
// File_AddLink
//---------------------------------------------------------------------------
@@ -1036,47 +1047,49 @@ _FX FILE_LINK *File_AddTempLink(WCHAR *path)
if (NT_SUCCESS(status)) {
WCHAR* SubstituteNameBuffer = NULL;
- //WCHAR* PrintNameBuffer = NULL;
+ ULONG SubstituteNameLength = 0;
BOOL RelativePath = FALSE;
- if (reparseDataBuffer->ReparseTag == IO_REPARSE_TAG_SYMLINK)
- {
+ if (reparseDataBuffer->ReparseTag == IO_REPARSE_TAG_SYMLINK) {
+
SubstituteNameBuffer = &reparseDataBuffer->SymbolicLinkReparseBuffer.PathBuffer[reparseDataBuffer->SymbolicLinkReparseBuffer.SubstituteNameOffset/sizeof(WCHAR)];
if (reparseDataBuffer->SymbolicLinkReparseBuffer.Flags & SYMLINK_FLAG_RELATIVE)
RelativePath = TRUE;
- SubstituteNameBuffer[reparseDataBuffer->SymbolicLinkReparseBuffer.SubstituteNameLength / sizeof(WCHAR)] = 0;
- }
- else if (reparseDataBuffer->ReparseTag == IO_REPARSE_TAG_MOUNT_POINT)
- {
+ SubstituteNameLength = reparseDataBuffer->SymbolicLinkReparseBuffer.SubstituteNameLength;
+
+ } else if (reparseDataBuffer->ReparseTag == IO_REPARSE_TAG_MOUNT_POINT) {
+
SubstituteNameBuffer = &reparseDataBuffer->MountPointReparseBuffer.PathBuffer[reparseDataBuffer->MountPointReparseBuffer.SubstituteNameOffset/sizeof(WCHAR)];
- SubstituteNameBuffer[reparseDataBuffer->MountPointReparseBuffer.SubstituteNameLength / sizeof(WCHAR)] = 0;
+ SubstituteNameLength = reparseDataBuffer->MountPointReparseBuffer.SubstituteNameLength;
}
- if (SubstituteNameBuffer)
- {
- if (RelativePath)
- {
- // todo RelativePath - for now we fall back to the old method
- }
- else
- {
- WCHAR* input_str = SubstituteNameBuffer;
+ if (SubstituteNameBuffer) {
+
+ WCHAR* input_str = NULL;
+ if (RelativePath) {
+
+ WCHAR* LinkName = wcsrchr(path, L'\\');
+ input_str = File_CanonizePath(path, (ULONG)(LinkName - path), SubstituteNameBuffer, SubstituteNameLength / sizeof(WCHAR));
+
+ } else {
+
+ input_str = SubstituteNameBuffer;
if (_wcsnicmp(input_str, L"\\??\\Volume{", 11) == 0)
- input_str = File_TranslateGuidToNtPath(SubstituteNameBuffer);
+ input_str = File_TranslateGuidToNtPath2(SubstituteNameBuffer, SubstituteNameLength / sizeof(WCHAR));
else if (_wcsnicmp(input_str, File_BQQB, 4) == 0)
- input_str = File_TranslateDosToNtPath(SubstituteNameBuffer + 4);
+ input_str = File_TranslateDosToNtPath2(SubstituteNameBuffer + 4, SubstituteNameLength / sizeof(WCHAR));
+ }
- if (input_str) {
+ if (input_str) {
- ULONG input_len = wcslen(input_str);
- while (input_len > 0 && input_str[input_len - 1] == L'\\')
- input_len -= 1; // remove trailing backslash
+ ULONG input_len = wcslen(input_str);
+ while (input_len > 0 && input_str[input_len - 1] == L'\\')
+ input_len -= 1; // remove trailing backslash
- newpath = File_TranslateTempLinks_2(input_str, input_len);
+ newpath = File_TranslateTempLinks_2(input_str, input_len);
- if (input_str != SubstituteNameBuffer)
- Dll_Free(input_str);
- }
+ if (input_str != SubstituteNameBuffer)
+ Dll_Free(input_str);
}
}
}
From 846a3ea29e2f57352873c886e4c5321520fa33b7 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 28 Apr 2024 16:38:38 +0200
Subject: [PATCH 053/122] Update file_link.c
---
Sandboxie/core/dll/file_link.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Sandboxie/core/dll/file_link.c b/Sandboxie/core/dll/file_link.c
index 0fc1708f..1058943e 100644
--- a/Sandboxie/core/dll/file_link.c
+++ b/Sandboxie/core/dll/file_link.c
@@ -341,7 +341,7 @@ _FX WCHAR* File_TranslateGuidToNtPath2(const WCHAR* GuidPath, ULONG GuidPathLen)
FILE_GUID* guid = File_GetLinkForGuid(&GuidPath[10]);
if (guid) {
- File_ConcatPath2(guid->path + 48, guid->len - 48, GuidPath, GuidPathLen);
+ File_ConcatPath2(guid->path, guid->len, GuidPath + 48, GuidPathLen - 48);
LeaveCriticalSection(File_DrivesAndLinks_CritSec);
}
From e194528cb8772459102d8dabe31c014f67d43093 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 28 Apr 2024 16:40:14 +0200
Subject: [PATCH 054/122] fix
---
Sandboxie/core/dll/file.c | 3 +++
Sandboxie/core/dll/file_init.c | 6 +++---
Sandboxie/core/dll/file_link.c | 3 +--
3 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/Sandboxie/core/dll/file.c b/Sandboxie/core/dll/file.c
index b9831f18..9709d07f 100644
--- a/Sandboxie/core/dll/file.c
+++ b/Sandboxie/core/dll/file.c
@@ -265,6 +265,9 @@ static NTSTATUS File_NtDeleteFile(OBJECT_ATTRIBUTES *ObjectAttributes);
static NTSTATUS File_NtDeleteFileImpl(OBJECT_ATTRIBUTES *ObjectAttributes);
+static WCHAR *File_ConcatPath2(
+ const WCHAR *Path1, ULONG Path1Len, const WCHAR *Path2, ULONG Path2Len);
+
static WCHAR* File_CanonizePath(
const wchar_t* absolute_path, ULONG abs_path_len, const wchar_t* relative_path, ULONG rel_path_len);
diff --git a/Sandboxie/core/dll/file_init.c b/Sandboxie/core/dll/file_init.c
index 87beb244..c5c776f2 100644
--- a/Sandboxie/core/dll/file_init.c
+++ b/Sandboxie/core/dll/file_init.c
@@ -1671,11 +1671,11 @@ _FX WCHAR *File_AllocAndInitEnvironment_2(
_FX WCHAR *File_ConcatPath2(const WCHAR *Path1, ULONG Path1Len, const WCHAR *Path2, ULONG Path2Len)
{
- ULONG len_dos = Path1Len + Path2Len;
- WCHAR* Path = Dll_Alloc((len_dos + 1) * sizeof(WCHAR));
+ ULONG Length = Path1Len + Path2Len;
+ WCHAR* Path = Dll_Alloc((Length + 1) * sizeof(WCHAR));
wmemcpy(Path, Path1, Path1Len);
wmemcpy(Path + Path1Len, Path2, Path2Len);
- Path[len_dos] = L'\0';
+ Path[Length] = L'\0';
return Path;
}
diff --git a/Sandboxie/core/dll/file_link.c b/Sandboxie/core/dll/file_link.c
index 1058943e..e645bbcf 100644
--- a/Sandboxie/core/dll/file_link.c
+++ b/Sandboxie/core/dll/file_link.c
@@ -329,8 +329,7 @@ _FX FILE_GUID *File_GetLinkForGuid(const WCHAR* guid_str)
_FX WCHAR* File_TranslateGuidToNtPath2(const WCHAR* GuidPath, ULONG GuidPathLen)
{
- ULONG len;
- WCHAR* NtPath;
+ WCHAR* NtPath = NULL;
if (GuidPath && GuidPathLen >= 48 && _wcsnicmp(GuidPath, L"\\??\\Volume{", 11) == 0) {
From d99e556f29efedfda61eefc8cb7b7a55f4583fe7 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 28 Apr 2024 16:46:12 +0200
Subject: [PATCH 055/122] Update file_del.c
---
Sandboxie/core/dll/file_del.c | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
diff --git a/Sandboxie/core/dll/file_del.c b/Sandboxie/core/dll/file_del.c
index 111fa6bd..dba311b9 100644
--- a/Sandboxie/core/dll/file_del.c
+++ b/Sandboxie/core/dll/file_del.c
@@ -771,7 +771,6 @@ _FX BOOLEAN File_LoadPathTree_internal(LIST* Root, const WCHAR* name, WCHAR* (*T
_FX WCHAR *File_TranslateDosToNtPathForDatFile(const WCHAR *DosPath)
{
WCHAR *NtPath = NULL;
- ULONG len_dos;
if (DosPath && DosPath[0] && DosPath[1]) {
@@ -782,10 +781,7 @@ _FX WCHAR *File_TranslateDosToNtPathForDatFile(const WCHAR *DosPath)
//
DosPath += 2;
- len_dos = wcslen(DosPath) + 1;
- NtPath = Dll_Alloc((File_MupLen + len_dos) * sizeof(WCHAR));
- wmemcpy(NtPath, File_Mup, File_MupLen);
- wmemcpy(NtPath + File_MupLen, DosPath, len_dos);
+ NtPath = File_ConcatPath2(File_Mup, File_MupLen, DosPath, wcslen(DosPath));
} else if (DosPath[0] != L'\\') {
@@ -815,10 +811,7 @@ _FX WCHAR *File_TranslateDosToNtPathForDatFile(const WCHAR *DosPath)
}
DosPath += path_pos;
- len_dos = wcslen(DosPath) + 1;
- NtPath = Dll_Alloc((drive->len + len_dos) * sizeof(WCHAR));
- wmemcpy(NtPath, drive->path, drive->len);
- wmemcpy(NtPath + drive->len, DosPath, len_dos);
+ NtPath = File_ConcatPath2(drive->path, drive->len, DosPath, wcslen(DosPath));
LeaveCriticalSection(File_DrivesAndLinks_CritSec);
}
From 4a6c5dd63dc6894ff5c1b0e9dfcf16f7f1101bca Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Sun, 28 Apr 2024 20:41:40 +0300
Subject: [PATCH 056/122] Update SandMan.vcxproj
Version.lib
---
SandboxiePlus/SandMan/SandMan.vcxproj | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/SandboxiePlus/SandMan/SandMan.vcxproj b/SandboxiePlus/SandMan/SandMan.vcxproj
index c90a2545..6d9ef14b 100644
--- a/SandboxiePlus/SandMan/SandMan.vcxproj
+++ b/SandboxiePlus/SandMan/SandMan.vcxproj
@@ -182,7 +182,7 @@
Windows$(OutDir)\$(ProjectName).exetrue
- QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;%(AdditionalDependencies)
+ QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;Version.lib;%(AdditionalDependencies)
@@ -207,7 +207,7 @@
trueMachineX86 /SUBSYSTEM:WINDOWS
- QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;%(AdditionalDependencies)
+ QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;Version.lib;%(AdditionalDependencies)
@@ -228,7 +228,7 @@
Windows$(OutDir)\$(ProjectName).exetrue
- QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;%(AdditionalDependencies)
+ QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;Version.lib;%(AdditionalDependencies)
@@ -249,7 +249,7 @@
Windows$(OutDir)\$(ProjectName).exetrue
- QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;%(AdditionalDependencies)
+ QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;Version.lib;%(AdditionalDependencies)
@@ -273,7 +273,7 @@
trueMachineX86 /SUBSYSTEM:WINDOWS
- QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;%(AdditionalDependencies)
+ QSbieAPI.lib;MiscHelpers.lib;ntdll.lib;QtSingleApp.lib;UGlobalHotkey.lib;comctl32.lib;bcrypt.lib;Version.lib;%(AdditionalDependencies)
From 774d1deeb629d95b44167e8781feba31a1925d99 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Mon, 29 Apr 2024 08:50:11 +0200
Subject: [PATCH 057/122] Update file_link.c
---
Sandboxie/core/dll/file_link.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Sandboxie/core/dll/file_link.c b/Sandboxie/core/dll/file_link.c
index e645bbcf..e2d13cae 100644
--- a/Sandboxie/core/dll/file_link.c
+++ b/Sandboxie/core/dll/file_link.c
@@ -1076,7 +1076,7 @@ _FX FILE_LINK *File_AddTempLink(WCHAR *path)
if (_wcsnicmp(input_str, L"\\??\\Volume{", 11) == 0)
input_str = File_TranslateGuidToNtPath2(SubstituteNameBuffer, SubstituteNameLength / sizeof(WCHAR));
else if (_wcsnicmp(input_str, File_BQQB, 4) == 0)
- input_str = File_TranslateDosToNtPath2(SubstituteNameBuffer + 4, SubstituteNameLength / sizeof(WCHAR));
+ input_str = File_TranslateDosToNtPath2(SubstituteNameBuffer + 4, (SubstituteNameLength / sizeof(WCHAR)) - 4);
}
if (input_str) {
From f0403dcf367d0db56f717b3bd0d595a2120678fd Mon Sep 17 00:00:00 2001
From: DavidXanatos
Date: Wed, 1 May 2024 19:02:02 +0200
Subject: [PATCH 058/122] Update CHANGELOG.md
---
CHANGELOG.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6977b328..9c741328 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
-## [1.13.7 / 5.68.7] - 2024-04-
+## [1.13.7 / 5.68.7] - 2024-05-01
### Added
- added file version information for SbieDll.dll and SbieSvc.exe in the Sandboxie Plus About dialog
From 15588a45510728f8a4fd0e17355b06b8adb0edcb Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Thu, 2 May 2024 08:24:09 +0200
Subject: [PATCH 059/122] update
---
Sandboxie/common/my_version.h | 4 ++--
SandboxiePlus/SandMan/sandman_fr.ts | 24 ++++++++++++------------
2 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/Sandboxie/common/my_version.h b/Sandboxie/common/my_version.h
index cc410258..4f7dba94 100644
--- a/Sandboxie/common/my_version.h
+++ b/Sandboxie/common/my_version.h
@@ -25,8 +25,8 @@
#define STR(X) STR2(X)
#define VERSION_MJR 5
-#define VERSION_MIN 70
-#define VERSION_REV 0
+#define VERSION_MIN 68
+#define VERSION_REV 7
#define VERSION_UPD 0
#if VERSION_UPD > 0
diff --git a/SandboxiePlus/SandMan/sandman_fr.ts b/SandboxiePlus/SandMan/sandman_fr.ts
index 1f3a87a5..356e269c 100644
--- a/SandboxiePlus/SandMan/sandman_fr.ts
+++ b/SandboxiePlus/SandMan/sandman_fr.ts
@@ -185,7 +185,7 @@
Drop rights from Administrators and Power Users groups
- Retirer les droits des groupes Administrateurs et Utilisateurs Avancés
+ Abandonner les droits des groupes Administrateurs et Utilisateurs Avancés
@@ -3759,22 +3759,22 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
<h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ <h3>À propos de Sandboxie-Plus</h3><p>Version %1</p><p>This copy of Sandboxie-Plus is certified for: %1
-
+ Cette copie de Sandboxie-Plus est attestée pour : %1Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus est gratuit pour une utilisation personnelle et non commerciale.Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
-
+ Sandboxie-Plus est la poursuite en code source ouvert de Sandboxie.<br />Visitez <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> pour plus d'informations.<br /><br />%2<br /><br />Fonctions : %3<br /><br />Installation : %1<br />SbieDrv.sys : %4<br /> SbieSvc.exe : %5<br /> SbieDll.dll : %6<br /><br />Icônes provenant de <a href="https://icons8.com">icons8.com</a>Your Windows build exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -7173,7 +7173,7 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Drop rights from Administrators and Power Users groups
- Retirer les droits des groupes Administrateurs et Utilisateurs Avancés
+ Abandonner les droits des groupes Administrateurs et Utilisateurs Avancés
@@ -7514,7 +7514,7 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Note: Msi Installer Exemptions should not be required, but if you encounter issues installing a msi package which you trust, this option may help the installation complete successfully. You can also try disabling drop admin rights.
- Remarque : Les exemptions de l'installeur MicroSoft (MSI) ne devraient pas être nécessaires, mais si vous rencontrez des problèmes lors de l'installation d'un paquetage MSI auquel vous faites confiance, cette option peut aider l'installation à se terminer avec succès. Vous pouvez également essayer de désactiver la suppression des droits d'administrateur.
+ Remarque : Les exemptions de l'installeur MicroSoft (MSI) ne devraient pas être nécessaires, mais si vous rencontrez des problèmes lors de l'installation d'un paquetage MSI auquel vous faites confiance, cette option peut aider l'installation à se terminer avec succès. Vous pouvez également essayer de désactiver l'abandon des droits d'administrateur.
@@ -8157,7 +8157,7 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Toujours direct » pour
Drop critical privileges from processes running with a SYSTEM token
- Retirer les privilèges critiques des processus tournant avec un jeton SYSTÈME
+ Abandonner les privilèges critiques des processus tournant avec un jeton SYSTÈME
@@ -8558,7 +8558,7 @@ au lieu de « * ».
Prevent move mouse, bring in front, and similar operations, this is likely to cause issues with games.Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
- Empêcher les mouvements à la souris, la mise au premier plan, et les opérations similaires (activer ceci est susceptible de causer des problèmes avec les jeux).
+ Empêcher les mouvements à la souris, la mise au premier plan, et les opérations similaires (activer ceci est susceptible de causer des problèmes avec les jeux).
@@ -8569,7 +8569,7 @@ au lieu de « * ».
This feature does not block all means of obtaining a screen capture, only some common ones.This feature does not block all means of optaining a screen capture only some common once.
- Cette fonction ne bloque pas tous les moyens d'obtenir une capture d'écran, seulement les plus communs.
+ Cette fonction ne bloque pas tous les moyens d'obtenir une capture d'écran, seulement les plus communs.
@@ -8673,7 +8673,7 @@ Veuillez noter que ces valeurs sont actuellement spécifiques à l'utilisat
To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.
- Pour compenser la perte de protection, veuillez consulter la page d'abandon des droits dans le groupe de paramètres Restrictions.
+ Pour compenser la perte de protection, veuillez consulter la page d'Abandon des droits dans le groupe de paramètres Restrictions.
@@ -9458,7 +9458,7 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Hotkey for suspending all processes:Hotkey for suspending all process
- Raccourci pour suspendre tous les processus :
+ Raccourci pour suspendre tous les processus :
From 8430fbb7d06acb4cf6bd85efac548238d143a88d Mon Sep 17 00:00:00 2001
From: love-code-yeyixiao <188240888@qq.com>
Date: Sat, 4 May 2024 20:21:34 +0800
Subject: [PATCH 060/122] Add feature to allow all child process auto into box.
---
Sandboxie/core/drv/process_force.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index e131f67d..2bdccbee 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -114,7 +114,7 @@ static BOX *Process_CheckForceFolder(
LIST *boxes, const WCHAR *path, BOOLEAN alert, ULONG *IsAlert);
static BOX *Process_CheckForceProcess(
- LIST *boxes, const WCHAR *name, BOOLEAN alert, ULONG *IsAlert);
+ LIST *boxes, const WCHAR *name, BOOLEAN alert, ULONG *IsAlert,HANDLE parent);
static void Process_CheckAlertFolder(
LIST *boxes, const WCHAR *path, ULONG *IsAlert);
@@ -248,7 +248,7 @@ _FX BOX *Process_GetForcedStartBox(
if ((! box) && (! alert)) {
box = Process_CheckForceProcess(
- &boxes, ImageName, force_alert, &alert);
+ &boxes, ImageName, force_alert, &alert,ParentId);
}
if ((! box) && CurDir && !is_start_exe && (! alert)) {
@@ -1368,7 +1368,7 @@ _FX BOOLEAN Process_CheckForceProcessList(
_FX BOX *Process_CheckForceProcess(
- LIST *boxes, const WCHAR *name, BOOLEAN alert, ULONG *IsAlert)
+ LIST *boxes, const WCHAR *name, BOOLEAN alert, ULONG *IsAlert,HANDLE Parent)
{
FORCE_BOX *box;
@@ -1387,10 +1387,12 @@ _FX BOX *Process_CheckForceProcess(
return box->box;
}
-
+ if (Process_IsWindowsExplorerParent(Parent) && wcscmp(Conf_Get(NULL, L"ForceExplorerChild", 0), box->box->name)) {
+ return box->box;
+ }
box = List_Next(box);
}
-
+
return NULL;
}
From a218263cf80048a09bcb986261d89e8b961a4e96 Mon Sep 17 00:00:00 2001
From: love-code-yeyixiao <188240888@qq.com>
Date: Sat, 4 May 2024 20:25:57 +0800
Subject: [PATCH 061/122] Add comment.
---
Sandboxie/core/drv/process_force.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index 2bdccbee..d14b9108 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -758,8 +758,8 @@ _FX BOOLEAN Process_IsDcomLaunchParent(HANDLE ParentId)
//---------------------------------------------------------------------------
// Process_IsWindowsExplorerParent
//
-// Note: Not used at the moment but leaving in place
-// as it may prove to be useful later.
+// Note: Once an unused function, it is now used to support the ability to
+// Automatically sandbox child processes created by File Explorer..
//---------------------------------------------------------------------------
From 728051f594291dc992a8960fe71018d61a9ae006 Mon Sep 17 00:00:00 2001
From: love-code-yeyixiao <188240888@qq.com>
Date: Sat, 4 May 2024 21:01:58 +0800
Subject: [PATCH 062/122] fix
---
Sandboxie/core/drv/process_force.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index d14b9108..68021644 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -1387,7 +1387,7 @@ _FX BOX *Process_CheckForceProcess(
return box->box;
}
- if (Process_IsWindowsExplorerParent(Parent) && wcscmp(Conf_Get(NULL, L"ForceExplorerChild", 0), box->box->name)) {
+ if (Process_IsWindowsExplorerParent(Parent) && wcscmp(Conf_Get(NULL, L"ForceExplorerChild", 0), box->box->name)==0) {
return box->box;
}
box = List_Next(box);
From 9589e1abb3856a7643fe49d21b4659994eda092d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=88=B1=E7=BC=96=E7=A8=8B=E7=9A=84=E5=8F=B6=E4=B8=80?=
=?UTF-8?q?=E7=AC=91?=
<92030377+love-code-yeyixiao@users.noreply.github.com>
Date: Sat, 4 May 2024 21:07:00 +0800
Subject: [PATCH 063/122] Update process_force.c
---
Sandboxie/core/drv/process_force.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index 68021644..e0f6cf56 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -759,7 +759,7 @@ _FX BOOLEAN Process_IsDcomLaunchParent(HANDLE ParentId)
// Process_IsWindowsExplorerParent
//
// Note: Once an unused function, it is now used to support the ability to
-// Automatically sandbox child processes created by File Explorer..
+// "Automatically sandbox child processes created by File Explorer".
//---------------------------------------------------------------------------
From a2601c06821f4f384e741807503c4a67e34a5abe Mon Sep 17 00:00:00 2001
From: love-code-yeyixiao <188240888@qq.com>
Date: Sat, 4 May 2024 21:13:02 +0800
Subject: [PATCH 064/122] Add UI.
---
SandboxiePlus/SandMan/Forms/SettingsWindow.ui | 418 +++++++++---------
.../SandMan/Windows/SettingsWindow.cpp | 4 +-
2 files changed, 214 insertions(+), 208 deletions(-)
diff --git a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
index 558c368c..01fb766d 100644
--- a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
@@ -7,7 +7,7 @@
00695
- 508
+ 565
@@ -1941,218 +1941,222 @@ Unlike the preview channel, it does not include untested, potentially breaking,
- 1
+ 0Sandboxie Config
-
+
-
-
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
-
-
-
-
-
-
-
- 23
- 16777215
-
-
-
- ...
-
-
-
-
-
-
-
-
-
-
- 75
- true
- true
-
-
-
- Sandbox default
-
-
-
-
-
-
-
-
-
- Portable root folder
-
-
-
-
-
-
- Sandbox <a href="sbie://docs/ipcrootpath">ipc root</a>:
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
- true
-
-
-
-
-
-
- Default sandbox:
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
-
-
-
-
- Use Windows Filtering Platform to restrict network access
-
-
-
-
-
-
- Sandbox <a href="sbie://docs/filerootpath">file system root</a>:
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
- true
-
-
-
-
-
-
- Activate Kernel Mode Object Filtering
-
-
-
-
-
-
- Sandbox <a href="sbie://docs/keyrootpath">registry root</a>:
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
- true
-
-
-
-
-
-
- Qt::Vertical
-
-
-
- 20
- 40
-
-
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
-
-
-
-
- 75
- true
- true
-
-
-
- Sandboxing features
-
-
-
-
-
-
- Hook selected Win32k system calls to enable GPU acceleration (experimental)
-
-
-
-
-
-
- Use a Sandboxie login instead of an anonymous token
-
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
-
+
+
+
+ 75
+ true
+ true
+
+
+
+ Sandbox default
+
+
+
+
+
+
+ Default sandbox:
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+
+
+
+
+
+
+
+ Portable root folder
+
+
+
+
+
+
+ Sandbox <a href="sbie://docs/filerootpath">file system root</a>:
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+ 23
+ 16777215
+
+
+
+ ...
+
+
+
+
+
+
+ Sandbox <a href="sbie://docs/keyrootpath">registry root</a>:
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+ true
+
+
+
+
+
+
+
+
+
+ Sandbox <a href="sbie://docs/ipcrootpath">ipc root</a>:
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+ 75
+ true
+ true
+
+
+
+ Sandboxing features
+
+
+
+
+
+
+ Qt::Horizontal
+
+
+
+ 77
+ 20
+
+
+
+
+
+
+
+ Use Windows Filtering Platform to restrict network access
+
+
+
+
+
+
+ Activate Kernel Mode Object Filtering
+
+
+
+
+
+
+ Hook selected Win32k system calls to enable GPU acceleration (experimental)
+
+
+
+
+
+
+ Use a Sandboxie login instead of an anonymous token
+
+
+
+
+
+
+ Let the child processes of the default File Explorer automatically enter
+the default sandbox
+
+
+
+
+
+
+ Qt::Horizontal
+
+
+
+ 76
+ 20
+
+
+
+
+
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 147
+
+
+
+
+
+
+
+ Qt::Horizontal
+
+
+
+ 76
+ 20
+
+
+
+
+
+
+
+ Qt::Horizontal
+
+
+
+ 76
+ 20
+
+
+
diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
index a04171f7..f9e29ea1 100644
--- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
@@ -418,6 +418,7 @@ CSettingsWindow::CSettingsWindow(QWidget* parent)
connect(ui.chkObjCb, SIGNAL(stateChanged(int)), this, SLOT(OnFeaturesChanged()));
if (CurrentVersion.value("CurrentBuild").toInt() < 14393) // Windows 10 RS1 and later
ui.chkWin32k->setEnabled(false);
+ connect(ui.chkForceExplorerChild, SIGNAL(stateChanged(int)), this, SLOT(OnFeaturesChanged()));
//connect(ui.chkWin32k, SIGNAL(stateChanged(int)), this, SLOT(OnFeaturesChanged()));
m_FeaturesChanged = false;
connect(ui.chkWin32k, SIGNAL(stateChanged(int)), this, SLOT(OnGeneralChanged()));
@@ -948,6 +949,7 @@ void CSettingsWindow::LoadSettings()
ui.chkMinimize->setChecked(theConf->GetBool("Options/MinimizeToTray", false));
ui.chkSingleShow->setChecked(theConf->GetBool("Options/TraySingleClick", false));
+ ui.chkForceExplorerChild->setChecked(strcmp(theAPI->GetGlobalSettings()->GetText("ForceExplorerChild").toStdString().c_str(), theAPI->GetGlobalSettings()->GetText("DefalutBox").toStdString().c_str())==0);
OnLoadAddon();
bool bImDiskReady = theGUI->IsImDiskReady();
@@ -1633,7 +1635,7 @@ void CSettingsWindow::SaveSettings()
theConf->SetValue("Options/OnClose", ui.cmbOnClose->currentData());
theConf->SetValue("Options/MinimizeToTray", ui.chkMinimize->isChecked());
theConf->SetValue("Options/TraySingleClick", ui.chkSingleShow->isChecked());
-
+ theAPI->GetGlobalSettings()->SetText("ForceExplorerChild", theAPI->GetGlobalSettings()->GetText("DefaultBox"));
if (theAPI->IsConnected())
{
try
From cdb14a59a1096f8861425f8002d0fbc729d2510f Mon Sep 17 00:00:00 2001
From: isaak654
Date: Sat, 4 May 2024 19:39:47 +0200
Subject: [PATCH 065/122] Typo fix
---
SandboxiePlus/SandMan/Windows/SettingsWindow.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
index f9e29ea1..aa358385 100644
--- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
@@ -949,7 +949,7 @@ void CSettingsWindow::LoadSettings()
ui.chkMinimize->setChecked(theConf->GetBool("Options/MinimizeToTray", false));
ui.chkSingleShow->setChecked(theConf->GetBool("Options/TraySingleClick", false));
- ui.chkForceExplorerChild->setChecked(strcmp(theAPI->GetGlobalSettings()->GetText("ForceExplorerChild").toStdString().c_str(), theAPI->GetGlobalSettings()->GetText("DefalutBox").toStdString().c_str())==0);
+ ui.chkForceExplorerChild->setChecked(strcmp(theAPI->GetGlobalSettings()->GetText("ForceExplorerChild").toStdString().c_str(), theAPI->GetGlobalSettings()->GetText("DefaultBox").toStdString().c_str())==0);
OnLoadAddon();
bool bImDiskReady = theGUI->IsImDiskReady();
From d8f3c1ca85b1dcc4764b1044c8b16730d9455fe9 Mon Sep 17 00:00:00 2001
From: love-code-yeyixiao <188240888@qq.com>
Date: Sun, 5 May 2024 09:27:19 +0800
Subject: [PATCH 066/122] Fix
---
SandboxiePlus/SandMan/Windows/SettingsWindow.cpp | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
index f9e29ea1..fbf8f168 100644
--- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
@@ -1635,7 +1635,10 @@ void CSettingsWindow::SaveSettings()
theConf->SetValue("Options/OnClose", ui.cmbOnClose->currentData());
theConf->SetValue("Options/MinimizeToTray", ui.chkMinimize->isChecked());
theConf->SetValue("Options/TraySingleClick", ui.chkSingleShow->isChecked());
- theAPI->GetGlobalSettings()->SetText("ForceExplorerChild", theAPI->GetGlobalSettings()->GetText("DefaultBox"));
+ if (ui.chkForceExplorerChild->isChecked())
+ theAPI->GetGlobalSettings()->SetText("ForceExplorerChild", theAPI->GetGlobalSettings()->GetText("DefaultBox"));
+ else if (theAPI->GetGlobalSettings()->GetText("ForceExplorerChild").compare(theAPI->GetGlobalSettings()->GetText("DefaultBox")) == 0)
+ theAPI->GetGlobalSettings()->DelValue("ForceExplorerChild");
if (theAPI->IsConnected())
{
try
From 841041b7adef777c5bae45f4906eb9dafeab6f26 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=88=B1=E7=BC=96=E7=A8=8B=E7=9A=84=E5=8F=B6=E4=B8=80?=
=?UTF-8?q?=E7=AC=91?=
<92030377+love-code-yeyixiao@users.noreply.github.com>
Date: Sun, 5 May 2024 10:41:50 +0800
Subject: [PATCH 067/122] Update sandman_zh_CN.ts
---
SandboxiePlus/SandMan/sandman_zh_CN.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index 5d322ddb..3da536b5 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -4205,7 +4205,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Executing OnBoxTerminate: %1
- 在沙盒内的终端执行
+ 在沙盒内所有进程终止时执行
@@ -8383,7 +8383,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
On Box Terminate
- 在沙盒的终端内
+ 在沙盒所有进程终止时
From ee5b8575bd7a7a08928f84d1f3abea247650174f Mon Sep 17 00:00:00 2001
From: love-code-yeyixiao <188240888@qq.com>
Date: Sun, 5 May 2024 13:38:47 +0800
Subject: [PATCH 068/122] Issue Sandman
---
Sandboxie/core/drv/process_force.c | 47 +++++++++++++++++-------------
1 file changed, 27 insertions(+), 20 deletions(-)
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index 68021644..29052a31 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -103,6 +103,8 @@ static BOOLEAN Process_IsWindowsExplorerParent(HANDLE ParentId);
static BOOLEAN Process_IsImmersiveProcess(
PEPROCESS ProcessObject, HANDLE ParentId, ULONG SessionId);
+static BOOLEAN Process_IsAnyProcessParent(HANDLE ParentId, WCHAR* Name);
+
void Process_CreateForceData(
LIST *boxes, const WCHAR *SidString, ULONG SessionId);
@@ -762,28 +764,32 @@ _FX BOOLEAN Process_IsDcomLaunchParent(HANDLE ParentId)
// Automatically sandbox child processes created by File Explorer..
//---------------------------------------------------------------------------
+_FX BOOLEAN Process_IsAnyProcessParent(HANDLE ParentId,WCHAR* Name)
+{
+ BOOLEAN retval = FALSE;
+ void* nbuf;
+ ULONG nlen;
+ WCHAR* nptr;
+
+ Process_GetProcessName(
+ Driver_Pool, (ULONG_PTR)ParentId, &nbuf, &nlen, &nptr);
+ if (nbuf) {
+
+ if (_wcsicmp(nptr, Name) == 0) {
+
+ retval = TRUE;
+ }
+
+ Mem_Free(nbuf, nlen);
+ }
+
+ return retval;
+}
_FX BOOLEAN Process_IsWindowsExplorerParent(HANDLE ParentId)
{
- BOOLEAN retval = FALSE;
-
- void *nbuf;
- ULONG nlen;
- WCHAR *nptr;
-
- Process_GetProcessName(
- Driver_Pool, (ULONG_PTR)ParentId, &nbuf, &nlen, &nptr);
- if (nbuf) {
-
- if (_wcsicmp(nptr, L"explorer.exe") == 0) {
-
- retval = TRUE;
- }
-
- Mem_Free(nbuf, nlen);
- }
-
- return retval;
+
+ return Process_IsAnyProcessParent(ParentId,L"explorer.exe");
}
@@ -1388,7 +1394,8 @@ _FX BOX *Process_CheckForceProcess(
return box->box;
}
if (Process_IsWindowsExplorerParent(Parent) && wcscmp(Conf_Get(NULL, L"ForceExplorerChild", 0), box->box->name)==0) {
- return box->box;
+ if(wcsicmp(name,"Sandman.exe")!=0)
+ return box->box;
}
box = List_Next(box);
}
From 66f3899f85b954a2d3a4975dacce98c781ad127d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=88=B1=E7=BC=96=E7=A8=8B=E7=9A=84=E5=8F=B6=E4=B8=80?=
=?UTF-8?q?=E7=AC=91?=
<92030377+love-code-yeyixiao@users.noreply.github.com>
Date: Sun, 5 May 2024 13:45:12 +0800
Subject: [PATCH 069/122] Typo Fix
---
Sandboxie/core/drv/process_force.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index 90d7f87e..f4b507f9 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -1394,7 +1394,7 @@ _FX BOX *Process_CheckForceProcess(
return box->box;
}
if (Process_IsWindowsExplorerParent(Parent) && wcscmp(Conf_Get(NULL, L"ForceExplorerChild", 0), box->box->name)==0) {
- if(wcsicmp(name,"Sandman.exe")!=0)
+ if(wcsicmp(name,L"Sandman.exe")!=0)
return box->box;
}
box = List_Next(box);
From ee1189fcefca5e8af7f55071e09a69a7c9ed9d16 Mon Sep 17 00:00:00 2001
From: love-code-yeyixiao <188240888@qq.com>
Date: Sun, 5 May 2024 14:02:00 +0800
Subject: [PATCH 070/122] fix
---
Sandboxie/core/drv/process_force.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index f4b507f9..c83daf75 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -1394,7 +1394,7 @@ _FX BOX *Process_CheckForceProcess(
return box->box;
}
if (Process_IsWindowsExplorerParent(Parent) && wcscmp(Conf_Get(NULL, L"ForceExplorerChild", 0), box->box->name)==0) {
- if(wcsicmp(name,L"Sandman.exe")!=0)
+ if(_wcsicmp(name,L"Sandman.exe")!=0)
return box->box;
}
box = List_Next(box);
From 23f8726bcc4be5248cefe0cbdae3de7ab11f438a Mon Sep 17 00:00:00 2001
From: love-code-yeyixiao <188240888@qq.com>
Date: Sun, 5 May 2024 16:20:29 +0800
Subject: [PATCH 071/122] Update GuiServer
---
Sandboxie/core/svc/GuiServer.cpp | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/Sandboxie/core/svc/GuiServer.cpp b/Sandboxie/core/svc/GuiServer.cpp
index 9f80aef8..246e9b0a 100644
--- a/Sandboxie/core/svc/GuiServer.cpp
+++ b/Sandboxie/core/svc/GuiServer.cpp
@@ -1095,8 +1095,20 @@ HANDLE GuiServer::GetJobObjectForAssign(const WCHAR *boxname)
JOBOBJECT_EXTENDED_LIMIT_INFORMATION jobELInfo = {0};
jobELInfo.BasicLimitInformation.LimitFlags = JOB_OBJECT_LIMIT_BREAKAWAY_OK
| JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK;
-
- ok = SetInformationJobObject(hJobObject, JobObjectExtendedLimitInformation, &jobELInfo, sizeof(jobELInfo));
+ ULONG TotalMemoryLimit = SbieApi_QueryConfNumber(boxname, L"TotalMemoryLimit", 0), ProcessNumberLimit = SbieApi_QueryConfNumber(boxname, L"ProcessNumberLimit", 0), ProcessMemoryLimit = SbieApi_QueryConfNumber(boxname, L"ProcessMemoryLimit", 0);
+ if (TotalMemoryLimit != 0) {
+ jobELInfo.JobMemoryLimit = TotalMemoryLimit;
+ jobELInfo.BasicLimitInformation.LimitFlags |= JOB_OBJECT_LIMIT_JOB_MEMORY;
+ }
+ if (ProcessNumberLimit != 0) {
+ jobELInfo.BasicLimitInformation.ActiveProcessLimit = ProcessNumberLimit;
+ jobELInfo.BasicLimitInformation.LimitFlags |= JOB_OBJECT_LIMIT_ACTIVE_PROCESS;
+ }
+ if (ProcessMemoryLimit != 0) {
+ jobELInfo.ProcessMemoryLimit = ProcessMemoryLimit;
+ jobELInfo.BasicLimitInformation.LimitFlags |= JOB_OBJECT_LIMIT_PROCESS_MEMORY;
+ }
+ ok = SetInformationJobObject(hJobObject, JobObjectExtendedLimitInformation, &jobELInfo, sizeof(jobELInfo));
}
}
if (! ok) {
From 369f730730f7264b28599c8bde4bab8e45ac9f71 Mon Sep 17 00:00:00 2001
From: love-code-yeyixiao <188240888@qq.com>
Date: Sun, 5 May 2024 18:18:50 +0800
Subject: [PATCH 072/122] Update Sandman
---
SandboxiePlus/SandMan/SandMan.cpp | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp
index 92fbb5f6..b307a9d5 100644
--- a/SandboxiePlus/SandMan/SandMan.cpp
+++ b/SandboxiePlus/SandMan/SandMan.cpp
@@ -2288,6 +2288,19 @@ void CSandMan::OnBoxClosed(const CSandBoxPtr& pBox)
AddAsyncOp(pProgress, true, tr("Executing OnBoxTerminate: %1").arg(Value2));
}
}
+
+ QStringList *bDel=new QStringList(),list= pBox->GetTextList("Template", FALSE);
+ foreach(const QString& Value, list) {
+ if (tr("Template_Temp_").compare(Value.left(14)) == 0)
+ {
+ bDel->append(Value);
+ }
+ }
+ foreach(const QString& Value, bDel) {
+ list.removeAt(list.indexOf(Value));
+ }
+ pBox->UpdateTextList("Template", list,FALSE);
+
if (!pBox->GetBool("NeverDelete", false))
{
if (pBox->GetBool("AutoDelete", false))
From 309521231e6070a86d09dc4c1acf53da6e8947b5 Mon Sep 17 00:00:00 2001
From: NewKidOnTheBlock
Date: Sun, 5 May 2024 15:06:44 +0200
Subject: [PATCH 073/122] Changelog fixes
Co-authored-by: isaak654
---
CHANGELOG.md | 89 ++++++++++++++++++++++++++--------------------------
1 file changed, 44 insertions(+), 45 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9c741328..a2a735dd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,7 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- improved checkboxes about DropAdminRights in SandMan [#3851](https://github.com/sandboxie-plus/Sandboxie/pull/3851) (thanks offhub)
### Fixed
-- Issue with symbolic linking of files [#3852](https://github.com/sandboxie-plus/Sandboxie/issues/3852)
+- fixed symbolic linking of files [#3852](https://github.com/sandboxie-plus/Sandboxie/issues/3852)
- fixed issue with start agent option [#3844](https://github.com/sandboxie-plus/Sandboxie/pull/3844) (thanks offhub)
- fixed issue with Delete V2 introduced in 1.13.5
@@ -24,14 +24,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.13.6 / 5.68.6] - 2024-04-21
### Added
-- added "BlockInterferenceControl=y" option to prevent sandboxed processes from forcing windows on top and moving the mounse pointer (thanks Yeyixiao)
- - Note: this option may cause issues in games hence do not enable it for gaming boxes
+- added "BlockInterferenceControl=y" option to prevent sandboxed processes from forcing windows on top and moving the mouse pointer (thanks Yeyixiao)
+ - Note: this option may cause issues in games hence it's not recommended for gaming boxes
- added support for hard links [#3826](https://github.com/sandboxie-plus/Sandboxie/issues/3826)
- added mechanism to terminate stuck sandboxed processes from the driver
-- added Make the trigger list editable [#3742](https://github.com/sandboxie-plus/Sandboxie/issues/3742)
-- added Optionally extend the screenshot protection to the UI [#3739](https://github.com/sandboxie-plus/Sandboxie/issues/3739)
+- added editable trigger list [#3742](https://github.com/sandboxie-plus/Sandboxie/issues/3742)
+- added optional extension of the screenshot protection to the UI [#3739](https://github.com/sandboxie-plus/Sandboxie/issues/3739)
- added a button to edit local/custom templates [#3738](https://github.com/sandboxie-plus/Sandboxie/issues/3738)
-- added Permanently Re-sizable or Larger "Run Sandboxed" Window [#3697](https://github.com/sandboxie-plus/Sandboxie/issues/3697)
+- added adjustable resizing of the "Run Sandboxed" window [#3697](https://github.com/sandboxie-plus/Sandboxie/issues/3697)
- added Notepad++ template [#3836](https://github.com/sandboxie-plus/Sandboxie/pull/3836)
### Changed
@@ -41,10 +41,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- "IsProtectScreen=>" -> "CoverBoxedWindows=y"
### Fixed
-- fixed When I change the BlockDNS and BlockPorts options, the Apply button is not activated [#3807](https://github.com/sandboxie-plus/Sandboxie/issues/3807)
-- fixed troubleshooting wizard broke with new Qt [#3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
-- fixed Settings dialog now showing the right ram disk letter
-- fixed issues with updater broke with new Qt due to missing SSL support [#3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
+- fixed inactive apply button when changing BlockDNS or BlockPorts options [#3807](https://github.com/sandboxie-plus/Sandboxie/issues/3807)
+- fixed troubleshooting wizard breaking with new Qt [#3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
+- fixed Settings dialog now showing the correct RAM drive letter
+- fixed broken updater due to missing SSL support in the latest Qt build [#3810](https://github.com/sandboxie-plus/Sandboxie/discussions/3810)
- fixed Enabling "DropAdminRights/FakeAdminRights" adds "BlockInterferePower and ForceProtectionOnMount" to the INI [#3825](https://github.com/sandboxie-plus/Sandboxie/issues/3825)
- fixed KeePass "Out of Memory" crash due to "BlockScreenCapture=y" [#3768](https://github.com/sandboxie-plus/Sandboxie/issues/3768)
- fixed Sandboxie 1.13.4 with IsBlockCapture=y not working on Windows 7 [#3769](https://github.com/sandboxie-plus/Sandboxie/issues/3769)
@@ -84,15 +84,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- it can be enabled with "IsBlockCapture=y"
- see the sandbox option "Prevent sandboxed processes from using public methods to capture window images" in SandMan UI
- added "LingerExemptWnds=n" to make the lingering process monitor mechanism no longer exempt lingering processes with windows from termination
-- Added option 'SharedTemplate' to Box Wizard [#3737](https://github.com/sandboxie-plus/Sandboxie/pull/3737) (thanks offhub)
-- Added an option to force the protection of an encrypted sandbox to be enabled. [#3736](https://github.com/sandboxie-plus/Sandboxie/pull/3736) (thanks Yeyixiao)
-- Added a menu and button/icon to suspend all processes [#3741] (https://github.com/sandboxie-plus/Sandboxie/issues/3741)
+- added option 'SharedTemplate' to Box Wizard [#3737](https://github.com/sandboxie-plus/Sandboxie/pull/3737) (thanks offhub)
+- added an option to force the protection of an encrypted sandbox to be enabled [#3736](https://github.com/sandboxie-plus/Sandboxie/pull/3736) (thanks Yeyixiao)
+- added a menu and button/icon to suspend all processes [#3741] (https://github.com/sandboxie-plus/Sandboxie/issues/3741)
### Changed
-- option "LingerLeniency=n" now also disabled the 5 sec grace period for freshly started lingerers [#1892](https://github.com/sandboxie-plus/Sandboxie/issues/1892)
+- option "LingerLeniency=n" now also disabled the 5 second grace period for freshly started lingerers [#1892](https://github.com/sandboxie-plus/Sandboxie/issues/1892)
### Fixed
-- fixed issue with symlinks related to startmenu folders
+- fixed issue with symlinks related to start menu folders
@@ -164,7 +164,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- reworked SCM hooking to improve Windows 10 compatibility
- reworked offset dependent handling of undocumented Windows kernel objects
- the required offsets can be now updated independently from the driver
- - the DynData blob is digitally signed, when in testsigning mode the signature is however ignored
+ - the DynData blob is digitally signed, when in test signing mode the signature is however ignored
- when Sandboxie encounters a yet unsupported kernel build, token based isolation is disabled to prevent system instability
- this safety mechanism is disabled on systems participating in the Windows Insider program
- for systems in the Insider program, the latest known offsets are tried
@@ -392,18 +392,18 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- fixed subscription certificate recognition issue
- fixed logo cut-off in the About window [#3249](https://github.com/sandboxie-plus/Sandboxie/issues/3249)
-- fixed issue with file recovery when using ramdisk [d82b62e](https://github.com/sandboxie-plus/Sandboxie/commit/d82b62ee78d865e21005b9b81dfa9dac9f524b90)
+- fixed issue with file recovery when using a RAM drive [d82b62e](https://github.com/sandboxie-plus/Sandboxie/commit/d82b62ee78d865e21005b9b81dfa9dac9f524b90)
## [1.11.1 / 5.66.1] - 2023-08-31
### Added
-- added 'RamDiskLetter=R:\' option allowing to mount the ramdisk root to a drive letter [938e0a8](https://github.com/sandboxie-plus/Sandboxie/commit/938e0a8c8d88e3780ece674c6702654d0b4e6ddc)
+- added 'RamDiskLetter=R:\' option allowing to mount the RAM drive root to a drive letter [938e0a8](https://github.com/sandboxie-plus/Sandboxie/commit/938e0a8c8d88e3780ece674c6702654d0b4e6ddc)
### Changed
- changed the new option layout to be the default for non-vintage views (can be changed back in the settings) [94c3f5e](https://github.com/sandboxie-plus/Sandboxie/commit/94c3f5e35bf9e7c993557f2c9d4e6e5129e9d1df)
### Fixed
-- fixed issue when re-creating a rambox junction [2542351](https://github.com/sandboxie-plus/Sandboxie/commit/254235136fa8b74ad147f03b646d4015208c14be)
+- fixed issue when re-creating a RAM sandbox junction [2542351](https://github.com/sandboxie-plus/Sandboxie/commit/254235136fa8b74ad147f03b646d4015208c14be)
- fixed Sandboxie logo scaling in the setup wizards [#3227](https://github.com/sandboxie-plus/Sandboxie/issues/3227)
- fixed text cut-off in box creation wizard [#3226](https://github.com/sandboxie-plus/Sandboxie/issues/3226)
- fixed Windows 7 compatibility issue with ImBox.exe [1f0b2b7](https://github.com/sandboxie-plus/Sandboxie/commit/1f0b2b71ba47436252fd55eece2c3624085b46dc)
@@ -417,7 +417,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.11.0 / 5.66.0] - 2023-08-25
### Added
-- added ImDisk driver, allowing to create boxes residing in a ramdisk
+- added ImDisk driver, allowing to create boxes residing in a RAM drive
- added Encrypted Sandbox support; this creates confidential boxes that do not leak data to the host PC
- using the ImDisk driver and a new ImBox component featuring the cryptographic implementation from [DiskCryptor](https://diskcryptor.org/) the sandbox root folder is stored in an encrypted container file
- using the SbieDrv to prevent processes not belonging to the sandbox from accessing an encrypted sandbox's root folder
@@ -493,7 +493,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed UGlobalHotkey library not being compatible with Qt6
### Removed
-- removed hardcoded support for LogApiDll
+- removed hardcoded support for LogAPI library
- use the Add-On Manager and DLL injection settings
@@ -540,7 +540,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- added box scripting engine to make SandMan more flexible
- added scriptable troubleshooting wizard [#1875](https://github.com/sandboxie-plus/Sandboxie/issues/1875)
- added Add-On Manager which helps to install additional and third-party components, available add-ons:
- - [ImDisk Toolkit](https://sourceforge.net/projects/imdisk-toolkit/) - used to create RAM Disks and other virtual drives
+ - [ImDisk Toolkit](https://sourceforge.net/projects/imdisk-toolkit/) - used to create RAM drives and other virtual drives
- [V4 Script Debugger](https://github.com/DavidXanatos/NeoScriptTools) - used to debug troubleshooting scripts
- [Microsoft Debug Help Library](https://learn.microsoft.com/en-us/windows/win32/debug/debug-help-library) - used for the stack trace feature introduced in 1.9.6
- [signcheck.exe](https://learn.microsoft.com/en-us/sysinternals/downloads/sigcheck) - used to scan files on VirusTotal before recovering them
@@ -781,7 +781,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- fixed issue with the new SBIE2307 message being triggered on media removal
- excluded some old token hacks (for Firefox) from being disabled
-- long-standing ping issue with compartment type boxes [#1608](https://github.com/sandboxie-plus/Sandboxie/issues/1608)
+- fixed long-standing ping issue with compartment type boxes [#1608](https://github.com/sandboxie-plus/Sandboxie/issues/1608)
@@ -1153,7 +1153,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.5.0 / 5.60.0] - 2022-10-19
### Added
-- Added support for Windows on ARM64 [#1321](https://github.com/sandboxie-plus/Sandboxie/issues/1321) [#645](https://github.com/sandboxie-plus/Sandboxie/issues/645)
+- added support for Windows on ARM64 [#1321](https://github.com/sandboxie-plus/Sandboxie/issues/1321) [#645](https://github.com/sandboxie-plus/Sandboxie/issues/645)
- ported SbieDrv for ARM64
- ported low-level injection mechanism for ARM64/ARM64EC
- ported syscall hooks for ARM64/ARM64EC
@@ -1253,8 +1253,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.3.4 / 5.58.4] - 2022-09-19
### Added
-- Added NoRenameWinClass to the Plus UI
-- Added Windows.UI.* to the list of hardcoded well-known classes to resolve issues with WinUI apps [#2109](https://github.com/sandboxie-plus/Sandboxie/issues/2109)
+- added NoRenameWinClass to the Plus UI
+- added Windows.UI.* to the list of hardcoded well-known classes to resolve issues with WinUI apps [#2109](https://github.com/sandboxie-plus/Sandboxie/issues/2109)
### Changed
- NoRenameWinClass now supports wildcards
@@ -1882,7 +1882,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed possible upgrade issue with Classic installer (by isaak654) [130c43a](https://github.com/sandboxie-plus/Sandboxie/commit/130c43a62c9778b734fa625bf4f46b12d0701719)
- fixed minor issues with Classic installer (by sredna) [#1533](https://github.com/sandboxie-plus/Sandboxie/pull/1533)
- fixed issue with Ldr_FixImagePath_2 [#1507](https://github.com/sandboxie-plus/Sandboxie/issues/1507)
-- when using "Run Sandboxed" with SandMan UI and the UI is off, it will stay off.
+- when using "Run Sandboxed" with SandMan UI and the UI is off, it will stay off
- fixed issue with Util_GetProcessPidByName that should resolve the driver sometimes failing to start at boot [#1451](https://github.com/sandboxie-plus/Sandboxie/issues/1451)
- SandMan will now run in background like SbieCtrl when starting a boxed process [post506](https://forum.xanasoft.com/viewtopic.php?p=506#p506)
- fixed taskbar not showing with persistent box border in full screen [post474](https://forum.xanasoft.com/viewtopic.php?p=474#p474)
@@ -2438,14 +2438,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [0.8.9 / 5.50.9] - 2021-07-28 HotFix 2
### Fixed
-Fixed issue with registering session leader
+- fixed issue with registering session leader
## [0.8.9 / 5.50.9] - 2021-07-28 HotFix 1
### Fixed
-Fixed issue with Windows 7
+- fixed issue with Windows 7
@@ -2776,7 +2776,7 @@ Fixed issue with Windows 7
- improved RPC debugging
- improved IPC handling around RpcMgmtSetComTimeout; "RpcMgmtSetComTimeout=n" is now the default behaviour
- required exceptions have been hard-coded for specific calling DLLs
-- the LogApi dll is now using Sbie's tracing facility to log events instead of its own pipe server
+- the LogAPI library is now using Sandboxie's tracing facility to log events instead of its own pipe server
### Fixed
- FIXED SECURITY ISSUE ID-11: elevated sandboxed processes could access volumes/disks for reading (thanks hg421)
@@ -3245,8 +3245,7 @@ Fixed issue with Windows 7
### Changed
- SbieCtrl no longer auto-shows the tutorial on first start
-- when hooking to the trampoline, the migrated section of the original function is no longer noped out
- - it caused issues with Unity games
+- when hooking to the trampoline, the migrated section of the original function is no longer noped out due to causing issues with Unity games
### Fixed
- fixed colour issue with vertical tabs in dark mode
@@ -3283,7 +3282,7 @@ Fixed issue with Windows 7
- fixed issues with the new box settings editor
### Removed
-- removes deprecated workaround in the hooking mechanism for an obsolete anti-malware product
+- removed deprecated workaround in the hooking mechanism for an obsolete anti-malware product
@@ -3320,13 +3319,13 @@ Fixed issue with Windows 7
- added finder to resource log
- added option "HideHostProcess=program.exe" to hide unsandboxed host processes
- Note: Sbie hides by default processes from other boxes, this behaviour can now be controlled with "HideOtherBoxes=n"
-- Sandboxed RpcSs and DcomLaunch can now be run as system with the option "ProtectRpcSs=y" however this breaks the sandboxed Windows Explorer and others
-- Built-in Clsid whitelist can now be disabled with "OpenDefaultClsid=n"
-- Processes can be now terminated with the del key, and require a confirmation
+- sandboxed RpcSs and DcomLaunch can now be run as system with the option "ProtectRpcSs=y" however this breaks the sandboxed Windows Explorer and others
+- built-in Clsid whitelist can now be disabled with "OpenDefaultClsid=n"
+- processes can be now terminated with the del key, and require a confirmation
- added sandboxed window border display to SandMan.exe
- added notification for Sbie log messages
- added Sandbox Presets submenu to quickly change some settings
- - Enable/Disable API logging; logapi_dlls are now distributed with SbiePlus
+ - Enable/Disable API logging; LogAPI DLLs are now distributed with Sandboxie Plus
- Drop admin rights
- Block/Allow internet access
- Block/Allow access to files on the network
@@ -3362,8 +3361,8 @@ Fixed issue with Windows 7
- improved debugging around process creation errors in the driver
### Fixed
-- fixed some log messages going lost after driver reload
-- found a workable fix for the MSI installer issue, see Proc_CreateProcessInternalW_RS5
+- fixed log messages getting lost after driver reload
+- fixed MSI installer issue, see Proc_CreateProcessInternalW_RS5
@@ -3376,7 +3375,7 @@ Fixed issue with Windows 7
- added progress window for async operations that take time
- added DPI awareness [#56](https://github.com/sandboxie-plus/Sandboxie/issues/56)
- the driver file is now obfuscated to avoid false positives
-- additional debug options to Sandboxie.ini OpenToken=y that combines UnrestrictedToken=y and UnfilteredToken=y
+- additional debug option for Sandboxie.ini named OpenToken=y which combines UnrestrictedToken=y and UnfilteredToken=y
- Note: using these options weakens the sandboxing, they are intended for debugging and may be used for better application virtualization later
### Changed
@@ -3385,8 +3384,8 @@ Fixed issue with Windows 7
### Fixed
- IniWatcher did not work in portable mode
-- service path fix broke other services, now properly fixed, maybe
-- found workaround for the MSI installer issue
+- service path fix broke other services
+- workaround for the MSI installer issue
@@ -3414,7 +3413,7 @@ Fixed issue with Windows 7
### Added
- created a new Qt-based UI named SandMan (Sandboxie Manager)
- Resource Monitor now shows the PID
-- added basic API call log using updated BSA LogApiDll
+- added basic API call log using updated BSA LogAPI library
### Changed
- reworked Resource Monitor to work with multiple event consumers
@@ -3425,8 +3424,8 @@ Fixed issue with Windows 7
## [5.40.1] - 2020-04-10
### Added
-- "Other" type for the Resource Access Monitor
- - added call to StartService to the logged Resources
+- added the new "Other" type for the Resource Access Monitor
+- added call to StartService to the logged Resources
### Fixed
- fixed "Windows Installer Service could not be accessed" that got introduced with Windows 1903
From 927ad6d1e0ef02db7b02b294856ea2e5a4e54266 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Tue, 7 May 2024 14:25:51 +0200
Subject: [PATCH 074/122] 1.14.0
---
CHANGELOG.md | 8 ++++++++
Sandboxie/common/my_version.h | 4 ++--
SandboxiePlus/version.h | 4 ++--
3 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a2a735dd..5dfff9be 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
+
+## [1.14.0 / 5.69.0] - 2024-05-??
+
+### Added
+
+
+
+
## [1.13.7 / 5.68.7] - 2024-05-01
### Added
diff --git a/Sandboxie/common/my_version.h b/Sandboxie/common/my_version.h
index 4f7dba94..76fe97ff 100644
--- a/Sandboxie/common/my_version.h
+++ b/Sandboxie/common/my_version.h
@@ -25,8 +25,8 @@
#define STR(X) STR2(X)
#define VERSION_MJR 5
-#define VERSION_MIN 68
-#define VERSION_REV 7
+#define VERSION_MIN 69
+#define VERSION_REV 0
#define VERSION_UPD 0
#if VERSION_UPD > 0
diff --git a/SandboxiePlus/version.h b/SandboxiePlus/version.h
index 5b2cfcb5..41c411ee 100644
--- a/SandboxiePlus/version.h
+++ b/SandboxiePlus/version.h
@@ -1,8 +1,8 @@
#pragma once
#define VERSION_MJR 1
-#define VERSION_MIN 13
-#define VERSION_REV 7
+#define VERSION_MIN 14
+#define VERSION_REV 0
#define VERSION_UPD 0
#ifndef STR
From dab852079b4275203889dbf3e7f1822f49397fbb Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Tue, 7 May 2024 19:44:32 +0200
Subject: [PATCH 075/122] fixes and refactoring
---
Sandboxie/core/dll/SboxDll.vcxproj | 1 +
Sandboxie/core/dll/SboxDll.vcxproj.filters | 1 +
Sandboxie/core/dll/dll.h | 2 +
Sandboxie/core/dll/dllmain.c | 3 +
Sandboxie/core/dll/gui.c | 12 +-
Sandboxie/core/dll/gui_p.h | 31 +-
Sandboxie/core/dll/guimisc.c | 126 +-----
Sandboxie/core/dll/kernel.c | 204 +++++++++
Sandboxie/core/drv/process_force.c | 34 +-
Sandboxie/core/svc/GuiServer.cpp | 5 +-
SandboxiePlus/SandMan/Forms/SettingsWindow.ui | 418 +++++++++---------
.../SandMan/Windows/SettingsWindow.cpp | 12 +-
12 files changed, 463 insertions(+), 386 deletions(-)
create mode 100644 Sandboxie/core/dll/kernel.c
diff --git a/Sandboxie/core/dll/SboxDll.vcxproj b/Sandboxie/core/dll/SboxDll.vcxproj
index 377bbe92..d64fdb67 100644
--- a/Sandboxie/core/dll/SboxDll.vcxproj
+++ b/Sandboxie/core/dll/SboxDll.vcxproj
@@ -622,6 +622,7 @@
+ true
diff --git a/Sandboxie/core/dll/SboxDll.vcxproj.filters b/Sandboxie/core/dll/SboxDll.vcxproj.filters
index 9931805d..4527d2a6 100644
--- a/Sandboxie/core/dll/SboxDll.vcxproj.filters
+++ b/Sandboxie/core/dll/SboxDll.vcxproj.filters
@@ -256,6 +256,7 @@
common
+
diff --git a/Sandboxie/core/dll/dll.h b/Sandboxie/core/dll/dll.h
index e7ffe69c..71e8a4b1 100644
--- a/Sandboxie/core/dll/dll.h
+++ b/Sandboxie/core/dll/dll.h
@@ -734,6 +734,8 @@ BOOLEAN SH32_Init_ZipFldr(HMODULE);
BOOLEAN SH32_Init_UxTheme(HMODULE);
+BOOLEAN Kernel_Init();
+
BOOLEAN Gui_Init(HMODULE);
BOOLEAN Gui_Init_IMM32(HMODULE);
diff --git a/Sandboxie/core/dll/dllmain.c b/Sandboxie/core/dll/dllmain.c
index a1aff870..1295a818 100644
--- a/Sandboxie/core/dll/dllmain.c
+++ b/Sandboxie/core/dll/dllmain.c
@@ -496,6 +496,9 @@ _FX void Dll_InitInjected(void)
if (ok)
ok = Proc_Init();
+ if (ok)
+ ok = Kernel_Init();
+
if (ok)
ok = Gui_InitConsole1();
diff --git a/Sandboxie/core/dll/gui.c b/Sandboxie/core/dll/gui.c
index b14309d3..90dec74e 100644
--- a/Sandboxie/core/dll/gui.c
+++ b/Sandboxie/core/dll/gui.c
@@ -416,19 +416,9 @@ _FX BOOLEAN Gui_Init(HMODULE module)
GUI_IMPORT___(ClipCursor);
GUI_IMPORT___(GetClipCursor);
GUI_IMPORT___(GetCursorPos);
- GUI_IMPORT___(SetCursorPos);
+ GUI_IMPORT___(SetCursorPos);
GUI_IMPORT___(SetTimer);
- HMODULE temp = module;
- module = Dll_Kernel32;
- GUI_IMPORT___(Sleep);
- GUI_IMPORT___(SleepEx);
- GUI_IMPORT___(GetTickCount);
- GUI_IMPORT___(GetTickCount64);
- GUI_IMPORT___(QueryUnbiasedInterruptTime);
- GUI_IMPORT___(QueryPerformanceCounter);
- module = temp;
-
GUI_IMPORT___(MsgWaitForMultipleObjects);
GUI_IMPORT_AW(PeekMessage);
GUI_IMPORT___(MessageBoxW);
diff --git a/Sandboxie/core/dll/gui_p.h b/Sandboxie/core/dll/gui_p.h
index f4f34cac..7ee00c17 100644
--- a/Sandboxie/core/dll/gui_p.h
+++ b/Sandboxie/core/dll/gui_p.h
@@ -100,26 +100,10 @@ typedef void (*P_SwitchToThisWindow)(HWND hWnd, BOOL fAlt);
typedef HWND(*P_SetActiveWindow)(HWND hWnd);
-typedef DWORD(*P_GetTickCount)();
-
-typedef ULONGLONG (*P_GetTickCount64)();
-
-typedef BOOL(*P_QueryUnbiasedInterruptTime)(
- PULONGLONG UnbiasedTime
- );
-
-typedef void(*P_Sleep)(DWORD dwMiSecond);
-
-typedef DWORD(*P_SleepEx)(DWORD dwMiSecond, BOOL bAlert);
-
-typedef BOOL (*P_QueryPerformanceCounter)(
- LARGE_INTEGER* lpPerformanceCount
-);
-
typedef UINT_PTR (*P_SetTimer)(
- HWND hWnd,
- UINT_PTR nIDEvent,
- UINT uElapse,
+ HWND hWnd,
+ UINT_PTR nIDEvent,
+ UINT uElapse,
TIMERPROC lpTimerFunc
);
@@ -476,8 +460,6 @@ typedef HBITMAP(*P_CreateCompatibleBitmap)(_In_ HDC hdc, _In_ int cx, _In_ int c
typedef BOOL (*P_ShutdownBlockReasonCreate)(HWND hWnd, LPCWSTR pwszReason);
-typedef EXECUTION_STATE (*P_SetThreadExecutionState)(EXECUTION_STATE esFlags);
-
typedef BOOL (*P_SetThreadDesktop)(HDESK hDesktop);
typedef BOOL (*P_SwitchDesktop)(HDESK hDesktop);
@@ -635,18 +617,11 @@ GUI_SYS_VAR_2(SendMessage)
GUI_SYS_VAR_2(SendMessageTimeout)
//GUI_SYS_VAR_2(SendMessageCallback)
GUI_SYS_VAR(ShutdownBlockReasonCreate)
-GUI_SYS_VAR(SetThreadExecutionState)
GUI_SYS_VAR_2(SendNotifyMessage)
GUI_SYS_VAR_2(PostMessage)
GUI_SYS_VAR_2(PostThreadMessage)
GUI_SYS_VAR_2(DispatchMessage)
-GUI_SYS_VAR(Sleep)
-GUI_SYS_VAR(SleepEx)
-GUI_SYS_VAR(GetTickCount)
-GUI_SYS_VAR(QueryUnbiasedInterruptTime)
-GUI_SYS_VAR(GetTickCount64)
-GUI_SYS_VAR(QueryPerformanceCounter)
GUI_SYS_VAR(SetTimer)
GUI_SYS_VAR(MapWindowPoints)
diff --git a/Sandboxie/core/dll/guimisc.c b/Sandboxie/core/dll/guimisc.c
index 2bd5136c..cbed0807 100644
--- a/Sandboxie/core/dll/guimisc.c
+++ b/Sandboxie/core/dll/guimisc.c
@@ -119,29 +119,7 @@ static int Gui_ReleaseDC(HWND hWnd, HDC hDc);
static BOOL Gui_ShutdownBlockReasonCreate(HWND hWnd, LPCWSTR pwszReason);
-static EXECUTION_STATE Gui_SetThreadExecutionState(EXECUTION_STATE esFlags);
-
-static DWORD Gui_GetTickCount();
-
-static ULONGLONG Gui_GetTickCount64();
-
-static BOOL Gui_QueryUnbiasedInterruptTime(
- PULONGLONG UnbiasedTime
- );
-
-static void Gui_Sleep(DWORD dwMiSecond);
-
-static DWORD Gui_SleepEx(DWORD dwMiSecond, BOOL bAlert);
-
-static BOOL Gui_QueryPerformanceCounter(
- LARGE_INTEGER* lpPerformanceCount
- );
-static UINT_PTR Gui_SetTimer(
- HWND hWnd,
- UINT_PTR nIDEvent,
- UINT uElapse,
- TIMERPROC lpTimerFunc
-);
+static UINT_PTR Gui_SetTimer(HWND hWnd, UINT_PTR nIDEvent, UINT uElapse, TIMERPROC lpTimerFunc);
//---------------------------------------------------------------------------
@@ -307,33 +285,16 @@ _FX BOOLEAN Gui_InitMisc(HMODULE module)
__sys_GetThreadDpiAwarenessContext = (P_GetThreadDpiAwarenessContext)
Ldr_GetProcAddrNew(DllName_user32, L"GetThreadDpiAwarenessContext","GetThreadDpiAwarenessContext");
- HMODULE current = module;
+
if (SbieApi_QueryConfBool(NULL, L"BlockInterferePower", FALSE)) {
SBIEDLL_HOOK_GUI(ShutdownBlockReasonCreate);
-
- module = Dll_Kernel32;
-
- SBIEDLL_HOOK(Gui_, SetThreadExecutionState);
}
- if (SbieApi_QueryConfBool(NULL, L"UseChangeSpeed", FALSE))
- {
- module = current;
+
+ if (SbieApi_QueryConfBool(NULL, L"UseChangeSpeed", FALSE)) {
P_SetTimer SetTimer = Ldr_GetProcAddrNew(DllName_user32, "SetTimer", "SetTimer");
if (SetTimer)
SBIEDLL_HOOK(Gui_, SetTimer);
- module = Dll_Kernel32;
- SBIEDLL_HOOK(Gui_, GetTickCount);
- P_GetTickCount64 GetTickCount64 = Ldr_GetProcAddrNew(Dll_Kernel32, "GetTickCount64", "GetTickCount64");
- if (GetTickCount64)
- SBIEDLL_HOOK(Gui_, GetTickCount64);
- P_QueryUnbiasedInterruptTime QueryUnbiasedInterruptTime = Ldr_GetProcAddrNew(Dll_Kernel32, "QueryUnbiasedInterruptTime", "QueryUnbiasedInterruptTime");
- if (QueryUnbiasedInterruptTime)
- SBIEDLL_HOOK(Gui_, QueryUnbiasedInterruptTime);
- SBIEDLL_HOOK(Gui_, QueryPerformanceCounter);
- SBIEDLL_HOOK(Gui_, Sleep);
- SBIEDLL_HOOK(Gui_, SleepEx);
-
}
return TRUE;
@@ -1677,15 +1638,17 @@ _FX BOOL Gui_ShutdownBlockReasonCreate(HWND hWnd, LPCWSTR pwszReason)
//---------------------------------------------------------------------------
-// Gui_SetThreadExecutionState
+// Gui_SetTimer
//---------------------------------------------------------------------------
-_FX EXECUTION_STATE Gui_SetThreadExecutionState(EXECUTION_STATE esFlags)
+_FX UINT_PTR Gui_SetTimer(HWND hWnd, UINT_PTR nIDEvent, UINT uElapse, TIMERPROC lpTimerFunc)
{
- SetLastError(ERROR_ACCESS_DENIED);
- return 0;
- //return __sys_SetThreadExecutionState(esFlags);
+ ULONG add = SbieApi_QueryConfNumber(NULL, L"AddTimerSpeed", 1), low = SbieApi_QueryConfNumber(NULL, L"LowTimerSpeed", 1);
+ if (add != 0 && low != 0)
+ return __sys_SetTimer(hWnd, nIDEvent, uElapse * add / low, lpTimerFunc);
+ else
+ return 0;
}
@@ -1739,70 +1702,3 @@ _FX void Gui_SwitchToThisWindow(HWND hWnd, BOOL fAlt)
return;
__sys_SwitchToThisWindow(hWnd, fAlt);
}
-
-_FX DWORD Gui_GetTickCount() {
- ULONG add = SbieApi_QueryConfNumber(NULL, L"AddTickSpeed", 1), low = SbieApi_QueryConfNumber(NULL, L"LowTickSpeed", 1);
- if (low != 0)
- return __sys_GetTickCount() * add / low;
- else
- return __sys_GetTickCount() * add;
-}
-
-_FX ULONGLONG Gui_GetTickCount64() {
- ULONG add = SbieApi_QueryConfNumber(NULL, L"AddTickSpeed", 1), low = SbieApi_QueryConfNumber(NULL, L"LowTickSpeed", 1);
- if (low != 0)
- return __sys_GetTickCount64() * add / low;
- else
- return __sys_GetTickCount64() * add;
-}
-
-_FX BOOL Gui_QueryUnbiasedInterruptTime(
- PULONGLONG UnbiasedTime
-) {
- BOOL rtn = __sys_QueryUnbiasedInterruptTime(UnbiasedTime);
- ULONG add = SbieApi_QueryConfNumber(NULL, L"AddTickSpeed", 1), low = SbieApi_QueryConfNumber(NULL, L"LowTickSpeed", 1);
- if (low != 0)
- *UnbiasedTime *= add / low;
- else
- *UnbiasedTime *= add;
-
- return rtn;
-}
-
-_FX void Gui_Sleep(DWORD dwMiSecond) {
- ULONG add = SbieApi_QueryConfNumber(NULL, L"AddSleepSpeed", 1), low = SbieApi_QueryConfNumber(NULL, L"LowSleepSpeed", 1);
- if (add != 0 && low != 0)
- __sys_Sleep(dwMiSecond * add / low);
-}
-
-_FX DWORD Gui_SleepEx(DWORD dwMiSecond, BOOL bAlert) {
- ULONG add = SbieApi_QueryConfNumber(NULL, L"AddSleepSpeed", 1), low = SbieApi_QueryConfNumber(NULL, L"LowSleepSpeed", 1);
- if (add != 0 && low != 0)
- return __sys_SleepEx(dwMiSecond * add / low, bAlert);
- else
- return 0;
-}
-
-_FX BOOL Gui_QueryPerformanceCounter(
- LARGE_INTEGER* lpPerformanceCount
-) {
- ULONG add = SbieApi_QueryConfNumber(NULL, L"AddTickSpeed", 1),low= SbieApi_QueryConfNumber(NULL, L"LowTickSpeed", 1);
- BOOL rtn = __sys_QueryPerformanceCounter(lpPerformanceCount);
- if(add!=0&&low!=0)
- lpPerformanceCount->QuadPart = lpPerformanceCount->QuadPart*add /low ;
- return rtn;
-}
-
-_FX UINT_PTR Gui_SetTimer(
- HWND hWnd,
- UINT_PTR nIDEvent,
- UINT uElapse,
- TIMERPROC lpTimerFunc
-)
-{
- ULONG add = SbieApi_QueryConfNumber(NULL, L"AddTimerSpeed", 1), low = SbieApi_QueryConfNumber(NULL, L"LowTimerSpeed", 1);
- if (add != 0 && low != 0)
- return __sys_SetTimer(hWnd, nIDEvent, uElapse * add / low, lpTimerFunc);
- else
- return 0;
-}
diff --git a/Sandboxie/core/dll/kernel.c b/Sandboxie/core/dll/kernel.c
new file mode 100644
index 00000000..40319055
--- /dev/null
+++ b/Sandboxie/core/dll/kernel.c
@@ -0,0 +1,204 @@
+/*
+ * Copyright 2021-2024 David Xanatos, xanasoft.com
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+//---------------------------------------------------------------------------
+// Kernel
+//---------------------------------------------------------------------------
+
+//#define NOGDI
+//#include
+//#include "common/win32_ntddk.h"
+#include "dll.h"
+
+
+//---------------------------------------------------------------------------
+// Functions Prototypes
+//---------------------------------------------------------------------------
+
+
+typedef EXECUTION_STATE (*P_SetThreadExecutionState)(EXECUTION_STATE esFlags);
+
+typedef DWORD(*P_GetTickCount)();
+
+typedef ULONGLONG (*P_GetTickCount64)();
+
+typedef BOOL(*P_QueryUnbiasedInterruptTime)(PULONGLONG UnbiasedTime);
+
+//typedef void(*P_Sleep)(DWORD dwMiSecond);
+
+typedef DWORD(*P_SleepEx)(DWORD dwMiSecond, BOOL bAlert);
+
+typedef BOOL (*P_QueryPerformanceCounter)(LARGE_INTEGER* lpPerformanceCount);
+
+
+//---------------------------------------------------------------------------
+// Variables
+//---------------------------------------------------------------------------
+
+
+P_SetThreadExecutionState __sys_SetThreadExecutionState = NULL;
+//P_Sleep __sys_Sleep = NULL;
+P_SleepEx __sys_SleepEx = NULL;
+P_GetTickCount __sys_GetTickCount = NULL;
+P_GetTickCount64 __sys_GetTickCount64 = NULL;
+P_QueryUnbiasedInterruptTime __sys_QueryUnbiasedInterruptTime = NULL;
+P_QueryPerformanceCounter __sys_QueryPerformanceCounter = NULL;
+
+
+//---------------------------------------------------------------------------
+// Functions
+//---------------------------------------------------------------------------
+
+
+static EXECUTION_STATE Kernel_SetThreadExecutionState(EXECUTION_STATE esFlags);
+
+static DWORD Kernel_GetTickCount();
+
+static ULONGLONG Kernel_GetTickCount64();
+
+static BOOL Kernel_QueryUnbiasedInterruptTime(PULONGLONG UnbiasedTime);
+
+//static void Kernel_Sleep(DWORD dwMiSecond); // no need hooking sleep as it internally just calls SleepEx
+
+static DWORD Kernel_SleepEx(DWORD dwMiSecond, BOOL bAlert);
+
+static BOOL Kernel_QueryPerformanceCounter(LARGE_INTEGER* lpPerformanceCount);
+
+
+//---------------------------------------------------------------------------
+// Kernel_Init
+//---------------------------------------------------------------------------
+
+
+_FX BOOLEAN Kernel_Init()
+{
+ HMODULE module = Dll_Kernel32;
+
+ if (SbieApi_QueryConfBool(NULL, L"BlockInterferePower", FALSE)) {
+
+ SBIEDLL_HOOK(Kernel_, SetThreadExecutionState);
+ }
+
+ if (SbieApi_QueryConfBool(NULL, L"UseChangeSpeed", FALSE)) {
+
+ SBIEDLL_HOOK(Kernel_, GetTickCount);
+ P_GetTickCount64 GetTickCount64 = Ldr_GetProcAddrNew(Dll_Kernel32, L"GetTickCount64", "GetTickCount64");
+ if (GetTickCount64)
+ SBIEDLL_HOOK(Kernel_, GetTickCount64);
+ P_QueryUnbiasedInterruptTime QueryUnbiasedInterruptTime = Ldr_GetProcAddrNew(Dll_Kernel32, L"QueryUnbiasedInterruptTime", "QueryUnbiasedInterruptTime");
+ if (QueryUnbiasedInterruptTime)
+ SBIEDLL_HOOK(Kernel_, QueryUnbiasedInterruptTime);
+ SBIEDLL_HOOK(Kernel_, QueryPerformanceCounter);
+ //SBIEDLL_HOOK(Kernel_, Sleep);
+ SBIEDLL_HOOK(Kernel_, SleepEx);
+ }
+
+
+ return TRUE;
+}
+
+
+//---------------------------------------------------------------------------
+// Kernel_SetThreadExecutionState
+//---------------------------------------------------------------------------
+
+
+_FX EXECUTION_STATE Kernel_SetThreadExecutionState(EXECUTION_STATE esFlags)
+{
+ SetLastError(ERROR_ACCESS_DENIED);
+ return 0;
+ //return __sys_SetThreadExecutionState(esFlags);
+}
+
+
+//---------------------------------------------------------------------------
+// Kernel_GetTickCount
+//---------------------------------------------------------------------------
+
+
+_FX DWORD Kernel_GetTickCount()
+{
+ ULONG add = SbieApi_QueryConfNumber(NULL, L"AddTickSpeed", 1);
+ ULONG low = SbieApi_QueryConfNumber(NULL, L"LowTickSpeed", 1);
+ if (low != 0)
+ return __sys_GetTickCount() * add / low;
+ return __sys_GetTickCount() * add;
+}
+
+
+//---------------------------------------------------------------------------
+// Kernel_GetTickCount64
+//---------------------------------------------------------------------------
+
+
+_FX ULONGLONG Kernel_GetTickCount64()
+{
+ ULONG add = SbieApi_QueryConfNumber(NULL, L"AddTickSpeed", 1);
+ ULONG low = SbieApi_QueryConfNumber(NULL, L"LowTickSpeed", 1);
+ if (low != 0)
+ return __sys_GetTickCount64() * add / low;
+ return __sys_GetTickCount64() * add;
+}
+
+
+//---------------------------------------------------------------------------
+// Kernel_QueryUnbiasedInterruptTime
+//---------------------------------------------------------------------------
+
+
+_FX BOOL Kernel_QueryUnbiasedInterruptTime(PULONGLONG UnbiasedTime)
+{
+ BOOL rtn = __sys_QueryUnbiasedInterruptTime(UnbiasedTime);
+ ULONG add = SbieApi_QueryConfNumber(NULL, L"AddTickSpeed", 1);
+ ULONG low = SbieApi_QueryConfNumber(NULL, L"LowTickSpeed", 1);
+ if (low != 0)
+ *UnbiasedTime *= add / low;
+ else
+ *UnbiasedTime *= add;
+ return rtn;
+}
+
+
+//---------------------------------------------------------------------------
+// Kernel_SleepEx
+//---------------------------------------------------------------------------
+
+
+_FX DWORD Kernel_SleepEx(DWORD dwMiSecond, BOOL bAlert)
+{
+ ULONG add = SbieApi_QueryConfNumber(NULL, L"AddSleepSpeed", 1);
+ ULONG low = SbieApi_QueryConfNumber(NULL, L"LowSleepSpeed", 1);
+ if (add != 0 && low != 0)
+ return __sys_SleepEx(dwMiSecond * add / low, bAlert);
+ return __sys_SleepEx(dwMiSecond, bAlert);
+}
+
+
+//---------------------------------------------------------------------------
+// Kernel_QueryPerformanceCounter
+//---------------------------------------------------------------------------
+
+
+_FX BOOL Kernel_QueryPerformanceCounter(LARGE_INTEGER* lpPerformanceCount)
+{
+ BOOL rtn = __sys_QueryPerformanceCounter(lpPerformanceCount);
+ ULONG add = SbieApi_QueryConfNumber(NULL, L"AddTickSpeed", 1);
+ ULONG low = SbieApi_QueryConfNumber(NULL, L"LowTickSpeed", 1);
+ if (add != 0 && low != 0)
+ lpPerformanceCount->QuadPart = lpPerformanceCount->QuadPart * add / low;
+ return rtn;
+}
\ No newline at end of file
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index c83daf75..417250ef 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -103,7 +103,7 @@ static BOOLEAN Process_IsWindowsExplorerParent(HANDLE ParentId);
static BOOLEAN Process_IsImmersiveProcess(
PEPROCESS ProcessObject, HANDLE ParentId, ULONG SessionId);
-static BOOLEAN Process_IsAnyProcessParent(HANDLE ParentId, WCHAR* Name);
+static BOOLEAN Process_IsProcessParent(HANDLE ParentId, WCHAR* Name);
void Process_CreateForceData(
LIST *boxes, const WCHAR *SidString, ULONG SessionId);
@@ -116,7 +116,7 @@ static BOX *Process_CheckForceFolder(
LIST *boxes, const WCHAR *path, BOOLEAN alert, ULONG *IsAlert);
static BOX *Process_CheckForceProcess(
- LIST *boxes, const WCHAR *name, BOOLEAN alert, ULONG *IsAlert,HANDLE parent);
+ LIST *boxes, const WCHAR *name, BOOLEAN alert, ULONG *IsAlert, HANDLE parent);
static void Process_CheckAlertFolder(
LIST *boxes, const WCHAR *path, ULONG *IsAlert);
@@ -250,7 +250,7 @@ _FX BOX *Process_GetForcedStartBox(
if ((! box) && (! alert)) {
box = Process_CheckForceProcess(
- &boxes, ImageName, force_alert, &alert,ParentId);
+ &boxes, ImageName, force_alert, &alert, ParentId);
}
if ((! box) && CurDir && !is_start_exe && (! alert)) {
@@ -758,13 +758,12 @@ _FX BOOLEAN Process_IsDcomLaunchParent(HANDLE ParentId)
//---------------------------------------------------------------------------
-// Process_IsWindowsExplorerParent
+// Process_IsProcessParent
//
-// Note: Once an unused function, it is now used to support the ability to
-// "Automatically sandbox child processes created by File Explorer".
//---------------------------------------------------------------------------
-_FX BOOLEAN Process_IsAnyProcessParent(HANDLE ParentId,WCHAR* Name)
+
+_FX BOOLEAN Process_IsProcessParent(HANDLE ParentId,WCHAR* Name)
{
BOOLEAN retval = FALSE;
@@ -786,10 +785,17 @@ _FX BOOLEAN Process_IsAnyProcessParent(HANDLE ParentId,WCHAR* Name)
return retval;
}
+
+
+//---------------------------------------------------------------------------
+// Process_IsWindowsExplorerParent
+//---------------------------------------------------------------------------
+
+
_FX BOOLEAN Process_IsWindowsExplorerParent(HANDLE ParentId)
{
- return Process_IsAnyProcessParent(ParentId,L"explorer.exe");
+ return Process_IsProcessParent(ParentId,L"explorer.exe");
}
@@ -1374,7 +1380,7 @@ _FX BOOLEAN Process_CheckForceProcessList(
_FX BOX *Process_CheckForceProcess(
- LIST *boxes, const WCHAR *name, BOOLEAN alert, ULONG *IsAlert,HANDLE Parent)
+ LIST *boxes, const WCHAR *name, BOOLEAN alert, ULONG *IsAlert, HANDLE Parent)
{
FORCE_BOX *box;
@@ -1393,13 +1399,13 @@ _FX BOX *Process_CheckForceProcess(
return box->box;
}
- if (Process_IsWindowsExplorerParent(Parent) && wcscmp(Conf_Get(NULL, L"ForceExplorerChild", 0), box->box->name)==0) {
- if(_wcsicmp(name,L"Sandman.exe")!=0)
- return box->box;
- }
+ //if (Process_IsWindowsExplorerParent(Parent) && wcscmp(Conf_Get(NULL, L"ForceExplorerChild", 0), box->box->name)==0) {
+ // if(_wcsicmp(name,L"Sandman.exe")!=0)
+ // return box->box;
+ //}
box = List_Next(box);
}
-
+
return NULL;
}
diff --git a/Sandboxie/core/svc/GuiServer.cpp b/Sandboxie/core/svc/GuiServer.cpp
index 246e9b0a..19bf5122 100644
--- a/Sandboxie/core/svc/GuiServer.cpp
+++ b/Sandboxie/core/svc/GuiServer.cpp
@@ -1092,10 +1092,13 @@ HANDLE GuiServer::GetJobObjectForAssign(const WCHAR *boxname)
//
if (ok) {
+
JOBOBJECT_EXTENDED_LIMIT_INFORMATION jobELInfo = {0};
jobELInfo.BasicLimitInformation.LimitFlags = JOB_OBJECT_LIMIT_BREAKAWAY_OK
| JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK;
- ULONG TotalMemoryLimit = SbieApi_QueryConfNumber(boxname, L"TotalMemoryLimit", 0), ProcessNumberLimit = SbieApi_QueryConfNumber(boxname, L"ProcessNumberLimit", 0), ProcessMemoryLimit = SbieApi_QueryConfNumber(boxname, L"ProcessMemoryLimit", 0);
+ ULONG TotalMemoryLimit = SbieApi_QueryConfNumber(boxname, L"TotalMemoryLimit", 0);
+ ULONG ProcessNumberLimit = SbieApi_QueryConfNumber(boxname, L"ProcessNumberLimit", 0);
+ ULONG ProcessMemoryLimit = SbieApi_QueryConfNumber(boxname, L"ProcessMemoryLimit", 0);
if (TotalMemoryLimit != 0) {
jobELInfo.JobMemoryLimit = TotalMemoryLimit;
jobELInfo.BasicLimitInformation.LimitFlags |= JOB_OBJECT_LIMIT_JOB_MEMORY;
diff --git a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
index 46690650..3aae82a1 100644
--- a/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/SettingsWindow.ui
@@ -7,7 +7,7 @@
00695
- 565
+ 508
@@ -1946,222 +1946,218 @@ Unlike the preview channel, it does not include untested, potentially breaking,
- 0
+ 1Sandboxie Config
-
+
-
-
-
- 75
- true
- true
-
-
-
- Sandbox default
-
-
-
-
-
-
- Default sandbox:
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
-
-
-
-
-
-
-
- Portable root folder
-
-
-
-
-
-
- Sandbox <a href="sbie://docs/filerootpath">file system root</a>:
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
- true
-
-
-
-
-
-
-
-
-
-
- 23
- 16777215
-
-
-
- ...
-
-
-
-
-
-
- Sandbox <a href="sbie://docs/keyrootpath">registry root</a>:
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
- true
-
-
-
-
-
-
-
-
-
- Sandbox <a href="sbie://docs/ipcrootpath">ipc root</a>:
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
- true
-
-
-
-
-
-
-
-
-
-
- 75
- true
- true
-
-
-
- Sandboxing features
-
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 77
- 20
-
-
-
-
-
-
-
- Use Windows Filtering Platform to restrict network access
-
-
-
-
-
-
- Activate Kernel Mode Object Filtering
-
-
-
-
-
-
- Hook selected Win32k system calls to enable GPU acceleration (experimental)
-
-
-
-
-
-
- Use a Sandboxie login instead of an anonymous token
-
-
-
-
-
-
- Let the child processes of the default File Explorer automatically enter
-the default sandbox
-
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 76
- 20
-
-
-
-
-
-
-
- Qt::Vertical
-
-
-
- 20
- 147
-
-
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 76
- 20
-
-
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 76
- 20
-
-
-
+
+
+
+
+
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+
+
+
+
+
+
+
+ 23
+ 16777215
+
+
+
+ ...
+
+
+
+
+
+
+
+
+
+
+ 75
+ true
+ true
+
+
+
+ Sandbox default
+
+
+
+
+
+
+
+
+
+ Portable root folder
+
+
+
+
+
+
+ Sandbox <a href="sbie://docs/ipcrootpath">ipc root</a>:
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+ true
+
+
+
+
+
+
+ Default sandbox:
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+
+
+
+
+ Use Windows Filtering Platform to restrict network access
+
+
+
+
+
+
+ Sandbox <a href="sbie://docs/filerootpath">file system root</a>:
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+ true
+
+
+
+
+
+
+ Activate Kernel Mode Object Filtering
+
+
+
+
+
+
+ Sandbox <a href="sbie://docs/keyrootpath">registry root</a>:
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+ true
+
+
+
+
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 40
+
+
+
+
+
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+
+
+
+
+ 75
+ true
+ true
+
+
+
+ Sandboxing features
+
+
+
+
+
+
+ Hook selected Win32k system calls to enable GPU acceleration (experimental)
+
+
+
+
+
+
+ Use a Sandboxie login instead of an anonymous token
+
+
+
+
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+
diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
index 1955ffdb..9317b7ba 100644
--- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
@@ -420,7 +420,7 @@ CSettingsWindow::CSettingsWindow(QWidget* parent)
connect(ui.chkObjCb, SIGNAL(stateChanged(int)), this, SLOT(OnFeaturesChanged()));
if (CurrentVersion.value("CurrentBuild").toInt() < 14393) // Windows 10 RS1 and later
ui.chkWin32k->setEnabled(false);
- connect(ui.chkForceExplorerChild, SIGNAL(stateChanged(int)), this, SLOT(OnFeaturesChanged()));
+ //connect(ui.chkForceExplorerChild, SIGNAL(stateChanged(int)), this, SLOT(OnFeaturesChanged()));
//connect(ui.chkWin32k, SIGNAL(stateChanged(int)), this, SLOT(OnFeaturesChanged()));
m_FeaturesChanged = false;
connect(ui.chkWin32k, SIGNAL(stateChanged(int)), this, SLOT(OnGeneralChanged()));
@@ -954,7 +954,7 @@ void CSettingsWindow::LoadSettings()
ui.chkMinimize->setChecked(theConf->GetBool("Options/MinimizeToTray", false));
ui.chkSingleShow->setChecked(theConf->GetBool("Options/TraySingleClick", false));
- ui.chkForceExplorerChild->setChecked(strcmp(theAPI->GetGlobalSettings()->GetText("ForceExplorerChild").toStdString().c_str(), theAPI->GetGlobalSettings()->GetText("DefaultBox").toStdString().c_str())==0);
+ //ui.chkForceExplorerChild->setChecked(strcmp(theAPI->GetGlobalSettings()->GetText("ForceExplorerChild").toStdString().c_str(), theAPI->GetGlobalSettings()->GetText("DefaultBox").toStdString().c_str())==0);
OnLoadAddon();
bool bImDiskReady = theGUI->IsImDiskReady();
@@ -1642,10 +1642,10 @@ void CSettingsWindow::SaveSettings()
theConf->SetValue("Options/OnClose", ui.cmbOnClose->currentData());
theConf->SetValue("Options/MinimizeToTray", ui.chkMinimize->isChecked());
theConf->SetValue("Options/TraySingleClick", ui.chkSingleShow->isChecked());
- if (ui.chkForceExplorerChild->isChecked())
- theAPI->GetGlobalSettings()->SetText("ForceExplorerChild", theAPI->GetGlobalSettings()->GetText("DefaultBox"));
- else if (theAPI->GetGlobalSettings()->GetText("ForceExplorerChild").compare(theAPI->GetGlobalSettings()->GetText("DefaultBox")) == 0)
- theAPI->GetGlobalSettings()->DelValue("ForceExplorerChild");
+ //if (ui.chkForceExplorerChild->isChecked())
+ // theAPI->GetGlobalSettings()->SetText("ForceExplorerChild", theAPI->GetGlobalSettings()->GetText("DefaultBox"));
+ //else if (theAPI->GetGlobalSettings()->GetText("ForceExplorerChild").compare(theAPI->GetGlobalSettings()->GetText("DefaultBox")) == 0)
+ // theAPI->GetGlobalSettings()->DelValue("ForceExplorerChild");
if (theAPI->IsConnected())
{
try
From 5558080db36d28996d23d16232413912d2c455b4 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Tue, 7 May 2024 19:45:55 +0200
Subject: [PATCH 076/122] Update CHANGELOG.md
---
CHANGELOG.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5dfff9be..cade017f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,7 +9,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.14.0 / 5.69.0] - 2024-05-??
### Added
-
+- Add option to limit the memory of sandboxed process and the number of process in single sandbox through job object. (thanks Yeyixiao)
+- Add ability to modified sandboxed process logic speed (reduced fixed latency, modified single-player speed, etc.) (thanks Yeyixiao)
From 977d761db17b3941f0e1be3eca01a1b09cb41361 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Tue, 7 May 2024 19:51:16 +0200
Subject: [PATCH 077/122] [skipci]
---
Sandboxie/core/drv/process_force.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index 417250ef..c03c4fd2 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -763,7 +763,7 @@ _FX BOOLEAN Process_IsDcomLaunchParent(HANDLE ParentId)
//---------------------------------------------------------------------------
-_FX BOOLEAN Process_IsProcessParent(HANDLE ParentId,WCHAR* Name)
+_FX BOOLEAN Process_IsProcessParent(HANDLE ParentId, WCHAR* Name)
{
BOOLEAN retval = FALSE;
@@ -1380,7 +1380,7 @@ _FX BOOLEAN Process_CheckForceProcessList(
_FX BOX *Process_CheckForceProcess(
- LIST *boxes, const WCHAR *name, BOOLEAN alert, ULONG *IsAlert, HANDLE Parent)
+ LIST *boxes, const WCHAR *name, BOOLEAN alert, ULONG *IsAlert, HANDLE ParentId)
{
FORCE_BOX *box;
@@ -1399,7 +1399,7 @@ _FX BOX *Process_CheckForceProcess(
return box->box;
}
- //if (Process_IsWindowsExplorerParent(Parent) && wcscmp(Conf_Get(NULL, L"ForceExplorerChild", 0), box->box->name)==0) {
+ //if (Process_IsWindowsExplorerParent(ParentId) && Conf_Get_Boolean(box->box->name, L"ForceExplorerChild", FALSE)) {
// if(_wcsicmp(name,L"Sandman.exe")!=0)
// return box->box;
//}
From 965110e4b2bec6c8d526b9ad63d3521036f686e5 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 8 May 2024 01:17:49 +0000
Subject: [PATCH 078/122] Sync SBIE Plus language files (lupdate)
---
SandboxiePlus/SandMan/sandman_de.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_en.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_es.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_fr.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_hu.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_it.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_ja.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_ko.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_nl.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_pl.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_pt_BR.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_pt_PT.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_ru.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_sv_SE.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_tr.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_uk.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_vi.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_zh_CN.ts | 134 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_zh_TW.ts | 134 ++++++++++++-------------
19 files changed, 1273 insertions(+), 1273 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts
index d36d36ec..105b91ab 100644
--- a/SandboxiePlus/SandMan/sandman_de.ts
+++ b/SandboxiePlus/SandMan/sandman_de.ts
@@ -5163,193 +5163,193 @@ This file is part of Sandboxie and all change done to it will be reverted next t
%1
-
+ Add %1 TemplateFüge %1 Vorlage hinzu
-
+ Please enter messageBitte Nachricht eingeben
-
-
+
+ Run &SandboxedStarte &Sandgeboxt
-
+ kilobytes (%1)Kilobytes (%1)
-
+ Volume not attachedDatenträger nicht eingesteckt
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Dieses Unterstützerzertifikat ist abgelaufen, bitte <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">holen Sie sich ein erneuertes Zertifikat</a>.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Dieses Unterstützerzertifikat wird <font color='red'>in %1 Tagen ablaufen</font>, bitte <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">holen Sie sich ein erneuertes Zertifikat</a>.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.Dies sieht nicht nach einer Sandboxie-Plus Seriennummer aus.<br />Wenn Sie versucht haben, den Update-Schlüssel oder die Signatur von einem Zertifikat einzugeben, ist das nicht korrekt. Bitte geben Sie stattdessen das gesamte Zertifikat in das Textfeld oben ein.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.Sie versuchen einen Funktions-Upgrade-Schlüssel zu verwenden, ohne ein bereits vorhandenes Unterstützerzertifikat eingegeben zu haben. Bitte beachten Sie, dass Sie für diese Art von Schlüssel (<b>wie auf der Website deutlich in Fettschrift angegeben</b>) ein bereits vorhandenes gültiges Unterstützerzertifikat benötigen, da er ohne ein solches nutzlos ist.<br />Wenn Sie die erweiterten Funktionen nutzen möchten, müssen Sie beides erwerben, ein Standardzertifikat und den Funktions-Upgrade-Schlüssel, um die erweiterte Funktionalität freizuschalten.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.Sie versuchen einen Erneuerungsschlüssel zu verwenden, ohne ein bereits vorhandenes Unterstützerzertifikat eingegeben zu haben. Bitte beachten Sie, dass Sie für diese Art von Schlüssel (<b>wie auf der Website deutlich in Fettschrift angegeben</b>) ein bereits vorhandenes gültiges Unterstützerzertifikat benötigen, da er ohne ein solches nutzlos ist.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>Wenn Sie die Produktbeschreibung nicht gelesen haben und diesen Schlüssel versehentlich erworben haben, kontaktieren Sie uns bitte per E-Mail (auf unserer Website angegeben), um dieses Problem zu lösen.</u>
-
+ Error retrieving certificate: %1Fehler beim Abrufen des Zertifikats: %1
-
+ Unknown Error (probably a network issue)Unbekannter Fehler (wahrscheinlich ein Netzwerkproblem)
-
+ ContributorCertificate type: a translation could lead to confusion.Contributor
-
+ EternalCertificate type: a translation could lead to confusion.Eternal
-
+ BusinessCertificate type: a translation could lead to confusion.Business
-
+ PersonalCertificate type: a translation could lead to confusion.Personal
-
+ Great PatreonCertificate type: a translation could lead to confusion.Great Patreon
-
+ PatreonCertificate type: a translation could lead to confusion.Patreon
-
+ FamilyCertificate type: a translation could lead to confusion.Family
-
+ EvaluationCertificate type: a translation could lead to confusion.Evaluation
-
+ Type %1Typ %1
-
+ AdvancedErweitert
-
+ Max LevelMaximale Stufe
-
+ Level %1Stufe %1
-
+ Supporter certificate required for accessUnterstützerzertifikat notwendig für Zugriff
-
+ Supporter certificate required for automationUnterstützerzertifikat notwendig zur Automatisierung
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Dieses Zertifikat ist leider nicht für die aktuelle Version gültig. Sie müssen ein neues Zertifikat erwerben oder auf eine frühere Version zurückgehen.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Obwohl dieses Zertifikat abgelaufen ist, bleiben die Plus-Funktionen der aktuell installierten Version aktiviert. Sie haben jedoch keinen Zugang mehr zu den Sandboxie-Live-Diensten, einschließlich Kompatibilitäts-Updates und der Onlineproblemlösungsdatenbank.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Dieses Zertifikat ist leider abgelaufen, Sie müssen ein neues Zertifikat erwerben.
-
+ Sandboxed Web BrowserSandgeboxter Internetbrowser
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Plus-Funktionen werden in %1 Tagen deaktiviert.</font>
-
+ <br />Plus features are no longer enabled.<br />Plus-Funktionen sind nicht länger aktiviert.
-
+ Run &Un-SandboxedStarte &Nicht-Sandgeboxt
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Dies scheint kein Zertifikat zu sein. Bitte geben Sie das ganze Zertifikat ein, nicht nur einen Teil davon.
-
+ Search for settingsNach Einstellungen suchen
@@ -5417,145 +5417,145 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Zu Programm navigieren
-
+ Select fontSchriftart auswählen
-
+ Reset fontSchriftart zurücksetzen
-
+ %0, %1 pt%0, %1 pt
-
+ Select ProgramProgramm auswählen
-
+ Executables (*.exe *.cmd)Ausführbare Dateien (*.exe *.cmd)
-
-
+
+ Please enter a menu titleBitte einen Menütitel eingeben
-
+ Please enter a commandBitte ein Kommando eingeben
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.<br /><font color='red'>In der aktuellen Version bleiben die Plus-Funktionen aktiviert</font>, aber Sie haben keinen Zugang mehr zu den Sandboxie-Live-Diensten, einschließlich Kompatibilitäts-Updates und der Onlineproblemlösungsdatenbank.
-
+ Retrieving certificate...Rufe Zertifikat ab...
-
+ HomeCertificate type: a translation could lead to confusion.Home
-
+ Thank you for supporting the development of Sandboxie-Plus.Danke Ihnen für die Unterstützung der Entwicklung von Sandboxie-Plus.
-
+ Update AvailableUpdate verfügbar
-
+ InstalledInstalliert
-
+ by %1von %1
-
+ (info website)(Informationswebseite)
-
+ This Add-on is mandatory and can not be removed.Diese Erweiterung ist notwendig und kann nicht entfernt werden.
-
+ <a href="check">Check Now</a><a href="check">Jetzt prüfen</a>
-
+ Please enter the new configuration password.Bitte ein Passwort für die neue Konfiguration eingeben.
-
+ Please re-enter the new configuration password.Bitte das neue Konfigurationspasswort wiederholen.
-
+ Passwords did not match, please retry.Passwörter stimmten nicht überein, bitte erneut versuchen.
-
+ ProcessProzess
-
+ FolderOrdner
-
+ Please enter a program file nameBitte den Dateinamen eines Programms eingeben
-
+ Please enter the template identifierBitte Vorlagen-Identifikation eingeben
-
+ Error: %1Fehler: %1
-
+ Do you really want to delete the selected local template(s)?Möchten Sie wirklich die ausgewählte(n) lokalen Vorlage(n) löschen?
-
+ %1 (Current)%1 (Aktuell)
-
-
+
+ Select DirectoryOrdner auswählen
diff --git a/SandboxiePlus/SandMan/sandman_en.ts b/SandboxiePlus/SandMan/sandman_en.ts
index 85a18eb5..b2b3481c 100644
--- a/SandboxiePlus/SandMan/sandman_en.ts
+++ b/SandboxiePlus/SandMan/sandman_en.ts
@@ -5213,164 +5213,164 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Search for settings
-
-
+
+ Run &Sandboxed
-
+ kilobytes (%1)
-
+ Volume not attached
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Error retrieving certificate: %1Error retriving certificate: %1
-
+ Unknown Error (probably a network issue)
-
+ Contributor
-
+ Eternal
-
+ Business
-
+ Personal
-
+ Great Patreon
-
+ Patreon
-
+ Family
-
+ Evaluation
-
+ Type %1
-
+ Advanced
-
+ Max Level
-
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
-
+ Sandboxed Web Browser
@@ -5398,169 +5398,169 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Add %1 Template
-
+ Select font
-
+ Reset font
-
+ %0, %1 pt
-
+ Please enter message
-
+ Select Program
-
+ Executables (*.exe *.cmd)
-
-
+
+ Please enter a menu title
-
+ Please enter a command
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font>
-
+ <br />Plus features are no longer enabled.
-
+ Retrieving certificate...
-
+ Home
-
+ Run &Un-Sandboxed
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.
-
+ Thank you for supporting the development of Sandboxie-Plus.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select Directory
-
+ <a href="check">Check Now</a>
-
+ Please enter the new configuration password.
-
+ Please re-enter the new configuration password.
-
+ Passwords did not match, please retry.
-
+ Process
-
+ Folder
-
+ Please enter a program file name
-
+ Please enter the template identifier
-
+ Error: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)
diff --git a/SandboxiePlus/SandMan/sandman_es.ts b/SandboxiePlus/SandMan/sandman_es.ts
index a726c09d..f95d4c19 100644
--- a/SandboxiePlus/SandMan/sandman_es.ts
+++ b/SandboxiePlus/SandMan/sandman_es.ts
@@ -5781,220 +5781,220 @@ NO seleccionará: %2
Buscar programa
-
+ Add %1 TemplateAñadir Plantilla %1
-
+ Select fontElegir fuente
-
+ Reset fontRestablecer fuente
-
+ Search for settingsBuscar ajustes
-
+ %0, %1 pt%0, %1 pt
-
+ Please enter messagePor favor introduzca mensaje
-
+ Select ProgramElegir Programa
-
+ Executables (*.exe *.cmd)Ejecutables (*.exe *.cmd)
-
-
+
+ Please enter a menu titlePor favor introduzca un título de menú
-
+ Please enter a commandPor favor ingrese un comando
-
-
+
+ Run &SandboxedEjecutar &Sandboxed
-
+ kilobytes (%1)kilobytes (%1)
-
+ Volume not attachedVolumen no adjuntado
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.El certificado de patrocinador ha expirado, por favor <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">obten un certificado actualizado</a>.
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.<br /><font color='red'>Para la versión actual, las funciones Plus siguen estando activadas</font>, pero ya no tienes acceso a los servicios de Sandboxie-Live, incluyendo las actualizaciones de compatibilidad y la base de datos de solución de problemas.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Este certificado de patrocinador<font color='red'>expirará en %1 día(s)</font>, por favor <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">obtenga un certificado actualizado</a>.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.Está intentando usar una Clave de Actualización de características sin haber ingresado un certificado de patrocinador preexistente. Tenga en cuenta que este tipo de clave (<b>como se indica claramente en negritas en el sitio web</b>) requiere que tenga un certificado de patrocinador válido preexistente; es inútil sin uno.<br />Si desea usar las características avanzadas, necesita obtener tanto un certificado estándar como la clave de actualización de características para desbloquear la funcionalidad avanzada.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.Está intentando usar una Clave de Renovación sin haber ingresado un certificado de patrocinador preexistente. Tenga en cuenta que este tipo de clave (<b>como se indica claramente en negritas en el sitio web</b>) requiere que tenga un certificado de patrocinador válido preexistente; es inútil sin uno.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u><br /><br /><u>Si no ha leído la descripción del producto y ha obtenido esta clave por error, por favor contáctanos por email (disponible en nuestra web) para resolver esta incidencia.</u>
-
+ Retrieving certificate...Obteniendo certificado...
-
+ Error retrieving certificate: %1Error retriving certificate: %1Error obteniendo certificado: %1
-
+ Unknown Error (probably a network issue)Error Desconocido (probablemente un problema de red)
-
+ ContributorContribuidor
-
+ EternalEterno
-
+ BusinessNegocio
-
+ PersonalPresonal
-
+ Great PatreonGran Patreon
-
+ PatreonPatreon
-
+ FamilyFamilia
-
+ HomeHogar
-
+ EvaluationEvaluación
-
+ Type %1Tipo %1
-
+ AdvancedAvanzado
-
+ Max LevelNivel máximo
-
+ Level %1Nivel %1
-
+ Supporter certificate required for accessCertificado de patrocinador requerido para acceso
-
+ Supporter certificate required for automationCertificado de patrocinador requerido para automatización
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Este certificado es desafortunadamente inválido para la compilación actual, necesita obtener un nuevo certificado o volver a una compilación anterior.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Aunque este certificado ha caducado, las funciones adicionales de la versión actualmente instalada siguen habilitadas. Sin embargo, ya no tendrás acceso a los servicios de Sandboxie-Live, incluidas las actualizaciones de compatibilidad y la base de datos de solución de problemas en línea.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Este certificado ha desafortunadamente expirado, necesita obtener un nuevo certificado.
-
+ Sandboxed Web BrowserNavegador Web Aislado
@@ -6003,12 +6003,12 @@ NO seleccionará: %2
Este certificado de patrocinador ha expirado, por favor <a href="sbie://update/cert">obtenga un certificado actualizado</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Características Plus se deshabilitarán en %1 días.</font>
-
+ <br />Plus features are no longer enabled.<br />Características Plus ya no están disponibles.
@@ -6017,12 +6017,12 @@ NO seleccionará: %2
Este certificado de patrocinador <font color='red'>expirará en %1 días</font>, por favor <a href="sbie://update/cert">obtenga un certificado actualizado</a>.
-
+ Run &Un-SandboxedEjecutar &Sin-Sandbox
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Esto no parece un certificado. Por favor introduzca el certificado entero, no solo una porción del mismo.
@@ -6035,7 +6035,7 @@ NO seleccionará: %2
Este certificado esta desactualizado.
-
+ Thank you for supporting the development of Sandboxie-Plus.Gracias por patrocinar el desarrollo de Sandboxie-Plus.
@@ -6044,88 +6044,88 @@ NO seleccionará: %2
Este certificado de patrocinador no es válido.
-
+ Update AvailableActualización Disponible
-
+ InstalledInstalado
-
+ by %1por %1
-
+ (info website)(web de información)
-
+ This Add-on is mandatory and can not be removed.Esta extensión es obligatoria y no se puede eliminar.
-
-
+
+ Select DirectorySeleccionar Directorio
-
+ <a href="check">Check Now</a><a href="check">Comprobar Ahora</a>
-
+ Please enter the new configuration password.Por favor ingrese la nueva clave de configuracion.
-
+ Please re-enter the new configuration password.Por favor re-ingrese la nueva clave de configuracion.
-
+ Passwords did not match, please retry.Las contraseñas no son iguales, vuelva a intentarlo por favor.
-
+ ProcessProceso
-
+ FolderCarpeta
-
+ Please enter a program file namePor favor ingrese un nombre de archivo al programa
-
+ Please enter the template identifierPor favor ingrese el identificador de plantilla
-
+ Error: %1Error: %1
-
+ Do you really want to delete the selected local template(s)?¿Desea realmente borrar la(s) plantilla(s) local(es) seleccionada(s)?
-
+ %1 (Current)%1 (Actual)
diff --git a/SandboxiePlus/SandMan/sandman_fr.ts b/SandboxiePlus/SandMan/sandman_fr.ts
index 356e269c..537bd306 100644
--- a/SandboxiePlus/SandMan/sandman_fr.ts
+++ b/SandboxiePlus/SandMan/sandman_fr.ts
@@ -5836,15 +5836,15 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
%1 %
-
-
+
+ Run &SandboxedExécuter dans un bac à &sable
-
+ Sandboxed Web BrowserNavigateur web dans un bac à sable
@@ -5853,7 +5853,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Ce certificat d'adhérent a expiré, veuillez <a href="sbie://update/cert">obtenir un certificat à jour</a>.
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.<br /><font color='red'>Pour la version actuelle, les fonctions Plus demeurent activées</font>, mais vous n'avez plus accès aux services Sandboxie-Live, incluant les mises à jour de compatibilité et la base de données de dépannage.
@@ -5862,12 +5862,12 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Ce certificat d'adhérent va <font color='red'>expirer dans %1 jour(s)</font>, veuillez <a href="sbie://update/cert">obtenir une mise à jour du certificat</a>.
-
+ Run &Un-SandboxedExécuter &en dehors d'un bac à sable
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Cela ne semble pas être un certificat. Veuillez saisir le certificat dans son intégralité, et non uniquement une partie.
@@ -5877,7 +5877,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Cela ne semble pas être un certificat, veuillez entrer le certificat dans son intégralité.
-
+ Search for settingsSearch for SettingsRechercher dans les paramètres
@@ -5926,73 +5926,73 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Rechercher un programme
-
+ Add %1 TemplateAjouter un modèle pour : %1
-
+ Select fontChoisir la police
-
+ Reset fontRéinitialiser la police
-
+ %0, %1 pt%0, %1 pt
-
+ Please enter messageVeuillez saisir l'identifiant du message
-
+ Select ProgramSélectionner le programme
-
+ Executables (*.exe *.cmd)Exécutables (*.exe *.cmd)
-
-
+
+ Please enter a menu titleVeuillez saisir un titre de menu
-
+ Please enter a commandVeuillez saisir une commande
-
+ kilobytes (%1)kilo-octets (%1)
-
+ Volume not attachedVolume non branché
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Ce certificat d'adhérent a expiré, veuillez <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">obtenir un certificat à jour</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Les fonctions « Plus » seront désactivées dans %1 jour(s).</font>
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Ce certificat d'adhérent va <font color='red'>expirer dans %1 jour(s)</font>, veuillez <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">obtenir une mise à jour du certificat</a>.
@@ -6001,87 +6001,87 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Récupération du certificat...
-
+ ContributorContributeur
-
+ EternalÉternel
-
+ BusinessEntreprise
-
+ PersonalPersonnel
-
+ Great PatreonGrand contributeur Patreon
-
+ PatreonContributeur Patreon
-
+ FamilyFamille
-
+ EvaluationÉvaluation
-
+ Type %1Type %1
-
+ AdvancedAvancé
-
+ Max LevelNiveau max
-
+ Level %1Niveau %1
-
+ Supporter certificate required for accessCertificat d'adhérent nécessaire pour l'accès
-
+ Supporter certificate required for automationCertificat d'adhérent nécessaire pour l'automatisation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Ce certificat est malheureusement invalide pour la version actuelle, vous avez besoin d'obtenir un nouveau certificat ou de rétrograder à une version moins récente.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Bien que ce certificat ait expiré, les fonctions Plus demeurent activées pour la version actuellement installée. Cependant, vous n'aurez plus accès aux services Sandboxie-Live, incluant les mises à jour de compatibilité et la base de données de dépannage en ligne.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Ce certificat a malheureusement expiré, vous avez besoin d'en obtenir un nouveau.
@@ -6090,51 +6090,51 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
<br /><font color='red'>Pour cette version, les fonctions « Plus » demeurent activées.</font>
-
+ <br />Plus features are no longer enabled.<br />Les fonctions « Plus » ne sont plus activées.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.Ceci ne ressemble pas à un numéro de série de Sandboxie-Plus.<br />Si vous avez essayé de saisir la clé de mise à jour ou la signature d'un certificat, c'est incorrect : à la place, veuillez saisir le certificat en entier dans la zone de texte ci-dessus.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.Vous essayez d'utiliser une fonction « Clé de mise à jour » sans avoir saisi un certificat d'adhérent pré-existant. Veuillez remarquer que ce genre de clé (<b>comme clairement indiqué en gras sur le site web</b) nécessite que vous ayez un certificat d'adhérent pré-existant valide ; c'est inutile sans lui.<br />Si vous voulez utiliser les fonctions avancées, vous devez obtenir à la fois un certificat standard et la clé de mise à jour de fonction pour débloquer la fonction avancée.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.Vous essayez d'utiliser une clé de renouvellement sans avoir saisi un certificat d'adhérent pré-existant. Veuillez remarquer que ce genre de clé (<b>comme clairement indiqué en gras sur le site web</b) nécessite que vous ayez un certificat d'adhérent pré-existant valide ; c'est inutile sans lui.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u><br /><br /><u>Si vous n'avez pas lu la description du produit et obtenu cette clé par erreur, veuillez nous contacter par courriel (fourni sur notre site web) afin de résoudre ce problème.</u>
-
+ Retrieving certificate...Récupération du certificat...
-
+ Error retrieving certificate: %1Error retriving certificate: %1Erreur lors de la récupération du certificat : %1
-
+ Unknown Error (probably a network issue)Erreur inconnue (probablement un problème de réseau)
-
+ HomeAccueil
@@ -6152,7 +6152,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Ce certificat est malheureusement obsolète.
-
+ Thank you for supporting the development of Sandboxie-Plus.Merci pour votre soutien au développement de Sandboxie-Plus.
@@ -6161,88 +6161,88 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Ce certificat d'adhérent n'est pas valide.
-
+ Update AvailableMise à jour disponible
-
+ InstalledInstallé
-
+ by %1par %1
-
+ (info website)(site web d'information)
-
+ This Add-on is mandatory and can not be removed.Ce module est obligatoire et ne peut pas être supprimé.
-
-
+
+ Select DirectorySélectionner le dossier
-
+ <a href="check">Check Now</a><a href="check">Vérifier maintenant</a>
-
+ Please enter the new configuration password.Veuillez saisir le nouveau mot de passe de configuration.
-
+ Please re-enter the new configuration password.Veuillez saisir à nouveau le mot de passe de la configuration.
-
+ Passwords did not match, please retry.Les mots de passe ne correspondent pas, veuillez réessayer.
-
+ ProcessProcessus
-
+ FolderDossier
-
+ Please enter a program file nameVeuillez saisir le nom de fichier du programme
-
+ Please enter the template identifierVeuillez saisir l'identifiant du modèle
-
+ Error: %1Erreur : %1
-
+ Do you really want to delete the selected local template(s)?Voulez-vous vraiment supprimer le ou les modèles locaux sélectionnés ?
-
+ %1 (Current)%1 (Actuel)
diff --git a/SandboxiePlus/SandMan/sandman_hu.ts b/SandboxiePlus/SandMan/sandman_hu.ts
index 386ccaad..3dc60cde 100644
--- a/SandboxiePlus/SandMan/sandman_hu.ts
+++ b/SandboxiePlus/SandMan/sandman_hu.ts
@@ -5383,174 +5383,174 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
%1
-
+ Search for settingsKeresés a beállításokban
-
-
+
+ Run &SandboxedIzolált módú futtatá&s
-
+ kilobytes (%1)KB (%1)
-
+ Volume not attached
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Retrieving certificate...
-
+ Error retrieving certificate: %1Error retriving certificate: %1
-
+ Unknown Error (probably a network issue)
-
+ Contributor
-
+ Eternal
-
+ Business
-
+ Personal
-
+ Great Patreon
-
+ Patreon
-
+ Family
-
+ Home
-
+ Evaluation
-
+ Type %1
-
+ Advanced
-
+ Max Level
-
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
-
+ Sandboxed Web BrowserIzolált web böngésző
@@ -5578,48 +5578,48 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Tallózás a programhoz
-
+ Add %1 Template
-
+ Select font
-
+ Reset font
-
+ %0, %1 pt
-
+ Please enter message
-
+ Select ProgramProgram kiválasztása
-
+ Executables (*.exe *.cmd)Futtatható fájlok (*.exe *.cmd)
-
-
+
+ Please enter a menu titleA menü címének megadása
-
+ Please enter a commandKérjük, adjon meg egy parancsot
@@ -5628,7 +5628,7 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Ez a tanúsítvány lejárt. Kérjük, <a href="sbie://update/cert">szerezzen egy frissített tanúsítványt</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>A plusz funkciók %1 napon belül le lesznek tiltva.</font>
@@ -5637,7 +5637,7 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
<br /><font color='red'>Ennél a buildnél a Plusz funkciók továbbra is engedélyezve maradnak.</font>
-
+ <br />Plus features are no longer enabled.<br />A plusz funkciók már nincsenek engedélyezve.
@@ -5651,12 +5651,12 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Támogatói tanúsítvány szükséges
-
+ Run &Un-SandboxedFuttatás &homokozón kívül
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Ez nem úgy néz ki, mint egy tanúsítvány. Kérjük, adja meg a teljes tanúsítványt, ne csak egy részét.
@@ -5669,7 +5669,7 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Ez a tanúsítvány sajnos elavult.
-
+ Thank you for supporting the development of Sandboxie-Plus.Köszönjük, hogy támogatja a Sandboxie-Plus fejlesztését.
@@ -5678,88 +5678,88 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Ez a támogatói tanúsítvány nem érvényes.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectoryKönyvtár kiválasztása
-
+ <a href="check">Check Now</a><a href="check">Ellenőrzés most</a>
-
+ Please enter the new configuration password.Az új konfigurációs jelszó megadása.
-
+ Please re-enter the new configuration password.Kérjük, adja meg újra a konfigurációs jelszót.
-
+ Passwords did not match, please retry.A jelszavak nem egyeznek. Kérjük, próbálja meg újra.
-
+ ProcessFolyamatok
-
+ FolderMappa
-
+ Please enter a program file nameEgy program nevének megadása
-
+ Please enter the template identifierKérjük, adja meg a sablon azonosítóját
-
+ Error: %1Hiba: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)%1 (jelenlegi)
diff --git a/SandboxiePlus/SandMan/sandman_it.ts b/SandboxiePlus/SandMan/sandman_it.ts
index 98f63166..d3ce74d2 100644
--- a/SandboxiePlus/SandMan/sandman_it.ts
+++ b/SandboxiePlus/SandMan/sandman_it.ts
@@ -5432,80 +5432,80 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
%1
-
+ Search for settingsCerca impostazioni
-
-
+
+ Run &SandboxedVoce relativa al menu contestuale dei fileAvvia nell'&area virtuale
-
+ kilobytes (%1)kilobyte (%1)
-
+ Volume not attached
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Questo certificato è scaduto, si prega di <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">ottenere un certificato aggiornato</a>.
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.Forse migliorabile<br /><font color='red'>Per la build corrente, le funzioni Plus rimangono attive</font>, ma non si ha più accesso ai servizi di Sandboxie Live, inclusi gli aggiornamenti di compatibilità e il database di risoluzione problemi.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Questo certificato <font color='red'>scadrà fra %1 giorni</font>, si prega di <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">ottenere un certificato aggiornato</a>.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Retrieving certificate...Recupero del certificato in corso...
-
+ Error retrieving certificate: %1Error retriving certificate: %1
-
+ Unknown Error (probably a network issue)
@@ -5515,49 +5515,49 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Recupero del certificato in corso...
-
+ ContributorLa traduzione dei tipi di certificati può generare confusione.Contributor
-
+ EternalLa traduzione dei tipi di certificati può generare confusione.Eternal
-
+ BusinessLa traduzione dei tipi di certificati può generare confusione.Business
-
+ PersonalLa traduzione dei tipi di certificati può generare confusione.Personal
-
+ Great PatreonLa traduzione dei tipi di certificati può generare confusione.Great Patreon
-
+ PatreonLa traduzione dei tipi di certificati può generare confusione.Patreon
-
+ FamilyLa traduzione dei tipi di certificati può generare confusione.Family
-
+ Home
@@ -5567,13 +5567,13 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Subscription
-
+ EvaluationPenso sia meglio sottolineare che si tratta di una versione di provaValutazione (prova)
-
+ Type %1Tipo %1
@@ -5582,48 +5582,48 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Standard
-
+ AdvancedAvanzato
-
+ Max LevelLivello massimo
-
+ Level %1Livello %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Sfortunatamente questo certificato non è valido per questa build, è necessario ottenere un nuovo certificato o tornare ad una build precedente.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Benché questo certificato sia scaduto, le funzionalità Plus rimangono attive per la versione attualmente installata. Tuttavia, non si avrà più accesso ai servizi di Sandboxie Live, inclusi gli aggiornamenti di compatibilità e il database di risoluzione problemi.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Sfortunatamente questo certificato è scaduto, è necessario ottenere un nuovo certificato.
-
+ Sandboxed Web BrowserBrowser Web nell'area virtuale
@@ -5651,48 +5651,48 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Sfoglia programma
-
+ Add %1 TemplateAggiungi modello %1
-
+ Select fontSeleziona font
-
+ Reset fontReimposta font
-
+ %0, %1 pt%0, %1 pt
-
+ Please enter messageInserire il messaggio SBIE
-
+ Select ProgramSeleziona programma
-
+ Executables (*.exe *.cmd)File eseguibili (*.exe *.cmd)
-
-
+
+ Please enter a menu titleImmetti il nome da assegnare al menu
-
+ Please enter a commandImmetti un comando
@@ -5701,7 +5701,7 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Questo certificato è scaduto, si prega di <a href="sbie://update/cert">ottenere un certificato aggiornato</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Le funzioni Plus saranno disattivate tra %1 giorni.</font>
@@ -5710,7 +5710,7 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
<br /><font color='red'>Per questa build, le funzioni Plus resteranno attive.</font>
-
+ <br />Plus features are no longer enabled.<br />Le funzioni Plus non sono più attive.
@@ -5723,13 +5723,13 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
È necessario un certificato di supporto
-
+ Run &Un-SandboxedVoce relativa al menu contestuale dei file all'interno della sandboxAvvia all'&esterno dell'area virtuale
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Si prega di inserire l'intero certificato, non solo una parte di esso.
@@ -5742,7 +5742,7 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Questo certificato è obsoleto.
-
+ Thank you for supporting the development of Sandboxie-Plus.Grazie per aver sostenuto lo sviluppo di Sandboxie Plus.
@@ -5751,89 +5751,89 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Certificato di supporto non valido.
-
+ Update AvailableAggiornamento disponibile
-
+ InstalledInstallato
-
+ by %1Si tratta di un tooltip, perciò non ci sono problemi di lunghezzacomponente sviluppato da %1
-
+ (info website)(info sito web)
-
+ This Add-on is mandatory and can not be removed.Questo componente aggiuntivo è necessario e non può essere rimosso.
-
-
+
+ Select DirectorySeleziona directory
-
+ <a href="check">Check Now</a><a href="check">Controlla ora</a>
-
+ Please enter the new configuration password.Immettere la nuova password di configurazione.
-
+ Please re-enter the new configuration password.Reimmettere la nuova password di configurazione.
-
+ Passwords did not match, please retry.Le password non corrispondono, si prega di riprovare.
-
+ ProcessProcesso
-
+ FolderCartella
-
+ Please enter a program file nameImmettere il nome del programma (es. nomefile.exe)
-
+ Please enter the template identifierInserire l'identificativo del modello
-
+ Error: %1Errore: %1
-
+ Do you really want to delete the selected local template(s)?Eliminare i modelli locali selezionati?
-
+ %1 (Current)%1 (Attuale)
diff --git a/SandboxiePlus/SandMan/sandman_ja.ts b/SandboxiePlus/SandMan/sandman_ja.ts
index 6524a86e..5f385355 100644
--- a/SandboxiePlus/SandMan/sandman_ja.ts
+++ b/SandboxiePlus/SandMan/sandman_ja.ts
@@ -5020,7 +5020,7 @@ This file is part of Sandboxie and all change done to it will be reverted next t
CSettingsWindow
-
+ Sandboxed Web Browser
@@ -5171,325 +5171,325 @@ This file is part of Sandboxie and all change done to it will be reverted next t
-
+ Add %1 Template
-
+ Select font
-
+ Reset font
-
+ Search for settings
-
+ %0, %1 pt
-
+ Please enter message
-
+ Select Program
-
+ Executables (*.exe *.cmd)
-
-
+
+ Please enter a menu title
-
+ Please enter a command
-
-
+
+ Run &Sandboxed
-
+ kilobytes (%1)
-
+ Volume not attached
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font>
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.
-
+ <br />Plus features are no longer enabled.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Retrieving certificate...
-
+ Error retrieving certificate: %1Error retriving certificate: %1
-
+ Unknown Error (probably a network issue)
-
+ Contributor
-
+ Eternal
-
+ Business
-
+ Personal
-
+ Great Patreon
-
+ Patreon
-
+ Family
-
+ Home
-
+ Evaluation
-
+ Type %1
-
+ Advanced
-
+ Max Level
-
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ Run &Un-Sandboxed
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
-
+ Thank you for supporting the development of Sandboxie-Plus.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select Directoryディレクトリの選択
-
+ <a href="check">Check Now</a>
-
+ Please enter the new configuration password.
-
+ Please re-enter the new configuration password.
-
+ Passwords did not match, please retry.
-
+ Process
-
+ Folder
-
+ Please enter a program file name
-
+ Please enter the template identifier
-
+ Error: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)
diff --git a/SandboxiePlus/SandMan/sandman_ko.ts b/SandboxiePlus/SandMan/sandman_ko.ts
index 576daafb..fb79db9f 100644
--- a/SandboxiePlus/SandMan/sandman_ko.ts
+++ b/SandboxiePlus/SandMan/sandman_ko.ts
@@ -5616,103 +5616,103 @@ This file is part of Sandboxie and all changed done to it will be reverted next
%1
-
+ Add %1 Template%1 템플릿 추가
-
+ Select font글꼴 선택
-
+ Reset font글꼴 재설정
-
+ Search for settings설정 검색
-
+ %0, %1 pt%0, %1 pt
-
+ Please enter message메시지를 입력하십시오
-
-
+
+ Run &Sandboxed샌드박스에서 실행(&S)
-
+ kilobytes (%1)킬로바이트 (%1)
-
+ Volume not attached볼륨이 연결되지 않음
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.이 후원자 인증서가 만료되었습니다. <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">업데이트된 인증서</a>를 받으십시오.
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.<br /><font color='red'>현재 빌드 Plus 기능은 활성화된 상태로 유지</font>되지만 호환성 업데이트 및 문제 해결 데이터베이스를 포함한 샌드박스 라이브 서비스에 더 이상 액세스할 수 없습니다.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.이 후원자 인증서는 <font color='red'>%1일 후에 만료</font>됩니다. <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">업데이트된 인증서</a>를 받으십시오.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.기존 후원자 인증서를 입력하지 않고 기능 업그레이드 키를 사용하려고 합니다. (<b>웹 사이트에 굵은 글씨로 명시되어 있는</b) 이 유형의 키는 기존 후원자 인증서가 있어야 하며, 인증서가 없으면 쓸모가 없습니다.<br />고급 기능을 사용하려면 표준 인증서와 기능 업그레이드 키를 모두 받아야 합니다.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.기존 후원자 인증서를 입력하지 않고 갱신 키를 사용하려고 합니다. (<b>웹사이트에 굵은 글씨로 명시되어 있는</b) 이 유형의 키는 기존 지원자 인증서가 있어야 하며, 해당 인증서가 없으면 쓸모가 없습니다.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u><br /><br /><u>제품 설명을 읽지 않고 실수로 이 키를 얻으신 경우 이메일 (홈페이지 제공)로 연락하여 이 문제를 해결해 주시기 바랍니다.</u>
-
+ Retrieving certificate...인증서 검색 중...
-
+ Error retrieving certificate: %1Error retriving certificate: %1인증서를 검색하는 중 오류 발생: %1
-
+ Unknown Error (probably a network issue)알 수 없는 오류 (아마도 네트워크 문제)
@@ -5721,42 +5721,42 @@ This file is part of Sandboxie and all changed done to it will be reverted next
인증서를 가져오는 중...
-
+ Contributor기여자
-
+ Eternal영구
-
+ Business비지니스
-
+ Personal개인
-
+ Great PatreonGreat Patreon
-
+ PatreonPatreon
-
+ Family패밀리
-
+ Home홈
@@ -5765,12 +5765,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
기부
-
+ Evaluation평가
-
+ Type %1유형 %1
@@ -5779,48 +5779,48 @@ This file is part of Sandboxie and all changed done to it will be reverted next
표준
-
+ Advanced고급
-
+ Max Level최대 수준
-
+ Level %1수준 %1
-
+ Supporter certificate required for access접근에 필요한 후원자 인증서
-
+ Supporter certificate required for automation자동화에 필요한 후원자 인증서
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.이 인증서는 현재 빌드에 유효하지 않습니다. 새 인증서를 가져오거나 이전 빌드로 다운그레이드해야 합니다.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.이 인증서는 만료되었지만 현재 설치된 버전 및 기능에 대해서는 사용 가능한 상태로 유지됩니다. 그러나 호환성 업데이트 및 온라인 문제 해결 데이터베이스를 포함한 Sandboxie-Live 서비스에 더 이상 액세스할 수 없습니다.
-
+ This certificate has unfortunately expired, you need to get a new certificate.이 인증서는 만료되었습니다. 새 인증서를 받아야 합니다.
-
+ Sandboxed Web Browser샌드박스 웹 브라우저
@@ -5848,23 +5848,23 @@ This file is part of Sandboxie and all changed done to it will be reverted next
프로그램 찾아보기
-
+ Select Program프로그램 선택
-
+ Executables (*.exe *.cmd)실행 파일 (*.exe *.cmd)
-
-
+
+ Please enter a menu title메뉴 제목을 입력하십시오
-
+ Please enter a command명령을 입력하십시오
@@ -5873,7 +5873,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
이 후원자 인증서가 만료되었습니다, <a href="sbie://update/cert">에서 업데이트된 인증서를 받으십시오</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>%1일 후에 추가 기능이 비활성화됩니다.</font>
@@ -5882,7 +5882,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
<br /><font color='red'>이 빌드 Plus 기능은 계속 사용 가능합니다.</font>
-
+ <br />Plus features are no longer enabled.<br />Plus 기능이 더 이상 사용되지 않습니다.
@@ -5900,12 +5900,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
후원자 인증서 필요
-
+ Run &Un-Sandboxed샌드박스 없이 실행(&U)
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.인증서로 보이지 않습니다. 인증서 일부가 아닌 전체 인증서를 입력하십시오.
@@ -5918,7 +5918,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
안타깝게도 이 인증서는 오래되었습니다.
-
+ Thank you for supporting the development of Sandboxie-Plus.Sandboxie-Plus 개발을 지원해 주셔서 감사합니다.
@@ -5927,88 +5927,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
이 후원 인증서는 유효하지 않습니다.
-
+ Update Available사용 가능한 업데이트
-
+ Installed설치됨
-
+ by %1%1까지
-
+ (info website)(정보 웹사이트)
-
+ This Add-on is mandatory and can not be removed.이 추가 기능은 필수 사항 제거할 수 없습니다.
-
-
+
+ Select Directory디렉터리 선택
-
+ <a href="check">Check Now</a><a href="check">지금 확인</a>
-
+ Please enter the new configuration password.새 구성 암호를 입력하십시오.
-
+ Please re-enter the new configuration password.새 구성 암호를 다시 입력하십시오.
-
+ Passwords did not match, please retry.암호가 일치하지 않습니다. 다시 시도하십시오.
-
+ Process프로세스
-
+ Folder폴더
-
+ Please enter a program file name프로그램 파일 이름을 입력하십시오
-
+ Please enter the template identifier템플릿 식별자를 입력하십시오
-
+ Error: %1오류: %1
-
+ Do you really want to delete the selected local template(s)?선택한 로컬 템플릿을 삭제하시겠습니까?
-
+ %1 (Current)%1 (현재)
diff --git a/SandboxiePlus/SandMan/sandman_nl.ts b/SandboxiePlus/SandMan/sandman_nl.ts
index 8d8f027f..5a0e8b6f 100644
--- a/SandboxiePlus/SandMan/sandman_nl.ts
+++ b/SandboxiePlus/SandMan/sandman_nl.ts
@@ -5523,69 +5523,69 @@ This file is part of Sandboxie and all changed done to it will be reverted next
%1
-
+ Search for settings
-
-
+
+ Run &SandboxedGe&sandboxt uitvoeren
-
+ Volume not attached
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Retrieving certificate...
-
+ Error retrieving certificate: %1Error retriving certificate: %1
-
+ Unknown Error (probably a network issue)
-
+ Home
-
+ Sandboxed Web Browser
@@ -5638,58 +5638,58 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Bladeren naar programma
-
+ Add %1 Template
-
+ Select font
-
+ Reset font
-
+ %0, %1 pt
-
+ Please enter message
-
+ Select ProgramProgramma selecteren
-
+ Executables (*.exe *.cmd)Uitvoerbare bestanden (*.exe *.cmd)
-
-
+
+ Please enter a menu titleVoer een menutitel in
-
+ Please enter a commandVoer een opdracht in
-
+ kilobytes (%1)kilobytes (%1)
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
@@ -5698,107 +5698,107 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Dit ondersteunerscertificaat is vervallen. <a href="sbie://update/cert">Haal een bijgewerkt certificaat op</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font>
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ Contributor
-
+ Eternal
-
+ Business
-
+ Personal
-
+ Great Patreon
-
+ Patreon
-
+ Family
-
+ Evaluation
-
+ Type %1
-
+ Advanced
-
+ Max Level
-
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
-
+ <br />Plus features are no longer enabled.
@@ -5807,12 +5807,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Dit ondersteunerscertificaat <font color='red'>vervalt over %1 dagen</font>. <a href="sbie://update/cert">Haal een bijgewerkt certificaat op</a>.
-
+ Run &Un-SandboxedNiet-gesandboxt uitvoeren
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.
@@ -5825,7 +5825,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Dit certificaat is spijtig genoeg verouderd.
-
+ Thank you for supporting the development of Sandboxie-Plus.Dank u voor uw steun aan de ontwikkeling van Sandboxie-Plus.
@@ -5834,88 +5834,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Dit ondersteuningscertificaat is niet geldig.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectoryMap selecteren
-
+ <a href="check">Check Now</a>
-
+ Please enter the new configuration password.Voer het nieuwe configuratiewachtwoord in
-
+ Please re-enter the new configuration password.Voer het nieuwe configuratiewachtwoord opnieuw in
-
+ Passwords did not match, please retry.Wachtwoorden komen niet overeen. Probeer het opnieuw.
-
+ ProcessProces
-
+ FolderMap
-
+ Please enter a program file nameVoer een programma-bestandsnaam in
-
+ Please enter the template identifierVoer de sjabloon-identifier in
-
+ Error: %1Fout: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)
diff --git a/SandboxiePlus/SandMan/sandman_pl.ts b/SandboxiePlus/SandMan/sandman_pl.ts
index 820fba54..0587578c 100644
--- a/SandboxiePlus/SandMan/sandman_pl.ts
+++ b/SandboxiePlus/SandMan/sandman_pl.ts
@@ -5694,94 +5694,94 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
%1
-
+ Search for settingsSzukaj ustawień
-
-
+
+ Run &SandboxedUruchom w pia&skownicy
-
+ kilobytes (%1)kilobajty (%1)
-
+ Volume not attachedNiepodłączony wolumin
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Ten certyfikat wsparcia wygasł. <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">pobierz zaktualizowany certyfikat</a>.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Retrieving certificate...Pobieranie certyfikatu...
-
+ Error retrieving certificate: %1Error retriving certificate: %1
-
+ Unknown Error (probably a network issue)
-
+ HomeStrona główna
-
+ Supporter certificate required for accessDo uzyskania dostępu wymagany jest certyfikat sponsora
-
+ Supporter certificate required for automationCertyfikat sponora wymagany do automatyzacji
-
+ This Add-on is mandatory and can not be removed.Ten dodatek jest obowiązkowy i nie można go usunąć.
-
+ Sandboxed Web BrowserPrzeglądarka WWW w trybie piaskownicy
@@ -5834,48 +5834,48 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Przeglądaj w poszukiwaniu programu
-
+ Add %1 TemplateDodaj %1 szablon
-
+ Select fontWybierz czcionkę
-
+ Reset fontZresetuj czcionkę
-
+ %0, %1 pt%0, %1 pt
-
+ Please enter messageProszę wpisać wiadomość
-
+ Select ProgramWybierz program
-
+ Executables (*.exe *.cmd)Programy (*.exe *.cmd)
-
-
+
+ Please enter a menu titleProszę wpisać tytuł menu
-
+ Please enter a commandProszę wpisać polecenie
@@ -5884,92 +5884,92 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Wygasł ten certyfikat wsparcia, proszę <a href="sbie://update/cert">uzyskać zaktualizowany certyfikat</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Funkcje dodatkowe zostaną wyłączone za %1 dni.</font>
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.<br /><font color='red'>W obecnej kompilacji funkcje Plus pozostają włączone</font>, ale nie masz już dostępu do usług Sandboxie-Live, w tym aktualizacji zgodności i bazy danych rozwiązywania problemów.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Ten certyfikat sponsora <font color='red'>wygaśnie za %1 dni</font>, prosimy o <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">uzyskanie zaktualizowanego certyfikatu</a>.
-
+ ContributorWspółtwórca
-
+ EternalWieczny
-
+ BusinessBiznes
-
+ PersonalOsobisty
-
+ Great PatreonWspaniały Patron
-
+ PatreonPatron
-
+ FamilyRodzina
-
+ EvaluationPróbny
-
+ Type %1Typ %1
-
+ AdvancedZaawansowany
-
+ Max LevelPoziom maks.
-
+ Level %1Poziom %1
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Ten certyfikat niestety nie jest ważny dla bieżącej kompilacji, musisz uzyskać nowy certyfikat lub przejść na starszą wersję.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Chociaż ten certyfikat wygasł, dla obecnie zainstalowanej wersji oraz funkcje pozostają włączone. Jednak nie będziesz już mieć dostępu do usług Sandboxie-Live, w tym aktualizacji zgodności i bazy danych rozwiązywania problemów online.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Ten certyfikat niestety wygasł, musisz uzyskać nowy certyfikat.
@@ -5978,7 +5978,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
<br /><font color='red'>W tej wersji funkcje Plus pozostają włączone.</font>
-
+ <br />Plus features are no longer enabled.<br />Funkcje Plus nie są już włączone.
@@ -5992,12 +5992,12 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Wymagany certyfikat sponsora
-
+ Run &Un-SandboxedUr&uchom bez piaskownicy
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.To nie wygląda jak certyfikat. Proszę wpisać cały certyfikat, a nie tylko jego fragment.
@@ -6010,7 +6010,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Ten certyfikat jest niestety nieaktualny.
-
+ Thank you for supporting the development of Sandboxie-Plus.Dziękujemy za wsparcie rozwoju Sandboxie-Plus.
@@ -6019,22 +6019,22 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Ten certyfikat pomocy technicznej jest nieważny.
-
+ Update AvailableDostępna aktualizacja
-
+ InstalledZainstalowane
-
+ by %1przez %1
-
+ (info website)(strona informacyjna)
@@ -6043,63 +6043,63 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Ten dodatek jest obowiązkowy i nie można go usunąć.
-
-
+
+ Select DirectoryWybierz katalog
-
+ <a href="check">Check Now</a><a href="check">Sprawdź teraz</a>
-
+ Please enter the new configuration password.Proszę wpisać nowe hasło konfiguracyjne.
-
+ Please re-enter the new configuration password.Wprowadź ponownie nowe hasło konfiguracyjne.
-
+ Passwords did not match, please retry.Hasła nie zgadzają się, spróbuj ponownie.
-
+ ProcessProces
-
+ FolderFolder
-
+ Please enter a program file nameProszę wpisać nazwę pliku programu
-
+ Please enter the template identifierProszę wpisać identyfikator szablonu
-
+ Error: %1Błąd: %1
-
+ Do you really want to delete the selected local template(s)?Czy naprawdę chcesz usunąć wybrany lokalny szablon(-y)?
-
+ %1 (Current)%1 (aktualne)
diff --git a/SandboxiePlus/SandMan/sandman_pt_BR.ts b/SandboxiePlus/SandMan/sandman_pt_BR.ts
index 7205dc10..44f6b756 100644
--- a/SandboxiePlus/SandMan/sandman_pt_BR.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_BR.ts
@@ -5694,69 +5694,69 @@ Não vou escolher: %2
-
+ Search for settingsPesquisar por configurações
-
-
+
+ Run &SandboxedExecutar na &Caixa de Areia
-
+ Volume not attached
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Retrieving certificate...
-
+ Error retrieving certificate: %1Error retriving certificate: %1
-
+ Unknown Error (probably a network issue)
-
+ Home
-
+ Sandboxed Web BrowserNavegador Web na Caixa de Areia
@@ -5809,58 +5809,58 @@ Não vou escolher: %2
Procurar pelo Programa
-
+ Add %1 TemplateAdicionar %1 Modelo
-
+ Select font
-
+ Reset font
-
+ %0, %1 pt
-
+ Please enter messagePor favor, insira a mensagem
-
+ Select ProgramSelecionar Programa
-
+ Executables (*.exe *.cmd)Executáveis (*.exe *.cmd)
-
-
+
+ Please enter a menu titlePor favor insira o título do menu
-
+ Please enter a commandPor favor, digite um comando
-
+ kilobytes (%1)Kilobytes (%1)
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
@@ -5869,102 +5869,102 @@ Não vou escolher: %2
Esse certificado de apoiador expirou, por favor <a href="sbie://update/cert">obtenha um certificado atualizado</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Os recursos do Plus serão desativados em %1 dias.</font>
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ Contributor
-
+ Eternal
-
+ Business
-
+ Personal
-
+ Great Patreon
-
+ Patreon
-
+ Family
-
+ Evaluation
-
+ Type %1
-
+ Advanced
-
+ Max Level
-
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
@@ -5973,7 +5973,7 @@ Não vou escolher: %2
<br /><font color='red'>Para esta compilação, os recursos Plus permanecem ativados.</font>
-
+ <br />Plus features are no longer enabled.<br />Os recursos Plus não estão mais ativados.
@@ -5987,12 +5987,12 @@ Não vou escolher: %2
Certificado de apoiador necessário
-
+ Run &Un-SandboxedExecutar &Fora da Caixa de Areia
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Isso não parece um certificado. Insira o certificado inteiro, não apenas uma parte dele.
@@ -6005,7 +6005,7 @@ Não vou escolher: %2
Infelizmente, esse certificado está desatualizado.
-
+ Thank you for supporting the development of Sandboxie-Plus.Obrigado por apoiar o desenvolvimento do Sandboxie-Plus.
@@ -6014,89 +6014,89 @@ Não vou escolher: %2
Esse certificado de suporte não é válido.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectorySelecionar Diretório
-
+ <a href="check">Check Now</a><a href="check">Verificar Agora</a>
-
+ Please enter the new configuration password.Por favor, insira a nova senha de configuração.
-
+ Please re-enter the new configuration password.Please re enter the new configuration password.Insira novamente a nova senha de configuração.
-
+ Passwords did not match, please retry.As senhas não coincidem, tente novamente.
-
+ ProcessProcesso
-
+ FolderPasta
-
+ Please enter a program file nameInsira o nome do programa
-
+ Please enter the template identifierPor favor, insira o identificador de modelo
-
+ Error: %1Erro: %1
-
+ Do you really want to delete the selected local template(s)?Você realmente deseja excluir o(s) modelo(s) local(is) selecionado(s)?
-
+ %1 (Current)%1 (Atual)
diff --git a/SandboxiePlus/SandMan/sandman_pt_PT.ts b/SandboxiePlus/SandMan/sandman_pt_PT.ts
index 840ec0d5..3d7d6f35 100644
--- a/SandboxiePlus/SandMan/sandman_pt_PT.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_PT.ts
@@ -5698,69 +5698,69 @@ Não vou definir: %2
-
+ Search for settingsPesquisar por definições
-
-
+
+ Run &SandboxedRodar na &Caixa de Areia
-
+ Volume not attached
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Retrieving certificate...
-
+ Error retrieving certificate: %1Error retriving certificate: %1
-
+ Unknown Error (probably a network issue)
-
+ Home
-
+ Sandboxed Web BrowserNavegador Web na Caixa de Areia
@@ -5813,58 +5813,58 @@ Não vou definir: %2
Procurar pelo programa
-
+ Add %1 TemplateAdicionar %1 Modelo
-
+ Select font
-
+ Reset font
-
+ %0, %1 pt
-
+ Please enter messagePor favor, introduza a mensagem
-
+ Select ProgramSeleccionar Programa
-
+ Executables (*.exe *.cmd)Executáveis (*.exe *.cmd)
-
-
+
+ Please enter a menu titlePor favor introduza o título do menu
-
+ Please enter a commandPor favor, digite um comando
-
+ kilobytes (%1)Kilobytes (%1)
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
@@ -5873,102 +5873,102 @@ Não vou definir: %2
Este certificado de apoiador expirou, por favor <a href="sbie://update/cert">obtenha um certificado actualizado</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Os recursos do Plus serão desativados em %1 dias.</font>
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ Contributor
-
+ Eternal
-
+ Business
-
+ Personal
-
+ Great Patreon
-
+ Patreon
-
+ Family
-
+ Evaluation
-
+ Type %1
-
+ Advanced
-
+ Max Level
-
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
@@ -5977,7 +5977,7 @@ Não vou definir: %2
<br /><font color='red'>Para esta compilação, os recursos Plus permanecem ativados.</font>
-
+ <br />Plus features are no longer enabled.<br />Os recursos Plus não estão mais ativados.
@@ -5991,12 +5991,12 @@ Não vou definir: %2
Certificado de apoiador necessário
-
+ Run &Un-SandboxedRodar &Fora da Caixa de Areia
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Isso não parece um certificado. Introduza o certificado inteiro, não apenas uma parte dele.
@@ -6009,7 +6009,7 @@ Não vou definir: %2
Infelizmente, este certificado está desatualizado.
-
+ Thank you for supporting the development of Sandboxie-Plus.Obrigado por apoiar o desenvolvimento do Sandboxie-Plus.
@@ -6018,89 +6018,89 @@ Não vou definir: %2
Este certificado de suporte não é válido.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectorySeleccionar Pasta
-
+ <a href="check">Check Now</a><a href="check">Verificar Agora</a>
-
+ Please enter the new configuration password.Por favor, introduza a nova palavra-passe de definição.
-
+ Please re-enter the new configuration password.Please re enter the new configuration password.Introduza novamente a nova palavra-passe de definição.
-
+ Passwords did not match, please retry.As palavras-passe são diferentes, tente novamente.
-
+ ProcessProcesso
-
+ FolderPasta
-
+ Please enter a program file nameIntroduza o nome do programa
-
+ Please enter the template identifierPor favor, introduza o identificador de modelo
-
+ Error: %1Erro: %1
-
+ Do you really want to delete the selected local template(s)?Você realmente deseja excluir o(s) modelo(s) local(is) selecionado(s)?
-
+ %1 (Current)%1 (Actual)
diff --git a/SandboxiePlus/SandMan/sandman_ru.ts b/SandboxiePlus/SandMan/sandman_ru.ts
index c8488ddd..aff6fc48 100644
--- a/SandboxiePlus/SandMan/sandman_ru.ts
+++ b/SandboxiePlus/SandMan/sandman_ru.ts
@@ -5239,164 +5239,164 @@ This file is part of Sandboxie and all change done to it will be reverted next t
%1
-
+ Search for settingsПоиск настроек
-
-
+
+ Run &SandboxedЗапуск в песочнице (&S)
-
+ kilobytes (%1)килобайт (%1)
-
+ Volume not attachedТом не прикреплён
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Срок действия этого сертификата сторонника истек. Пожалуйста, <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">получите обновленный сертификат</a>.
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.<br /><font color='red'>В текущей сборке функции Plus остаются включенными</font>, но у вас больше нет доступа к службам Sandboxie-Live, включая обновления совместимости и базу данных для устранения неполадок.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Срок действия этого сертификата сторонника <font color='red'>истечет через %1 дн.</font>. Пожалуйста, <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">получите обновленный сертификат</a>.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Error retrieving certificate: %1Error retriving certificate: %1
-
+ Unknown Error (probably a network issue)
-
+ ContributorУчастник
-
+ EternalВечный
-
+ BusinessБизнес
-
+ PersonalПерсональный
-
+ Great PatreonБольшой Patreon
-
+ PatreonPatreon
-
+ FamilyСемья
-
+ EvaluationОценка
-
+ Type %1Тип %1
-
+ AdvancedРасширенный
-
+ Max LevelМаксимальный уровень
-
+ Level %1Уровень %1
-
+ Supporter certificate required for accessДля доступа требуется сертификат сторонника
-
+ Supporter certificate required for automationДля автоматизации требуется сертификат сторонника
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.К сожалению, этот сертификат недействителен для текущей сборки, вам необходимо получить новый сертификат или перейти на более раннюю сборку.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Хотя срок действия этого сертификата истек, для текущей установленной версии плюс функции остаются включенными. Однако у вас больше не будет доступа к службам Sandboxie-Live, включая обновления совместимости и онлайн-базу данных для устранения неполадок.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Срок действия этого сертификата, к сожалению, истек, вам необходимо получить новый сертификат.
-
+ Sandboxed Web BrowserВеб-браузер в песочнице
@@ -5424,169 +5424,169 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Выбрать программу
-
+ Add %1 TemplateДобавить шаблон %1
-
+ Select fontВыбор шрифта
-
+ Reset fontСброс шрифта
-
+ %0, %1 pt%0, %1 pt
-
+ Please enter messageПожалуйста, введите сообщение
-
+ Select ProgramВыбрать программу
-
+ Executables (*.exe *.cmd)Исполняемые файлы (*.exe *.cmd)
-
-
+
+ Please enter a menu titleВведите название меню
-
+ Please enter a commandВведите команду
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Дополнительные функции будут отключены через %1 дн.</font>
-
+ <br />Plus features are no longer enabled.<br />Дополнительные функции больше не включены.
-
+ Retrieving certificate...Получение сертификата...
-
+ HomeДомашняя
-
+ Run &Un-SandboxedЗапуск вне песочницы (&U)
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Это не похоже на сертификат. Пожалуйста, введите весь сертификат, а не только его часть.
-
+ Thank you for supporting the development of Sandboxie-Plus.Спасибо за поддержку разработки Sandboxie-Plus.
-
+ Update AvailableДоступно обновление
-
+ InstalledУстановлен
-
+ by %1%1
-
+ (info website)(информационный сайт)
-
+ This Add-on is mandatory and can not be removed.Это дополнение является обязательным и не может быть удалено.
-
-
+
+ Select DirectoryВыбрать каталог
-
+ <a href="check">Check Now</a><a href="check">Проверить сейчас</a>
-
+ Please enter the new configuration password.Пожалуйста, введите новый пароль конфигурации.
-
+ Please re-enter the new configuration password.Пожалуйста, повторно введите новый пароль конфигурации.
-
+ Passwords did not match, please retry.Пароли не совпадают, повторите попытку.
-
+ ProcessПроцесс
-
+ FolderПапка
-
+ Please enter a program file nameПожалуйста, введите имя файла программы
-
+ Please enter the template identifierПожалуйста, введите идентификатор шаблона
-
+ Error: %1Ошибка: %1
-
+ Do you really want to delete the selected local template(s)?Вы действительно хотите удалить выбранные локальные шаблоны?
-
+ %1 (Current)%1 (Текущая)
diff --git a/SandboxiePlus/SandMan/sandman_sv_SE.ts b/SandboxiePlus/SandMan/sandman_sv_SE.ts
index 585e4936..17a50da6 100644
--- a/SandboxiePlus/SandMan/sandman_sv_SE.ts
+++ b/SandboxiePlus/SandMan/sandman_sv_SE.ts
@@ -5745,21 +5745,21 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
%1
-
+ Search for settingsSearch for SettingsSök efter inställningar
-
-
+
+ Run &SandboxedKör &sandlådad
-
+ Sandboxed Web BrowserSandlådad webbläsare
@@ -5812,48 +5812,48 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Bläddra efter program
-
+ Add %1 TemplateAddera %1 mall
-
+ Select fontVälj typsnitt
-
+ Reset fontÅterställ typsnitt
-
+ %0, %1 pt%0, %1 pt
-
+ Please enter messageVänligen för in meddelande
-
+ Select ProgramVälj program
-
+ Executables (*.exe *.cmd)Verkställare (*.exe *.cmd)
-
-
+
+ Please enter a menu titleVänligen för in en menytitel
-
+ Please enter a commandVänligen för in ett kommando
@@ -5862,12 +5862,12 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Detta supportercertifikat har utgått, vänligen <a href="sbie://update/cert">skaffa ett uppdaterat certifikat</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Plus-egenskaper kommer inaktiveras om %1 dagar.</font>
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.<br /><font color='red'>För nuvarande bygge förblir Plus-egenskaperna aktiverade</font>, men du har inte längre tillgång till Sandboxie-Live tjänsterna, inklusive kompatibilitetsuppdateringar och felsökningsdatabasen.
@@ -5876,7 +5876,7 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
<br /><font color='red'>För detta bygge kvarstår Plus-egenskaperna aktiverade.</font>
-
+ <br />Plus features are no longer enabled.<br />Plus-egenskaperna är inte längre aktiverade.
@@ -5890,27 +5890,27 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Supportercertifikat krävs
-
+ Run &Un-SandboxedKör &osandlådad
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Detta ser inte ut som ett certifikat. Vänligen för in hela certifikatet, inte bara en del av det.
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Detta certifikat är tyvärr inte giltigt för nuvarande bygge, du behöver skaffa ett nytt certifikat eller nedgradera till ett tidigare bygge.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Även fast detta certifikat har utgått, för nuvarande installerad version förblir Plus-egenskaperna aktiverade. Däremot, kommer du inte längre ha tillgång till Sandboxie-Live tjänsterna, inklusive kompatibilitetsuppdateringar och felsökningsdatabasen på nätet.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Detta certifikat har tyvärr utgått, du behöver skaffa ett nytt certifikat.
@@ -5924,22 +5924,22 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Detta certifikat är tyvärr föråldrat.
-
+ kilobytes (%1)kilobytes (%1)
-
+ Volume not attachedVolymen är inte ansluten
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Detta supportercertifikat har utgått, vänligen <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">skaffa ett uppdaterat certifikat</a>.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Detta supportercertifikat kommer <font color='red'>upphöra om %1 dagar</font>, vänligen <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">skaffa ett uppdaterat certifikat</a>.
@@ -5948,37 +5948,37 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Hämtar certifikat...
-
+ ContributorBidragsgivare
-
+ EternalEvig
-
+ BusinessFöretag
-
+ PersonalPersonlig
-
+ Great PatreonStor patreon
-
+ PatreonPatreon
-
+ FamilyFamilj
@@ -5987,12 +5987,12 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Abonnemang
-
+ EvaluationUtvärdering
-
+ Type %1Typ %1
@@ -6001,162 +6001,162 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Standard
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.Detta ser inte ut som ett Sandboxie-Plus serienummer.<br />Om du har försökt föra in Uppdateringsnyckeln eller Signaturen från ett certifikat som inte är korrekt, vänligen för in hela certifikatet in i textområdet ovan istället.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.Du försöker att använda en uppgraderingsnyckel för egenskaper utan att ha fört in ett förexisterande supportercertifikat. Vänligen notera att denna typ av nyckel (<b>som det tydligt är uppgivet i fet text på webbsidan</b) kräver att du har ett förexisterande giltigt supportercertifikat; det är oanvändbart utan ett.<br />Om du vill använda de avancerade egenskaperna, behöver du skaffa både ett standardcertifikat och uppgraderingsnyckeln för egenskaper för att låsa upp avancerad funktionalitet.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.Du försöker att använda en Förnyelsenyckel utan att ha fört in ett förexisterande supportercertifikat. Vänligen notera att denna typ av nyckel (<b>som är tydligt uppgivet i fet text på hemsidan</b) kräver att du har ett förexisterande giltigt supportercertifikat; det är oanvändbart utan ett.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u><br /><br /><u>Om du inte har läst produktbeskrivningen och har erhållit denna nyckel av misstag; vänligen kontakta oss via e-post (tillgänglig på vår webbsida) för att lösa denna fråga.</u>
-
+ Retrieving certificate...Hämtar certifikat...
-
+ Error retrieving certificate: %1Error retriving certificate: %1Fel vid hämtande av certifikat:%1
-
+ Unknown Error (probably a network issue)Okänt fel (troligen ett nätverksfel)
-
+ HomeHem
-
+ AdvancedAvancerad
-
+ Max LevelMaxnivå
-
+ Level %1Nivå %1
-
+ Supporter certificate required for accessSupportercertifikat krävs för tillgång
-
+ Supporter certificate required for automationSupportercertifikat krävs för automatisering
-
+ Thank you for supporting the development of Sandboxie-Plus.Tack för att du stöder utvecklingen av Sandboxie-Plus.
-
+ Update AvailableUppdatering tillgänglig
-
+ InstalledInstalllerad
-
+ by %1av %1
-
+ (info website)(infowebbsida)
-
+ This Add-on is mandatory and can not be removed.Detta tillägg är obligatoriskt och kan inte tas bort.
-
-
+
+ Select DirectoryVälj katalog
-
+ <a href="check">Check Now</a><a href="check">Kontrollera nu</a>
-
+ Please enter the new configuration password.Vänligen för in det nya konfigurationslösenordet.
-
+ Please re-enter the new configuration password.Vänligen återinför det nya konfigurationslösenordet.
-
+ Passwords did not match, please retry.Lösenorden stämde inte, vänligen försök igen.
-
+ ProcessProcess
-
+ FolderMapp
-
+ Please enter a program file nameVänligen för in ett programfilsnamn
-
+ Please enter the template identifierVänligen för in mallidentifieraren
-
+ Error: %1Fel: %1
-
+ Do you really want to delete the selected local template(s)?Vill du verkligen radera de(n) valda lokala mall(arna)(en)?
-
+ %1 (Current)%1 (Nuvarande)
diff --git a/SandboxiePlus/SandMan/sandman_tr.ts b/SandboxiePlus/SandMan/sandman_tr.ts
index 075f88cb..842d0536 100644
--- a/SandboxiePlus/SandMan/sandman_tr.ts
+++ b/SandboxiePlus/SandMan/sandman_tr.ts
@@ -5071,28 +5071,28 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.
CSettingsWindow
-
+ Please enter the new configuration password.Lütfen yeni yapılandırma parolasını girin.
-
-
+
+ Select DirectoryDizin Seç
-
+ Please enter a program file nameLütfen bir program dosyası adı girin
-
+ FolderKlasör
-
+ Processİşlem
@@ -5102,167 +5102,167 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Sandboxie Plus - Genel Ayarlar
-
+ Search for settingsAyarlarda ara
-
+ kilobytes (%1)kilobayt (%1)
-
+ Volume not attachedBirim eklenmedi
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Bu destekçi sertifikasının süresi dolmuş, lütfen <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">güncellenmiş bir sertifika edinin</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Plus özellikleri %1 gün içinde devre dışı bırakılacak.</font>
-
+ <br />Plus features are no longer enabled.<br />Plus özellikleri artık etkin değil.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.Bu destekçi sertifikası <font color='red'>%1 gün içinde</font> sona erecek, lütfen <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert" >güncellenmiş bir sertifika edinin</a>.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.Bu, Sandboxie-Plus Seri Numarasına benzemiyor.<br />Bir sertifikanın yalnızca UPDATEKEY veya SIGNATURE değerini girmeyi denediyseniz, bu doğru değildir Lütfen bunun yerine yukarıdaki metin alanına sertifikanın tamamını giriniz.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.Özellik yükseltme anahtarını mevcut bir destekçi sertifikası girmeden önce kullanmaya çalışıyorsunuz. Lütfen bu tür anahtarların (<b>web sitesinde kalın harflerle açıkça belirtildiği gibi</b>) mevcut geçerli bir destekçi sertifikasına sahip olmanızı gerektirdiğini, sertifika olmadan hiçbir işe yaramadığını unutmayın.<br />Gelişmiş özellikleri kullanmak için, hem standart bir sertifika hem de gelişmiş özelliklerin kilidini açacak bir özellik yükseltme anahtarı edinmeniz gerekir.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.Yenileme anahtarını mevcut bir destekçi sertifikası girmeden önce kullanmaya çalışıyorsunuz. Lütfen bu tür anahtarların (<b>web sitesinde kalın harflerle açıkça belirtildiği gibi</b>) mevcut geçerli bir destekçi sertifikasına sahip olmanızı gerektirdiğini, sertifika olmadan hiçbir işe yaramadığını unutmayın.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>Ürün açıklamasını okumadan yanlışlıkla bu anahtarı aldıysanız, sorunu çözmek için lütfen e-posta (web sitemizde belirtilen) yoluyla bizimle iletişime geçin.</u>
-
+ Error retrieving certificate: %1Sertifika alınırken hata oluştu: %1
-
+ Unknown Error (probably a network issue)Bilinmeyen Hata (muhtemelen bir ağ sorunu)
-
+ ContributorKatılımcı
-
+ EternalSürekli
-
+ Businessİş
-
+ PersonalKişisel
-
+ Great PatreonBüyük Patreon
-
+ PatreonPatreon
-
+ FamilyAile
-
+ EvaluationDeneme
-
+ Type %1Tür %1
-
+ AdvancedGelişmiş
-
+ Max LevelEn Üst Seviye
-
+ Level %1Seviye %1
-
+ Supporter certificate required for accessErişim için destekçi sertifikası gerekli
-
+ Supporter certificate required for automationOtomasyon için destekçi sertifikası gerekli
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Bu sertifika ne yazık ki mevcut derleme için geçerli değil, yeni bir sertifika almanız veya önceki bir derlemeye geçmeniz gerekiyor.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Bu sertifikanın süresi dolmuş olsa da, şu anda yüklü olan sürüm için Plus özellikleri etkin durumda kalır. Ancak, bundan sonraki sürümlerde uyumluluk güncellemeleri ve çevrimiçi sorun giderme veritabanı da dahil olmak üzere Sandboxie-Live hizmetlerine erişiminiz olmayacak.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Bu sertifikanın süresi ne yazık ki dolmuş, yeni bir sertifika almanız gerekiyor.
-
+ <a href="check">Check Now</a><a href="check">Şimdi Denetle</a>
-
+ Please re-enter the new configuration password.Lütfen yeni yapılandırma parolasını tekrar girin.
-
+ Passwords did not match, please retry.Parolalar eşleşmedi, lütfen tekrar deneyin.
@@ -5272,7 +5272,7 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Otomatik Algıla
-
+ Thank you for supporting the development of Sandboxie-Plus.Sandboxie-Plus'ın gelişimini desteklediğiniz için teşekkür ederiz.
@@ -5395,55 +5395,55 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Program için Göz At
-
+ Add %1 Template%1 Şablonu Ekle
-
+ Select fontYazı tipini seç
-
+ Reset fontYazı tipini sıfırla
-
+ %0, %1 pt%0, %1 pt
-
+ Please enter messageLütfen mesaj giriniz
-
+ Select ProgramProgram Seç
-
+ Executables (*.exe *.cmd)Yürütülebilir dosyalar (*.exe *.cmd)
-
-
+
+ Please enter a menu titleLütfen bir menü başlığı girin
-
+ Please enter a commandLütfen bir komut girin
-
-
+
+ Run &Sandboxed&Korumalı Alanda Çalıştır
@@ -5466,78 +5466,78 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.İndir & Yükle
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.<br /><font color='red'>Şu anda yüklü olan sürüm için Plus özellikleri etkin durumdadır</font>. Ancak, bundan sonraki sürümlerde uyumluluk güncellemeleri ve çevrimiçi sorun giderme veritabanı da dahil olmak üzere Sandboxie-Live hizmetlerine erişiminiz olmayacak.
-
+ Retrieving certificate...Sertifika alınıyor...
-
+ HomeEv
-
+ Run &Un-Sandboxed&Korumalı Alanın Dışında Çalıştır
-
+ Update AvailableGüncelleme Mevcut
-
+ InstalledKurulu
-
+ by %1%1 tarafından
-
+ (info website)(bilgi sitesi)
-
+ This Add-on is mandatory and can not be removed.Bu Eklenti zorunludur ve kaldırılamaz.
-
+ Please enter the template identifierLütfen şablon tanımlayıcısını girin
-
+ Error: %1Hata: %1
-
+ Do you really want to delete the selected local template(s)?Seçili yerel şablonları gerçekten silmek istiyor musunuz?
-
+ %1 (Current)%1 (Kullanılan)
-
+ Sandboxed Web BrowserKorumalı Web Tarayıcısı
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Bu bir sertifikaya benzemiyor. Lütfen sertifikanın sadece bir kısmını değil tamamını girin.
diff --git a/SandboxiePlus/SandMan/sandman_uk.ts b/SandboxiePlus/SandMan/sandman_uk.ts
index 0632fa96..a9ff47db 100644
--- a/SandboxiePlus/SandMan/sandman_uk.ts
+++ b/SandboxiePlus/SandMan/sandman_uk.ts
@@ -5485,69 +5485,69 @@ This file is part of Sandboxie and all changed done to it will be reverted next
%1
-
+ Search for settings
-
-
+
+ Run &SandboxedЗапустити в пісочниці (&S)
-
+ Volume not attached
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Retrieving certificate...
-
+ Error retrieving certificate: %1Error retriving certificate: %1
-
+ Unknown Error (probably a network issue)
-
+ Home
-
+ Sandboxed Web BrowserІзольований веб-браузер
@@ -5600,58 +5600,58 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Оберіть програму
-
+ Add %1 Template
-
+ Select font
-
+ Reset font
-
+ %0, %1 pt
-
+ Please enter message
-
+ Select ProgramВибрати програму
-
+ Executables (*.exe *.cmd)Виконавчі (*.exe *.cmd)
-
-
+
+ Please enter a menu titleБудь ласка, введіть назву меню
-
+ Please enter a commandБудь ласка, введіть команду
-
+ kilobytes (%1)кілобайт (%1)
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
@@ -5660,107 +5660,107 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Термін дії цього сертифіката спонсора закінчився, будь ласка, <a href="sbie://update/cert">отримайте оновлений сертифікат</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font>
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ Contributor
-
+ Eternal
-
+ Business
-
+ Personal
-
+ Great Patreon
-
+ Patreon
-
+ Family
-
+ Evaluation
-
+ Type %1
-
+ Advanced
-
+ Max Level
-
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
-
+ <br />Plus features are no longer enabled.
@@ -5769,12 +5769,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Термін дії цього сертифіката спонсора <font color='red'>закінчиться через %1 дн.</font>, будь ласка <a href="sbie://update/cert">отримайте оновлений сертифікат</a>.
-
+ Run &Un-SandboxedЗапустити без пісочниці (&U)
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Це не схоже на сертифікат. Будь ласка, введіть весь сертифікат, а не лише його частину.
@@ -5787,7 +5787,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Цей сертифікат, на жаль, застарів.
-
+ Thank you for supporting the development of Sandboxie-Plus.Дякуємо за підтримку розробки Sandboxie-Plus.
@@ -5796,88 +5796,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Цей сертифікат спонсора не є дійсним.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectoryОберіть каталог
-
+ <a href="check">Check Now</a>
-
+ Please enter the new configuration password.Будь ласка, введіть новий пароль конфігурації.
-
+ Please re-enter the new configuration password.Будь ласка, введіть новий пароль конфігурації ще раз.
-
+ Passwords did not match, please retry.Паролі не збігаються, будь ласка, спробуйте ще раз.
-
+ ProcessПроцес
-
+ FolderПапка
-
+ Please enter a program file nameБудь ласка, введіть назву файла програми
-
+ Please enter the template identifierБудь ласка, введіть іденфікатор шаблону
-
+ Error: %1Помилка: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)
diff --git a/SandboxiePlus/SandMan/sandman_vi.ts b/SandboxiePlus/SandMan/sandman_vi.ts
index fe9cbf77..9189e9c4 100644
--- a/SandboxiePlus/SandMan/sandman_vi.ts
+++ b/SandboxiePlus/SandMan/sandman_vi.ts
@@ -5422,174 +5422,174 @@ This file is part of Sandboxie and all changed done to it will be reverted next
%1
-
+ Search for settingsTìm kiếm cài đặt
-
-
+
+ Run &SandboxedChạy trong Sandbox
-
+ kilobytes (%1)kilobytes (%1)
-
+ Volume not attached
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u>
-
+ Retrieving certificate...
-
+ Error retrieving certificate: %1Error retriving certificate: %1
-
+ Unknown Error (probably a network issue)
-
+ Contributor
-
+ Eternal
-
+ Business
-
+ Personal
-
+ Great Patreon
-
+ Patreon
-
+ Family
-
+ Home
-
+ Evaluation
-
+ Type %1
-
+ Advanced
-
+ Max Level
-
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
-
+ Sandboxed Web BrowserTrình duyệt web trong Sandbox
@@ -5617,48 +5617,48 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Duyệt chương trình
-
+ Add %1 Template
-
+ Select font
-
+ Reset font
-
+ %0, %1 pt
-
+ Please enter message
-
+ Select ProgramChọn chương trình
-
+ Executables (*.exe *.cmd)Tệp thực thi (*.exe *.cmd)
-
-
+
+ Please enter a menu titleVui lòng nhập tiêu đề menu
-
+ Please enter a commandVui lòng nhập một lệnh
@@ -5667,12 +5667,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Chứng chỉ người hỗ trợ này đã hết hạn, vui lòng <a href="sbie://update/cert">nhận chứng chỉ cập nhật</a>.
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font>
-
+ <br />Plus features are no longer enabled.
@@ -5681,12 +5681,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Chứng chỉ hỗ trợ này sẽ <font color='red'>hết hạn trong %1 ngày</font>, làm ơn <a href="sbie://update/cert">nhận chứng chỉ cập nhật</a>.
-
+ Run &Un-SandboxedChạy ngoài Sandbox
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Đây không giống như một chứng chỉ. Vui lòng nhập toàn bộ chứng chỉ, không chỉ một phần của nó.
@@ -5699,7 +5699,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Chứng chỉ này rất tiếc đã lỗi thời.
-
+ Thank you for supporting the development of Sandboxie-Plus.Cảm ơn bạn đã hỗ trợ sự phát triển của Sandboxie-Plus.
@@ -5708,88 +5708,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Chứng chỉ hỗ trợ này không hợp lệ.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectoryChọn thư mục
-
+ <a href="check">Check Now</a><a href="check">Kiểm tra ngay</a>
-
+ Please enter the new configuration password.Vui lòng nhập mật khẩu cấu hình mới.
-
+ Please re-enter the new configuration password.Vui lòng nhập lại mật khẩu cấu hình mới.
-
+ Passwords did not match, please retry.Mật khẩu không khớp, vui lòng thử lại.
-
+ ProcessTiến trình
-
+ FolderThư mục
-
+ Please enter a program file nameVui lòng nhập tên tệp chương trình
-
+ Please enter the template identifierVui lòng nhập mã nhận dạng mẫu
-
+ Error: %1Lỗi: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)%1 (Hiện hành)
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index 3da536b5..3c296c60 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -5508,79 +5508,79 @@ Error: %1
%1
-
+ Search for settings搜索设置
-
-
+
+ Run &Sandboxed在沙盒中运行(&S)
-
+ kilobytes (%1)Kb (%1)
-
+ Volume not attached未挂载卷
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.此赞助者凭据已过期,请<a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">更新凭据</a>。
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.这看起来不像是 Sandboxie Plus 的序列号<br/>如果您试图从证书中输入 UpdateKey 或 Signature ,无需这样做,请直接将整个证书输入到上面的文本区域。
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.您尝试在未输入预先存在的赞助者凭据的情况下使用功能升级密钥。请注意,这种类型的密钥(<b>正如网站上以粗体明确说明的那样</b)要求您拥有预先存在的有效赞助者凭据; <br />如果您想使用高级功能,您需要同时获得标准凭据和功能升级密钥来解锁高级功能。
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.您试图在未输入预先存在的赞助者凭据的情况下使用续订密钥。请注意,这种类型的密钥(<b>正如网站上以粗体明确说明的那样</b)要求您拥有预先存在的有效赞助者凭据;没有它是没有用的。
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u><br /><br /><u>如果您没有阅读产品说明而错误地获取了此密钥,请通过电子邮件(在我们的网站上提供)联系我们来解决此问题。</u>
-
+ Retrieving certificate...正在检索凭据...
-
+ Error retrieving certificate: %1Error retriving certificate: %1检索凭据时出错:%1
-
+ Unknown Error (probably a network issue)未知错误(可能是网络问题)
-
+ Home主页
-
+ Sandboxed Web Browser浏览器(沙盒)
@@ -5633,48 +5633,48 @@ Error: %1
浏览程序
-
+ Add %1 Template添加 %1 模板
-
+ Select font选择字体
-
+ Reset font重置字体
-
+ %0, %1 pt%0, %1 磅
-
+ Please enter message请输入信息
-
+ Select Program选择程序
-
+ Executables (*.exe *.cmd)可执行文件 (*.exe *.cmd)
-
-
+
+ Please enter a menu title请输入一个菜单标题
-
+ Please enter a command请输入一则命令
@@ -5683,17 +5683,17 @@ Error: %1
此赞助者凭据已过期,请<a href="sbie://update/cert">获取新凭据</a>
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Plus 附加的高级功能将在 %1 天后被禁用</font>
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.<br /><font color='red'>对于当前安装的版本,Plus功能仍处于启用状态。</font>但是,您将无法再访问Sandboxie Live服务,包括兼容性更新和在线疑难解答数据库。
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.此赞助者凭据将<font color='red'>在 %1 天后过期</font>,请<a href="sbie://update/cert">更新凭据</a>。
@@ -5702,37 +5702,37 @@ Error: %1
正在检索凭据…
-
+ Contributor贡献值
-
+ Eternal终身
-
+ Business商业
-
+ Personal个人
-
+ Great PatreonGreat Patreon
-
+ PatreonPatreon
-
+ Family家庭
@@ -5741,12 +5741,12 @@ Error: %1
订阅
-
+ Evaluation评估
-
+ Type %1类型 %1
@@ -5755,42 +5755,42 @@ Error: %1
标准
-
+ Advanced高级
-
+ Max Level最高等级
-
+ Level %1等级 %1
-
+ Supporter certificate required for access需要赞助者凭据进行访问
-
+ Supporter certificate required for automation需要赞助者凭据进行自动化动作
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.很遗憾,此凭据对当前版本无效,您需要获取新凭据或降级到早期版本。
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.尽管此凭据已过期,但对于当前安装的版本,附加功能仍处于启用状态。但是,您将无法再访问Sandboxie Live服务,包括兼容性更新和在线疑难解答数据库。
-
+ This certificate has unfortunately expired, you need to get a new certificate.很遗憾,此凭据已过期,请获取新凭据。
@@ -5799,7 +5799,7 @@ Error: %1
<br /><font color='red'>在此版本中,Plus 附加的高级功能仍是可用的</font>
-
+ <br />Plus features are no longer enabled.<br />Plus 附加的高级功能已不再可用
@@ -5813,12 +5813,12 @@ Error: %1
需要赞助者凭据
-
+ Run &Un-Sandboxed在沙盒外运行(&U)
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.这看起来不像是一份凭据。请输入完整的凭据,而不仅仅是其中的一部分
@@ -5831,7 +5831,7 @@ Error: %1
非常抱歉,此凭据已过时
-
+ Thank you for supporting the development of Sandboxie-Plus.感谢您对 Sandboxie-Plus 开发工作的支持
@@ -5840,88 +5840,88 @@ Error: %1
此赞助者凭据无效
-
+ Update Available更新可用
-
+ Installed已安装
-
+ by %1来自 %1
-
+ (info website)(更多信息网址)
-
+ This Add-on is mandatory and can not be removed.此加载项是必需的,无法删除。
-
-
+
+ Select Directory选择目录
-
+ <a href="check">Check Now</a><a href="check">立即检查</a>
-
+ Please enter the new configuration password.请输入新的配置保护密码
-
+ Please re-enter the new configuration password.请再次输入新的配置保护密码
-
+ Passwords did not match, please retry.输入的密码不一致,请重新输入
-
+ Process进程
-
+ Folder文件夹
-
+ Please enter a program file name请输入一个程序文件名
-
+ Please enter the template identifier请输入模板标识符
-
+ Error: %1错误:%1
-
+ Do you really want to delete the selected local template(s)?你真的想删除选定的本地模板吗?
-
+ %1 (Current)%1 (当前)
diff --git a/SandboxiePlus/SandMan/sandman_zh_TW.ts b/SandboxiePlus/SandMan/sandman_zh_TW.ts
index 777f0430..5ed47880 100644
--- a/SandboxiePlus/SandMan/sandman_zh_TW.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_TW.ts
@@ -5493,78 +5493,78 @@ This file is part of Sandboxie and all changed done to it will be reverted next
%1
-
+ Search for settings搜尋設定
-
-
+
+ Run &Sandboxed在沙箱中執行(&S)
-
+ kilobytes (%1)KB (%1)
-
+ Volume not attached未加入磁碟區
-
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.此贊助者憑證已逾期,請<a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">取得更新的憑證</a>。
-
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.<br /><font color='red'>對於目前版本,Plus 功能仍然啟用</font>,但您無法再存取 Sandboxie-Live 服務,包括相容性更新和疑難排解資料庫。
-
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.此贊助者憑證將<font color='red'>在 %1 天後逾期</font>,請<a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert " >取得更新的憑證</a>。
-
+ This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.這看起來不像 Sandboxie-Plus 序號。<br />如果您嘗試的是輸入憑證的更新金鑰或簽章,這不是正確的操作,請在上方文字區域中輸入完整憑證。
-
+ You are attempting to use a feature Upgrade-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.<br />If you want to use the advanced features, you need to obtain both a standard certificate and the feature upgrade key to unlock advanced functionality.You are attempting to use a feature Upgrade-Key without having entered a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting valid supporter certificate, it is useless without one.<br />If you want to use the advanced features you need to obtain booth a standard certificate and the feature upgrade key to unlock advanced functionality.您正嘗試在未輸入作為前置條件的贊助者憑證的情況下使用功能升級金鑰。請注意,這種類型的金鑰 (<b>正如網站上以粗體明確說明的那樣</b>) 要求您預先擁有一個有效的贊助者憑證;<br />如果您想使用進階功能,您需要同時取得標準憑證和功能升級金鑰來解鎖進階功能。
-
+ You are attempting to use a Renew-Key without having entered a pre-existing supporter certificate. Please note that this type of key (<b>as it is clearly stated in bold on the website</b) requires you to have a pre-existing valid supporter certificate; it is useless without one.You are attempting to use a Renew-Key without having a preexisting supporter certificate. Please note that these type of key (<b>as it is clearly stated in bold on the website</b>) require you to have a preexisting supporter certificate, it is useless without one.您正嘗試在未輸入作為前置條件的贊助者憑證的情況下使用續期金鑰。請注意,這種類型的金鑰 (<b>正如網站上以粗體明確說明的那樣</b>) 要求您預先擁有一個有效的贊助者憑證;沒有前者的情況下此金鑰完全無效。
-
+ <br /><br /><u>If you have not read the product description and obtained this key by mistake, please contact us via email (provided on our website) to resolve this issue.</u><br /><br /><u>If you have not read the product description and got this key by mistake, please contact us by email (provided on our website) to resolve this issue.</u><br /><br /><u>如果您沒有閱讀產品說明並錯誤地取得了此金鑰,請透過電子郵件 (在我們的網站上提供) 聯絡我們以解決此問題。</u>
-
+ Retrieving certificate...取得憑證中...
-
+ Error retrieving certificate: %1Error retriving certificate: %1取得憑證錯誤: %1
-
+ Unknown Error (probably a network issue)未知錯誤 (可能是網際網路問題)
@@ -5573,98 +5573,98 @@ This file is part of Sandboxie and all changed done to it will be reverted next
取得憑證中...
-
+ Contributor貢獻者
-
+ Eternal永久
-
+ Business商業
-
+ Personal個人
-
+ Great Patreon大型 Patreon
-
+ PatreonPatreon
-
+ Family家庭
-
+ Home家用
-
+ Evaluation試用
-
+ Type %1類型 %1
-
+ Advanced進階
-
+ Max Level最高等級
-
+ Level %1等級 %1
-
+ Supporter certificate required for access需要贊助者憑證以存取
-
+ Supporter certificate required for automation需要贊助者憑證以自動作業
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.不幸的是,此憑證對於目前版本無效,您需要取得新憑證或降級到早期版本。
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.儘管此憑證已逾期,但對於目前安裝的版本 Plus 功能仍保持啟用狀態。但是,您將無法再存取 Sandboxie-Live 服務,包括相容性更新和線上疑難排解資料庫。
-
+ This certificate has unfortunately expired, you need to get a new certificate.不幸的是,該憑證已逾期,您需要取得新憑證。
-
+ Sandboxed Web Browser沙箱化網頁瀏覽器
@@ -5692,48 +5692,48 @@ This file is part of Sandboxie and all changed done to it will be reverted next
瀏覽程式
-
+ Add %1 Template加入 %1 範本
-
+ Select font選取字型
-
+ Reset font重設字型
-
+ %0, %1 pt%0, %1 pt
-
+ Please enter message請輸入訊息
-
+ Select Program選擇程式
-
+ Executables (*.exe *.cmd)可執行檔案 (*.exe *.cmd)
-
-
+
+ Please enter a menu title請輸入一個選單標題
-
+ Please enter a command請輸入一則命令
@@ -5742,7 +5742,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
此贊助者憑證已逾期,請<a href="sbie://update/cert">取得新憑證</a>。
-
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font><br /><font color='red'>Plus 附加的進階功能將在 %1 天後被停用。</font>
@@ -5751,7 +5751,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
<br /><font color='red'>在此版本中,Plus 附加的進階功能仍是可用的。</font>
-
+ <br />Plus features are no longer enabled.<br />Plus 附加的進階功能已不再可用。
@@ -5765,12 +5765,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
需要贊助者憑證
-
+ Run &Un-Sandboxed在沙箱外執行(&U)
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.這看起來不像是一份憑證。請輸入完整的憑證,而不僅僅是其中的一部分。
@@ -5783,7 +5783,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
很不幸此憑證已廢止。
-
+ Thank you for supporting the development of Sandboxie-Plus.感謝您對 Sandboxie-Plus 開發工作的支持。
@@ -5792,88 +5792,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
此贊助者憑證無效。
-
+ Update Available更新可用
-
+ Installed已安裝
-
+ by %1by %1
-
+ (info website)(資訊網站)
-
+ This Add-on is mandatory and can not be removed.此附加元件具有強制性且不可被移除。
-
-
+
+ Select Directory選擇目錄
-
+ <a href="check">Check Now</a><a href="check">立即檢查</a>
-
+ Please enter the new configuration password.請輸入新組態密碼。
-
+ Please re-enter the new configuration password.請再次輸入新組態密碼。
-
+ Passwords did not match, please retry.密碼不匹配,請重新輸入。
-
+ Process處理程序
-
+ Folder資料夾
-
+ Please enter a program file name請輸入一個程式檔案名稱
-
+ Please enter the template identifier請輸入範本識別碼
-
+ Error: %1錯誤: %1
-
+ Do you really want to delete the selected local template(s)?要刪除所選取的本地範本嗎?
-
+ %1 (Current)%1 (目前)
From 925c15149a4dfa8becc7e8f1bfd69a116edd8245 Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Wed, 8 May 2024 19:50:45 +0300
Subject: [PATCH 079/122] Improved checkbox behavior on isolation change
Improved the checkbox behavior of some settings related to box isolation, depending on the status of the `NoSecurityIsolation` setting.
`NoAddProcessToJob`
`SandboxieLogon`
---
.../SandMan/Windows/OptionsAdvanced.cpp | 19 +++++++++++++------
.../SandMan/Windows/OptionsWindow.cpp | 16 +++++++++++-----
2 files changed, 24 insertions(+), 11 deletions(-)
diff --git a/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp b/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
index 4a1d9026..b961a8f5 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
@@ -131,7 +131,6 @@ void COptionsWindow::LoadAdvanced()
ui.chkUseSbieDeskHack->setChecked(m_pBox->GetBool("UseSbieDeskHack", true));
ui.chkUseSbieWndStation->setChecked(m_pBox->GetBool("UseSbieWndStation", true));
- ui.chkAddToJob->setChecked(!m_pBox->GetBool("NoAddProcessToJob", false));
ui.chkProtectSCM->setChecked(!m_pBox->GetBool("UnrestrictedSCM", false));
ui.chkRestrictServices->setChecked(!m_pBox->GetBool("RunServicesAsSystem", false));
ui.chkElevateRpcss->setChecked(m_pBox->GetBool("RunRpcssAsSystem", false));
@@ -205,8 +204,6 @@ void COptionsWindow::LoadAdvanced()
ui.chkHostProtectMsg->setEnabled(ui.chkHostProtect->isChecked());
ui.chkHostProtectMsg->setChecked(m_pBox->GetBool("NotifyImageLoadDenied", true));
- ReadGlobalCheck(ui.chkSbieLogon, "SandboxieLogon", false);
-
LoadOptionList();
bool bGlobalNoMon = m_pBox->GetAPI()->GetGlobalSettings()->GetBool("DisableResourceMonitor", false);
@@ -415,8 +412,8 @@ void COptionsWindow::SaveAdvanced()
WriteAdvancedCheck(ui.chkHostProtect, "ProtectHostImages", "y", "");
WriteAdvancedCheck(ui.chkHostProtectMsg, "NotifyImageLoadDenied", "", "n");
-
- WriteGlobalCheck(ui.chkSbieLogon, "SandboxieLogon", false);
+ bool bGlobalSbieLogon = m_pBox->GetAPI()->GetGlobalSettings()->GetBool("SandboxieLogon", false);
+ WriteAdvancedCheck(ui.chkSbieLogon, "SandboxieLogon", bGlobalSbieLogon ? "" : "y", bGlobalSbieLogon ? "n" : "");
SaveOptionList();
@@ -556,7 +553,7 @@ void COptionsWindow::UpdateBoxIsolation()
{
ui.chkNoSecurityFiltering->setEnabled(ui.chkNoSecurityIsolation->isChecked());
- ui.chkAddToJob->setEnabled(!ui.chkNoSecurityIsolation->isChecked());
+ ui.chkAddToJob->setEnabled(!IsAccessEntrySet(eWnd, "", eOpen, "*") && !ui.chkNoSecurityIsolation->isChecked());
ui.chkNestedJobs->setEnabled(!ui.chkNoSecurityIsolation->isChecked());
ui.chkOpenDevCMApi->setEnabled(!ui.chkNoSecurityIsolation->isChecked());
@@ -582,9 +579,19 @@ void COptionsWindow::UpdateBoxIsolation()
ui.chkCloseForBox->setEnabled(!ui.chkNoSecurityIsolation->isChecked());
ui.chkNoOpenForBox->setEnabled(!ui.chkNoSecurityIsolation->isChecked());
+ ui.chkSbieLogon->setEnabled(!ui.chkNoSecurityIsolation->isChecked());
+
if (ui.chkNoSecurityIsolation->isChecked()) {
ui.chkCloseForBox->setChecked(false);
ui.chkNoOpenForBox->setChecked(false);
+ if (!IsAccessEntrySet(eWnd, "", eOpen, "*"))
+ ui.chkAddToJob->setChecked(false);
+ ui.chkSbieLogon->setChecked(false);
+ }
+ else {
+ if (!IsAccessEntrySet(eWnd, "", eOpen, "*"))
+ ui.chkAddToJob->setChecked(!m_pBox->GetBool("NoAddProcessToJob", false));
+ ReadGlobalCheck(ui.chkSbieLogon, "SandboxieLogon", false);
}
}
diff --git a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
index ac547328..34d40893 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
@@ -1151,17 +1151,23 @@ void COptionsWindow::UpdateCurrentTab()
{
ui.chkVmRead->setChecked(IsAccessEntrySet(eIPC, "", eReadOnly, "$:*"));
}
- else if (m_pCurrentTab ==ui.tabPrivileges || m_pCurrentTab == ui.tabSecurity)
+ else if (m_pCurrentTab == ui.tabPrivileges || m_pCurrentTab == ui.tabSecurity)
{
if (IsAccessEntrySet(eWnd, "", eOpen, "*"))
{
- ui.chkAddToJob->setEnabled(false);
- ui.chkAddToJob->setChecked(false);
+ if (!ui.chkNoSecurityIsolation->isChecked())
+ {
+ ui.chkAddToJob->setEnabled(false);
+ ui.chkAddToJob->setChecked(false);
+ }
}
else
{
- ui.chkAddToJob->setEnabled(true);
- ui.chkAddToJob->setChecked(!m_pBox->GetBool("NoAddProcessToJob", false));
+ if (!ui.chkNoSecurityIsolation->isChecked())
+ {
+ ui.chkAddToJob->setEnabled(true);
+ ui.chkAddToJob->setChecked(!m_pBox->GetBool("NoAddProcessToJob", false));
+ }
}
}
else if (m_pCurrentTab == ui.tabStart || m_pCurrentTab == ui.tabForce)
From f5c5224a264d81a1ecdae8d3ac92367ad198c299 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Fri, 10 May 2024 17:50:03 +0200
Subject: [PATCH 080/122] /fcp
---
CHANGELOG.md | 1 +
Sandboxie/apps/start/start.cpp | 35 ++++++-
Sandboxie/core/drv/api_defs.h | 1 +
Sandboxie/core/drv/process.c | 8 ++
Sandboxie/core/drv/process.h | 7 ++
Sandboxie/core/drv/process_force.c | 141 ++++++++++++++++++++++++++++-
Sandboxie/core/drv/session.c | 35 +++++++
7 files changed, 221 insertions(+), 7 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cade017f..ee2ed1eb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Add option to limit the memory of sandboxed process and the number of process in single sandbox through job object. (thanks Yeyixiao)
- Add ability to modified sandboxed process logic speed (reduced fixed latency, modified single-player speed, etc.) (thanks Yeyixiao)
+- Added /fcp /force_children commandline option to start.exe it allows to start a program unsandboxed but have all its children sandboxed
diff --git a/Sandboxie/apps/start/start.cpp b/Sandboxie/apps/start/start.cpp
index 349e7d90..5e5c857c 100644
--- a/Sandboxie/apps/start/start.cpp
+++ b/Sandboxie/apps/start/start.cpp
@@ -28,6 +28,7 @@
#include "core/svc/SbieIniWire.h"
#include "common/my_version.h"
#include "msgs/msgs.h"
+#include "core/drv/api_defs.h"
//---------------------------------------------------------------------------
@@ -88,6 +89,7 @@ BOOL execute_auto_run = FALSE;
BOOL execute_open_with = FALSE;
BOOL run_elevated_2 = FALSE;
BOOL disable_force_on_this_program = FALSE;
+BOOL force_children_on_this_program = FALSE;
BOOL auto_select_default_box = FALSE;
WCHAR *StartMenuSectionName = NULL;
BOOL run_silent = FALSE;
@@ -716,6 +718,17 @@ BOOL Parse_Command_Line(void)
disable_force_on_this_program = TRUE;
+ //
+ // Command line switch /force_children or /fcp
+ //
+
+ } else if (_wcsnicmp(cmd, L"force_children", 14) == 0 ||
+ _wcsnicmp(cmd, L"fcp", 3) == 0) {
+
+ cmd = Eat_String(cmd);
+
+ force_children_on_this_program = TRUE;
+
//
// Command line switch /hide_window
//
@@ -1193,7 +1206,7 @@ int Program_Start(void)
shExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
shExecInfo.fMask = SEE_MASK_FLAG_NO_UI | SEE_MASK_DOENVSUBST
| SEE_MASK_FLAG_DDEWAIT | SEE_MASK_NOZONECHECKS;
- if (wait_for_process || keep_alive)
+ if (wait_for_process || keep_alive || force_children_on_this_program)
shExecInfo.fMask |= SEE_MASK_NOCLOSEPROCESS;
shExecInfo.hwnd = NULL;
shExecInfo.lpVerb = NULL;
@@ -1337,6 +1350,8 @@ int Program_Start(void)
if (ok && (wait_for_process || keep_alive))
hNewProcess = shExecInfo.hProcess;
+ else if(ok && force_children_on_this_program)
+ pi.dwProcessId = GetProcessId(shExecInfo.hProcess);
if (! ok) {
@@ -1364,9 +1379,16 @@ int Program_Start(void)
// we know for sure that SandboxieRpcSs has opened it
//
- if (ok && (! disable_force_on_this_program)) {
+ if (ok) {
- SbieDll_StartCOM(FALSE);
+ if (force_children_on_this_program) {
+
+ SbieApi_Call(API_FORCE_CHILDREN, 2, pi.dwProcessId, BoxName);
+
+ } else if (!disable_force_on_this_program) {
+
+ SbieDll_StartCOM(FALSE);
+ }
}
//
@@ -1395,7 +1417,9 @@ int Program_Start(void)
}
}
- } else if (GetModuleHandle(L"protect.dll")) {
+ }
+ // $Workaround$ - 3rd party fix
+ else if (GetModuleHandle(L"protect.dll")) {
//
// hack for FortKnox firewall -- keep Start.exe around for a few
@@ -1833,8 +1857,9 @@ int __stdcall WinMainCRTStartup(
ULONG NewState = DISABLE_JUST_THIS_PROCESS;
SbieApi_DisableForceProcess(&NewState, NULL);
- return die(Program_Start());
}
+ if (disable_force_on_this_program || force_children_on_this_program)
+ return die(Program_Start());
}
return die(RestartInSandbox());
diff --git a/Sandboxie/core/drv/api_defs.h b/Sandboxie/core/drv/api_defs.h
index 35672861..81ab1288 100644
--- a/Sandboxie/core/drv/api_defs.h
+++ b/Sandboxie/core/drv/api_defs.h
@@ -162,6 +162,7 @@ enum {
API_PROTECT_ROOT,
API_UNPROTECT_ROOT,
API_KILL_PROCESS,
+ API_FORCE_CHILDREN,
API_LAST
};
diff --git a/Sandboxie/core/drv/process.c b/Sandboxie/core/drv/process.c
index 7564cffc..4e23e07a 100644
--- a/Sandboxie/core/drv/process.c
+++ b/Sandboxie/core/drv/process.c
@@ -101,9 +101,11 @@ static NTSTATUS Process_CreateUserProcess(
#ifdef USE_PROCESS_MAP
HASH_MAP Process_Map;
HASH_MAP Process_MapDfp;
+HASH_MAP Process_MapFcp;
#else
LIST Process_List;
LIST Process_ListDfp;
+LIST Process_ListFcp;
#endif
PERESOURCE Process_ListLock = NULL;
@@ -136,9 +138,13 @@ _FX BOOLEAN Process_Init(void)
map_init(&Process_MapDfp, Driver_Pool);
map_resize(&Process_MapDfp, 128); // prepare some buckets for better performance
+
+ map_init(&Process_MapFcp, Driver_Pool);
+ map_resize(&Process_MapFcp, 128); // prepare some buckets for better performance
#else
List_Init(&Process_List);
List_Init(&Process_ListDfp);
+ List_Init(&Process_ListFcp);
#endif
if (! Mem_GetLockResource(&Process_ListLock, TRUE))
@@ -1537,6 +1543,8 @@ _FX void Process_Delete(HANDLE ProcessId)
Process_DfpDelete(ProcessId);
+ Process_FcpDelete(ProcessId);
+
ExReleaseResourceLite(Process_ListLock);
KeLowerIrql(irql);
diff --git a/Sandboxie/core/drv/process.h b/Sandboxie/core/drv/process.h
index b9087a23..d819dede 100644
--- a/Sandboxie/core/drv/process.h
+++ b/Sandboxie/core/drv/process.h
@@ -447,6 +447,11 @@ void Process_DfpDelete(HANDLE ProcessId);
BOOLEAN Process_DfpCheck(HANDLE ProcessId, BOOLEAN *silent);
+// Force Child Processes
+
+VOID Process_FcpInsert(HANDLE ProcessId, const WCHAR* boxname);
+void Process_FcpDelete(HANDLE ProcessId);
+BOOLEAN Process_FcpCheck(HANDLE ProcessId, WCHAR* boxname);
// Enumerate or count processes in a sandbox
@@ -533,9 +538,11 @@ NTSTATUS Process_Api_Kill(PROCESS *proc, ULONG64 *parms);
#ifdef USE_PROCESS_MAP
extern HASH_MAP Process_Map;
extern HASH_MAP Process_MapDfp;
+extern HASH_MAP Process_MapFcp;
#else
extern LIST Process_List;
extern LIST Process_ListDfp;
+extern LIST Process_ListFcp;
#endif
extern PERESOURCE Process_ListLock;
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index c03c4fd2..936d53e0 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -79,6 +79,16 @@ typedef struct _FORCE_PROCESS_2 {
} FORCE_PROCESS_2;
+typedef struct _FORCE_PROCESS_3 {
+
+#ifndef USE_PROCESS_MAP
+ LIST_ELEM list_elem;
+#endif
+ HANDLE pid;
+ WCHAR boxname[BOXNAME_COUNT];
+
+} FORCE_PROCESS_3;
+
//---------------------------------------------------------------------------
// Functions
//---------------------------------------------------------------------------
@@ -274,6 +284,23 @@ _FX BOX *Process_GetForcedStartBox(
Process_DfpInsert(PROCESS_TERMINATED, ProcessId);
}
+ if (!box) {
+
+ WCHAR boxname[BOXNAME_COUNT];
+
+ if (Process_FcpCheck(ParentId, boxname)) {
+
+ ULONG boxname_len = (wcslen(boxname) + 1) * sizeof(WCHAR);
+ for (FORCE_BOX* cur_box = List_Head(&boxes); cur_box; cur_box = List_Next(cur_box)) {
+ if (cur_box->box->name_len == boxname_len
+ && _wcsicmp(cur_box->box->name, boxname) == 0) {
+ box = cur_box->box;
+ break;
+ }
+ }
+ }
+ }
+
if (alert != 1)
force_alert = FALSE;
@@ -794,7 +821,6 @@ _FX BOOLEAN Process_IsProcessParent(HANDLE ParentId, WCHAR* Name)
_FX BOOLEAN Process_IsWindowsExplorerParent(HANDLE ParentId)
{
-
return Process_IsProcessParent(ParentId,L"explorer.exe");
}
@@ -1399,10 +1425,12 @@ _FX BOX *Process_CheckForceProcess(
return box->box;
}
- //if (Process_IsWindowsExplorerParent(ParentId) && Conf_Get_Boolean(box->box->name, L"ForceExplorerChild", FALSE)) {
+
+ //if (Process_IsWindowsExplorerParent(ParentId) && Conf_Get_Boolean(box->box->name, L"ForceExplorerChild", 0, FALSE)) {
// if(_wcsicmp(name,L"Sandman.exe")!=0)
// return box->box;
//}
+
box = List_Next(box);
}
@@ -1758,3 +1786,112 @@ _FX BOOLEAN Process_DfpCheck(HANDLE ProcessId, BOOLEAN *silent)
return found;
}
+
+
+//---------------------------------------------------------------------------
+// Process_FcpInsert
+//---------------------------------------------------------------------------
+
+
+_FX VOID Process_FcpInsert(HANDLE ProcessId, const WCHAR* boxname)
+{
+ FORCE_PROCESS_3 *proc;
+ KIRQL irql;
+
+ //
+ // called by Session_Api_ForceChildren, process list not locked
+ //
+
+ KeRaiseIrql(APC_LEVEL, &irql);
+ ExAcquireResourceExclusiveLite(Process_ListLock, TRUE);
+
+ Process_FcpDelete(ProcessId);
+
+ proc = Mem_Alloc(Driver_Pool, sizeof(FORCE_PROCESS_3));
+ proc->pid = ProcessId;
+ wmemcpy(proc->boxname, boxname, BOXNAME_COUNT);
+
+#ifdef USE_PROCESS_MAP
+ map_insert(&Process_MapFcp, ProcessId, proc, 0);
+#else
+ List_Insert_After(&Process_ListFcp, NULL, proc);
+#endif
+
+ ExReleaseResourceLite(Process_ListLock);
+ KeLowerIrql(irql);
+
+
+}
+
+
+//---------------------------------------------------------------------------
+// Process_FcpDelete
+//---------------------------------------------------------------------------
+
+
+_FX void Process_FcpDelete(HANDLE ProcessId)
+{
+ FORCE_PROCESS_3 *proc;
+
+#ifdef USE_PROCESS_MAP
+ if(map_take(&Process_MapFcp, ProcessId, &proc, 0))
+ Mem_Free(proc, sizeof(FORCE_PROCESS_3));
+#else
+ proc = List_Head(&Process_ListFcp);
+ while (proc) {
+
+ if (proc->pid == ProcessId) {
+
+ List_Remove(&Process_ListFcp, proc);
+
+ Mem_Free(proc, sizeof(FORCE_PROCESS_3));
+
+ return;
+ }
+
+ proc = List_Next(proc);
+ }
+#endif
+}
+
+
+//---------------------------------------------------------------------------
+// Process_FcpCheck
+//---------------------------------------------------------------------------
+
+
+_FX BOOLEAN Process_FcpCheck(HANDLE ProcessId, WCHAR* boxname)
+{
+ FORCE_PROCESS_3 *proc;
+ KIRQL irql;
+ BOOLEAN found = FALSE;
+
+ KeRaiseIrql(APC_LEVEL, &irql);
+ ExAcquireResourceExclusiveLite(Process_ListLock, TRUE);
+
+#ifdef USE_PROCESS_MAP
+ proc = map_get(&Process_MapFcp, ProcessId);
+ if (proc) {
+#else
+ proc = List_Head(&Process_ListFcp);
+ while (proc) {
+
+ if (proc->pid == ProcessId) {
+#endif
+ if(boxname)
+ wmemcpy(boxname, proc->boxname, BOXNAME_COUNT);
+
+ found = TRUE;
+#ifndef USE_PROCESS_MAP
+ break;
+ }
+
+ proc = List_Next(proc);
+#endif
+ }
+
+ ExReleaseResourceLite(Process_ListLock);
+ KeLowerIrql(irql);
+
+ return found;
+}
\ No newline at end of file
diff --git a/Sandboxie/core/drv/session.c b/Sandboxie/core/drv/session.c
index b35cecee..aedca89a 100644
--- a/Sandboxie/core/drv/session.c
+++ b/Sandboxie/core/drv/session.c
@@ -104,6 +104,8 @@ static NTSTATUS Session_Api_Leader(PROCESS *proc, ULONG64 *parms);
static NTSTATUS Session_Api_DisableForce(PROCESS *proc, ULONG64 *parms);
+static NTSTATUS Session_Api_ForceChildren(PROCESS *proc, ULONG64 *parms);
+
static NTSTATUS Session_Api_MonitorControl(PROCESS *proc, ULONG64 *parms);
//static NTSTATUS Session_Api_MonitorPut(PROCESS *proc, ULONG64 *parms);
@@ -141,6 +143,7 @@ _FX BOOLEAN Session_Init(void)
Api_SetFunction(API_SESSION_LEADER, Session_Api_Leader);
Api_SetFunction(API_DISABLE_FORCE_PROCESS, Session_Api_DisableForce);
+ Api_SetFunction(API_FORCE_CHILDREN, Session_Api_ForceChildren);
Api_SetFunction(API_MONITOR_CONTROL, Session_Api_MonitorControl);
//Api_SetFunction(API_MONITOR_PUT, Session_Api_MonitorPut);
Api_SetFunction(API_MONITOR_PUT2, Session_Api_MonitorPut2);
@@ -496,6 +499,38 @@ _FX BOOLEAN Session_IsForceDisabled(ULONG SessionId)
}
+//---------------------------------------------------------------------------
+// Session_Api_ForceChildren
+//---------------------------------------------------------------------------
+
+
+_FX NTSTATUS Session_Api_ForceChildren(PROCESS *proc, ULONG64 *parms)
+{
+ HANDLE process_id;
+ WCHAR *user_boxname;
+ WCHAR boxname[BOXNAME_COUNT];
+
+ if (proc)
+ return STATUS_NOT_IMPLEMENTED;
+
+ process_id = (HANDLE)parms[1];
+
+ memzero(boxname, sizeof(boxname));
+ user_boxname = (WCHAR *)parms[2];
+ if (user_boxname) {
+ ProbeForRead(user_boxname, sizeof(WCHAR) * (BOXNAME_COUNT - 2), sizeof(UCHAR));
+ if (user_boxname[0])
+ wcsncpy(boxname, user_boxname, (BOXNAME_COUNT - 2));
+ }
+ if(!process_id || process_id == (HANDLE)-1 || !boxname[0])
+ return STATUS_INVALID_PARAMETER;
+
+ Process_FcpInsert(process_id, boxname);
+
+ return STATUS_SUCCESS;
+}
+
+
//---------------------------------------------------------------------------
// Session_IsLeader
//---------------------------------------------------------------------------
From 49af2ab36768db83c956343ed08286c164937065 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Fri, 10 May 2024 19:50:17 +0200
Subject: [PATCH 081/122] 1.14.0
---
CHANGELOG.md | 5 +
Sandboxie/common/my_wsa.h | 61 +-
Sandboxie/common/netfw.c | 33 +-
Sandboxie/common/netfw.h | 8 +
Sandboxie/common/pattern.c | 26 +-
Sandboxie/common/pattern.h | 10 +-
Sandboxie/core/dll/SboxDll.vcxproj | 9 +-
Sandboxie/core/dll/SboxDll.vcxproj.filters | 21 +-
Sandboxie/core/dll/config.c | 6 +-
Sandboxie/core/dll/dll.h | 13 -
Sandboxie/core/dll/dllpath.c | 139 ++-
Sandboxie/core/dll/dns_filter.c | 426 ++++++++
Sandboxie/core/dll/net.c | 975 ++++++++++++++----
Sandboxie/core/dll/proxy.c | 298 ++++++
Sandboxie/core/dll/sbiedll.h | 33 +
Sandboxie/core/dll/wsa_defs.h | 284 +++++
Sandboxie/core/drv/api_flags.h | 1 +
Sandboxie/msgs/Sbie-English-1033.txt | 4 +
SandboxiePlus/QSbieAPI/SbieTrace.cpp | 3 +-
SandboxiePlus/SandMan/Forms/OptionsWindow.ui | 324 +++++-
.../SandMan/Forms/TestProxyDialog.ui | 487 +++++++++
SandboxiePlus/SandMan/SandMan.pri | 9 +-
SandboxiePlus/SandMan/SandMan.vcxproj | 3 +
SandboxiePlus/SandMan/SandMan.vcxproj.filters | 22 +-
.../SandMan/Windows/OptionsAccess.cpp | 19 +-
.../SandMan/Windows/OptionsAdvanced.cpp | 3 +
.../SandMan/Windows/OptionsNetwork.cpp | 429 ++++++++
.../SandMan/Windows/OptionsWindow.cpp | 20 +-
SandboxiePlus/SandMan/Windows/OptionsWindow.h | 36 +
.../SandMan/Windows/TestProxyDialog.cpp | 403 ++++++++
.../SandMan/Windows/TestProxyDialog.h | 55 +
31 files changed, 3794 insertions(+), 371 deletions(-)
create mode 100644 Sandboxie/core/dll/dns_filter.c
create mode 100644 Sandboxie/core/dll/proxy.c
create mode 100644 Sandboxie/core/dll/wsa_defs.h
create mode 100644 SandboxiePlus/SandMan/Forms/TestProxyDialog.ui
create mode 100644 SandboxiePlus/SandMan/Windows/TestProxyDialog.cpp
create mode 100644 SandboxiePlus/SandMan/Windows/TestProxyDialog.h
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ee2ed1eb..6837bc23 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add ability to modified sandboxed process logic speed (reduced fixed latency, modified single-player speed, etc.) (thanks Yeyixiao)
- Added /fcp /force_children commandline option to start.exe it allows to start a program unsandboxed but have all its children sandboxed
+- added ability to fore sandboxed processes to use a pre defined socks 5 proxy
+- added ability to intercept DNS queries such that thay can be log and/or redirected
+- added support for SOCKS5 proxy authentication based on RFC1928 (thanks Deezzir)
+- added Test Dialog UI for SOCKS5 proxy (thanks Deezzir)
+
## [1.13.7 / 5.68.7] - 2024-05-01
diff --git a/Sandboxie/common/my_wsa.h b/Sandboxie/common/my_wsa.h
index 54b6cbb9..4e533c8b 100644
--- a/Sandboxie/common/my_wsa.h
+++ b/Sandboxie/common/my_wsa.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2021 DavidXanatos, xanasoft.com
+ * Copyright 2021-2024 DavidXanatos, xanasoft.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -53,6 +53,53 @@
#define IPPROTO_ANY 256
+#define SD_RECEIVE 0x00
+#define SD_SEND 0x01
+#define SD_BOTH 0x02
+
+#define SOCKS_SUCCESS 0
+#define SOCKS_GENERAL_FAILURE 1
+
+#define MSG_WAITALL 0x8 /* do not complete until packet is completely filled */
+
+#define FIONBIO 0x8004667e
+
+
+/*
+ * WinSock 2 extension -- bit values and indices for FD_XXX network events
+ */
+#define FD_READ_BIT 0
+#define FD_READ (1 << FD_READ_BIT)
+
+#define FD_WRITE_BIT 1
+#define FD_WRITE (1 << FD_WRITE_BIT)
+
+#define FD_OOB_BIT 2
+#define FD_OOB (1 << FD_OOB_BIT)
+
+#define FD_ACCEPT_BIT 3
+#define FD_ACCEPT (1 << FD_ACCEPT_BIT)
+
+#define FD_CONNECT_BIT 4
+#define FD_CONNECT (1 << FD_CONNECT_BIT)
+
+#define FD_CLOSE_BIT 5
+#define FD_CLOSE (1 << FD_CLOSE_BIT)
+
+#define FD_QOS_BIT 6
+#define FD_QOS (1 << FD_QOS_BIT)
+
+#define FD_GROUP_QOS_BIT 7
+#define FD_GROUP_QOS (1 << FD_GROUP_QOS_BIT)
+
+#define FD_ROUTING_INTERFACE_CHANGE_BIT 8
+#define FD_ROUTING_INTERFACE_CHANGE (1 << FD_ROUTING_INTERFACE_CHANGE_BIT)
+
+#define FD_ADDRESS_LIST_CHANGE_BIT 9
+#define FD_ADDRESS_LIST_CHANGE (1 << FD_ADDRESS_LIST_CHANGE_BIT)
+
+#define FD_MAX_EVENTS 10
+#define FD_ALL_EVENTS ((1 << FD_MAX_EVENTS) - 1)
//---------------------------------------------------------------------------
// Structures and Types
@@ -81,6 +128,13 @@ typedef struct {
};
} SCOPE_ID, *PSCOPE_ID;
+typedef struct sockaddr {
+
+ ADDRESS_FAMILY sa_family; // Address family.
+
+ CHAR sa_data[14]; // Up to 14 bytes of direct address.
+} SOCKADDR, *PSOCKADDR, FAR *LPSOCKADDR;
+
typedef struct sockaddr_in {
ADDRESS_FAMILY sin_family;
@@ -109,6 +163,11 @@ typedef struct sockaddr_un {
typedef void (*PIPFORWARD_CHANGE_CALLBACK)
(void *CallerContext, void *Row, ULONG NotificationType);
+typedef struct _WSANETWORKEVENTS {
+ long lNetworkEvents;
+ int iErrorCode[FD_MAX_EVENTS];
+} WSANETWORKEVENTS, FAR * LPWSANETWORKEVENTS;
+
#endif
//---------------------------------------------------------------------------
diff --git a/Sandboxie/common/netfw.c b/Sandboxie/common/netfw.c
index 5bcdc4d9..b0615f29 100644
--- a/Sandboxie/common/netfw.c
+++ b/Sandboxie/common/netfw.c
@@ -450,7 +450,7 @@ const WCHAR* wcsnchr(const WCHAR* str, size_t max, WCHAR ch)
int _inet_pton(int af, const wchar_t* src, void* dst);
-int _inet_xton(const WCHAR* src, ULONG src_len, IP_ADDRESS *dst)
+int _inet_xton(const WCHAR* src, ULONG src_len, IP_ADDRESS *dst, USHORT *type)
{
WCHAR tmp[46 + 1]; // INET6_ADDRSTRLEN
if (src_len > ARRAYSIZE(tmp) - 1) src_len = ARRAYSIZE(tmp) - 1;
@@ -460,7 +460,7 @@ int _inet_xton(const WCHAR* src, ULONG src_len, IP_ADDRESS *dst)
USHORT af = wcschr(tmp, L':') != NULL ? AF_INET6 : AF_INET;
//dst->Type = af
int ret = _inet_pton(af, tmp, dst->Data);
-
+ if (type) *type = af;
return ret;
}
@@ -522,16 +522,16 @@ BOOLEAN NetFw_ParseRule(NETFW_RULE* rule, const WCHAR* found_value)
ULONG ip_len2 = (ULONG)(ip_value - ip_str2);
IP_ADDRESS ip1;
- _inet_xton(ip_str1, ip_len1, &ip1);
+ _inet_xton(ip_str1, ip_len1, &ip1, NULL);
IP_ADDRESS ip2;
- _inet_xton(ip_str2, ip_len2, &ip2);
+ _inet_xton(ip_str2, ip_len2, &ip2, NULL);
NetFw_RuleAddIpRange(&rule->ip_map, &ip1, &ip2, rule->pool);
}
else
{
IP_ADDRESS ip;
- _inet_xton(ip_str1, ip_len1, &ip);
+ _inet_xton(ip_str1, ip_len1, &ip, NULL);
NetFw_RuleAddIpRange(&rule->ip_map, &ip, &ip, rule->pool);
}
}
@@ -552,6 +552,29 @@ BOOLEAN NetFw_ParseRule(NETFW_RULE* rule, const WCHAR* found_value)
}
+BOOLEAN is_localhost(const struct sockaddr* name)
+{
+ if (name->sa_family == AF_INET) {
+ const SOCKADDR_IN* v4 = (const SOCKADDR_IN*)name;
+ return v4->sin_addr.s_net == 0x7f;
+ }
+ if (name->sa_family == AF_INET6) {
+ const SOCKADDR_IN6_LH* v6 = (const SOCKADDR_IN6_LH*)name;
+ return v6->sin6_addr.u.Word[0] == 0 && v6->sin6_addr.u.Word[1] == 0 &&
+ v6->sin6_addr.u.Word[2] == 0 && v6->sin6_addr.u.Word[3] == 0 &&
+ v6->sin6_addr.u.Word[4] == 0 && v6->sin6_addr.u.Word[5] == 0 &&
+ v6->sin6_addr.u.Word[6] == 0 && v6->sin6_addr.u.Byte[14] == 0 &&
+ v6->sin6_addr.u.Byte[15] == 1;
+ }
+ return FALSE;
+}
+
+BOOLEAN is_inet(const struct sockaddr* name)
+{
+ return name->sa_family == AF_INET || name->sa_family == AF_INET6;
+}
+
+
#include
#include
diff --git a/Sandboxie/common/netfw.h b/Sandboxie/common/netfw.h
index c8f4a01c..96d18fee 100644
--- a/Sandboxie/common/netfw.h
+++ b/Sandboxie/common/netfw.h
@@ -27,4 +27,12 @@ BOOLEAN NetFw_ParseRule(NETFW_RULE* rule, const WCHAR* RuleStr);
void NetFw_FreeRule(NETFW_RULE* rule);
+
+int _wntoi(const WCHAR* str, ULONG max);
+int _inet_pton(int af, const wchar_t* src, void* dst);
+int _inet_aton(const wchar_t* from, struct in_addr* in);
+int _inet_xton(const WCHAR* src, ULONG max, IP_ADDRESS* dst, USHORT* type);
+BOOLEAN is_localhost(const struct sockaddr* name);
+BOOLEAN is_inet(const struct sockaddr* name);
+
#endif
\ No newline at end of file
diff --git a/Sandboxie/common/pattern.c b/Sandboxie/common/pattern.c
index e67f92ca..e380989d 100644
--- a/Sandboxie/common/pattern.c
+++ b/Sandboxie/common/pattern.c
@@ -58,6 +58,9 @@ struct _PATTERN {
// a value denoting the match level for the process
ULONG level;
+ // optional auxyliary data to be associated with this pattern
+ PVOID aux;
+
// array of pointers to constant parts. the actual number of
// elements is indicate by info.num_cons, and the strings are
// allocated as part of this PATTERN object
@@ -308,6 +311,17 @@ _FX ULONG Pattern_Level(PATTERN *pat)
}
+//---------------------------------------------------------------------------
+// Pattern_Aux
+//---------------------------------------------------------------------------
+
+
+_FX PVOID* Pattern_Aux(PATTERN *pat)
+{
+ return &pat->aux;
+}
+
+
//---------------------------------------------------------------------------
// Pattern_Wildcards
//---------------------------------------------------------------------------
@@ -655,7 +669,7 @@ _FX const WCHAR *Pattern_wcsnstr_ex(
_FX int Pattern_MatchPathList(
- WCHAR *path_lwr, ULONG path_len, LIST *list, ULONG* plevel, ULONG* pflags, USHORT* pwildc, const WCHAR** patsrc)
+ WCHAR *path_lwr, ULONG path_len, LIST *list, ULONG* plevel, ULONG* pflags, USHORT* pwildc, PATTERN **found)
{
PATTERN *pat;
int match_len = 0;
@@ -682,7 +696,7 @@ _FX int Pattern_MatchPathList(
level = cur_level;
flags = cur_exact ? MATCH_FLAG_EXACT : 0;
wildc = cur_wildc;
- if (patsrc) *patsrc = Pattern_Source(pat);
+ if (found) *found = pat;
// we need to test all entries to find the best match, so we don't break here
// unless we found an exact match, than there can't be a batter one
@@ -705,7 +719,7 @@ _FX int Pattern_MatchPathList(
level = cur_level;
flags = MATCH_FLAG_AUX | (cur_exact ? MATCH_FLAG_EXACT : 0);
wildc = cur_wildc;
- if (patsrc) *patsrc = Pattern_Source(pat);
+ if (found) *found = pat;
}
}
@@ -727,7 +741,7 @@ _FX int Pattern_MatchPathList(
_FX BOOLEAN Pattern_MatchPathListEx(WCHAR *path_lwr, ULONG path_len, LIST *list, ULONG* plevel, int* pmatch_len, ULONG* pflags, USHORT* pwildc, const WCHAR** patsrc)
{
- const WCHAR* cur_patsrc;
+ PATTERN* found;
ULONG cur_level;
ULONG cur_flags;
USHORT cur_wildc;
@@ -737,7 +751,7 @@ _FX BOOLEAN Pattern_MatchPathListEx(WCHAR *path_lwr, ULONG path_len, LIST *list,
cur_level = *plevel;
cur_flags = *pflags;
cur_wildc = *pwildc;
- cur_len = Pattern_MatchPathList(path_lwr, path_len, list, &cur_level, &cur_flags, &cur_wildc, &cur_patsrc);
+ cur_len = Pattern_MatchPathList(path_lwr, path_len, list, &cur_level, &cur_flags, &cur_wildc, &found);
if (cur_level <= *plevel && (
((*pflags & MATCH_FLAG_EXACT) == 0 && (cur_flags & MATCH_FLAG_EXACT) != 0) || // an exact match overrules any non exact match
((*pflags & MATCH_FLAG_AUX) != 0 && (cur_flags & MATCH_FLAG_AUX) == 0) || // a rule with a primary match overrules auxiliary matches
@@ -748,7 +762,7 @@ _FX BOOLEAN Pattern_MatchPathListEx(WCHAR *path_lwr, ULONG path_len, LIST *list,
*pflags = cur_flags;
*pwildc = cur_wildc;
*pmatch_len = cur_len;
- if (patsrc) *patsrc = cur_patsrc;
+ if (patsrc) *patsrc = Pattern_Source(found);
return TRUE;
}
diff --git a/Sandboxie/common/pattern.h b/Sandboxie/common/pattern.h
index 813670e4..6bb13112 100644
--- a/Sandboxie/common/pattern.h
+++ b/Sandboxie/common/pattern.h
@@ -71,7 +71,13 @@ const WCHAR *Pattern_Source(PATTERN *pat);
ULONG Pattern_Level(PATTERN *pat);
//
-// Pattern_Wildcards: returns count of wildcards in the pattern, not counting the trailing * when present
+// Pattern_Aux: returns the associated auxyliary data.
+//
+
+PVOID* Pattern_Aux(PATTERN *pat);
+
+//
+// Pattern_Wildcards: returns count of wildcards in the pattern, not counting the tailing * when rpresent
//
USHORT Pattern_Wildcards(PATTERN *pat);
@@ -99,7 +105,7 @@ int Pattern_MatchX(PATTERN *pat, const WCHAR *string, int string_len);
#define MATCH_FLAG_AUX 0x02
int Pattern_MatchPathList(
- WCHAR* path_lwr, ULONG path_len, LIST* list, ULONG* plevel, ULONG* pflags, USHORT* pwildc, const WCHAR** patsrc);
+ WCHAR* path_lwr, ULONG path_len, LIST* list, ULONG* plevel, ULONG* pflags, USHORT* pwildc, PATTERN **found);
BOOLEAN Pattern_MatchPathListEx(
WCHAR* path_lwr, ULONG path_len, LIST* list, ULONG* plevel, int* pmatch_len, ULONG* pflags, USHORT* pwildc, const WCHAR** patsrc);
diff --git a/Sandboxie/core/dll/SboxDll.vcxproj b/Sandboxie/core/dll/SboxDll.vcxproj
index d64fdb67..f064fc21 100644
--- a/Sandboxie/core/dll/SboxDll.vcxproj
+++ b/Sandboxie/core/dll/SboxDll.vcxproj
@@ -674,6 +674,7 @@
+
@@ -788,14 +789,16 @@
+
+
+
-
@@ -806,6 +809,9 @@
+
+ CppCode
+
@@ -820,6 +826,7 @@
+
diff --git a/Sandboxie/core/dll/SboxDll.vcxproj.filters b/Sandboxie/core/dll/SboxDll.vcxproj.filters
index 4527d2a6..d259d697 100644
--- a/Sandboxie/core/dll/SboxDll.vcxproj.filters
+++ b/Sandboxie/core/dll/SboxDll.vcxproj.filters
@@ -256,6 +256,12 @@
common
+
+ net
+
+
+ net
+
@@ -312,9 +318,6 @@
common
-
- common
- common
@@ -357,6 +360,18 @@
common
+
+ common
+
+
+ net
+
+
+ common
+
+
+ common
+
diff --git a/Sandboxie/core/dll/config.c b/Sandboxie/core/dll/config.c
index 13eb08c9..31b23c8a 100644
--- a/Sandboxie/core/dll/config.c
+++ b/Sandboxie/core/dll/config.c
@@ -322,14 +322,14 @@ _FX BOOLEAN Config_InitPatternList(const WCHAR* boxname, const WCHAR* setting, L
if (!NT_SUCCESS(status))
break;
++index;
-
- if (dos)
- SbieDll_TranslateNtToDosPath(conf_buf);
ULONG level;
WCHAR* value = Config_MatchImageAndGetValue(conf_buf, Dll_ImageName, &level);
if (value)
{
+ if (dos && *value != L'*')
+ SbieDll_TranslateNtToDosPath(value);
+
pat = Pattern_Create(Dll_Pool, value, TRUE, level);
List_Insert_After(list, NULL, pat);
diff --git a/Sandboxie/core/dll/dll.h b/Sandboxie/core/dll/dll.h
index 71e8a4b1..6969e154 100644
--- a/Sandboxie/core/dll/dll.h
+++ b/Sandboxie/core/dll/dll.h
@@ -404,19 +404,6 @@ void SbieDll_ReleaseFilePathLock();
BOOLEAN SbieDll_HasReadableSubPath(WCHAR path_code, const WCHAR* TruePath);
-#define PATH_OPEN_FLAG 0x10
-#define PATH_CLOSED_FLAG 0x20
-#define PATH_WRITE_FLAG 0x40
-
-#define PATH_IS_OPEN(f) (((f) & PATH_OPEN_FLAG) != 0)
-#define PATH_NOT_OPEN(f) (((f) & PATH_OPEN_FLAG) == 0)
-
-#define PATH_IS_CLOSED(f) (((f) & PATH_CLOSED_FLAG) != 0)
-#define PATH_NOT_CLOSED(f) (((f) & PATH_CLOSED_FLAG) == 0)
-
-#define PATH_IS_WRITE(f) (((f) & PATH_WRITE_FLAG) != 0)
-#define PATH_NOT_WRITE(f) (((f) & PATH_WRITE_FLAG) == 0)
-
//---------------------------------------------------------------------------
// Functions (dllmain)
diff --git a/Sandboxie/core/dll/dllpath.c b/Sandboxie/core/dll/dllpath.c
index c1a74ed7..2684bfa3 100644
--- a/Sandboxie/core/dll/dllpath.c
+++ b/Sandboxie/core/dll/dllpath.c
@@ -28,7 +28,6 @@
#include "core/drv/api_defs.h"
#include "core/drv/api_flags.h"
-#define USE_MATCH_PATH_EX
//---------------------------------------------------------------------------
// Structures and Types
@@ -317,20 +316,11 @@ _FX ULONG SbieDll_MatchPath2(WCHAR path_code, const WCHAR *path, BOOLEAN bCheckO
LIST *open_list, *closed_list, *write_list;
PATTERN *pat;
#endif
- WCHAR *path_lwr;
- ULONG path_len;
ULONG mp_flags;
ULONG monflag;
- mp_flags = 0;
-
if (path == (const WCHAR *)-1) {
path = NULL;
- path_len = 0;
- } else {
- path_len = wcslen(path);
- if (! path_len)
- return 0;
}
if (path_code == L'f') {
@@ -446,13 +436,82 @@ _FX ULONG SbieDll_MatchPath2(WCHAR path_code, const WCHAR *path, BOOLEAN bCheckO
} else
return 0;
+#ifdef USE_MATCH_PATH_EX
+ BOOLEAN use_rule_specificity = (path_code == L'f' || path_code == L'k' || path_code == L'i') && (Dll_ProcessFlags & SBIE_FLAG_RULE_SPECIFICITY) != 0;
+ //BOOLEAN use_privacy_mode = (path_code == L'f' || path_code == L'k') && (Dll_ProcessFlags & SBIE_FLAG_PRIVACY_MODE) != 0;
+
+ //mp_flags = SbieDll_MatchPathImpl(use_rule_specificity, use_privacy_mode, path, normal_list, open_list, closed_list, write_list, read_list);
+ mp_flags = SbieDll_MatchPathImpl(use_rule_specificity, path, normal_list, open_list, closed_list, write_list, read_list);
+#else
+ mp_flags = SbieDll_MatchPathImpl(path, open_list, closed_list, write_list);
+#endif
+
+ if (path_code == L'f')
+ LeaveCriticalSection(&Dll_FilePathListCritSec);
+
//
- // scan paths list. if the path to match does not already end with
- // a backslash character, we will check it twice, second time with
- // a suffixing backslash. this will make sure we match C:\X even
- // even when {Open,Closed}XxxPath=C:\X\ (with a backslash suffix)
+ // make sure that Sandboxie resources marked "always in box"
+ // will not match any OpenIpcPath or ClosedIpcPath settings
//
+ if (path_code == L'i' && mp_flags && path) {
+
+ WCHAR *LastBackSlash = wcsrchr(path, L'\\');
+ if (LastBackSlash && wcsncmp(LastBackSlash + 1,
+ SBIE_BOXED_, SBIE_BOXED_LEN) == 0) {
+
+ mp_flags = 0;
+ }
+ }
+
+ //
+ // log access request in the resource access monitor
+ //
+
+ if (path && monflag) {
+
+ if (PATH_IS_CLOSED(mp_flags))
+ monflag |= MONITOR_DENY;
+ // If hts file or key it will be logged by the driver's trace facility
+ // we only have to log closed events as those never reach the driver
+ // we need to always log to have also logs in compartment mode
+ //else if (monflag == MONITOR_FILE || monflag == MONITOR_KEY)
+ // bMonitorLog = FALSE;
+ else if (PATH_IS_OPEN(mp_flags))
+ monflag |= MONITOR_OPEN;
+
+ if (bMonitorLog)
+ {
+ SbieApi_MonitorPut2(monflag, path, bCheckObjectExists);
+ }
+ }
+
+ return mp_flags;
+}
+
+
+//---------------------------------------------------------------------------
+// SbieDll_MatchPath2
+//---------------------------------------------------------------------------
+
+
+#ifdef USE_MATCH_PATH_EX
+//_FX ULONG SbieDll_MatchPathImpl(BOOLEAN use_rule_specificity, BOOLEAN use_privacy_mode, const WCHAR* path, LIST* normal_list, LIST* open_list, LIST* closed_list, LIST* write_list, LIST* read_list)
+_FX ULONG SbieDll_MatchPathImpl(BOOLEAN use_rule_specificity, const WCHAR* path, LIST* normal_list, LIST* open_list, LIST* closed_list, LIST* write_list, LIST* read_list)
+#else
+_FX ULONG SbieDll_MatchPathImpl(const WCHAR* path, LIST* open_list, LIST* closed_list, LIST* write_list)
+#endif
+{
+ WCHAR *path_lwr;
+ ULONG path_len = 0;
+ ULONG mp_flags = 0;
+
+ if(path) {
+ path_len = wcslen(path);
+ if (! path_len)
+ return 0;
+ }
+
path_lwr = Dll_AllocTemp((path_len + 4) * sizeof(WCHAR));
wmemcpy(path_lwr, path, path_len);
@@ -468,8 +527,6 @@ _FX ULONG SbieDll_MatchPath2(WCHAR path_code, const WCHAR *path, BOOLEAN bCheckO
ULONG flags;
USHORT wildc;
- BOOLEAN use_rule_specificity = (path_code == L'f' || path_code == L'k' || path_code == L'i') && (Dll_ProcessFlags & SBIE_FLAG_RULE_SPECIFICITY) != 0;
-
//
// set default behaviour
//
@@ -506,7 +563,7 @@ _FX ULONG SbieDll_MatchPath2(WCHAR path_code, const WCHAR *path, BOOLEAN bCheckO
//
if (Pattern_MatchPathListEx(path_lwr, path_len, read_list, &level, &match_len, &flags, &wildc, NULL)) { //patsrc)) {
- mp_flags = PATH_OPEN_FLAG; // say its open and let the driver deny the write access
+ mp_flags = PATH_READ_FLAG;
if (!use_rule_specificity) goto finish;
}
@@ -531,6 +588,14 @@ _FX ULONG SbieDll_MatchPath2(WCHAR path_code, const WCHAR *path, BOOLEAN bCheckO
finish:
#else
+
+ //
+ // scan paths list. if the path to match does not already end with
+ // a backslash character, we will check it twice, second time with
+ // a suffixing backslash. this will make sure we match C:\X even
+ // even when {Open,Closed}XxxPath=C:\X\ (with a backslash suffix)
+ //
+
//
// ClosedXxxPath
//
@@ -621,46 +686,6 @@ finish:
}
#endif
- if (path_code == L'f')
- LeaveCriticalSection(&Dll_FilePathListCritSec);
-
- //
- // make sure that Sandboxie resources marked "always in box"
- // will not match any OpenIpcPath or ClosedIpcPath settings
- //
-
- if (path_code == L'i' && mp_flags && path) {
-
- WCHAR *LastBackSlash = wcsrchr(path, L'\\');
- if (LastBackSlash && wcsncmp(LastBackSlash + 1,
- SBIE_BOXED_, SBIE_BOXED_LEN) == 0) {
-
- mp_flags = 0;
- }
- }
-
- //
- // log access request in the resource access monitor
- //
-
- if (path && monflag) {
-
- if (PATH_IS_CLOSED(mp_flags))
- monflag |= MONITOR_DENY;
- // If hts file or key it will be logged by the driver's trace facility
- // we only have to log closed events as those never reach the driver
- // we need to always log to have also logs in compartment mode
- //else if (monflag == MONITOR_FILE || monflag == MONITOR_KEY)
- // bMonitorLog = FALSE;
- else if (PATH_IS_OPEN(mp_flags))
- monflag |= MONITOR_OPEN;
-
- if (bMonitorLog)
- {
- SbieApi_MonitorPut2(monflag, path, bCheckObjectExists);
- }
- }
-
Dll_Free(path_lwr);
return mp_flags;
diff --git a/Sandboxie/core/dll/dns_filter.c b/Sandboxie/core/dll/dns_filter.c
new file mode 100644
index 00000000..303c0d0c
--- /dev/null
+++ b/Sandboxie/core/dll/dns_filter.c
@@ -0,0 +1,426 @@
+/*
+ * Copyright 2022 David Xanatos, xanasoft.com
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+//---------------------------------------------------------------------------
+// DNS Filter
+//---------------------------------------------------------------------------
+
+#define NOGDI
+#include "dll.h"
+
+#include
+#include
+#include
+#include "common/my_wsa.h"
+#include "common/netfw.h"
+#include "common/map.h"
+#include "wsa_defs.h"
+#include "common/pattern.h"
+#include "common/str_util.h"
+
+
+//---------------------------------------------------------------------------
+// Functions
+//---------------------------------------------------------------------------
+
+
+static int WSA_WSALookupServiceBeginW(
+ LPWSAQUERYSETW lpqsRestrictions,
+ DWORD dwControlFlags,
+ LPHANDLE lphLookup);
+
+static int WSA_WSALookupServiceNextW(
+ HANDLE hLookup,
+ DWORD dwControlFlags,
+ LPDWORD lpdwBufferLength,
+ LPWSAQUERYSETW lpqsResults);
+
+static int WSA_WSALookupServiceEnd(HANDLE hLookup);
+
+
+BOOLEAN WSA_GetIP(const short* addr, int addrlen, IP_ADDRESS* pIP);
+void WSA_DumpIP(ADDRESS_FAMILY af, IP_ADDRESS* pIP, wchar_t* pStr);
+
+//---------------------------------------------------------------------------
+
+
+static P_WSALookupServiceBeginW __sys_WSALookupServiceBeginW = NULL;
+static P_WSALookupServiceNextW __sys_WSALookupServiceNextW = NULL;
+static P_WSALookupServiceEnd __sys_WSALookupServiceEnd = NULL;
+
+
+//---------------------------------------------------------------------------
+// Variables
+//---------------------------------------------------------------------------
+
+
+extern POOL* Dll_Pool;
+
+static LIST WSA_FilterList;
+static BOOLEAN WSA_FilterEnabled = FALSE;
+
+typedef struct _IP_ENTRY
+{
+ LIST_ELEM list_elem;
+
+ USHORT Type;
+ IP_ADDRESS IP;
+} IP_ENTRY;
+
+typedef struct _WSA_LOOKUP {
+ LIST* pEntries;
+ BOOLEAN NoMore;
+} WSA_LOOKUP;
+
+static HASH_MAP WSA_LookupMap;
+
+static BOOLEAN WSA_DnsTraceFlag = FALSE;
+
+
+//---------------------------------------------------------------------------
+// WSA_GetLookup
+//---------------------------------------------------------------------------
+
+
+_FX WSA_LOOKUP* WSA_GetLookup(HANDLE h, BOOLEAN bCanAdd)
+{
+ WSA_LOOKUP* pLookup = (WSA_LOOKUP*)map_get(&WSA_LookupMap, h);
+ if (pLookup == NULL && bCanAdd)
+ pLookup = (WSA_LOOKUP*)map_insert(&WSA_LookupMap, h, NULL, sizeof(WSA_LOOKUP));
+ return pLookup;
+}
+
+
+//---------------------------------------------------------------------------
+// WSA_InitNetDnsFilter
+//---------------------------------------------------------------------------
+
+
+_FX BOOLEAN WSA_InitNetDnsFilter(HMODULE module)
+{
+ P_WSALookupServiceBeginW WSALookupServiceBeginW;
+ P_WSALookupServiceNextW WSALookupServiceNextW;
+ P_WSALookupServiceEnd WSALookupServiceEnd;
+
+ List_Init(&WSA_FilterList);
+
+ //
+ // Load filter rules
+ //
+
+ WCHAR conf_buf[256];
+ for (ULONG index = 0; ; ++index) {
+
+ NTSTATUS status = SbieApi_QueryConf(
+ NULL, L"NetworkDnsFilter", index, conf_buf, sizeof(conf_buf) - 16 * sizeof(WCHAR));
+ if (!NT_SUCCESS(status))
+ break;
+
+ ULONG level = -1;
+ WCHAR* value = Config_MatchImageAndGetValue(conf_buf, Dll_ImageName, &level);
+ if (!value)
+ continue;
+
+ WCHAR* domain_ip = wcschr(value, L':');
+ if (domain_ip)
+ *domain_ip++ = L'\0';
+
+ PATTERN* pat = Pattern_Create(Dll_Pool, value, TRUE, level);
+
+ if (domain_ip) {
+
+ LIST* entries = (LIST*)Dll_Alloc(sizeof(LIST));
+ List_Init(entries);
+
+ BOOLEAN HasV6 = FALSE;
+
+ const WCHAR* ip_value = domain_ip;
+ ULONG ip_len = wcslen(domain_ip);
+ for (const WCHAR* ip_end = ip_value + ip_len; ip_value < ip_end;) {
+ const WCHAR* ip_str1;
+ ULONG ip_len1;
+ ip_value = SbieDll_GetTagValue(ip_value, ip_end, &ip_str1, &ip_len1, L';');
+
+ IP_ENTRY* entry = (IP_ENTRY*)Dll_Alloc(sizeof(IP_ENTRY));
+ if (_inet_xton(ip_str1, ip_len1, &entry->IP, &entry->Type) == 1) {
+ if (entry->Type == AF_INET6)
+ HasV6 = TRUE;
+ List_Insert_After(entries, NULL, entry);
+ }
+ }
+
+ if (!HasV6) {
+
+ //
+ // when there are no IPv6 entries create mapped once from the v4 ips
+ //
+
+ for (IP_ENTRY* entry = (IP_ENTRY*)List_Head(entries); entry && entry->Type == AF_INET; entry = (IP_ENTRY*)List_Next(entry)) {
+
+ IP_ENTRY* entry6 = (IP_ENTRY*)Dll_Alloc(sizeof(IP_ENTRY));
+ entry6->Type = AF_INET6;
+ entry6->IP = entry->IP;
+ List_Insert_After(entries, NULL, entry6);
+ }
+ }
+
+ PVOID* aux = Pattern_Aux(pat);
+ *aux = entries;
+ }
+
+ List_Insert_After(&WSA_FilterList, NULL, pat);
+ }
+
+ if (WSA_FilterList.count > 0) {
+
+ WSA_FilterEnabled = TRUE;
+
+ map_init(&WSA_LookupMap, Dll_Pool);
+ }
+
+ //
+ // Setup DNS hooks
+ //
+
+ WSALookupServiceBeginW = (P_WSALookupServiceBeginW)GetProcAddress(module, "WSALookupServiceBeginW");
+ if (WSALookupServiceBeginW) {
+ SBIEDLL_HOOK(WSA_,WSALookupServiceBeginW);
+ }
+
+ WSALookupServiceNextW = (P_WSALookupServiceNextW)GetProcAddress(module, "WSALookupServiceNextW");
+ if (WSALookupServiceNextW) {
+ SBIEDLL_HOOK(WSA_,WSALookupServiceNextW);
+ }
+
+ WSALookupServiceEnd = (P_WSALookupServiceEnd)GetProcAddress(module, "WSALookupServiceEnd");
+ if (WSALookupServiceEnd) {
+ SBIEDLL_HOOK(WSA_,WSALookupServiceEnd);
+ }
+
+ // If there are any DnsTrace options set, then output this debug string
+ WCHAR wsTraceOptions[4];
+ if (SbieApi_QueryConf(NULL, L"DnsTrace", 0, wsTraceOptions, sizeof(wsTraceOptions)) == STATUS_SUCCESS && wsTraceOptions[0] != L'\0')
+ WSA_DnsTraceFlag = TRUE;
+
+ return TRUE;
+}
+
+
+//---------------------------------------------------------------------------
+// WSA_WSALookupServiceBeginW
+//---------------------------------------------------------------------------
+
+
+_FX int WSA_WSALookupServiceBeginW(
+ LPWSAQUERYSETW lpqsRestrictions,
+ DWORD dwControlFlags,
+ LPHANDLE lphLookup)
+{
+ int ret = __sys_WSALookupServiceBeginW(lpqsRestrictions, dwControlFlags, lphLookup);
+
+ if (WSA_DnsTraceFlag) {
+
+ WCHAR ClsId[64] = { 0 };
+ if (lpqsRestrictions->lpServiceClassId) {
+ Sbie_snwprintf(ClsId, 64, L" (ClsId: %08lX-%04hX-%04hX-%02hhX%02hhX-%02hhX%02hhX%02hhX%02hhX%02hhX%02hhX)",
+ lpqsRestrictions->lpServiceClassId->Data1, lpqsRestrictions->lpServiceClassId->Data2, lpqsRestrictions->lpServiceClassId->Data3,
+ lpqsRestrictions->lpServiceClassId->Data4[0], lpqsRestrictions->lpServiceClassId->Data4[1], lpqsRestrictions->lpServiceClassId->Data4[2], lpqsRestrictions->lpServiceClassId->Data4[3],
+ lpqsRestrictions->lpServiceClassId->Data4[4], lpqsRestrictions->lpServiceClassId->Data4[5], lpqsRestrictions->lpServiceClassId->Data4[6], lpqsRestrictions->lpServiceClassId->Data4[7]);
+ }
+
+ WCHAR msg[256];
+ Sbie_snwprintf(msg, 256, L"DNS Request Begin: %s%s, NS: %d, Hdl: 0x%x, Err: %d)",
+ lpqsRestrictions->lpszServiceInstanceName ? lpqsRestrictions->lpszServiceInstanceName : L"Unnamed",
+ ClsId, lpqsRestrictions->dwNameSpace, lphLookup ? *lphLookup : NULL, ret == SOCKET_ERROR ? GetLastError() : 0);
+ SbieApi_MonitorPutMsg(MONITOR_DNS, msg);
+ }
+
+ if (WSA_FilterEnabled && ret == NO_ERROR) {
+
+ if (lpqsRestrictions->lpszServiceInstanceName) {
+
+ ULONG path_len = wcslen(lpqsRestrictions->lpszServiceInstanceName);
+ WCHAR* path_lwr = (WCHAR*)Dll_AllocTemp((path_len + 4) * sizeof(WCHAR));
+ wmemcpy(path_lwr, lpqsRestrictions->lpszServiceInstanceName, path_len);
+ path_lwr[path_len] = L'\0';
+ _wcslwr(path_lwr);
+
+ PATTERN* found;
+ if (Pattern_MatchPathList(path_lwr, path_len, &WSA_FilterList, NULL, NULL, NULL, &found) > 0) {
+
+ WCHAR msg[256];
+ Sbie_snwprintf(msg, 256, L"DNS Request Filtered: %s (Hdl: 0x%x)", Pattern_Source(found), *lphLookup);
+ SbieApi_MonitorPutMsg(MONITOR_DNS | MONITOR_DENY, msg);
+
+ WSA_LOOKUP* pLookup = WSA_GetLookup(*lphLookup, TRUE);
+
+ PVOID* aux = Pattern_Aux(found);
+ if (*aux)
+ pLookup->pEntries = (LIST*)*aux;
+ else
+ pLookup->NoMore = TRUE;
+ }
+ }
+ }
+
+ return ret;
+}
+
+
+//---------------------------------------------------------------------------
+// WSA_WSALookupServiceNextW
+//---------------------------------------------------------------------------
+
+
+_FX int WSA_WSALookupServiceNextW(
+ HANDLE hLookup,
+ DWORD dwControlFlags,
+ LPDWORD lpdwBufferLength,
+ LPWSAQUERYSETW lpqsResults)
+{
+ WSA_LOOKUP* pLookup = NULL;
+
+ if (WSA_FilterEnabled) {
+
+ pLookup = WSA_GetLookup(hLookup, FALSE);
+
+ if (pLookup && pLookup->NoMore) {
+
+ SetLastError(WSA_E_NO_MORE);
+ return SOCKET_ERROR;
+ }
+ }
+
+ int ret = __sys_WSALookupServiceNextW(hLookup, dwControlFlags, lpdwBufferLength, lpqsResults);
+
+ if (pLookup && pLookup->pEntries) {
+
+ //
+ // This is a bit a simplified implementation, it assumes that all results are always of the same time
+ // else it may truncate it early, also it cant return more results the have been found.
+ //
+
+ if (lpqsResults->dwNumberOfCsAddrs > 0) {
+
+ IP_ENTRY* entry = (IP_ENTRY*)List_Head(pLookup->pEntries);
+
+ for (DWORD i = 0; i < lpqsResults->dwNumberOfCsAddrs; i++) {
+
+ USHORT af = lpqsResults->lpcsaBuffer[i].RemoteAddr.lpSockaddr->sa_family;
+ for (; entry && entry->Type != af; entry = (IP_ENTRY*)List_Next(entry)); // skip to an antry of teh right type
+ if (!entry) { // no more entries clear remaining results
+ lpqsResults->dwNumberOfCsAddrs = i;
+ break;
+ }
+
+ if (af == AF_INET6)
+ memcpy(((SOCKADDR_IN6_LH*)lpqsResults->lpcsaBuffer[i].RemoteAddr.lpSockaddr)->sin6_addr.u.Byte, entry->IP.Data, 16);
+ else if (af == AF_INET)
+ ((SOCKADDR_IN*)lpqsResults->lpcsaBuffer[i].RemoteAddr.lpSockaddr)->sin_addr.S_un.S_addr = entry->IP.Data32[3];
+
+ entry = (IP_ENTRY*)List_Next(entry);
+ }
+ }
+
+ if (lpqsResults->lpBlob != NULL) {
+
+ IP_ENTRY* entry = (IP_ENTRY*)List_Head(pLookup->pEntries);
+
+ HOSTENT* hp = (HOSTENT*)lpqsResults->lpBlob->pBlobData;
+ if (hp->h_addrtype == AF_INET6 || hp->h_addrtype == AF_INET) {
+
+ for (PCHAR* Addr = (PCHAR*)(((UINT_PTR)hp->h_addr_list + (UINT_PTR)hp)); *Addr; Addr++) {
+
+ for (; entry && entry->Type != hp->h_addrtype; entry = (IP_ENTRY*)List_Next(entry)); // skip to an antry of teh right type
+ if (!entry) { // no more entries clear remaining results
+ *Addr = 0;
+ continue;
+ }
+
+ PCHAR ptr = (PCHAR)(((UINT_PTR)*Addr + (UINT_PTR)hp));
+ if (hp->h_addrtype == AF_INET6)
+ memcpy(ptr, entry->IP.Data, 16);
+ else if (hp->h_addrtype == AF_INET)
+ *(DWORD*)ptr = entry->IP.Data32[3];
+
+ entry = (IP_ENTRY*)List_Next(entry);
+ }
+ }
+ }
+
+ pLookup->NoMore = TRUE;
+ }
+
+ if (WSA_DnsTraceFlag) {
+
+ WCHAR msg[2048];
+ Sbie_snwprintf(msg, 256, L"DNS Request Found: %s (NS: %d, Hdl: 0x%x, Err: %d)",
+ lpqsResults->lpszServiceInstanceName, lpqsResults->dwNameSpace, hLookup, ret == SOCKET_ERROR ? GetLastError() : 0);
+
+ for (DWORD i = 0; i < lpqsResults->dwNumberOfCsAddrs; i++) {
+ IP_ADDRESS ip;
+ if (WSA_GetIP(lpqsResults->lpcsaBuffer[i].RemoteAddr.lpSockaddr, lpqsResults->lpcsaBuffer[i].RemoteAddr.iSockaddrLength, &ip))
+ WSA_DumpIP(lpqsResults->lpcsaBuffer[i].RemoteAddr.lpSockaddr->sa_family, &ip, msg);
+ }
+
+ if (lpqsResults->lpBlob != NULL) {
+
+ HOSTENT* hp = (HOSTENT*)lpqsResults->lpBlob->pBlobData;
+ if (hp->h_addrtype != AF_INET6 && hp->h_addrtype != AF_INET) {
+ WSA_DumpIP(hp->h_addrtype, NULL, msg);
+ }
+ else if (hp->h_addr_list) {
+ for (PCHAR* Addr = (PCHAR*)(((UINT_PTR)hp->h_addr_list + (UINT_PTR)hp)); *Addr; Addr++) {
+
+ PCHAR ptr = (PCHAR)(((UINT_PTR)*Addr + (UINT_PTR)hp));
+
+ IP_ADDRESS ip;
+ if (hp->h_addrtype == AF_INET6)
+ memcpy(ip.Data, ptr, 16);
+ else if (hp->h_addrtype == AF_INET)
+ ip.Data32[3] = *(DWORD*)ptr;
+ WSA_DumpIP(hp->h_addrtype, &ip, msg);
+ }
+ }
+ }
+
+ SbieApi_MonitorPutMsg(MONITOR_DNS, msg);
+ }
+
+ return ret;
+}
+
+
+//---------------------------------------------------------------------------
+// WSA_WSALookupServiceEnd
+//---------------------------------------------------------------------------
+
+
+_FX int WSA_WSALookupServiceEnd(HANDLE hLookup)
+{
+ if (WSA_FilterEnabled)
+ map_remove(&WSA_LookupMap, hLookup);
+
+ if (WSA_DnsTraceFlag) {
+
+ WCHAR msg[256];
+ Sbie_snwprintf(msg, 256, L"DNS Request End (Hdl: 0x%x)", hLookup);
+ SbieApi_MonitorPutMsg(MONITOR_DNS, msg);
+ }
+
+ return __sys_WSALookupServiceEnd(hLookup);
+}
diff --git a/Sandboxie/core/dll/net.c b/Sandboxie/core/dll/net.c
index 2dd859f4..3440d712 100644
--- a/Sandboxie/core/dll/net.c
+++ b/Sandboxie/core/dll/net.c
@@ -1,6 +1,6 @@
/*
* Copyright 2004-2020 Sandboxie Holdings, LLC
- * Copyright 2020-2021 David Xanatos, xanasoft.com
+ * Copyright 2020-2024 David Xanatos, xanasoft.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -25,8 +25,12 @@
#include
#include
#include
+#include "gui_p.h"
#include "common/my_wsa.h"
#include "common/netfw.h"
+#include "common/map.h"
+#include "common/str_util.h"
+#include "wsa_defs.h"
//---------------------------------------------------------------------------
@@ -43,12 +47,24 @@
#define WSAID_ACCEPTEX \
{0xb5367df1,0xcbac,0x11cf,{0x95,0xca,0x00,0x80,0x5f,0x48,0xa1,0x92}}
+//---------------------------------------------------------------------------
+// Types
+//---------------------------------------------------------------------------
+
+typedef struct NETPROXY_RULE NETPROXY_RULE;
+
//---------------------------------------------------------------------------
// Functions
//---------------------------------------------------------------------------
static void WSA_InitNetFwRules();
+static BOOLEAN WSA_ParseNetProxy(NETPROXY_RULE* proxy, const WCHAR* RuleStr);
+
+static BOOLEAN WSA_InitNetProxy();
+
+BOOLEAN WSA_InitNetDnsFilter(HMODULE module);
+
static int WSA_IsBlockedTraffic(const short *addr, int addrlen, int protocol);
static int WSA_WSAIoctl(
@@ -62,6 +78,27 @@ static int WSA_WSAIoctl(
LPWSAOVERLAPPED lpOverlapped,
LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
+static int WSA_ioctlsocket(
+ SOCKET s,
+ long cmd,
+ ULONG* argp);
+
+static int WSA_WSAAsyncSelect(
+ SOCKET s,
+ HWND hWnd,
+ UINT wMsg,
+ long lEvent);
+
+static int WSA_WSAEventSelect(
+ SOCKET s,
+ void* hEventObject,
+ long lNetworkEvents);
+
+static int WSA_WSAEnumNetworkEvents(
+ SOCKET s,
+ void* hEventObject,
+ LPWSANETWORKEVENTS lpNetworkEvents);
+
static int WSA_WSANSPIoctl(
HANDLE hLookup,
DWORD dwControlCode,
@@ -72,6 +109,12 @@ static int WSA_WSANSPIoctl(
LPDWORD lpcbBytesReturned,
LPWSACOMPLETION lpCompletion);
+static int WSA_GetAddrInfoW(
+ PCWSTR pNodeName,
+ PCWSTR pServiceName,
+ const ADDRINFOW* pHints,
+ PADDRINFOW* ppResult);
+
static SOCKET WSA_WSASocketW(
int af,
int type,
@@ -166,136 +209,29 @@ static int WSA_WSARecvFrom(
void *lpFrom,
LPINT lpFromlen,
LPWSAOVERLAPPED lpOverlapped,
- LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
+ LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);*/
-static int WSA_closesocket(SOCKET s);*/
+static int WSA_closesocket(SOCKET s);
-//---------------------------------------------------------------------------
+BOOLEAN socks5_handshake(SOCKET s, BOOLEAN auth, WCHAR login[256], WCHAR pass[256]);
+char socks5_request(SOCKET s, const SOCKADDR* addr);
-typedef int (*P_WSAIoctl)(
- SOCKET s,
- DWORD dwIoControlCode,
- LPVOID lpvInBuffer,
- DWORD cbInBuffer,
- LPVOID lpvOutBuffer,
- DWORD cbOutBuffer,
- LPDWORD lpcbBytesReturned,
- LPWSAOVERLAPPED lpOverlapped,
- LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
-
-typedef int (*P_WSANSPIoctl)(
- HANDLE hLookup,
- DWORD dwControlCode,
- LPVOID lpvInBuffer,
- DWORD cbInBuffer,
- LPVOID lpvOutBuffer,
- DWORD cbOutBuffer,
- LPDWORD lpcbBytesReturned,
- LPWSACOMPLETION lpCompletion);
-
-typedef int (*P_WSASocketW)(
- int af,
- int type,
- int protocol,
- LPWSAPROTOCOL_INFOW lpProtocolInfo,
- unsigned int g,
- DWORD dwFlags);
-
-typedef int (*P_bind)(
- SOCKET s,
- const void *name,
- int namelen);
-
-typedef int (*P_connect)(
- SOCKET s,
- const void *name,
- int namelen);
-
-typedef int (*P_WSAConnect)(
- SOCKET s,
- const void *name,
- int namelen,
- LPWSABUF lpCallerData,
- LPWSABUF lpCalleeData,
- LPQOS lpSQOS,
- LPQOS lpGQOS);
-
-typedef int (*P_ConnectEx) (
- SOCKET s,
- const void *name,
- int namelen,
- PVOID lpSendBuffer,
- DWORD dwSendDataLength,
- LPDWORD lpdwBytesSent,
- LPOVERLAPPED lpOverlapped);
-
-typedef SOCKET (*P_accept)(
- SOCKET s,
- void *addr,
- int *addrlen);
-
-typedef SOCKET (*P_WSAAccept)(
- SOCKET s,
- void *addr,
- LPINT addrlen,
- LPCONDITIONPROC lpfnCondition,
- DWORD_PTR dwCallbackData);
-
-typedef int (*P_AcceptEx)(
- SOCKET sListenSocket,
- SOCKET sAcceptSocket,
- PVOID lpOutputBuffer,
- DWORD dwReceiveDataLength,
- DWORD dwLocalAddressLength,
- DWORD dwRemoteAddressLength,
- LPDWORD lpdwBytesReceived,
- LPOVERLAPPED lpOverlapped);
-
-typedef int (*P_sendto)(
- SOCKET s,
- const char *buf,
- int len,
- int flags,
- const void *to,
- int tolen);
-
-typedef int (*P_WSASendTo)(
- SOCKET s,
- LPWSABUF lpBuffers,
- DWORD dwBufferCount,
- LPDWORD lpNumberOfBytesSent,
- DWORD dwFlags,
- const void *lpTo,
- int iTolen,
- LPWSAOVERLAPPED lpOverlapped,
- LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
-
-typedef int (*P_recvfrom)(
- SOCKET s,
- char *buf,
- int len,
- int flags,
- void *from,
- int *fromlen);
-
-typedef int (*P_WSARecvFrom)(
- SOCKET s,
- LPWSABUF lpBuffers,
- DWORD dwBufferCount,
- LPDWORD lpNumberOfBytesRecvd,
- LPDWORD lpFlags,
- void *lpFrom,
- LPINT lpFromlen,
- LPWSAOVERLAPPED lpOverlapped,
- LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
-
-typedef int (*P_closesocket)(SOCKET s);
//---------------------------------------------------------------------------
static P_WSAIoctl __sys_WSAIoctl = NULL;
+
+static P_WSAGetLastError __sys_WSAGetLastError = NULL;
+static P_WSASetLastError __sys_WSASetLastError = NULL;
+
+static P_ioctlsocket __sys_ioctlsocket = NULL;
+static P_WSAAsyncSelect __sys_WSAAsyncSelect = NULL;
+static P_WSAEventSelect __sys_WSAEventSelect = NULL;
+
+static P_WSAEnumNetworkEvents __sys_WSAEnumNetworkEvents = NULL;
+
static P_WSANSPIoctl __sys_WSANSPIoctl = NULL;
static P_WSASocketW __sys_WSASocketW = NULL;
@@ -310,31 +246,90 @@ static P_ConnectEx __sys_ConnectEx = NULL;
static P_WSAAccept __sys_WSAAccept = NULL;
static P_AcceptEx __sys_AcceptEx = NULL;*/
+ P_recv __sys_recv = NULL;
+
+ P_send __sys_send = NULL;
static P_sendto __sys_sendto = NULL;
static P_WSASendTo __sys_WSASendTo = NULL;
/*static P_recvfrom __sys_recvfrom = NULL;
-static P_WSARecvFrom __sys_WSARecvFrom = NULL;
+static P_WSARecvFrom __sys_WSARecvFrom = NULL;*/
-static P_closesocket __sys_closesocket = NULL;*/
+static P_shutdown __sys_shutdown = NULL;
+
+static P_closesocket __sys_closesocket = NULL;
+
+static P_GetAddrInfoW __sys_GetAddrInfoW = NULL;
+
+ P_inet_ntop __sys_inet_ntop = NULL;
//---------------------------------------------------------------------------
// Variables
//---------------------------------------------------------------------------
-static LIST WSA_FwList;
+struct NETPROXY_RULE {
+ USHORT af;
-extern POOL* Dll_Pool;
+ SOCKADDR_IN WSA_ProxyAddr;
+ SOCKADDR_IN6_LH WSA_ProxyAddr6;
-static BOOLEAN WSA_WFPisEnabled = FALSE;
-static BOOLEAN WSA_WFPisBlocking = FALSE;
+ BOOLEAN auth;
+ WCHAR login[255];
+ WCHAR pass[255];
+};
+
+extern POOL* Dll_Pool;
+
+static LIST WSA_FwList;
+
+static BOOLEAN WSA_WFPisEnabled = FALSE;
+static BOOLEAN WSA_WFPisBlocking = FALSE;
+
+static BOOLEAN WSA_TraceFlag = FALSE;
+
+static BOOLEAN WSA_ProxyEnabled = FALSE;
+static NETPROXY_RULE* WSA_Proxy = NULL;
+ HASH_MAP DNS_LookupMap;
+
+typedef struct _WSA_SOCK {
+ ULONG NonBlocking;
+
+ BOOLEAN ConnectedSet;
+
+ // WSAAsyncSelect
+ HWND hWnd;
+ UINT wMsg;
+ long lEvent;
+
+ // WSAEventSelect
+ void* hEventObject;
+ long lNetworkEvents;
+
+} WSA_SOCK;
+
+static HASH_MAP WSA_SockMap;
+
+
+
+//---------------------------------------------------------------------------
+// WSA_GetSock
+//---------------------------------------------------------------------------
+
+
+_FX WSA_SOCK* WSA_GetSock(SOCKET s, BOOLEAN bCanAdd)
+{
+ WSA_SOCK* pSock = (WSA_SOCK*)map_get(&WSA_SockMap, (void*)s);
+ if (pSock == NULL && bCanAdd)
+ pSock = (WSA_SOCK*)map_insert(&WSA_SockMap, (void*)s, NULL, sizeof(WSA_SOCK));
+ return pSock;
+}
-static BOOLEAN WSA_TraceFlag = FALSE;
//---------------------------------------------------------------------------
// WSAIoctl
//---------------------------------------------------------------------------
+
_FX int WSA_WSAIoctl(
SOCKET s,
DWORD dwIoControlCode,
@@ -371,6 +366,104 @@ _FX int WSA_WSAIoctl(
return rv;
}
+
+//---------------------------------------------------------------------------
+// WSA_ioctlsocket
+//---------------------------------------------------------------------------
+
+
+_FX int WSA_ioctlsocket(
+ SOCKET s,
+ long cmd,
+ ULONG* argp)
+{
+ //
+ // Note: on 64 bit windows this function just calls WSAIoctl
+ // on 32 bit windows it does its own thing
+ // for now we will only monitor ioctlsocket
+ //
+
+ if (WSA_ProxyEnabled && (cmd == FIONBIO) && argp)
+ WSA_GetSock(s, TRUE)->NonBlocking = *argp;
+
+ return __sys_ioctlsocket(s, cmd, argp);
+}
+
+
+//---------------------------------------------------------------------------
+// WSA_WSAAsyncSelect
+//---------------------------------------------------------------------------
+
+
+_FX int WSA_WSAAsyncSelect(
+ SOCKET s,
+ HWND hWnd,
+ UINT wMsg,
+ long lEvent)
+{
+ if (WSA_ProxyEnabled) {
+ WSA_SOCK* pSock = WSA_GetSock(s, TRUE);
+
+ pSock->hWnd = hWnd;
+ pSock->wMsg = wMsg;
+ pSock->lEvent = lEvent;
+
+ pSock->NonBlocking = TRUE;
+ }
+
+ return __sys_WSAAsyncSelect(s, hWnd, wMsg, lEvent);
+}
+
+
+//---------------------------------------------------------------------------
+// WSA_WSAEventSelect
+//---------------------------------------------------------------------------
+
+
+_FX int WSA_WSAEventSelect(
+ SOCKET s,
+ void* hEventObject,
+ long lNetworkEvents)
+{
+ if (WSA_ProxyEnabled) {
+ WSA_SOCK* pSock = WSA_GetSock(s, TRUE);
+
+ pSock->hEventObject = hEventObject;
+ pSock->lNetworkEvents = lNetworkEvents;
+
+ pSock->NonBlocking = TRUE;
+ }
+
+ return __sys_WSAEventSelect(s, hEventObject, lNetworkEvents);
+}
+
+
+//---------------------------------------------------------------------------
+// WSA_WSAEnumNetworkEvents
+//---------------------------------------------------------------------------
+
+
+_FX int WSA_WSAEnumNetworkEvents(
+ SOCKET s,
+ void* hEventObject,
+ LPWSANETWORKEVENTS lpNetworkEvents)
+{
+ int ret = __sys_WSAEnumNetworkEvents(s, hEventObject, lpNetworkEvents);
+
+ if (WSA_ProxyEnabled) {
+ WSA_SOCK* pSock = WSA_GetSock(s, TRUE);
+
+ if (pSock->ConnectedSet) {
+ lpNetworkEvents->lNetworkEvents |= FD_CONNECT;
+ lpNetworkEvents->iErrorCode[FD_CONNECT_BIT] = 0;
+ pSock->ConnectedSet = FALSE;
+ }
+ }
+
+ return ret;
+}
+
+
//---------------------------------------------------------------------------
// WSANSPIoctl
//---------------------------------------------------------------------------
@@ -563,6 +656,56 @@ _FX int WSA_bind(
}
+//---------------------------------------------------------------------------
+// WSA_GetIP
+//---------------------------------------------------------------------------
+
+
+_FX BOOLEAN WSA_GetIP(const short* addr, int addrlen, IP_ADDRESS* pIP)
+{
+ //pIP->Type = (BYTE)addr[0];
+ if ((BYTE)addr[0] == AF_INET6 && addrlen >= sizeof(SOCKADDR_IN6_LH)) {
+ memcpy(pIP->Data, ((SOCKADDR_IN6_LH*)addr)->sin6_addr.u.Byte, 16);
+ }
+ else if ((BYTE)addr[0] == AF_INET && addrlen >= sizeof(SOCKADDR_IN)) {
+ // IPv4-mapped IPv6 addresses, eg. ::FFFF:192.168.0.1
+ pIP->Data32[0] = 0;
+ pIP->Data32[1] = 0;
+ pIP->Data32[2] = 0xFFFF0000;
+ pIP->Data32[3] = ((SOCKADDR_IN*)addr)->sin_addr.S_un.S_addr;
+ }
+ else // something's wrong
+ return FALSE;
+ return TRUE;
+}
+
+
+//---------------------------------------------------------------------------
+// WSA_DumpIP
+//---------------------------------------------------------------------------
+
+
+_FX void WSA_DumpIP(ADDRESS_FAMILY af, IP_ADDRESS* pIP, wchar_t* pStr)
+{
+ pStr = wcschr(pStr, L'\0');
+
+ if (af == AF_INET6 && pIP->Data32[0] == 0 && pIP->Data32[1] == 0 && pIP->Data32[2] == 0xFFFF0000)
+ af = AF_INET; // print mapped ipv4 addresses natively
+
+ if (af == AF_INET6) {
+ Sbie_snwprintf(pStr, 45+10, L"; IPv6: %02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x",
+ pIP->Data[0], pIP->Data[1], pIP->Data[2], pIP->Data[3], pIP->Data[4], pIP->Data[5], pIP->Data[6], pIP->Data[7],
+ pIP->Data[8], pIP->Data[9], pIP->Data[10], pIP->Data[11], pIP->Data[12], pIP->Data[13], pIP->Data[14], pIP->Data[15]);
+ }
+ else if (af == AF_INET) {
+ Sbie_snwprintf(pStr, 15+10, L"; IPv4: %d.%d.%d.%d",
+ pIP->Data[12], pIP->Data[13], pIP->Data[14], pIP->Data[15]);
+ }
+ else
+ Sbie_snwprintf(pStr, 5 + 10, L"; %d: ???", af);
+}
+
+
//---------------------------------------------------------------------------
// WSA_IsBlockedTraffic
//---------------------------------------------------------------------------
@@ -576,34 +719,15 @@ _FX int WSA_IsBlockedTraffic(const short *addr, int addrlen, int protocol)
USHORT port = _ntohs(addr[1]);
IP_ADDRESS ip;
- //ip.Type = (BYTE)addr[0];
- if ((BYTE)addr[0] == AF_INET6 && addrlen >= sizeof(SOCKADDR_IN6_LH)) {
- memcpy(ip.Data, ((SOCKADDR_IN6_LH*)addr)->sin6_addr.u.Byte, 16);
- }
- else if ((BYTE)addr[0] == AF_INET && addrlen >= sizeof(SOCKADDR_IN)) {
- // IPv4-mapped IPv6 addresses, eg. ::FFFF:192.168.0.1
- ip.Data32[0] = 0;
- ip.Data32[1] = 0;
- ip.Data32[2] = 0xFFFF0000;
- ip.Data32[3] = ((SOCKADDR_IN*)addr)->sin_addr.S_un.S_addr;
- //*((ULONG*)ip.Data) = ((SOCKADDR_IN*)addr)->sin_addr.S_un.S_addr;
- }
- else // something's wrong
- return 1; // lets block it
+ if(!WSA_GetIP(addr, addrlen, &ip))
+ return 1; // lets block it
BOOLEAN block = NetFw_BlockTraffic(&WSA_FwList, &ip, port, protocol);
if (WSA_TraceFlag){
WCHAR msg[256];
- if ((BYTE)addr[0] == AF_INET6) {
- Sbie_snwprintf(msg, 256, L"Network Traffic; Port: %u; Prot: %u; IPv6: %02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x", port, protocol,
- ip.Data[0], ip.Data[1], ip.Data[2], ip.Data[3], ip.Data[4], ip.Data[5], ip.Data[6], ip.Data[7],
- ip.Data[8], ip.Data[9], ip.Data[10], ip.Data[11], ip.Data[12], ip.Data[13], ip.Data[14], ip.Data[15]);
- }
- else {
- Sbie_snwprintf(msg, 256, L"Network Traffic; Port: %u; Prot: %u; IPv4: %d.%d.%d.%d", port, protocol,
- ip.Data[12], ip.Data[13], ip.Data[14], ip.Data[15]);
- }
+ Sbie_snwprintf(msg, 256, L"Network Traffic; Port: %u; Prot: %u", port, protocol);
+ WSA_DumpIP(addr[0], &ip, msg);
SbieApi_MonitorPutMsg(MONITOR_NETFW | (block ? MONITOR_DENY : MONITOR_OPEN), msg);
}
@@ -618,6 +742,96 @@ _FX int WSA_IsBlockedTraffic(const short *addr, int addrlen, int protocol)
}
+//---------------------------------------------------------------------------
+// WSA_GetProxy
+//---------------------------------------------------------------------------
+
+
+_FX BOOLEAN WSA_GetProxy(const SOCKADDR* name, void** proxy, int* proxylen)
+{
+ if (!WSA_Proxy)
+ return FALSE;
+
+ if (name->sa_family == AF_INET && WSA_Proxy->af == name->sa_family) {
+ *proxy = &WSA_Proxy->WSA_ProxyAddr;
+ *proxylen = sizeof(SOCKADDR_IN);
+ }
+ else if (name->sa_family == AF_INET6 && WSA_Proxy->af == name->sa_family) {
+ *proxy = &WSA_Proxy->WSA_ProxyAddr6;
+ *proxylen = sizeof(SOCKADDR_IN6_LH);
+ }
+ else
+ return FALSE;
+ return TRUE;
+}
+
+
+//---------------------------------------------------------------------------
+// WSA_begin_connect
+//---------------------------------------------------------------------------
+
+
+_FX void WSA_begin_connect(WSA_SOCK* pSock, SOCKET s)
+{
+ if (pSock->lEvent)
+ __sys_WSAAsyncSelect(s, pSock->hWnd, 0, 0);
+
+ if (pSock->lNetworkEvents)
+ __sys_WSAEventSelect(s, NULL, 0);
+
+ if (pSock->NonBlocking) {
+ ULONG nb = FALSE;
+ __sys_ioctlsocket(s, FIONBIO, &nb);
+ }
+}
+
+
+//---------------------------------------------------------------------------
+// WSA_end_connect
+//---------------------------------------------------------------------------
+
+
+_FX int WSA_end_connect(WSA_SOCK* pSock, SOCKET s, int ret)
+{
+ int err = __sys_WSAGetLastError();
+
+ if (pSock->NonBlocking) {
+ ULONG nb = pSock->NonBlocking;
+ __sys_ioctlsocket(s, FIONBIO, &nb);
+ }
+
+ if ((pSock->lNetworkEvents & FD_CONNECT) != 0) {
+ pSock->lNetworkEvents &= ~FD_CONNECT;
+
+ SetEvent(pSock->hEventObject);
+
+ ret = -1;
+ err = WSAEWOULDBLOCK;
+ }
+ if(pSock->lNetworkEvents)
+ __sys_WSAEventSelect(s, pSock->hEventObject, pSock->lNetworkEvents);
+
+ if ((pSock->lEvent & FD_CONNECT) != 0) {
+ pSock->lEvent &= ~FD_CONNECT;
+
+ static P_PostMessage __sys_PostMessageW = NULL;
+ if(__sys_PostMessageW == NULL)
+ __sys_PostMessageW = Ldr_GetProcAddrNew(DllName_user32, L"PostMessageW","PostMessageW");
+ __sys_PostMessageW(pSock->hWnd, pSock->wMsg, s, FD_CONNECT);
+
+ ret = -1;
+ err = WSAEWOULDBLOCK;
+ }
+ if (pSock->lEvent)
+ __sys_WSAAsyncSelect(s, pSock->hWnd, pSock->wMsg, pSock->lEvent);
+
+ pSock->ConnectedSet = TRUE;
+
+ __sys_WSASetLastError(err);
+ return ret;
+}
+
+
//---------------------------------------------------------------------------
// WSA_connect
//---------------------------------------------------------------------------
@@ -631,6 +845,28 @@ _FX int WSA_connect(
if (WSA_IsBlockedTraffic(name, namelen, IPPROTO_TCP))
return SOCKET_ERROR;
+ void* proxy;
+ int proxylen;
+ if (WSA_ProxyEnabled && !is_localhost(name) && WSA_GetProxy(name, &proxy, &proxylen)) {
+
+ WSA_SOCK* pSock = WSA_GetSock(s, FALSE);
+ if (pSock) WSA_begin_connect(pSock, s);
+
+ int ret = __sys_connect(s, proxy, proxylen);
+ if (ret == 0) {
+
+ if (!socks5_handshake(s, WSA_Proxy->auth, WSA_Proxy->login, WSA_Proxy->pass) || socks5_request(s, name) != SOCKS_SUCCESS)
+ ret = SOCKET_ERROR;
+
+ if (ret != 0)
+ __sys_shutdown(s, SD_BOTH);
+ }
+
+ if (pSock) ret = WSA_end_connect(pSock, s, ret);
+
+ return ret;
+ }
+
BOOLEAN new_name = WSA_HandleAfUnix(&name, &namelen);
int ret = __sys_connect(s, name, namelen);
@@ -658,10 +894,31 @@ _FX int WSA_WSAConnect(
if (WSA_IsBlockedTraffic(name, namelen, IPPROTO_TCP))
return SOCKET_ERROR;
+ void* proxy;
+ int proxylen;
+ if (WSA_ProxyEnabled && !is_localhost(name) && WSA_GetProxy(name, &proxy, &proxylen)) {
+
+ WSA_SOCK* pSock = WSA_GetSock(s, FALSE);
+ if (pSock) WSA_begin_connect(pSock, s);
+
+ int ret = __sys_WSAConnect(s, proxy, proxylen, lpCallerData, lpCalleeData, lpSQOS, lpGQOS);
+ if (ret == 0) {
+
+ if (!socks5_handshake(s, WSA_Proxy->auth, WSA_Proxy->login, WSA_Proxy->pass) || socks5_request(s, name) != SOCKS_SUCCESS)
+ ret = SOCKET_ERROR;
+
+ if (ret != 0)
+ __sys_shutdown(s, SD_BOTH);
+ }
+
+ if (pSock) ret = WSA_end_connect(pSock, s, ret);
+
+ return ret;
+ }
+
BOOLEAN new_name = WSA_HandleAfUnix(&name, &namelen);
- int ret = __sys_WSAConnect(
- s, name, namelen, lpCallerData, lpCalleeData, lpSQOS, lpGQOS);
+ int ret = __sys_WSAConnect(s, name, namelen, lpCallerData, lpCalleeData, lpSQOS, lpGQOS);
if (new_name) Dll_Free((void*)name);
@@ -686,10 +943,39 @@ _FX int WSA_ConnectEx(
if (WSA_IsBlockedTraffic(name, namelen, IPPROTO_TCP))
return SOCKET_ERROR;
+ void* proxy;
+ int proxylen;
+ if (WSA_ProxyEnabled && !is_localhost(name) && WSA_GetProxy(name, &proxy, &proxylen)) {
+
+ WSA_SOCK* pSock = WSA_GetSock(s, FALSE);
+ if (pSock) WSA_begin_connect(pSock, s);
+
+ int ret = __sys_connect(s, proxy, proxylen);
+ if (ret == 0) {
+
+ if (!socks5_handshake(s, WSA_Proxy->auth, WSA_Proxy->login, WSA_Proxy->pass) || socks5_request(s, name) != SOCKS_SUCCESS)
+ ret = SOCKET_ERROR;
+
+ if (ret == 0 && lpSendBuffer) {
+ ret = __sys_send(s, (const char*)lpSendBuffer, dwSendDataLength, 0);
+ if (ret != SOCKET_ERROR) {
+ *lpdwBytesSent = ret;
+ ret = 0;
+ }
+ }
+
+ if (ret != 0)
+ __sys_shutdown(s, SD_BOTH);
+ }
+
+ if (pSock) ret = WSA_end_connect(pSock, s, ret);
+
+ return ret == 0;
+ }
+
BOOLEAN new_name = WSA_HandleAfUnix(&name, &namelen);
- int ret = __sys_ConnectEx(
- s, name, namelen, lpSendBuffer, dwSendDataLength, lpdwBytesSent, lpOverlapped);
+ int ret = __sys_ConnectEx(s, name, namelen, lpSendBuffer, dwSendDataLength, lpdwBytesSent, lpOverlapped);
if (new_name) Dll_Free((void*)name);
@@ -850,6 +1136,20 @@ _FX int WSA_WSARecvFrom(
}
*/
+
+//---------------------------------------------------------------------------
+// WSA_closesocket
+//---------------------------------------------------------------------------
+
+
+_FX int WSA_closesocket(SOCKET s)
+{
+ if (WSA_ProxyEnabled)
+ map_remove(&WSA_SockMap, (void*)s);
+ return __sys_closesocket(s);
+}
+
+
//---------------------------------------------------------------------------
// WSA_InitNetFwRules
//---------------------------------------------------------------------------
@@ -858,7 +1158,6 @@ _FX int WSA_WSARecvFrom(
_FX void WSA_InitNetFwRules()
{
WCHAR conf_buf[2048];
-
for (ULONG index = 0; ; ++index) {
NTSTATUS status = SbieApi_QueryConf(
@@ -867,8 +1166,8 @@ _FX void WSA_InitNetFwRules()
break;
ULONG level = -1;
- WCHAR* found_value = Config_MatchImageAndGetValue(conf_buf, Dll_ImageName, &level);
- if (!found_value)
+ WCHAR* value = Config_MatchImageAndGetValue(conf_buf, Dll_ImageName, &level);
+ if (!value)
continue;
NETFW_RULE* rule = NetFw_AllocRule(Dll_Pool, level);
@@ -877,12 +1176,126 @@ _FX void WSA_InitNetFwRules()
continue;
}
- NetFw_ParseRule(rule, found_value);
+ NetFw_ParseRule(rule, value);
NetFw_AddRule(&WSA_FwList, rule);
}
}
+//---------------------------------------------------------------------------
+// WSA_ParseNetProxy
+//---------------------------------------------------------------------------
+
+BOOLEAN WSA_ParseNetProxy(NETPROXY_RULE* proxy, const WCHAR* found_value)
+{
+ // NetworkUseProxy=explorer.exe,Address=198.98.55.77;Port=40000;Auth=No;Login=l2sxbnjqR5JJAAoCnA;Password=12OxyLTW9nma5HbNjC
+ // NetworkUseProxy=*,Address=abcd:0123:ffff:1d5c;Port=24;Auth=No
+
+ WCHAR* ip_value;
+ ULONG ip_len;
+ if (SbieDll_FindTagValuePtr(found_value, L"Address", &ip_value, &ip_len, L'=', L';')) {
+ ip_value[ip_len] = L'\0';
+ if (_inet_aton(ip_value, &proxy->WSA_ProxyAddr.sin_addr) == 1) {
+ proxy->WSA_ProxyAddr.sin_family = AF_INET;
+ proxy->af = AF_INET;
+ }
+ else if (_inet_pton(AF_INET6, ip_value, &proxy->WSA_ProxyAddr6.sin6_addr) == 1)
+ {
+ proxy->WSA_ProxyAddr6.sin6_family = AF_INET6;
+ proxy->af = AF_INET6;
+ }
+ else
+ return FALSE;
+ ip_value[ip_len] = L';';
+ }
+ else
+ return FALSE;
+
+ WCHAR* port_value;
+ ULONG port_len;
+ if (SbieDll_FindTagValuePtr(found_value, L"Port", &port_value, &port_len, L'=', L';')) {
+ int temp = _wntoi(port_value, port_len);
+ if (temp < 0 || temp > 0xFFFF)
+ return FALSE;
+
+ USHORT port = _ntohs((USHORT)temp);
+ if (proxy->af == AF_INET6)
+ proxy->WSA_ProxyAddr6.sin6_port = port;
+ else if (proxy->af == AF_INET)
+ proxy->WSA_ProxyAddr.sin_port = port;
+ }
+ else
+ return FALSE;
+
+ WCHAR* auth_value;
+ ULONG auth_len;
+ if (SbieDll_FindTagValuePtr(found_value, L"Auth", &auth_value, &auth_len, L'=', L';'))
+ proxy->auth = _wcsnicmp(auth_value, L"Yes", auth_len) == 0;
+
+ if (!proxy->auth) return TRUE;
+
+ WCHAR* login_value;
+ ULONG login_len;
+ if (SbieDll_FindTagValuePtr(found_value, L"Login", &login_value, &login_len, L'=', L';')) {
+ if (login_len > 255)
+ return FALSE;
+ wmemcpy(proxy->login, login_value, login_len);
+ proxy->login[login_len] = L'\0';
+ }
+
+ WCHAR* pass_value;
+ ULONG pass_len;
+ if (SbieDll_FindTagValuePtr(found_value, L"Password", &pass_value, &pass_len, L'=', L';')) {
+ if (pass_len > 255)
+ return FALSE;
+ wmemcpy(proxy->pass, pass_value, pass_len);
+ proxy->pass[pass_len] = L'\0';
+ }
+
+ return TRUE;
+}
+
+//---------------------------------------------------------------------------
+// WSA_InitNetProxy
+//---------------------------------------------------------------------------
+
+
+#define NETPROXY_MATCH_GLOBAL 2
+#define NETPROXY_MATCH_EXACT 0
+
+_FX BOOLEAN WSA_InitNetProxy()
+{
+ WCHAR proxy_buf[1024];
+ WSA_Proxy = Dll_Alloc(sizeof(NETPROXY_RULE));
+ memset(WSA_Proxy, 0, sizeof(NETPROXY_RULE));
+
+ BOOLEAN ok = FALSE;
+
+ for (ULONG index = 0; ; ++index) {
+ NTSTATUS status = SbieApi_QueryConf(
+ NULL, L"NetworkUseProxy", index, proxy_buf, sizeof(proxy_buf) - 16 * sizeof(WCHAR));
+ if (!NT_SUCCESS(status))
+ break;
+
+ ULONG level = -1;
+ WCHAR* value = Config_MatchImageAndGetValue(proxy_buf, Dll_ImageName, &level);
+ if (!value || (level != NETPROXY_MATCH_EXACT && level != NETPROXY_MATCH_GLOBAL))
+ continue;
+
+ ok = WSA_ParseNetProxy(WSA_Proxy, value);
+ if (ok)
+ break;
+ }
+
+ if (!ok) {
+ Dll_Free(WSA_Proxy);
+ WSA_Proxy = NULL;
+ return FALSE;
+ }
+
+ return TRUE;
+}
+
//---------------------------------------------------------------------------
// WSA_Init
@@ -892,6 +1305,13 @@ _FX void WSA_InitNetFwRules()
_FX BOOLEAN WSA_Init(HMODULE module)
{
P_WSAIoctl WSAIoctl;
+
+ P_ioctlsocket ioctlsocket;
+ P_WSAAsyncSelect WSAAsyncSelect;
+ P_WSAEventSelect WSAEventSelect;
+
+ P_WSAEnumNetworkEvents WSAEnumNetworkEvents;
+
P_WSANSPIoctl WSANSPIoctl;
P_WSASocketW WSASocketW;
@@ -907,24 +1327,8 @@ _FX BOOLEAN WSA_Init(HMODULE module)
P_WSASendTo WSASendTo;
/*P_recvfrom recvfrom;
P_WSARecvFrom WSARecvFrom;*/
-
-
- WSAIoctl = (P_WSAIoctl)GetProcAddress(module, "WSAIoctl");
- if (WSAIoctl) {
- SBIEDLL_HOOK(WSA_,WSAIoctl);
- }
-
- WSANSPIoctl = (P_WSANSPIoctl)GetProcAddress(module, "WSANSPIoctl");
- if (WSANSPIoctl) {
- SBIEDLL_HOOK(WSA_,WSANSPIoctl);
- }
-
-
- bind = (P_bind)GetProcAddress(module, "bind");
- if (bind) {
- SBIEDLL_HOOK(WSA_,bind);
- }
-
+ P_closesocket closesocket;
+ P_GetAddrInfoW GetAddrInfoW;
//
// initialize the network firewall rule list and hook the relevant functions
@@ -938,69 +1342,160 @@ _FX BOOLEAN WSA_Init(HMODULE module)
else // load rules only when the driver is not doing the filtering
WSA_InitNetFwRules();
+ //
+ // Initialize network proxy
+ //
- if (! Dll_SkipHook(L"wsaconn")) {
+ if (WSA_InitNetProxy()) {
- WSASocketW = (P_WSASocketW)GetProcAddress(module, "WSASocketW");
- if (WSASocketW) {
- SBIEDLL_HOOK(WSA_,WSASocketW);
- }
+ WSA_ProxyEnabled = TRUE;
- // TCP
- connect = (P_connect)GetProcAddress(module, "connect");
- if (connect) {
- SBIEDLL_HOOK(WSA_,connect);
- }
+ map_init(&WSA_SockMap, Dll_Pool);
+ }
- WSAConnect = (P_WSAConnect)GetProcAddress(module, "WSAConnect");
- if (WSAConnect) {
- SBIEDLL_HOOK(WSA_,WSAConnect);
- }
+ //
+ // hook required WS2 functions
+ //
- /*accept = (P_accept)GetProcAddress(module, "accept");
- if (accept) {
- SBIEDLL_HOOK(WSA_,accept);
- }
+ WSAIoctl = (P_WSAIoctl)GetProcAddress(module, "WSAIoctl");
+ if (WSAIoctl) {
+ SBIEDLL_HOOK(WSA_,WSAIoctl);
+ }
- WSAAccept = (P_WSAAccept)GetProcAddress(module, "WSAAccept");
- if (WSAAccept) {
- SBIEDLL_HOOK(WSA_,WSAAccept);
- }*/
+ __sys_WSAGetLastError = (P_WSAGetLastError)GetProcAddress(module, "WSAGetLastError");
+ __sys_WSASetLastError = (P_WSASetLastError)GetProcAddress(module, "WSASetLastError");
+
+ if (WSA_ProxyEnabled) {
+
+ //
+ // Note: for our proxy implementation we need to have the sockets in blocking mode
+ // unfortinately windows does not provide a way to query the blockign flag
+ // not even when asking the driver directly :(
+ // Hence we need to monitor the below calls and maintain and cache the blockign state
//
- // UDP
- sendto = (P_sendto)GetProcAddress(module, "sendto");
- if (sendto) {
- SBIEDLL_HOOK(WSA_,sendto);
+ //int InputBuffer[] = { 2,0,0,0 };
+ //((char*)&InputBuffer[2])[0] = 1;
+ //Status = NtDeviceIoControlFile((HANDLE)sock, NULL, 0i64, 0i64, &IoStatusBlock, /*IOCTL_AFD_SET_INFORMATION*/ 0x1203B, InputBuffer, 0x10u, 0i64, 0); // Set blocking -> STATUS_SUCCESS
+ //Status = NtDeviceIoControlFile((HANDLE)sock, NULL, 0i64, 0i64, &IoStatusBlock, /*IOCTL_AFD_SET_INFORMATION*/ 0x1207b, InputBuffer, 0x10u, InputBuffer, 0x10u); // Get blocking -> STATUS_INVALID_PARAMETER :(
+
+ ioctlsocket = (P_ioctlsocket)GetProcAddress(module, "ioctlsocket");
+ if (ioctlsocket) {
+ SBIEDLL_HOOK(WSA_,ioctlsocket);
}
- WSASendTo = (P_WSASendTo)GetProcAddress(module, "WSASendTo");
- if (WSASendTo) {
- SBIEDLL_HOOK(WSA_,WSASendTo);
+ WSAAsyncSelect = (P_WSAAsyncSelect)GetProcAddress(module, "WSAAsyncSelect");
+ if (WSAAsyncSelect) {
+ SBIEDLL_HOOK(WSA_,WSAAsyncSelect);
}
- /*recvfrom = (P_recvfrom)GetProcAddress(module, "recvfrom");
- if (recvfrom) {
- SBIEDLL_HOOK(WSA_,recvfrom);
+ WSAEventSelect = (P_WSAEventSelect)GetProcAddress(module, "WSAEventSelect");
+ if (WSAEventSelect) {
+ SBIEDLL_HOOK(WSA_,WSAEventSelect);
}
- WSARecvFrom = (P_WSARecvFrom)GetProcAddress(module, "WSARecvFrom");
- if (WSARecvFrom) {
- SBIEDLL_HOOK(WSA_,WSARecvFrom);
- }*/
- //
+ WSAEnumNetworkEvents = (P_WSAEnumNetworkEvents)GetProcAddress(module, "WSAEnumNetworkEvents");
+ if (WSAEnumNetworkEvents) {
+ SBIEDLL_HOOK(WSA_,WSAEnumNetworkEvents);
+ }
+
+ __sys_recv = (P_recv)GetProcAddress(module, "recv");
+ __sys_send = (P_send)GetProcAddress(module, "send");
+ }
+
+ if (!Dll_CompartmentMode) {
+ WSANSPIoctl = (P_WSANSPIoctl)GetProcAddress(module, "WSANSPIoctl");
+ if (WSANSPIoctl) {
+ SBIEDLL_HOOK(WSA_, WSANSPIoctl);
+ }
+ }
+
+ bind = (P_bind)GetProcAddress(module, "bind");
+ if (bind) {
+ SBIEDLL_HOOK(WSA_,bind);
+ }
+
+ WSASocketW = (P_WSASocketW)GetProcAddress(module, "WSASocketW");
+ if (WSASocketW) {
+ SBIEDLL_HOOK(WSA_,WSASocketW);
+ }
+
+ //if (! Dll_SkipHook(L"wsaconn")) {
+
+ // TCP
+ connect = (P_connect)GetProcAddress(module, "connect");
+ if (connect) {
+ SBIEDLL_HOOK(WSA_,connect);
+ }
+
+ WSAConnect = (P_WSAConnect)GetProcAddress(module, "WSAConnect");
+ if (WSAConnect) {
+ SBIEDLL_HOOK(WSA_,WSAConnect);
+ }
+
+ //}
+
+ /*accept = (P_accept)GetProcAddress(module, "accept");
+ if (accept) {
+ SBIEDLL_HOOK(WSA_,accept);
+ }
+
+ WSAAccept = (P_WSAAccept)GetProcAddress(module, "WSAAccept");
+ if (WSAAccept) {
+ SBIEDLL_HOOK(WSA_,WSAAccept);
+ }*/
+ //
+
+ // UDP
+ sendto = (P_sendto)GetProcAddress(module, "sendto");
+ if (sendto) {
+ SBIEDLL_HOOK(WSA_,sendto);
+ }
+
+ WSASendTo = (P_WSASendTo)GetProcAddress(module, "WSASendTo");
+ if (WSASendTo) {
+ SBIEDLL_HOOK(WSA_,WSASendTo);
+ }
+
+ /*recvfrom = (P_recvfrom)GetProcAddress(module, "recvfrom");
+ if (recvfrom) {
+ SBIEDLL_HOOK(WSA_,recvfrom);
+ }
+
+ WSARecvFrom = (P_WSARecvFrom)GetProcAddress(module, "WSARecvFrom");
+ if (WSARecvFrom) {
+ SBIEDLL_HOOK(WSA_,WSARecvFrom);
+ }*/
+ //
- // used for accept
- //__sys_closesocket = (P_closesocket)GetProcAddress(module, "closesocket");
+ __sys_shutdown = (P_shutdown)GetProcAddress(module, "shutdown");
+
+ __sys_inet_ntop = (P_inet_ntop)GetProcAddress(module, "inet_ntop");
+ if(WSA_ProxyEnabled && SbieApi_QueryConfBool(NULL, L"NetworkProxyResolveHostnames", FALSE)) {
+ map_init(&DNS_LookupMap, Dll_Pool);
+
+ GetAddrInfoW = (P_GetAddrInfoW)GetProcAddress(module, "GetAddrInfoW");
+ if (GetAddrInfoW) {
+ SBIEDLL_HOOK(WSA_,GetAddrInfoW);
+ }
}
- {
- // If there are any NetFwTrace options set, then output this debug string
- WCHAR wsTraceOptions[4];
- if (SbieApi_QueryConf(NULL, L"NetFwTrace", 0, wsTraceOptions, sizeof(wsTraceOptions)) == STATUS_SUCCESS && wsTraceOptions[0] != L'\0')
- WSA_TraceFlag = TRUE;
+ closesocket = (P_closesocket)GetProcAddress(module, "closesocket");
+ if (closesocket) {
+ SBIEDLL_HOOK(WSA_,closesocket);
}
+ // If there are any NetFwTrace options set, then output this debug string
+ WCHAR wsTraceOptions[4];
+ if (SbieApi_QueryConf(NULL, L"NetFwTrace", 0, wsTraceOptions, sizeof(wsTraceOptions)) == STATUS_SUCCESS && wsTraceOptions[0] != L'\0')
+ WSA_TraceFlag = TRUE;
+
+ //
+ // Initialize DNS filter
+ //
+
+ WSA_InitNetDnsFilter(module);
+
return TRUE;
}
@@ -1236,3 +1731,39 @@ _FX HRESULT Net_Common_ImageNamePut(
return hr;
}
+
+
+//---------------------------------------------------------------------------
+// WSA_GetAddrInfoW
+//---------------------------------------------------------------------------
+
+
+_FX int WSA_GetAddrInfoW(
+ PCWSTR pNodeName,
+ PCWSTR pServiceName,
+ const ADDRINFOW* pHints,
+ PADDRINFOW* ppResult)
+{
+ int ret = __sys_GetAddrInfoW(pNodeName, pServiceName, pHints, ppResult);
+ if (ret == 0 && pNodeName && ppResult) {
+ size_t len = wcslen(pNodeName) + 1;
+ char* host = Dll_AllocTemp(len * 2);
+ if (!host) {
+ SbieApi_Log(2305, NULL);
+ return ret;
+ }
+ wcstombs(host, pNodeName, len);
+ host[len - 1] = '\0';
+
+ ADDRINFOW* pResult = *ppResult;
+ if (pResult->ai_family == AF_INET) {
+ SOCKADDR_IN* pAddr = (SOCKADDR_IN*)pResult->ai_addr;
+ map_insert(&DNS_LookupMap, (void*)pAddr->sin_addr.s_addr, host, len);
+ } else if (pResult->ai_family == AF_INET6) {
+ SOCKADDR_IN6_LH* pAddr = (SOCKADDR_IN6_LH*)pResult->ai_addr;
+ map_insert(&DNS_LookupMap, (void*)pAddr->sin6_addr.s6_addr, host, len);
+ }
+ Dll_Free(host);
+ }
+ return ret;
+}
diff --git a/Sandboxie/core/dll/proxy.c b/Sandboxie/core/dll/proxy.c
new file mode 100644
index 00000000..7e5d18d5
--- /dev/null
+++ b/Sandboxie/core/dll/proxy.c
@@ -0,0 +1,298 @@
+/*
+ * Copyright 2022 David Xanatos, xanasoft.com
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+//---------------------------------------------------------------------------
+// Network Proxy
+//---------------------------------------------------------------------------
+
+#include "dll.h"
+
+#include
+#include
+#include
+#include "common/my_wsa.h"
+#include "common/netfw.h"
+#include "common/map.h"
+#include "wsa_defs.h"
+
+
+#define SOCKS_VERSION 0x05
+#define SOCKS_SUBVERSION 0x01
+
+// authentication methods
+#define SOCKS_NO_AUTHENTICATION 0x00
+#define SOCKS_USERNAME_PASSWORD 0x02
+#define SOCKS_METHOD_NONE 0xFF
+
+// response codes
+//#define SOCKS_SUCCESS 0x00
+#define SOCKS_SERVER_FAILURE 0x01
+#define SOCKS_DENIED 0x02
+#define SOCKS_NETWORK_UNREACHABLE 0x03
+#define SOCKS_HOST_UNREACHABLE 0x04
+#define SOCKS_CONNECTION_REFUSED 0x05
+#define SOCKS_TTL_EXPIRED 0x06
+
+// address types
+#define SOCKS_CONNECT 0x01
+#define SOCKS_IPV4 0x01
+#define SOCKS_DOMAINNAME 0x03
+#define SOCKS_IPV6 0x04
+
+#define SOCKS_RESPONSE_MAX_SIZE 512
+#define SOCKS_REQUEST_MAX_SIZE 264
+#define SOCKS_AUTH_MAX_SIZE 255
+
+#define HOST_NAME_MAX 256
+#define INET_ADDRSTRLEN 16
+#define INET6_ADDRSTRLEN 46
+
+extern P_recv __sys_recv;
+extern P_send __sys_send;
+extern P_inet_ntop __sys_inet_ntop;
+extern HASH_MAP DNS_LookupMap;
+
+//---------------------------------------------------------------------------
+// socks5_handshake
+//---------------------------------------------------------------------------
+
+
+_FX BOOLEAN socks5_handshake(SOCKET s, BOOLEAN auth, WCHAR login[SOCKS_AUTH_MAX_SIZE], WCHAR pass[SOCKS_AUTH_MAX_SIZE])
+{
+ char req[4] = { SOCKS_VERSION, 1 + auth, SOCKS_NO_AUTHENTICATION, 0 };
+
+ if (auth)
+ req[3] = SOCKS_USERNAME_PASSWORD;
+
+ if (__sys_send(s, req, 3 + auth, 0) != sizeof(req))
+ goto on_error;
+
+ char res[2];
+ if (__sys_recv(s, res, sizeof(res), MSG_WAITALL) != sizeof(res))
+ goto on_error;
+
+ if (res[0] != SOCKS_VERSION) {
+ SbieApi_Log(2360, L"SOCKS version mismatch: expected '%d', got '%d'", SOCKS_VERSION, res[0]);
+ goto on_error;
+ }
+
+ switch (res[1]) {
+ case SOCKS_NO_AUTHENTICATION:
+ return TRUE;
+ case SOCKS_USERNAME_PASSWORD:
+ if (!auth || !login || !pass) {
+ SbieApi_Log(2360, L"authentication required, but no credentials provided");
+ goto on_error;
+ }
+ char l[SOCKS_AUTH_MAX_SIZE];
+ char p[SOCKS_AUTH_MAX_SIZE];
+ size_t login_len = wcstombs(l, login, SOCKS_AUTH_MAX_SIZE);
+ size_t pass_len = wcstombs(p, pass, SOCKS_AUTH_MAX_SIZE);
+
+ size_t auth_buf_len = 1 + 1 + login_len + 1 + pass_len;
+ char* auth_buf = Dll_AllocTemp(auth_buf_len);
+ if (!auth_buf) {
+ SbieApi_Log(2305, NULL);
+ goto on_error;
+ }
+
+ size_t offset = 0;
+ auth_buf[offset++] = SOCKS_SUBVERSION;
+ auth_buf[offset++] = login_len;
+ memcpy(auth_buf + offset, l, login_len);
+ offset += login_len;
+ auth_buf[offset++] = (char)pass_len;
+ memcpy(auth_buf + offset, p, pass_len);
+ offset += pass_len;
+
+ if (__sys_send(s, auth_buf, auth_buf_len , 0) != auth_buf_len) {
+ Dll_Free(auth_buf);
+ goto on_error;
+ }
+ Dll_Free(auth_buf);
+
+ if (__sys_recv(s, res, sizeof(res), MSG_WAITALL) != sizeof(res))
+ goto on_error;
+
+ if (res[0] != SOCKS_SUBVERSION) {
+ SbieApi_Log(2360, L"subnegotiation version mismatch: expected '%d', got '%d'", SOCKS_SUBVERSION, res[0]);
+ goto on_error;
+ }
+
+ if (res[1] != SOCKS_SUCCESS) {
+ SbieApi_Log(2360, L"authentication failed");
+ goto on_error;
+ }
+
+ return TRUE;
+ default:
+ SbieApi_Log(2360, L"no acceptable authentication method");
+ break;
+ }
+
+on_error:
+ return FALSE;
+}
+
+
+//---------------------------------------------------------------------------
+// socks5_request_send
+//---------------------------------------------------------------------------
+
+
+static char socks5_request_send(SOCKET s, char* buf, size_t size)
+{
+ if (__sys_send(s, buf, size, 0) != size)
+ return SOCKS_GENERAL_FAILURE;
+
+ char res[SOCKS_RESPONSE_MAX_SIZE] = { 0 };
+ if (__sys_recv(s, res, 4, 0) == SOCKET_ERROR)
+ return SOCKS_GENERAL_FAILURE;
+
+ if (res[1] != SOCKS_SUCCESS)
+ return res[1];
+
+ if (res[3] == SOCKS_IPV4) {
+ if (__sys_recv(s, res + 4, 6, MSG_WAITALL) == SOCKET_ERROR)
+ return SOCKS_GENERAL_FAILURE;
+ }
+ else if (res[3] == SOCKS_IPV6) {
+ if (__sys_recv(s, res + 4, 18, MSG_WAITALL) == SOCKET_ERROR)
+ return SOCKS_GENERAL_FAILURE;
+ }
+ else {
+ return SOCKS_GENERAL_FAILURE;
+ }
+
+ return SOCKS_SUCCESS;
+}
+
+//---------------------------------------------------------------------------
+// socks5_report_error
+//---------------------------------------------------------------------------
+
+_FX void socks5_report_error(int code, const char* buf)
+{
+ char* host = NULL;
+ USHORT port = 0;
+ if (buf[3] == SOCKS_IPV4) {
+ host = Dll_AllocTemp(INET_ADDRSTRLEN);
+ if (!host) return;
+ const IN_ADDR* v4 = (const IN_ADDR*)(buf + 4);
+ __sys_inet_ntop(AF_INET, v4, host, INET_ADDRSTRLEN);
+ port = _ntohs(*((USHORT*)(buf + 8)));
+ }
+ else if (buf[3] == SOCKS_IPV6) {
+ host = Dll_AllocTemp(INET6_ADDRSTRLEN);
+ if (!host) return;
+ const IN6_ADDR* v6 = (const IN6_ADDR*)(buf + 4);
+ __sys_inet_ntop(AF_INET6, v6, host, INET6_ADDRSTRLEN);
+ port = _ntohs(*((USHORT*)(buf + 20)));
+ }
+ else if (buf[3] == SOCKS_DOMAINNAME) {
+ size_t domain_len = buf[4];
+ host = Dll_AllocTemp(domain_len + 1);
+ if (!host) return;
+ memcpy(host, buf + 5, domain_len);
+ host[domain_len] = '\0';
+ port = _ntohs(*((USHORT*)(buf + 5 + domain_len)));
+ }
+ if (!host) return;
+
+ switch (code) {
+ case SOCKS_SERVER_FAILURE:
+ SbieApi_Log(2360, L"general server failure (%s:%hu)", host, port);
+ break;
+ case SOCKS_DENIED:
+ SbieApi_Log(2360, L"connection denied by server ruleset (%s:%hu)", host, port);
+ break;
+ case SOCKS_NETWORK_UNREACHABLE:
+ SbieApi_Log(2360, L"network unreachable (%s:%hu)", host, port);
+ break;
+ case SOCKS_HOST_UNREACHABLE:
+ SbieApi_Log(2360, L"host unreachable (%s:%hu)", host, port);
+ break;
+ case SOCKS_CONNECTION_REFUSED:
+ SbieApi_Log(2360, L"connection refused (%s:%hu)", host, port);
+ break;
+ case SOCKS_TTL_EXPIRED:
+ SbieApi_Log(2360, L"TTL expired (%s:%hu)", host, port);
+ break;
+ default:
+ SbieApi_Log(2360, L"request failed with status %d (%s:%hu)", code, host, port);
+ break;
+ }
+
+ Dll_Free(host);
+}
+
+//---------------------------------------------------------------------------
+// socks5_request
+//---------------------------------------------------------------------------
+
+_FX char socks5_request(SOCKET s, const SOCKADDR* addr)
+{
+ char req[SOCKS_REQUEST_MAX_SIZE] = { SOCKS_VERSION, SOCKS_CONNECT, 0 };
+
+ char* ptr = req + 3;
+ if (addr->sa_family == AF_INET) {
+ const SOCKADDR_IN* v4 = (const SOCKADDR_IN*)addr;
+ char* domain = (char*)map_get(&DNS_LookupMap, (void*)v4->sin_addr.s_addr);
+ if (domain) {
+ *ptr++ = SOCKS_DOMAINNAME;
+ *ptr++ = strlen(domain);
+ memcpy(ptr, domain, strlen(domain));
+ ptr += strlen(domain);
+ *((USHORT*)ptr) = v4->sin_port;
+ ptr += sizeof(USHORT);
+ }
+ else {
+ *ptr++ = SOCKS_IPV4;
+ *((ULONG*)ptr) = v4->sin_addr.s_addr;
+ ptr += sizeof(ULONG);
+ *((USHORT*)ptr) = v4->sin_port;
+ ptr += sizeof(USHORT);
+ }
+ }
+ else if (addr->sa_family == AF_INET6) {
+ const SOCKADDR_IN6_LH* v6 = (const SOCKADDR_IN6_LH*)addr;
+ char* domain = (char*)map_get(&DNS_LookupMap, (void*)&v6->sin6_addr.s6_addr);
+ if (domain) {
+ *ptr++ = SOCKS_DOMAINNAME;
+ *ptr++ = strlen(domain);
+ memcpy(ptr, domain, strlen(domain));
+ ptr += strlen(domain);
+ *((USHORT*)ptr) = v6->sin6_port;
+ ptr += sizeof(USHORT);
+ }
+ else {
+ *ptr++ = SOCKS_IPV6;
+ memcpy(ptr, &v6->sin6_addr, sizeof(v6->sin6_addr));
+ ptr += sizeof(v6->sin6_addr);
+ *((USHORT*)ptr) = v6->sin6_port;
+ ptr += sizeof(USHORT);
+ }
+ }
+ else {
+ return SOCKS_GENERAL_FAILURE;
+ }
+
+ int ret = socks5_request_send(s, req, ptr - req);
+ if (ret != SOCKS_SUCCESS)
+ socks5_report_error(ret, req);
+ return ret;
+}
diff --git a/Sandboxie/core/dll/sbiedll.h b/Sandboxie/core/dll/sbiedll.h
index cdbf063c..2759f446 100644
--- a/Sandboxie/core/dll/sbiedll.h
+++ b/Sandboxie/core/dll/sbiedll.h
@@ -42,6 +42,7 @@ extern "C" {
// Defines
//---------------------------------------------------------------------------
+#define USE_MATCH_PATH_EX
#define TokenElevationTypeNone 99
@@ -244,6 +245,38 @@ SBIEDLL_EXPORT PSECURITY_DESCRIPTOR SbieDll_GetPublicSD();
SBIEDLL_EXPORT const WCHAR* SbieDll_FindArgumentEnd(const WCHAR* arguments);
+#ifdef USE_MATCH_PATH_EX
+//SBIEDLL_EXPORT ULONG SbieDll_MatchPathImpl(BOOLEAN use_rule_specificity, BOOLEAN use_privacy_mode, const WCHAR* path, void* normal_list, void* open_list, void* closed_list, void* write_list, void* read_list);
+SBIEDLL_EXPORT ULONG SbieDll_MatchPathImpl(BOOLEAN use_rule_specificity, const WCHAR* path, void* normal_list, void* open_list, void* closed_list, void* write_list, void* read_list);
+#else
+SBIEDLL_EXPORT ULONG SbieDll_MatchPathImpl(const WCHAR* path, void* open_list, void* closed_list, void* write_list);
+#endif
+
+#define PATH_OPEN_FLAG 0x10
+#define PATH_CLOSED_FLAG 0x20
+#define PATH_WRITE_FLAG 0x40
+#define PATH_READ_FLAG 0x80
+
+#ifdef USE_MATCH_PATH_EX
+// for read only paths, handle like open and let the driver deny the write access
+#define PATH_IS_OPEN(f) ((((f) & PATH_OPEN_FLAG) != 0) || PATH_IS_READ(f))
+#define PATH_NOT_OPEN(f) ((((f) & PATH_OPEN_FLAG) == 0) && PATH_NOT_READ(f))
+#else
+#define PATH_IS_OPEN(f) (((f) & PATH_OPEN_FLAG) != 0)
+#define PATH_NOT_OPEN(f) (((f) & PATH_OPEN_FLAG) == 0)
+#endif
+
+#define PATH_IS_CLOSED(f) (((f) & PATH_CLOSED_FLAG) != 0)
+#define PATH_NOT_CLOSED(f) (((f) & PATH_CLOSED_FLAG) == 0)
+
+#define PATH_IS_WRITE(f) (((f) & PATH_WRITE_FLAG) != 0)
+#define PATH_NOT_WRITE(f) (((f) & PATH_WRITE_FLAG) == 0)
+
+#define PATH_IS_READ(f) (((f) & PATH_READ_FLAG) != 0)
+#define PATH_NOT_READ(f) (((f) & PATH_READ_FLAG) == 0)
+
+
+
SBIEDLL_EXPORT void DbgPrint(const char* format, ...);
SBIEDLL_EXPORT void DbgTrace(const char* format, ...);
diff --git a/Sandboxie/core/dll/wsa_defs.h b/Sandboxie/core/dll/wsa_defs.h
new file mode 100644
index 00000000..658e792f
--- /dev/null
+++ b/Sandboxie/core/dll/wsa_defs.h
@@ -0,0 +1,284 @@
+/*
+ * Copyright 2022 DavidXanatos, xanasoft.com
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+
+#ifndef _WSA_DEFS_H
+#define _WSA_DEFS_H
+
+//---------------------------------------------------------------------------
+// Prototypes
+//---------------------------------------------------------------------------
+
+typedef int (*P_WSAIoctl)(
+ SOCKET s,
+ DWORD dwIoControlCode,
+ LPVOID lpvInBuffer,
+ DWORD cbInBuffer,
+ LPVOID lpvOutBuffer,
+ DWORD cbOutBuffer,
+ LPDWORD lpcbBytesReturned,
+ LPWSAOVERLAPPED lpOverlapped,
+ LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
+
+typedef int (*P_ioctlsocket)(
+ SOCKET s,
+ long cmd,
+ ULONG* argp);
+
+typedef int (*P_WSAAsyncSelect)(
+ SOCKET s,
+ HWND hWnd,
+ UINT wMsg,
+ long lEvent);
+
+typedef int (*P_WSAEventSelect)(
+ SOCKET s,
+ void* hEventObject,
+ long lNetworkEvents);
+
+typedef int (*P_WSAEnumNetworkEvents)(
+ SOCKET s,
+ void* hEventObject,
+ void* lpNetworkEvents
+);
+
+typedef int (*P_WSANSPIoctl)(
+ HANDLE hLookup,
+ DWORD dwControlCode,
+ LPVOID lpvInBuffer,
+ DWORD cbInBuffer,
+ LPVOID lpvOutBuffer,
+ DWORD cbOutBuffer,
+ LPDWORD lpcbBytesReturned,
+ LPWSACOMPLETION lpCompletion);
+
+typedef int (*P_WSASocketW)(
+ int af,
+ int type,
+ int protocol,
+ LPWSAPROTOCOL_INFOW lpProtocolInfo,
+ unsigned int g,
+ DWORD dwFlags);
+
+typedef int (*P_WSAGetLastError)();
+
+typedef int (*P_WSASetLastError)(int err);
+
+typedef int (*P_bind)(
+ SOCKET s,
+ const void *name,
+ int namelen);
+
+typedef int (*P_connect)(
+ SOCKET s,
+ const void *name,
+ int namelen);
+
+typedef int (*P_WSAConnect)(
+ SOCKET s,
+ const void *name,
+ int namelen,
+ LPWSABUF lpCallerData,
+ LPWSABUF lpCalleeData,
+ LPQOS lpSQOS,
+ LPQOS lpGQOS);
+
+typedef int (*P_ConnectEx) (
+ SOCKET s,
+ const void *name,
+ int namelen,
+ PVOID lpSendBuffer,
+ DWORD dwSendDataLength,
+ LPDWORD lpdwBytesSent,
+ LPOVERLAPPED lpOverlapped);
+
+typedef SOCKET (*P_accept)(
+ SOCKET s,
+ void *addr,
+ int *addrlen);
+
+typedef SOCKET (*P_WSAAccept)(
+ SOCKET s,
+ void *addr,
+ LPINT addrlen,
+ LPCONDITIONPROC lpfnCondition,
+ DWORD_PTR dwCallbackData);
+
+typedef int (*P_AcceptEx)(
+ SOCKET sListenSocket,
+ SOCKET sAcceptSocket,
+ PVOID lpOutputBuffer,
+ DWORD dwReceiveDataLength,
+ DWORD dwLocalAddressLength,
+ DWORD dwRemoteAddressLength,
+ LPDWORD lpdwBytesReceived,
+ LPOVERLAPPED lpOverlapped);
+
+typedef int (*P_recv)(
+ SOCKET s,
+ char* buf,
+ int len,
+ int flags);
+
+typedef int (*P_send)(
+ SOCKET s,
+ const char* buf,
+ int len,
+ int flags);
+
+typedef int (*P_sendto)(
+ SOCKET s,
+ const char *buf,
+ int len,
+ int flags,
+ const void *to,
+ int tolen);
+
+typedef int (*P_WSASendTo)(
+ SOCKET s,
+ LPWSABUF lpBuffers,
+ DWORD dwBufferCount,
+ LPDWORD lpNumberOfBytesSent,
+ DWORD dwFlags,
+ const void *lpTo,
+ int iTolen,
+ LPWSAOVERLAPPED lpOverlapped,
+ LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
+
+typedef int (*P_recvfrom)(
+ SOCKET s,
+ char *buf,
+ int len,
+ int flags,
+ void *from,
+ int *fromlen);
+
+typedef int (*P_WSARecvFrom)(
+ SOCKET s,
+ LPWSABUF lpBuffers,
+ DWORD dwBufferCount,
+ LPDWORD lpNumberOfBytesRecvd,
+ LPDWORD lpFlags,
+ void *lpFrom,
+ LPINT lpFromlen,
+ LPWSAOVERLAPPED lpOverlapped,
+ LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
+
+typedef int (*P_shutdown)(SOCKET s, int how);
+
+typedef int (*P_closesocket)(SOCKET s);
+
+
+
+
+
+typedef enum _WSAEcomparator
+{
+ COMP_EQUAL = 0,
+ COMP_NOTLESS
+} WSAECOMPARATOR, *PWSAECOMPARATOR, *LPWSAECOMPARATOR;
+
+typedef struct _WSAVersion
+{
+ DWORD dwVersion;
+ WSAECOMPARATOR ecHow;
+}WSAVERSION, *PWSAVERSION, *LPWSAVERSION;
+
+typedef struct _AFPROTOCOLS {
+ INT iAddressFamily;
+ INT iProtocol;
+} AFPROTOCOLS, *PAFPROTOCOLS, *LPAFPROTOCOLS;
+
+typedef struct _SOCKET_ADDRESS {
+ LPSOCKADDR lpSockaddr;
+ INT iSockaddrLength;
+} SOCKET_ADDRESS, *PSOCKET_ADDRESS, *LPSOCKET_ADDRESS;
+
+typedef struct _CSADDR_INFO {
+ SOCKET_ADDRESS LocalAddr ;
+ SOCKET_ADDRESS RemoteAddr ;
+ INT iSocketType ;
+ INT iProtocol ;
+} CSADDR_INFO, *PCSADDR_INFO, FAR * LPCSADDR_INFO ;
+
+typedef struct _WSAQuerySetW
+{
+ DWORD dwSize;
+ LPWSTR lpszServiceInstanceName;
+ LPGUID lpServiceClassId;
+ LPWSAVERSION lpVersion;
+ LPWSTR lpszComment;
+ DWORD dwNameSpace;
+ LPGUID lpNSProviderId;
+ LPWSTR lpszContext;
+ DWORD dwNumberOfProtocols;
+ LPAFPROTOCOLS lpafpProtocols;
+ LPWSTR lpszQueryString;
+ DWORD dwNumberOfCsAddrs;
+ LPCSADDR_INFO lpcsaBuffer;
+ DWORD dwOutputFlags;
+ LPBLOB lpBlob;
+} WSAQUERYSETW, *PWSAQUERYSETW, *LPWSAQUERYSETW;
+
+struct hostent {
+ char FAR * h_name; /* official name of host */
+ char FAR * FAR * h_aliases; /* alias list */
+ short h_addrtype; /* host address type */
+ short h_length; /* length of address */
+ char FAR * FAR * h_addr_list; /* list of addresses */
+#define h_addr h_addr_list[0] /* address, for backward compat */
+};
+
+typedef struct hostent HOSTENT;
+
+typedef int (*P_WSALookupServiceBeginW)(
+ LPWSAQUERYSETW lpqsRestrictions,
+ DWORD dwControlFlags,
+ LPHANDLE lphLookup);
+
+typedef int (*P_WSALookupServiceNextW)(
+ HANDLE hLookup,
+ DWORD dwControlFlags,
+ LPDWORD lpdwBufferLength,
+ LPWSAQUERYSETW lpqsResults);
+
+typedef int (*P_WSALookupServiceEnd)(HANDLE hLookup);
+
+typedef struct addrinfoW {
+ int ai_flags;
+ int ai_family;
+ int ai_socktype;
+ int ai_protocol;
+ size_t ai_addrlen;
+ PWSTR ai_canonname;
+ struct sockaddr *ai_addr;
+ struct addrinfoW *ai_next;
+} ADDRINFOW, *PADDRINFOW;
+
+typedef int (*P_GetAddrInfoW)(
+ PCWSTR pNodeName,
+ PCWSTR pServiceName,
+ const ADDRINFOW *pHints,
+ PADDRINFOW *ppResult);
+
+typedef PCSTR (*P_inet_ntop)(
+ int family,
+ const void *pAddr,
+ PSTR pStringBuf,
+ size_t StringBufSize);
+
+#endif _WSA_DEFS_H
\ No newline at end of file
diff --git a/Sandboxie/core/drv/api_flags.h b/Sandboxie/core/drv/api_flags.h
index 6d189da8..13b2ce7b 100644
--- a/Sandboxie/core/drv/api_flags.h
+++ b/Sandboxie/core/drv/api_flags.h
@@ -59,6 +59,7 @@
#define MONITOR_SCM 0x0000000E // Service Control Manager
#define MONITOR_APICALL 0x0000000F
#define MONITOR_RPC 0x00000010
+#define MONITOR_DNS 0x00000011
#define MONITOR_TYPE_MASK 0x000000FF
#define MONITOR_RESERVED 0x0000FF00
diff --git a/Sandboxie/msgs/Sbie-English-1033.txt b/Sandboxie/msgs/Sbie-English-1033.txt
index efa9e2a5..905b8d38 100644
--- a/Sandboxie/msgs/Sbie-English-1033.txt
+++ b/Sandboxie/msgs/Sbie-English-1033.txt
@@ -751,6 +751,10 @@ SBIE2332 Cannot access file SbiePst.dat
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/SandboxiePlus/QSbieAPI/SbieTrace.cpp b/SandboxiePlus/QSbieAPI/SbieTrace.cpp
index eafdfcb4..f05ae615 100644
--- a/SandboxiePlus/QSbieAPI/SbieTrace.cpp
+++ b/SandboxiePlus/QSbieAPI/SbieTrace.cpp
@@ -113,7 +113,7 @@ QList CTraceEntry::AllTypes()
<< MONITOR_KEY << MONITOR_FILE << MONITOR_PIPE
<< MONITOR_IPC << MONITOR_RPC << MONITOR_COMCLASS << MONITOR_RTCLASS
<< MONITOR_WINCLASS << MONITOR_DRIVE << MONITOR_IGNORE << MONITOR_IMAGE
- << MONITOR_NETFW << MONITOR_SCM << MONITOR_OTHER;
+ << MONITOR_NETFW << MONITOR_DNS << MONITOR_SCM << MONITOR_OTHER;
}
QString CTraceEntry::GetTypeStr(quint32 Type)
@@ -134,6 +134,7 @@ QString CTraceEntry::GetTypeStr(quint32 Type)
case MONITOR_FILE: return "File"; break;
case MONITOR_KEY: return "Key"; break;
case MONITOR_NETFW: return "Socket"; break;
+ case MONITOR_DNS: return "Dns"; break;
case MONITOR_SCM: return "SCM"; break; // Service Control Manager
case MONITOR_OTHER: return "Debug"; break;
default: return QString();
diff --git a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
index e31559ee..b769a44a 100644
--- a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
@@ -3331,7 +3331,6 @@ The process match level has a higher priority than the specificity and describes
- 75truetrue
@@ -3348,34 +3347,256 @@ The process match level has a higher priority than the specificity and describes
+
+
+ DNS Filter
+
+
+
+ 3
+
+
+ 3
+
+
+ 3
+
+
+
+
+
+
+ Add Filter
+
+
+
+
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 40
+
+
+
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+ true
+
+
+
+
+
+
+ Remove
+
+
+
+
+
+
+ true
+
+
+
+ Program
+
+
+
+
+ Domain
+
+
+
+
+ IP
+
+
+
+
+
+
+
+
+
+
+ Internet Proxy
+
+
+
+ 3
+
+
+ 3
+
+
+ 3
+
+
+
+
+
+
+ Add Proxy
+
+
+
+
+
+
+ Test Proxy
+
+
+
+
+
+
+ false
+
+
+
+ Program
+
+
+
+
+ IP
+
+
+
+
+ Port
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+ true
+
+
+
+
+
+
+ 2
+
+
+
+
+
+
+ Move Up
+
+
+
+
+
+
+
+
+
+
+ Move Down
+
+
+
+
+
+
+
+
+
+
+ true
+
+
+ Encrypt Passwords
+
+
+
+
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 40
+
+
+
+
+
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 40
+
+
+
+
+
+
+
+ Remove
+
+
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+
+
+
+ Other Options
-
+
-
-
-
+
+
+
- Prevent change to network and firewall parameters (user mode)
-
-
-
-
-
-
-
- 75
- true
- true
-
-
-
- Protect the system from sandboxed processes
-
-
- Port Blocking
+ Block common SAMBA ports
@@ -3386,20 +3607,10 @@ The process match level has a higher priority than the specificity and describes
-
-
-
-
- 75
- true
- true
-
-
-
- Protect the system from sandboxed processes
-
+
+
- Network restrictions
+ Block DNS, UDP port 53
@@ -3416,10 +3627,16 @@ The process match level has a higher priority than the specificity and describes
-
-
+
+
+
+
+ true
+ true
+
+
- Block common SAMBA ports
+ Port Blocking
@@ -3436,10 +3653,26 @@ The process match level has a higher priority than the specificity and describes
-
-
+
+
+
+
+ true
+ true
+
+
+
+ Protect the system from sandboxed processes
+
- Block DNS, UDP port 53
+ Network restrictions
+
+
+
+
+
+
+ Prevent change to network and firewall parameters (user mode)
@@ -4557,6 +4790,13 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
+
+
+
+ DNS Request Logging
+
+
+
diff --git a/SandboxiePlus/SandMan/Forms/TestProxyDialog.ui b/SandboxiePlus/SandMan/Forms/TestProxyDialog.ui
new file mode 100644
index 00000000..96b10e0d
--- /dev/null
+++ b/SandboxiePlus/SandMan/Forms/TestProxyDialog.ui
@@ -0,0 +1,487 @@
+
+
+ TestProxyDialog
+
+
+
+ 0
+ 0
+ 680
+ 420
+
+
+
+
+ 0
+ 0
+
+
+
+ Test Proxy
+
+
+
+
+
+ true
+
+
+
+ 0
+ 0
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+ 6
+
+
+
+
+
+ 0
+ 0
+
+
+
+ Test Settings...
+
+
+
+
+
+
+
+ 12
+ true
+
+
+
+ Testing...
+
+
+ Qt::AlignCenter
+
+
+
+
+
+
+
+
+ 25
+
+
+ 3
+
+
+ 6
+
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 12
+ true
+
+
+
+ Proxy Server
+
+
+ Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop
+
+
+
+
+
+
+ Address:
+
+
+
+
+
+
+ 127.0.0.1:80
+
+
+ Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse
+
+
+
+
+
+
+ Protocol:
+
+
+
+
+
+
+ SOCKS 5
+
+
+
+
+
+
+ Authentication:
+
+
+
+
+
+
+ NO
+
+
+
+
+
+
+ Login:
+
+
+
+
+
+
+ username
+
+
+
+
+
+
+
+
+
+
+ 24
+
+
+ false
+
+
+
+
+
+
+
+ Courier New
+ 8
+
+
+
+
+
+
+
+ QDialogButtonBox::Ok|QDialogButtonBox::Retry
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+
+
+ 6
+
+
+
+
+
+
+ Timeout (secs):
+
+
+
+
+
+
+ 5
+
+
+
+
+
+
+ Qt::Horizontal
+
+
+ QSizePolicy::Expanding
+
+
+
+ 40
+ 20
+
+
+
+
+
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+ Enable this test
+
+
+ true
+
+
+
+
+
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+ 6
+
+
+
+
+ Enable this test
+
+
+ true
+
+
+
+
+
+
+ Qt::Vertical
+
+
+ QSizePolicy::Preferred
+
+
+
+ 20
+ 10
+
+
+
+
+
+
+
+
+
+ Target host:
+
+
+ Qt::AlignCenter
+
+
+
+
+
+
+ www.google.com
+
+
+ 0
+
+
+
+
+
+
+ Port:
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+
+
+
+
+ 80
+
+
+
+
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+ true
+
+
+
+
+
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+
+ Enable this test
+
+
+ true
+
+
+
+
+
+
+ Qt::Vertical
+
+
+ QSizePolicy::Preferred
+
+
+
+ 20
+ 10
+
+
+
+
+
+
+
+
+
+ Ping count:
+
+
+ Qt::AlignCenter
+
+
+
+
+
+
+ 1
+
+
+ 10
+
+
+ 4
+
+
+
+
+
+
+ Qt::Horizontal
+
+
+ QSizePolicy::Preferred
+
+
+
+ 40
+ 20
+
+
+
+
+
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+ Qt::AlignJustify|Qt::AlignVCenter
+
+
+ true
+
+
+
+
+
+
+
+
+
+ QDialogButtonBox::Cancel|QDialogButtonBox::Ok|QDialogButtonBox::RestoreDefaults
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SandboxiePlus/SandMan/SandMan.pri b/SandboxiePlus/SandMan/SandMan.pri
index 5cda6208..ca9809f0 100644
--- a/SandboxiePlus/SandMan/SandMan.pri
+++ b/SandboxiePlus/SandMan/SandMan.pri
@@ -29,7 +29,8 @@ HEADERS += ./stdafx.h \
./Windows/SettingsWindow.h \
./Windows/OptionsWindow.h \
./Windows/SelectBoxWindow.h \
- ./Windows/SupportDialog.h\
+ ./Windows/SupportDialog.h \
+ ./Windows/TestProxyDialog.h \
./OnlineUpdater.h \
./Wizards/NewBoxWizard.h \
./Wizards/TemplateWizard.h \
@@ -78,7 +79,8 @@ SOURCES += ./main.cpp \
./Windows/SettingsWindow.cpp \
./Windows/SnapshotsWindow.cpp \
./Windows/SelectBoxWindow.cpp \
- ./Windows/SupportDialog.cpp\
+ ./Windows/SupportDialog.cpp \
+ ./Windows/TestProxyDialog.cpp \
./OnlineUpdater.cpp \
./Wizards/NewBoxWizard.cpp \
./Wizards/TemplateWizard.cpp \
@@ -102,7 +104,8 @@ FORMS += ./Forms/SelectBoxWindow.ui \
./Forms/SettingsWindow.ui \
./Forms/SnapshotsWindow.ui \
./Forms/BoxImageWindow.ui \
- ./Forms/CompressDialog.ui
+ ./Forms/CompressDialog.ui \
+ ./Forms/TestProxyDialog.ui
TRANSLATIONS += sandman_de.ts \
sandman_en.ts \
diff --git a/SandboxiePlus/SandMan/SandMan.vcxproj b/SandboxiePlus/SandMan/SandMan.vcxproj
index 6d9ef14b..e919c807 100644
--- a/SandboxiePlus/SandMan/SandMan.vcxproj
+++ b/SandboxiePlus/SandMan/SandMan.vcxproj
@@ -440,8 +440,10 @@
+
+
@@ -508,6 +510,7 @@
+
diff --git a/SandboxiePlus/SandMan/SandMan.vcxproj.filters b/SandboxiePlus/SandMan/SandMan.vcxproj.filters
index 4cc9397d..dc7afdb0 100644
--- a/SandboxiePlus/SandMan/SandMan.vcxproj.filters
+++ b/SandboxiePlus/SandMan/SandMan.vcxproj.filters
@@ -32,6 +32,9 @@
{34eca1e5-cd50-4876-9f54-9eec4c393150}
+
+ {6accf3ae-da17-4c0f-ba83-214e3874b029}
+ {20d5954b-be86-4a34-948d-00954dcfd07b}
@@ -183,6 +186,9 @@
Wizards
+
+ Helpers
+ Wizards
@@ -225,8 +231,8 @@
Windows
-
- Helpers
+
+ Windows
@@ -260,15 +266,15 @@
Helpers
+
+ Helpers
+ EngineSandMan
-
- Helpers
-
@@ -376,6 +382,9 @@
Windows
+
+ Windows
+
@@ -418,6 +427,9 @@
Form Files
+
+ Form Files
+
diff --git a/SandboxiePlus/SandMan/Windows/OptionsAccess.cpp b/SandboxiePlus/SandMan/Windows/OptionsAccess.cpp
index 50f2c1f6..4167969e 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsAccess.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsAccess.cpp
@@ -238,10 +238,10 @@ void COptionsWindow::LoadAccessListTmpl(EAccessType Type, bool bChecked, bool bU
}
}
-void COptionsWindow::ParseAndAddAccessEntry(EAccessEntry EntryType, const QString& Value, bool disabled, const QString& Template)
+QPair COptionsWindow::SplitAccessType(EAccessEntry EntryType)
{
- EAccessType Type;
- EAccessMode Mode;
+ EAccessType Type = eMaxAccessType;
+ EAccessMode Mode = eMaxAccessMode;
switch (EntryType)
{
case eNormalFilePath: Type = eFile; Mode = eNormal; break;
@@ -269,11 +269,18 @@ void COptionsWindow::ParseAndAddAccessEntry(EAccessEntry EntryType, const QStrin
case eOpenCOM: Type = eCOM; Mode = eOpen; break;
case eClosedCOM: Type = eCOM; Mode = eClosed; break;
case eClosedCOM_RT: Type = eCOM; Mode = eClosedRT; break;
-
- default: return;
}
- ParseAndAddAccessEntry(Type, Mode, Value, disabled, Template);
+ return qMakePair(Type, Mode);
+}
+
+void COptionsWindow::ParseAndAddAccessEntry(EAccessEntry EntryType, const QString& Value, bool disabled, const QString& Template)
+{
+ QPair Type = SplitAccessType(EntryType);
+ if (Type.first == eMaxAccessType || Type.first == eMaxAccessMode)
+ return;
+
+ ParseAndAddAccessEntry(Type.first, Type.second, Value, disabled, Template);
}
void COptionsWindow::ParseAndAddAccessEntry(EAccessType Type, EAccessMode Mode, const QString& Value, bool disabled, const QString& Template)
diff --git a/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp b/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
index 4a1d9026..7d52dcbd 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsAdvanced.cpp
@@ -79,6 +79,7 @@ void COptionsWindow::CreateAdvanced()
connect(ui.chkGuiTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
connect(ui.chkComTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
connect(ui.chkNetFwTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
+ connect(ui.chkDnsTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
connect(ui.chkHookTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
connect(ui.chkDbgTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
connect(ui.chkErrTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
@@ -219,6 +220,7 @@ void COptionsWindow::LoadAdvanced()
ReadAdvancedCheck("GuiTrace", ui.chkGuiTrace, "*");
ReadAdvancedCheck("ClsidTrace", ui.chkComTrace, "*");
ReadAdvancedCheck("NetFwTrace", ui.chkNetFwTrace, "*");
+ ui.chkDnsTrace->setChecked(m_pBox->GetBool("DnsTrace", false));
ui.chkHookTrace->setChecked(m_pBox->GetBool("ApiTrace", false));
ui.chkDbgTrace->setChecked(m_pBox->GetBool("DebugTrace", false));
ui.chkErrTrace->setChecked(m_pBox->GetBool("ErrorTrace", false));
@@ -430,6 +432,7 @@ void COptionsWindow::SaveAdvanced()
WriteAdvancedCheck(ui.chkGuiTrace, "GuiTrace", "*");
WriteAdvancedCheck(ui.chkComTrace, "ClsidTrace", "*");
WriteAdvancedCheck(ui.chkNetFwTrace, "NetFwTrace", "*");
+ WriteAdvancedCheck(ui.chkDnsTrace, "DnsTrace", "y");
WriteAdvancedCheck(ui.chkHookTrace, "ApiTrace", "y");
WriteAdvancedCheck(ui.chkDbgTrace, "DebugTrace", "y");
WriteAdvancedCheck(ui.chkErrTrace, "ErrorTrace", "y");
diff --git a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
index 14952a9e..86bb7a5e 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
@@ -2,6 +2,7 @@
#include "OptionsWindow.h"
#include "SandMan.h"
#include "SettingsWindow.h"
+#include "TestProxyDialog.h"
#include "../MiscHelpers/Common/Settings.h"
#include "../MiscHelpers/Common/Common.h"
#include "../MiscHelpers/Common/ComboInputDialog.h"
@@ -28,6 +29,22 @@ void COptionsWindow::CreateNetwork()
connect(ui.treeNetFw, SIGNAL(itemSelectionChanged()), this, SLOT(OnNetFwSelectionChanged()));
connect(ui.treeNetFw, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(OnNetFwChanged(QTreeWidgetItem *, int)));
+ connect(ui.btnAddDns, SIGNAL(clicked(bool)), this, SLOT(OnAddDnsFilter()));
+ connect(ui.btnDelDns, SIGNAL(clicked(bool)), this, SLOT(OnDelDnsFilter()));
+ ui.treeDns->setItemDelegateForColumn(0, new ProgramsDelegate(this, ui.treeDns, -1, this));
+ connect(ui.treeDns, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(OnDnsFilterChanged(QTreeWidgetItem *, int)));
+
+ connect(ui.btnAddProxy, SIGNAL(clicked(bool)), this, SLOT(OnAddNetProxy()));
+ connect(ui.btnDelProxy, SIGNAL(clicked(bool)), this, SLOT(OnDelNetProxy()));
+ connect(ui.btnTestProxy, SIGNAL(clicked(bool)), this, SLOT(OnTestNetProxy()));
+ connect(ui.btnMoveProxyUp, SIGNAL(clicked(bool)), this, SLOT(OnNetProxyMoveUp()));
+ connect(ui.btnMoveProxyDown, SIGNAL(clicked(bool)), this, SLOT(OnNetProxyMoveDown()));
+ connect(ui.chkProxyResolveHostnames, SIGNAL(clicked(bool)), this, SLOT(OnProxyResolveHostnames()));
+ connect(ui.treeProxy, SIGNAL(itemDoubleClicked(QTreeWidgetItem*, int)), this, SLOT(OnNetProxyItemDoubleClicked(QTreeWidgetItem*, int)));
+ connect(ui.treeProxy, SIGNAL(itemSelectionChanged()), this, SLOT(OnNetProxySelectionChanged()));
+ ui.treeProxy->setItemDelegateForColumn(0, new ProgramsDelegate(this, ui.treeProxy, -1, this));
+ connect(ui.treeProxy, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(OnNetProxyChanged(QTreeWidgetItem *, int)));
+
connect(ui.chkShowNetFwTmpl, SIGNAL(clicked(bool)), this, SLOT(OnShowNetFwTmpl()));
connect(ui.txtProgFwTest, SIGNAL(textChanged(const QString&)), this, SLOT(OnTestNetFwRule()));
@@ -704,6 +721,418 @@ void COptionsWindow::OnDelNetFwRule()
OnOptChanged();
}
+// dns
+void COptionsWindow::LoadDnsFilter()
+{
+ ui.treeDns->clear();
+ foreach(const QString & Value, m_pBox->GetTextList("NetworkDnsFilter", m_Template))
+ AddDnsFilter(Value);
+ foreach(const QString& Value, m_pBox->GetTextList("NetworkDnsFilterDisabled", m_Template))
+ AddDnsFilter(Value, true);
+
+ m_DnsFilterChanged = false;
+}
+
+void COptionsWindow::AddDnsFilter(const QString& Value, bool disabled, const QString& Template)
+{
+ StrPair ProgDns = Split2(Value, ",");
+ if (ProgDns.second.isEmpty()) {
+ ProgDns.second = ProgDns.first;
+ ProgDns.first = "";
+ }
+ StrPair DomainIP = Split2(ProgDns.second, ":");
+ AddDnsFilter(ProgDns.first, DomainIP.first, SplitStr(DomainIP.second, ";"), disabled, Template);
+}
+
+void COptionsWindow::AddDnsFilter(const QString& Prog, const QString& Domain, const QStringList& IPs, bool disabled, const QString& Template)
+{
+ QTreeWidgetItem* pItem = new QTreeWidgetItem();
+ pItem->setCheckState(0, disabled ? Qt::Unchecked : Qt::Checked);
+ pItem->setData(1, Qt::UserRole, Template.isEmpty() ? 0 : -1);
+ SetProgramItem(Prog, pItem, 0, (Template.isEmpty() ? "" : " (" + Template + ")"));
+ if(Template.isEmpty())
+ pItem->setFlags(pItem->flags() | Qt::ItemIsEditable);
+ pItem->setText(1, Domain);
+ pItem->setText(2, IPs.join(";"));
+ ui.treeDns->addTopLevelItem(pItem);
+}
+
+void COptionsWindow::SaveDnsFilter()
+{
+ QStringList NetworkDnsFilter;
+ QStringList NetworkDnsFilterDisabled;
+ for (int i = 0; i < ui.treeDns->topLevelItemCount(); i++)
+ {
+ QTreeWidgetItem* pItem = ui.treeDns->topLevelItem(i);
+ int Type = pItem->data(1, Qt::UserRole).toInt();
+ if (Type == -1)
+ continue; // entry from template
+
+ QString Prog = pItem->data(0, Qt::UserRole).toString();
+ QString Domain = pItem->text(1);
+ QString IPs = pItem->text(2);
+ QString Entry = Domain;
+ if (!IPs.isEmpty())
+ Entry.append(":" + IPs);
+ if (!Prog.isEmpty())
+ Entry.prepend(Prog + ",");
+
+ if (pItem->checkState(0) == Qt::Checked)
+ NetworkDnsFilter.append(Entry);
+ else
+ NetworkDnsFilterDisabled.append(Entry);
+ }
+ WriteTextList("NetworkDnsFilter", NetworkDnsFilter);
+ WriteTextList("NetworkDnsFilterDisabled", NetworkDnsFilterDisabled);
+
+ m_DnsFilterChanged = false;
+}
+
+void COptionsWindow::OnAddDnsFilter()
+{
+ QString Domain = QInputDialog::getText(this, "Sandboxie-Plus", tr("Please enter a domain to be filtered"));
+ if (Domain.isEmpty())
+ return;
+ AddDnsFilter("", Domain);
+
+ m_DnsFilterChanged = true;
+ OnOptChanged();
+}
+
+void COptionsWindow::OnDelDnsFilter()
+{
+ DeleteAccessEntry(ui.treeDns->currentItem(), 1);
+
+ m_DnsFilterChanged = true;
+ OnOptChanged();
+}
+//
+
+// proxy
+COptionsWindow::EAuthMode COptionsWindow::GetAuthMode(const QString& Value)
+{
+ if (Value.compare("Yes", Qt::CaseInsensitive) == 0)
+ return eAuthEnabled;
+ //if (Value.compare("No", Qt::CaseInsensitive) == 0)
+ return eAuthDisabled;
+}
+
+QString COptionsWindow::GetAuthModeStr(COptionsWindow::EAuthMode Mode)
+{
+ switch (Mode)
+ {
+ case eAuthEnabled: return "Yes";
+ case eAuthDisabled: return "No";
+ }
+ return "";
+}
+
+void COptionsWindow::OnProxyResolveHostnames()
+{
+ m_NetProxyChanged = true;
+ OnOptChanged();
+}
+
+void COptionsWindow::OnTestNetProxy()
+{
+ QTreeWidgetItem* pItem = ui.treeProxy->currentItem();
+ if (!pItem)
+ return;
+
+ QString IP = pItem->data(1, Qt::UserRole).toString();
+ QString Port = pItem->data(2, Qt::UserRole).toString();
+ EAuthMode AuthMode = (EAuthMode)pItem->data(3, Qt::UserRole).toInt();
+ QString Login = pItem->data(4, Qt::UserRole).toString();
+ QString Pass = pItem->data(5, Qt::UserRole).toString();
+
+ if (IP.isEmpty() || Port.isEmpty()) {
+ QMessageBox::warning(this, "SandboxiePlus", tr("Please enter IP and Port."));
+ return;
+ }
+
+ CTestProxyDialog* dialog = new CTestProxyDialog(IP, Port, AuthMode, Login, Pass, this);
+ dialog->show();
+}
+
+void COptionsWindow::OnNetProxyMoveUp()
+{
+ QTreeWidgetItem* pItem = ui.treeProxy->currentItem();
+ if (!pItem)
+ return;
+
+ int Index = ui.treeProxy->indexOfTopLevelItem(pItem);
+ if (Index == 0)
+ return;
+
+ ui.treeProxy->takeTopLevelItem(Index);
+ ui.treeProxy->insertTopLevelItem(Index - 1, pItem);
+ ui.treeProxy->setCurrentItem(pItem);
+
+ m_NetProxyChanged = true;
+ OnOptChanged();
+}
+
+void COptionsWindow::OnNetProxyMoveDown()
+{
+ QTreeWidgetItem* pItem = ui.treeProxy->currentItem();
+ if (!pItem)
+ return;
+
+ int Index = ui.treeProxy->indexOfTopLevelItem(pItem);
+ if (Index == ui.treeProxy->topLevelItemCount() - 1)
+ return;
+
+ ui.treeProxy->takeTopLevelItem(Index);
+ ui.treeProxy->insertTopLevelItem(Index + 1, pItem);
+ ui.treeProxy->setCurrentItem(pItem);
+
+ m_NetProxyChanged = true;
+ OnOptChanged();
+}
+
+void COptionsWindow::OnNetProxyItemDoubleClicked(QTreeWidgetItem* pItem, int Column)
+{
+ QString Program = pItem->data(0, Qt::UserRole).toString();
+
+ QWidget* pProgram = new QWidget();
+ pProgram->setAutoFillBackground(true);
+ QHBoxLayout* pLayout = new QHBoxLayout();
+ pLayout->setContentsMargins(0, 0, 0, 0);
+ pLayout->setSpacing(0);
+ pProgram->setLayout(pLayout);
+
+ QComboBox* pCombo = new QComboBox(pProgram);
+ pCombo->addItem(tr("All Programs"), "");
+
+ foreach(const QString & Name, m_Programs)
+ pCombo->addItem(Name, Name);
+
+ pCombo->setEditable(true);
+ int Index = pCombo->findData(Program);
+ pCombo->setCurrentIndex(Index);
+ if (Index == -1)
+ pCombo->setCurrentText(Program);
+ pLayout->addWidget(pCombo);
+ ui.treeProxy->setItemWidget(pItem, 0, pProgram);
+
+ QLineEdit* pIP = new QLineEdit();
+ pIP->setText(pItem->data(1, Qt::UserRole).toString());
+ ui.treeProxy->setItemWidget(pItem, 1, pIP);
+
+ QLineEdit* pPort = new QLineEdit();
+ pPort->setText(pItem->data(2, Qt::UserRole).toString());
+ ui.treeProxy->setItemWidget(pItem, 2, pPort);
+
+ QComboBox* pAuth = new QComboBox();
+ pAuth->addItem(GetAuthModeStr(eAuthEnabled), (int)eAuthEnabled);
+ pAuth->addItem(GetAuthModeStr(eAuthDisabled), (int)eAuthDisabled);
+ pAuth->setCurrentIndex(pAuth->findData(pItem->data(3, Qt::UserRole)));
+ ui.treeProxy->setItemWidget(pItem, 3, pAuth);
+
+ QLineEdit* pLogin = new QLineEdit();
+ pLogin->setMaxLength(255);
+ pLogin->setText(pItem->data(4, Qt::UserRole).toString());
+ ui.treeProxy->setItemWidget(pItem, 4, pLogin);
+
+ QLineEdit* pPass = new QLineEdit();
+ pPass->setMaxLength(255);
+ pPass->setText(pItem->data(5, Qt::UserRole).toString());
+ ui.treeProxy->setItemWidget(pItem, 5, pPass);
+}
+
+void COptionsWindow::LoadNetProxy()
+{
+ ui.chkProxyResolveHostnames->setChecked(m_pBox->GetBool("NetworkProxyResolveHostnames", false));
+
+ ui.treeProxy->clear();
+ foreach(const QString & Value, m_pBox->GetTextList("NetworkUseProxy", m_Template))
+ ParseAndAddNetProxy(Value);
+ foreach(const QString & Value, m_pBox->GetTextList("NetworkUseProxyDisabled", m_Template))
+ ParseAndAddNetProxy(Value, true);
+
+ m_NetProxyChanged = false;
+}
+
+void COptionsWindow::ParseAndAddNetProxy(const QString& Value, bool disabled, const QString& Template)
+{
+ QTreeWidgetItem* pItem = new QTreeWidgetItem();
+
+ // NetworkUseProxy=explorer.exe,Address=192.168.0.1;Port=5000;Auth=Yes;Login=login;Password=pass
+
+ StrPair ProgProxy = Split2(Value, ",");
+ QString Proxy = ProgProxy.second.isEmpty() ? ProgProxy.first : ProgProxy.second;
+ QString Program = ProgProxy.second.isEmpty() ? "*" : ProgProxy.first;
+
+ TArguments Tags = GetArguments(Proxy, L';', L'=', NULL, true);
+
+ pItem->setCheckState(0, disabled ? Qt::Unchecked : Qt::Checked);
+ SetProgramItem(Program, pItem, 0, (Template.isEmpty() ? "" : " (" + Template + ")"));
+
+ QString IP = Tags.value("address");
+ pItem->setText(1, IP);
+ pItem->setData(1, Qt::UserRole, IP);
+
+ QString Port = Tags.value("port");
+ pItem->setText(2, Port);
+ pItem->setData(2, Qt::UserRole, Port);
+
+ QString Auth = Tags.value("auth");
+ pItem->setText(3, Auth);
+ pItem->setData(3, Qt::UserRole, (int)GetAuthMode(Auth));
+
+ QString Login = Tags.value("login");
+ if (Login.length() > 255) Login = Login.left(255);
+ pItem->setText(4, Login);
+ pItem->setData(4, Qt::UserRole, Login);
+
+ QString Pass = Tags.value("password");
+ if (Pass.length() > 255) Pass = Pass.left(255);
+ pItem->setText(5, Pass);
+ pItem->setData(5, Qt::UserRole, Pass);
+
+ if(Template.isEmpty())
+ pItem->setFlags(pItem->flags() | Qt::ItemIsEditable);
+ ui.treeProxy->addTopLevelItem(pItem);
+}
+
+void COptionsWindow::SaveNetProxy()
+{
+ WriteAdvancedCheck(ui.chkProxyResolveHostnames, "NetworkProxyResolveHostnames", "y", "");
+
+ QStringList NetworkUseProxy;
+ QStringList NetworkUseProxyDisabled;
+ for (int i = 0; i < ui.treeProxy->topLevelItemCount(); i++)
+ {
+ QTreeWidgetItem* pItem = ui.treeProxy->topLevelItem(i);
+
+ QString Program = pItem->data(0, Qt::UserRole).toString();
+ QString IP = pItem->data(1, Qt::UserRole).toString();
+ QString Port = pItem->data(2, Qt::UserRole).toString();
+ QString Auth = pItem->text(3);
+ QString Login = pItem->data(4, Qt::UserRole).toString();
+ QString Pass = pItem->data(5, Qt::UserRole).toString();
+
+ if (IP.isEmpty() || Port.isEmpty()) {
+ QMessageBox::warning(this, "SandboxiePlus", QString::number(i + 1) + tr(" entry: IP or Port cannot be empty"));
+ continue;
+ }
+
+ QStringList Tags;
+
+ if (Program.isEmpty()) Program = "*";
+ Tags.append("Address=" + IP);
+ Tags.append("Port=" + Port);
+ if (!Auth.isEmpty()) Tags.append("Auth=" + Auth);
+ if (!Login.isEmpty()) Tags.append("Login=" + Login);
+ if (!Pass.isEmpty()) Tags.append("Password=" + Pass);
+ QString Entry = Tags.join(";").prepend(Program + ",");
+
+ if (pItem->checkState(0) == Qt::Checked)
+ NetworkUseProxy.append(Entry);
+ else
+ NetworkUseProxyDisabled.append(Entry);
+ }
+ WriteNetProxy("NetworkUseProxy", NetworkUseProxy);
+ WriteNetProxy("NetworkUseProxyDisabled", NetworkUseProxyDisabled);
+
+ m_NetProxyChanged = false;
+}
+
+void COptionsWindow::WriteNetProxy(const QString& Setting, const QStringList& List)
+{
+ m_pBox->DelValue(Setting);
+ foreach(const QString& Value, List)
+ m_pBox->AppendText(Setting, Value);
+}
+
+void COptionsWindow::CloseNetProxyEdit(bool bSave)
+{
+ for (int i = 0; i < ui.treeProxy->topLevelItemCount(); i++)
+ {
+ QTreeWidgetItem* pItem = ui.treeProxy->topLevelItem(i);
+ CloseNetProxyEdit(pItem, bSave);
+ }
+}
+
+void COptionsWindow::CloseNetProxyEdit(QTreeWidgetItem* pItem, bool bSave)
+{
+ QWidget* pProgram = ui.treeProxy->itemWidget(pItem, 0);
+ if (!pProgram)
+ return;
+
+ if (bSave)
+ {
+ QHBoxLayout* pLayout = (QHBoxLayout*)pProgram->layout();
+ QComboBox* pCombo = (QComboBox*)pLayout->itemAt(0)->widget();
+ QLineEdit* pIP = (QLineEdit*)ui.treeProxy->itemWidget(pItem, 1);
+ QLineEdit* pPort = (QLineEdit*)ui.treeProxy->itemWidget(pItem, 2);
+ QComboBox* pAuth = (QComboBox*)ui.treeProxy->itemWidget(pItem, 3);
+ QLineEdit* pLogin = (QLineEdit*)ui.treeProxy->itemWidget(pItem, 4);
+ QLineEdit* pPass = (QLineEdit*)ui.treeProxy->itemWidget(pItem, 5);
+
+ QString Program = pCombo->currentText();
+ int Index = pCombo->findText(Program);
+ if (Index != -1)
+ Program = pCombo->itemData(Index, Qt::UserRole).toString();
+
+ pItem->setText(0, pCombo->currentText());
+ pItem->setData(0, Qt::UserRole, Program);
+
+ pItem->setText(1, pIP->text());
+ pItem->setData(1, Qt::UserRole, pIP->text());
+
+ pItem->setText(2, pPort->text());
+ pItem->setData(2, Qt::UserRole, pPort->text());
+
+ pItem->setText(3, pAuth->currentText());
+ pItem->setData(3, Qt::UserRole, (int)GetAuthMode(pAuth->currentText()));
+
+ pItem->setText(4, pLogin->text());
+ pItem->setData(4, Qt::UserRole, pLogin->text());
+
+ pItem->setText(5, pPass->text());
+ pItem->setData(5, Qt::UserRole, pPass->text());
+
+ m_NetProxyChanged = true;
+ OnOptChanged();
+ }
+
+ for (int i = 0; i < 6; i++)
+ ui.treeProxy->setItemWidget(pItem, i, NULL);
+}
+
+void COptionsWindow::OnAddNetProxy()
+{
+ QTreeWidgetItem* pItem = new QTreeWidgetItem();
+
+ pItem->setData(0, Qt::UserRole, "");
+ pItem->setText(0, tr("All Programs"));
+
+ pItem->setData(1, Qt::UserRole, "192.0.2.0");
+ pItem->setText(1, "192.0.2.0");
+
+ pItem->setData(2, Qt::UserRole, "24");
+ pItem->setText(2, "24");
+
+ pItem->setData(3, Qt::UserRole, (int)eAuthDisabled);
+ pItem->setText(3, GetAuthModeStr(eAuthDisabled));
+
+ pItem->setCheckState(0, Qt::Checked);
+ ui.treeProxy->addTopLevelItem(pItem);
+
+ m_NetProxyChanged = true;
+ OnOptChanged();
+}
+
+void COptionsWindow::OnDelNetProxy()
+{
+ DeleteAccessEntry(ui.treeProxy->currentItem(), 1);
+
+ m_NetProxyChanged = true;
+ OnOptChanged();
+}
+//
+
void COptionsWindow__SetRowColor(QTreeWidgetItem* pItem, bool bMatch, bool bConflict = false, bool bBlock = false, bool bActive = false)
{
#define setColor(i, b) theGUI->m_DarkTheme ? pItem->setForeground(i, b) : pItem->setBackground(i, b)
diff --git a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
index ac547328..8ad80d02 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
@@ -227,7 +227,9 @@ COptionsWindow::COptionsWindow(const QSharedPointer& pBox, const QStri
ui.tabsInternet->setCurrentIndex(0);
ui.tabsInternet->setTabIcon(0, CSandMan::GetIcon("EthSocket2"));
ui.tabsInternet->setTabIcon(1, CSandMan::GetIcon("Wall"));
- ui.tabsInternet->setTabIcon(2, CSandMan::GetIcon("Network3"));
+ ui.tabsInternet->setTabIcon(2, CSandMan::GetIcon("DNS"));
+ ui.tabsInternet->setTabIcon(3, CSandMan::GetIcon("Proxy"));
+ ui.tabsInternet->setTabIcon(4, CSandMan::GetIcon("Network3"));
ui.tabsAccess->setCurrentIndex(0);
ui.tabsAccess->setTabIcon(0, CSandMan::GetIcon("Folder"));
@@ -699,6 +701,7 @@ bool COptionsWindow::eventFilter(QObject *source, QEvent *event)
CloseNetFwEdit(false);
CloseAccessEdit(false);
CloseOptionEdit(false);
+ CloseNetProxyEdit(false);
return true; // cancel event
}
@@ -710,6 +713,7 @@ bool COptionsWindow::eventFilter(QObject *source, QEvent *event)
CloseNetFwEdit(true);
CloseAccessEdit(true);
CloseOptionEdit(true);
+ CloseNetProxyEdit(true);
return true; // cancel event
}
@@ -728,6 +732,11 @@ bool COptionsWindow::eventFilter(QObject *source, QEvent *event)
CloseNetFwEdit();
}
+ if (source == ui.treeProxy->viewport() && event->type() == QEvent::MouseButtonPress)
+ {
+ CloseNetProxyEdit();
+ }
+
if (//source == ui.treeAccess->viewport()
(source == ui.treeFiles->viewport() || source == ui.treeKeys->viewport() || source == ui.treeIPC->viewport() || source == ui.treeWnd->viewport() || source == ui.treeCOM->viewport())
&& event->type() == QEvent::MouseButtonPress)
@@ -822,6 +831,8 @@ void COptionsWindow::LoadConfig()
LoadINetAccess();
LoadNetFwRules();
+ LoadDnsFilter();
+ LoadNetProxy();
LoadAccessList();
@@ -955,6 +966,10 @@ void COptionsWindow::SaveConfig()
SaveINetAccess();
if (m_NetFwRulesChanged)
SaveNetFwRules();
+ if (m_DnsFilterChanged)
+ SaveDnsFilter();
+ if (m_NetProxyChanged)
+ SaveNetProxy();
if (m_AccessChanged) {
SaveAccessList();
@@ -997,6 +1012,7 @@ bool COptionsWindow::apply()
CloseNetFwEdit();
CloseAccessEdit();
CloseOptionEdit();
+ CloseNetProxyEdit();
if (!ui.btnEditIni->isEnabled())
SaveIniSection();
@@ -1044,6 +1060,8 @@ void COptionsWindow::reject()
// || m_RestrictionChanged
|| m_INetBlockChanged
|| m_NetFwRulesChanged
+ || m_DnsFilterChanged
+ || m_NetProxyChanged
|| m_AccessChanged
|| m_TemplatesChanged
|| m_FoldersChanged
diff --git a/SandboxiePlus/SandMan/Windows/OptionsWindow.h b/SandboxiePlus/SandMan/Windows/OptionsWindow.h
index 76247a68..4223caff 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsWindow.h
+++ b/SandboxiePlus/SandMan/Windows/OptionsWindow.h
@@ -135,6 +135,20 @@ private slots:
void OnTestNetFwRule();
void OnClearNetFwTest();
+ void OnAddDnsFilter();
+ void OnDelDnsFilter();
+ void OnDnsFilterChanged(QTreeWidgetItem * pItem, int Column) { m_DnsFilterChanged = true; OnOptChanged(); }
+
+ void OnNetProxyItemDoubleClicked(QTreeWidgetItem* pItem, int Column);
+ void OnNetProxySelectionChanged() { CloseNetProxyEdit(); OnOptChanged(); }
+ void OnAddNetProxy();
+ void OnDelNetProxy();
+ void OnTestNetProxy();
+ void OnProxyResolveHostnames();
+ void OnNetProxyMoveUp();
+ void OnNetProxyMoveDown();
+ void OnNetProxyChanged(QTreeWidgetItem * pItem, int Column) { m_NetProxyChanged = true; OnOptChanged(); }
+
void OnBlockDns();
void OnBlockSamba();
//
@@ -343,6 +357,11 @@ public:
eTerminateCmd
};
+ enum EAuthMode {
+ eAuthDisabled,
+ eAuthEnabled ,
+ };
+
static QString AccessTypeToName(EAccessEntry Type);
static QPair SplitAccessType(EAccessEntry Type);
@@ -350,6 +369,8 @@ public:
static QString GetAccessModeStr(EAccessMode Mode);
static QString GetAccessModeTip(EAccessMode Mode);
+ static QString GetAuthModeStr(EAuthMode Mode);
+
protected:
void SetBoxColor(const QColor& color);
void UpdateBoxColor();
@@ -436,6 +457,19 @@ protected:
void LoadNetFwRules();
void SaveNetFwRules();
void LoadNetFwRulesTmpl(bool bUpdate = false);
+
+ void LoadDnsFilter();
+ void AddDnsFilter(const QString& Value, bool disabled = false, const QString& Template = QString());
+ void AddDnsFilter(const QString& Prog, const QString& Domain, const QStringList& IPs = QStringList(), bool disabled = false, const QString& Template = QString());
+ void SaveDnsFilter();
+
+ void ParseAndAddNetProxy(const QString& Value, bool disabled = false, const QString& Template = QString());
+ void CloseNetProxyEdit(bool bSave = true);
+ void CloseNetProxyEdit(QTreeWidgetItem* pItem, bool bSave = true);
+ EAuthMode GetAuthMode(const QString& Value);
+ void LoadNetProxy();
+ void SaveNetProxy();
+ void WriteNetProxy(const QString& Setting, const QStringList& List);
//
// access
@@ -528,6 +562,8 @@ protected:
//bool m_RestrictionChanged;
bool m_INetBlockChanged;
bool m_NetFwRulesChanged;
+ bool m_DnsFilterChanged;
+ bool m_NetProxyChanged;
bool m_AccessChanged;
bool m_TemplatesChanged;
bool m_FoldersChanged;
diff --git a/SandboxiePlus/SandMan/Windows/TestProxyDialog.cpp b/SandboxiePlus/SandMan/Windows/TestProxyDialog.cpp
new file mode 100644
index 00000000..e4936a39
--- /dev/null
+++ b/SandboxiePlus/SandMan/Windows/TestProxyDialog.cpp
@@ -0,0 +1,403 @@
+#include "stdafx.h"
+#include "TestProxyDialog.h"
+#include
+
+constexpr auto TestProgressMax = 90;
+
+CTestProxyDialog::CTestProxyDialog(const QString& IP, const QString& Port, COptionsWindow::EAuthMode AuthMode, const QString& Username, const QString& Password, QWidget* parent)
+
+ : QDialog(parent)
+{
+ m_ProxyIP = IP;
+ m_ProxyPort = Port;
+ m_ProxyUsername = Username;
+ m_ProxyPass = Password;
+ m_AuthMode = AuthMode;
+
+ m_TestShouldCancel = 0;
+ m_Watcher = new QFutureWatcher(this);
+
+ Qt::WindowFlags flags = windowFlags();
+ setWindowFlags(flags);
+
+ ui.setupUi(this);
+ RestoreDefaults();
+ this->setWindowTitle(tr("Sandboxie-Plus - Test Proxy"));
+ this->setFixedSize(this->size());
+ ui.stackedWidget->setCurrentIndex(0);
+
+ ui.labelAddressOut->setText(IP + ":" + Port);
+ ui.labelAuthOut->setText(COptionsWindow::GetAuthModeStr(AuthMode).toUpper());
+ if (AuthMode == COptionsWindow::EAuthMode::eAuthEnabled)
+ {
+ ui.labelUsernameOut->setText(Username);
+ }
+ else
+ {
+ ui.labelUsernameOut->setText(tr("N/A"));
+ ui.labelUsernameOut->hide();
+ ui.labelUsername->hide();
+ }
+
+ ui.labelTestResults->setText(tr("Testing..."));
+ ui.progressBar->setValue(0);
+ ui.progressBar->setMinimum(0);
+ ui.progressBar->setMaximum(TestProgressMax);
+ ui.buttonBoxTest->button(QDialogButtonBox::Retry)->setFocus();
+
+ connect(ui.buttonBoxTest->button(QDialogButtonBox::Ok), &QPushButton::clicked, this,&CTestProxyDialog::accept);
+ connect(ui.buttonBoxTest->button(QDialogButtonBox::Retry), &QPushButton::clicked, this, &CTestProxyDialog::OnRetry);
+ connect(ui.btnTestCustomize, &QPushButton::clicked, this, &CTestProxyDialog::OnTestCustomize);
+ connect(ui.buttonBoxSettings->button(QDialogButtonBox::Ok), &QPushButton::clicked, this, &CTestProxyDialog::OnTestSettingsSave);
+ connect(ui.buttonBoxSettings->button(QDialogButtonBox::Cancel), &QPushButton::clicked, this, &CTestProxyDialog::OnTestSettingsCancel);
+ connect(ui.buttonBoxSettings->button(QDialogButtonBox::RestoreDefaults), &QPushButton::clicked, this, &CTestProxyDialog::OnTestSettingsRestoreDefaults);
+ connect(this, &CTestProxyDialog::emitTestMessage, this, [this](const QString& message) { ui.textBrowser->append(message); });
+ connect(this, &CTestProxyDialog::emitUpdateProgress, this, [this](int value) { ui.progressBar->setValue(value); });
+ connect(m_Watcher, &QFutureWatcher::finished, this, &CTestProxyDialog::OnTestFinished);
+ connect(ui.checkBoxTest2, &QCheckBox::clicked, this, [this]() { Test2EnableParams(ui.checkBoxTest2->isChecked()); });
+ connect(ui.checkBoxTest1, &QCheckBox::clicked, this, [this]() {
+ if (!ui.checkBoxTest1->isChecked())
+ {
+ ui.checkBoxTest1->setChecked(true);
+ QMessageBox::warning(this, tr("Sandboxie-Plus - Test Proxy"), tr("This test cannot be disabled."));
+ }
+ });
+}
+
+void CTestProxyDialog::showEvent(QShowEvent* event)
+{
+ QDialog::showEvent(event);
+ ui.textBrowser->clear();
+ OnRetry();
+}
+
+void CTestProxyDialog::RunTest1(bool& failed, int& progress, int segment)
+{
+ const constexpr int pollInterval = 1000;
+
+ QThread::msleep(500);
+ QString time = QTime::currentTime().toString("hh:mm:ss");
+ emit emitTestMessage(tr("[%1] Starting Test 1: Connection to the Proxy Server").arg(time));
+ emit emitTestMessage(tr("[%1] IP Address: %2").arg(time).arg(m_ProxyIP));
+
+ QScopedPointer socket(new QTcpSocket(this));
+
+ bool success = false;
+ for (int elapsed = 0; !success && elapsed < m_TestTimeout; elapsed += pollInterval)
+ {
+ socket->connectToHost(m_ProxyIP, m_ProxyPort.toInt());
+ success = socket->waitForConnected(pollInterval);
+ if (m_TestShouldCancel.loadAcquire()) return;
+ }
+
+ time = QTime::currentTime().toString("hh:mm:ss");
+ if (success)
+ {
+ emit emitUpdateProgress(progress += segment);
+ emit emitTestMessage(tr("[%1] Connection established.").arg(time));
+ emit emitTestMessage(tr("[%1] Test passed.").arg(time));
+ }
+ else
+ {
+ failed = true;
+ emit emitTestMessage(tr("[%1] Connection to proxy server failed: %2.").arg(time).arg(socket->errorString()));
+ emit emitTestMessage(tr("[%1] Test failed.").arg(time));
+ }
+}
+
+void CTestProxyDialog::RunTest2(bool& failed, int& progress, int segment, bool loadPage)
+{
+ const constexpr int pollInterval = 1000;
+
+ QThread::msleep(500);
+ QString time = QTime::currentTime().toString("hh:mm:ss");
+ emit emitTestMessage(tr("[%1] Starting Test 2: Connection through the Proxy Server").arg(time));
+
+ QNetworkProxy proxy;
+ proxy.setType(QNetworkProxy::Socks5Proxy);
+ proxy.setHostName(m_ProxyIP);
+ proxy.setPort(m_ProxyPort.toInt());
+ if (m_AuthMode == COptionsWindow::EAuthMode::eAuthEnabled) {
+ proxy.setUser(m_ProxyUsername);
+ proxy.setPassword(m_ProxyPass);
+ }
+
+ QScopedPointer socket(new QTcpSocket(this));
+ socket->setProxy(proxy);
+
+ bool success = false;
+ for (int elapsed = 0; !success && elapsed < m_TestTimeout; elapsed += pollInterval)
+ {
+ socket->connectToHost(m_TestHost, m_TestPort);
+ success = socket->waitForConnected(pollInterval);
+ if (m_TestShouldCancel.loadAcquire()) return;
+ }
+
+ time = QTime::currentTime().toString("hh:mm:ss");
+ if (success)
+ {
+ segment /= loadPage + 1;
+ emit emitUpdateProgress(progress += segment);
+ emit emitTestMessage(tr("[%1] Authentication was successful.").arg(time));
+ emit emitTestMessage(tr("[%1] Connection to %2 established through the proxy server.").arg(time).arg(m_TestHost + ":" + QString::number(m_TestPort)));
+
+ if (loadPage)
+ {
+ emit emitTestMessage(tr("[%1] Loading a web page to test the proxy server.").arg(time));
+ RunTest2LoadPage(proxy, failed);
+ if (m_TestShouldCancel.loadAcquire()) return;
+ emit emitUpdateProgress(progress += segment);
+ }
+
+ emit emitTestMessage(tr("[%1] %2.").arg(time).arg(!failed ? "Test passed" : "Test failed"));
+ }
+ else
+ {
+ failed = true;
+ emit emitTestMessage(tr("[%1] Connection through proxy server failed: %2.").arg(time).arg(socket->errorString()));
+ emit emitTestMessage(tr("[%1] Test failed.").arg(time));
+ }
+}
+
+void CTestProxyDialog::RunTest2LoadPage(const QNetworkProxy& proxy, bool& failed)
+{
+ const constexpr int pollInterval = 100;
+
+ QScopedPointer manager(new QNetworkAccessManager(this));
+ manager->setProxy(proxy);
+
+ QEventLoop loop;
+ QNetworkRequest request(QUrl("http://" + m_TestHost + ":" + QString::number(m_TestPort)));
+ QScopedPointer reply(manager->get(request));
+
+ QTimer timer;
+ timer.setInterval(pollInterval);
+ int elapsed = 0;
+
+ connect(&timer, &QTimer::timeout, this, [&]() {
+ elapsed += pollInterval;
+ if (elapsed >= m_TestTimeout && !reply->isFinished()) reply->abort();
+ if (m_TestShouldCancel.loadAcquire())
+ {
+ loop.quit();
+ timer.stop();
+ }
+ });
+
+ connect(reply.data(), &QNetworkReply::finished, this, [&]() {
+ QString time = QTime::currentTime().toString("hh:mm:ss");
+ if (reply->error() == QNetworkReply::NoError)
+ {
+ emit emitTestMessage(tr("[%1] Web page loaded successfully.").arg(time));
+ }
+ else
+ {
+ failed = true;
+ QString error = reply->error() == QNetworkReply::OperationCanceledError ? tr("Timeout") : reply->errorString();
+ emit emitTestMessage(tr("[%1] Failed to load web page: %2.").arg(time).arg(error));
+ }
+ loop.quit();
+ timer.stop();
+ });
+
+ timer.start();
+ loop.exec();
+}
+
+void CTestProxyDialog::RunTest3(bool& failed, int& progress, int segment)
+{
+ const constexpr int pollInterval = 100;
+ const int totalTimeout = m_TestTimeout * m_TestPingCount;
+
+ QThread::msleep(500);
+ QString time = QTime::currentTime().toString("hh:mm:ss");
+ emit emitTestMessage(tr("[%1] Starting Test 3: Proxy Server latency").arg(time));
+
+ bool finished = false;
+ QScopedPointer pingProc(new QProcess(this));
+ QString program = "ping";
+ QStringList args = { "-n", QString::number(m_TestPingCount), "-w", QString::number(m_TestTimeout), m_ProxyIP };
+ connect(pingProc.data(),
+ static_cast(&QProcess::finished),
+ this,
+ [&finished](int, QProcess::ExitStatus) { finished = true; });
+ pingProc->start(program, args);
+
+ for (int elapsed = 0; !finished && elapsed < totalTimeout; elapsed += pollInterval)
+ {
+ finished = pingProc->waitForFinished(pollInterval);
+ if (m_TestShouldCancel.loadAcquire())
+ {
+ pingProc->kill();
+ return;
+ }
+ }
+
+ QString pingOutput = pingProc->readAllStandardOutput();
+ time = QTime::currentTime().toString("hh:mm:ss");
+ if (pingProc->exitStatus() == QProcess::NormalExit && pingProc->exitCode() == 0)
+ {
+ QRegularExpression re("Average = (\\d+)ms");
+ if (re.match(pingOutput).hasMatch())
+ {
+ int elapsed = re.match(pingOutput).captured(1).toInt();
+ emit emitUpdateProgress(progress += segment);
+ emit emitTestMessage(tr("[%1] Latency through proxy server: %2ms.").arg(time).arg(elapsed));
+ emit emitTestMessage(tr("[%1] Test passed.").arg(time));
+ }
+ else
+ {
+ failed = true;
+ emit emitTestMessage(tr("[%1] Failed to get proxy server latency: Request timeout.").arg(time));
+ emit emitTestMessage(tr("[%1] Test failed.").arg(time));
+ }
+ }
+ else
+ {
+ failed = true;
+ emit emitTestMessage(tr("[%1] Failed to get proxy server latency.").arg(time));
+ emit emitTestMessage(tr("[%1] Test failed.").arg(time));
+ }
+}
+
+void CTestProxyDialog::Test2EnableParams(bool enable)
+{
+ ui.checkBoxTest2Load->setEnabled(enable);
+ ui.lineEditHost->setEnabled(enable);
+ ui.lineEditPort->setEnabled(enable);
+ ui.labelHost->setEnabled(enable);
+ ui.labelPort->setEnabled(enable);
+}
+
+void CTestProxyDialog::TestProxy()
+{
+ QFuture future = QtConcurrent::run([this]() {
+ bool test1 = ui.checkBoxTest1->isChecked();
+ bool test2 = ui.checkBoxTest2->isChecked();
+ bool test2LoadPage = ui.checkBoxTest2Load->isChecked();
+ bool test3 = ui.checkBoxTest3->isChecked();
+ bool failed = false;
+ int segment = TestProgressMax / (test1 + test2 + test3);
+ int progress = 0;
+
+ if (test1 && !m_TestShouldCancel.loadAcquire()) RunTest1(failed, progress, segment);
+ if (test2 && !failed && !m_TestShouldCancel.loadAcquire()) RunTest2(failed, progress, segment, test2LoadPage);
+ if (test3 && !failed && !m_TestShouldCancel.loadAcquire()) RunTest3(failed, progress, segment);
+
+ emit emitTestMessage(tr("[%1] Test Finished.").arg(QTime::currentTime().toString("hh:mm:ss")));
+ return !failed;
+ });
+
+ m_Watcher->setFuture(future);
+}
+
+void CTestProxyDialog::OnRetry()
+{
+ if (m_Watcher->isRunning())
+ {
+ ui.buttonBoxTest->button(QDialogButtonBox::Retry)->setEnabled(false);
+ m_TestShouldCancel.storeRelease(1);
+ ui.labelTestResults->setText(tr("Stopped"));
+ return;
+ }
+
+ ui.progressBar->setValue(0);
+ ui.btnTestCustomize->setEnabled(false);
+ ui.buttonBoxTest->button(QDialogButtonBox::Retry)->setEnabled(true);
+ ui.labelTestResults->setStyleSheet("");
+ ui.labelTestResults->setText(tr("Testing..."));
+ ui.buttonBoxTest->button(QDialogButtonBox::Retry)->setText(tr("Stop"));
+
+ ui.textBrowser->append(
+ tr("[%1] Testing started...\n"
+ "\tProxy Server\n"
+ "\tAddress:\t\t%2\n"
+ "\tProtocol:\t\t%3\n"
+ "\tAuthentication:\t%4%5")
+ .arg(QTime::currentTime().toString("hh:mm:ss"))
+ .arg(m_ProxyIP + ":" + m_ProxyPort)
+ .arg("SOCKS 5")
+ .arg(COptionsWindow::GetAuthModeStr(m_AuthMode).toUpper())
+ .arg(m_AuthMode == COptionsWindow::eAuthEnabled ? QString("\n\tUsername:\t\t%1").arg(m_ProxyUsername) : QString()));
+
+ TestProxy();
+}
+
+void CTestProxyDialog::OnTestFinished()
+{
+ bool success = m_Watcher->future().result();
+
+ ui.progressBar->setValue(TestProgressMax);
+ ui.btnTestCustomize->setEnabled(true);
+ ui.buttonBoxTest->button(QDialogButtonBox::Retry)->setText(tr("Retry"));
+ ui.buttonBoxTest->button(QDialogButtonBox::Retry)->setEnabled(true);
+
+ if (success) {
+ if (m_TestShouldCancel.loadAcquire())
+ ui.labelTestResults->setText(tr("Stopped"));
+ else
+ {
+ ui.labelTestResults->setStyleSheet("color: green;");
+ ui.labelTestResults->setText(tr("Test Passed"));
+ }
+ }
+ else
+ {
+ ui.labelTestResults->setStyleSheet("color: red;");
+ ui.labelTestResults->setText(tr("Test Failed"));
+ }
+ ui.buttonBoxTest->button(QDialogButtonBox::Ok)->setFocus();
+
+ m_TestShouldCancel.storeRelease(0);
+}
+
+void CTestProxyDialog::OnTestSettingsSave()
+{
+ bool ok;
+ m_TestTimeout = ui.lineEditTimeout->text().toInt(&ok);
+ if (!ok || m_TestTimeout < 1 || m_TestTimeout > 60)
+ {
+ QMessageBox::warning(this, tr("Sandboxie-Plus - Test Proxy"), tr("Invalid Timeout value. Please enter a value between 1 and 60."));
+ return;
+ }
+ m_TestTimeout *= 1000; // Convert to ms
+ m_TestPort = ui.lineEditPort->text().toInt(&ok);
+ if (!ok || m_TestPort < 1 || m_TestPort > 65535)
+ {
+ QMessageBox::warning(this, tr("Sandboxie-Plus - Test Proxy"), tr("Invalid Port value. Please enter a value between 1 and 65535."));
+ return;
+ }
+ m_TestHost = ui.lineEditHost->text();
+ if (m_TestHost.isEmpty() || m_TestHost.contains(QRegularExpression("http[s]?://")))
+ {
+ QMessageBox::warning(this, tr("Sandboxie-Plus - Test Proxy"), tr("Invalid Host value. Please enter a valid host name excluding 'http[s]://'."));
+ return;
+ }
+ m_TestPingCount = ui.spinBoxPingCount->value();
+ if (m_TestPingCount < 1 || m_TestPingCount > 10)
+ {
+ QMessageBox::warning(this, tr("Sandboxie-Plus - Test Proxy"), tr("Invalid Ping Count value. Please enter a value between 1 and 10."));
+ return;
+ }
+
+ ui.stackedWidget->setCurrentIndex(0);
+}
+
+void CTestProxyDialog::RestoreDefaults()
+{
+ m_TestTimeout = 5 * 1000; // 5000ms
+ m_TestHost = QString("www.google.com");
+ m_TestPort = 80;
+ m_TestPingCount = 4;
+
+ ui.lineEditTimeout->setText(QString::number(5));
+ ui.checkBoxTest1->setChecked(true);
+ ui.checkBoxTest2->setChecked(true);
+ ui.checkBoxTest3->setChecked(true);
+ ui.checkBoxTest2Load->setChecked(true);
+ ui.lineEditHost->setText(m_TestHost);
+ ui.lineEditPort->setText(QString::number(m_TestPort));
+ ui.spinBoxPingCount->setValue(m_TestPingCount);
+
+ Test2EnableParams(true);
+}
diff --git a/SandboxiePlus/SandMan/Windows/TestProxyDialog.h b/SandboxiePlus/SandMan/Windows/TestProxyDialog.h
new file mode 100644
index 00000000..4b025070
--- /dev/null
+++ b/SandboxiePlus/SandMan/Windows/TestProxyDialog.h
@@ -0,0 +1,55 @@
+#pragma once
+
+#include
+#include "OptionsWindow.h"
+#include "ui_TestProxyDialog.h"
+#include
+
+class CTestProxyDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ CTestProxyDialog(const QString& IP, const QString& Port, COptionsWindow::EAuthMode AuthMode, const QString& Username = QString(), const QString& Password = QString(), QWidget* parent = Q_NULLPTR);
+ ~CTestProxyDialog() { ; }
+
+protected:
+ void showEvent(QShowEvent* event) override;
+ void TestProxy();
+
+signals:
+ void emitTestMessage(const QString& message);
+ void emitUpdateProgress(int value);
+
+private slots:
+ void OnRetry();
+ void OnTestFinished();
+ void OnTestCustomize() { ui.stackedWidget->setCurrentIndex(1); ui.buttonBoxSettings->button(QDialogButtonBox::Ok)->setFocus(); }
+ void OnTestSettingsCancel() { RestoreDefaults(); ui.stackedWidget->setCurrentIndex(0); }
+ void OnTestSettingsSave();
+ void OnTestSettingsRestoreDefaults() { RestoreDefaults(); }
+ void RestoreDefaults();
+
+private:
+ Ui::TestProxyDialog ui;
+
+ QString m_ProxyIP;
+ QString m_ProxyPort;
+ QString m_ProxyUsername;
+ QString m_ProxyPass;
+ COptionsWindow::EAuthMode m_AuthMode;
+
+ int m_TestTimeout;
+ int m_TestPort;
+ int m_TestPingCount;
+ QString m_TestHost;
+
+ QFutureWatcher* m_Watcher;
+ QAtomicInt m_TestShouldCancel;
+
+ void RunTest1(bool& failed, int& progress, int segment);
+ void RunTest2(bool& failed, int& progress, int segment, bool loadPage);
+ void RunTest2LoadPage(const QNetworkProxy& proxy, bool& failed);
+ void RunTest3(bool& failed, int& progress, int segment);
+ void Test2EnableParams(bool enable);
+};
From 659fbba9fbf5b33525e264cadd39bd3596c10116 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sat, 11 May 2024 01:27:20 +0000
Subject: [PATCH 082/122] Sync SBIE Plus language files (lupdate)
---
SandboxiePlus/SandMan/sandman_de.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_en.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_es.ts | 883 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_fr.ts | 883 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_hu.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_it.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_ja.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_ko.ts | 887 ++++++++++++++++++-------
SandboxiePlus/SandMan/sandman_nl.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_pl.ts | 883 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_pt_BR.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_pt_PT.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_ru.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_sv_SE.ts | 883 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_tr.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_uk.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_vi.ts | 885 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_zh_CN.ts | 883 +++++++++++++++++-------
SandboxiePlus/SandMan/sandman_zh_TW.ts | 883 +++++++++++++++++-------
19 files changed, 12312 insertions(+), 4493 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts
index 105b91ab..5bbabf2e 100644
--- a/SandboxiePlus/SandMan/sandman_de.ts
+++ b/SandboxiePlus/SandMan/sandman_de.ts
@@ -1422,76 +1422,76 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Sandbox IPCquelle
-
+ Add special option:Füge spezielle Option hinzu:
-
-
+
+ On StartBeim Start
-
-
-
-
-
+
+
+
+
+ Run CommandKommando ausführen
-
+ Start ServiceDienst starten
-
+ On InitBeim Initialisieren
-
+ On File RecoveryBei Dateiwiederherstellung
-
+ On Delete ContentBeim Löschen von Inhalten
-
+ On TerminateBeim Beenden
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedBitte geben Sie die Kommandozeile ein, die ausgeführt werden soll
-
+ Please enter a program file name to allow access to this sandboxBitte geben Sie einen Programmdateinamen ein, um Zugriff auf diese Sandbox zu erlauben
-
+ Please enter a program file name to deny access to this sandboxBitte geben Sie einen Programmdateinamen ein, um Zugriff auf diese Sandbox zu verbieten
-
+ DenyVerweigern
-
+ %1 (%2)%1 (%2)
@@ -1686,8 +1686,8 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Abbildheader wiederhergestellt
-
-
+
+ Browse for FileZu Datei navigieren
@@ -1698,52 +1698,52 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Zu Ordner navigieren
-
+ File OptionsDateioptionen
-
+ GroupingGruppierung
-
+ Add %1 TemplateFüge %1 Vorlage hinzu
-
+ Search for optionsNach Optionen suchen
-
+ Box: %1Box: %1
-
+ Template: %1Vorlage: %1
-
+ Global: %1Global: %1
-
+ Default: %1Standard: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Diese Sandbox wurde gelöscht, daher kann die Konfiguration nicht gespeichert werden.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Einige Änderungen wurden bisher nicht gespeichert, möchten Sie dieses Einstellungsfenster wirklich schließen?
@@ -1769,7 +1769,7 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Ausführbare Dateien (*.exe *.cmd)
-
+ Please enter a service identifierBitte geben Sie eine Dienstbezeichnung ein
@@ -1785,15 +1785,15 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Bitte ein Kommando eingeben
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Gruppe: %1
@@ -1803,7 +1803,7 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Bitte einen Namen für die neue Gruppe eingeben
-
+ Enter program:Programm eingeben:
@@ -1813,12 +1813,12 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Bitte zuvor eine Gruppe auswählen.
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}COM-Objekte müssen durch ihre GUID, z.B. {00000000-0000-0000-0000-000000000000}, benannt werden
-
+ RT interfaces must be specified by their name.RT-Schnittstellen müssen durch ihren Namen benannt werden.
@@ -1929,7 +1929,7 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
Ordner
-
+
@@ -1938,178 +1938,180 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
Ordner auswählen
-
+ ClosedBlockiert
-
+ Closed RTBlockiert RT
-
+ Read OnlyNur lesen
-
+ NormalNormal
-
+ OpenGeöffnet
-
+ Open for AllFür alle geöffnet
-
+ No RenameKein Umbenennen
-
+ Box Only (Write Only)Nur Box (Nur schreiben)
-
+ Ignore UIPIUIPI ignorieren
-
-
-
+
+
+ UnknownUnbekannt
-
+ Regular Sandboxie behavior - allow read and also copy on write.Standard Sandboxieverhalten - Erlaube Lesezugriffe und leite Schreibzugriffe zu Kopien in der Sandbox um.
-
+ Allow write-access outside the sandbox.Erlaube Schreibzugriff außerhalb der Sandbox.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Erlaube Schreibzugriff außerhalb der Sandbox, auch für Applikationen die in der Sandbox installiert sind.
-
+ Don't rename window classes.Fensterklassen nicht umbenennen.
-
+ Deny access to host location and prevent creation of sandboxed copies.Verbiete Zugriff zum Hostrechnerspeicherort und verhindere die Erzeugung von Kopien in der Sandbox.
-
+ Block access to WinRT class.Blockiere Zugriff auf WinRT-Klassen.
-
+ Allow read-only access only.Erlaube ausschließlich Nur-Lesezugriffe.
-
+ Hide host files, folders or registry keys from sandboxed processes.Verberge Dateien, Ordner und Registryschlüssel des Hostrechners vor sandgeboxten Prozessen.
-
+ Ignore UIPI restrictions for processes.Ignoriere UIPI Restriktionen für Prozesse.
-
+ File/FolderDatei/Ordner
-
+ RegistryRegistry
-
+ IPC PathIPC Pfad
-
+ Wnd ClassFensterklasse
-
+ COM ObjectCOM-Objekt
-
+ Select FileDatei auswählen
-
+ All Files (*.*)Alle Dateien (*.*)
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsAlle Programme
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?Jeden IPC-Zugriff zu erlauben, erlaubt auch jeden COM-Zugriff. Möchten Sie den COM-Zugriff zu der Sandbox weiterhin beschränken?
-
+ Don't ask in futureZukünftig nicht mehr fragen
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead'OpenWinClass=program.exe,#' wird nicht unterstützt, verwenden Sie stattdessen 'NoRenameWinClass=program.exe,*'
-
-
+
+
-
+ Template values can not be edited.Vorlagenwerte können nicht bearbeitet werden.
-
+ Template values can not be removed.Vorlagenwerte können nicht gelöscht werden.
@@ -2144,68 +2146,83 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
Nur lokale Vorlagen können entfernt werden!
-
-
+
+ AnyAlle
-
-
+
+ TCPTCP
-
-
+
+ UDPUPD
-
-
+
+ ICMPICMP
-
+ Allow accessErlaube Zugriff
-
+ Block using Windows Filtering PlatformBlockieren durch Verwendung der Windows Filtering Platform
-
+ Block by denying access to Network devicesBlockieren durch Zugriffsverweigerung auf Netzwerkgeräte
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowErlauben
-
+ Block (WFP)Blockieren (WFP)
-
+ Block (NDev)Blockieren (NDev)
-
+ A non empty program name is required.Ein nicht leerer Programmname wird benötigt.
-
+ BlockBlockieren
@@ -6058,6 +6075,194 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Erlaube direkten Zugriff auf die %1 Lesezeichen
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6352,13 +6557,12 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
-
+ Protect the system from sandboxed processesSchütze das System vor Prozessen in der Sandbox
-
+ Block network files and folders, unless specifically opened.Blockiere Netzwerkdateien und Ordner, außer diese wurden explizit geöffnet.
@@ -6386,11 +6590,11 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
-
-
-
-
+
+
+
+
+ NameName
@@ -6415,13 +6619,15 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveEntfernen
@@ -6477,7 +6683,7 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Lässt Programme denken, sie würden mit erhöhten Rechten laufen (Erlaubt das sichere Ausführen von Installern)
-
+ Network restrictionsNetzwerkbeschränkungen
@@ -6552,11 +6758,11 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
-
-
+
+
-
+
+ Show TemplatesZeige Vorlagen
@@ -6653,7 +6859,7 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Druckerbeschränkungen
-
+ Prevent change to network and firewall parameters (user mode)Verhindere Änderungen an Netzwerk und Firewall-Parametern (Nutzermodus)
@@ -6730,7 +6936,9 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
+
+
+ ProgramProgramm
@@ -6770,52 +6978,52 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Füge IPC-Pfad hinzu
-
+ File RecoveryDateiwiederherstellung
-
+ Add FolderFüge Ordner hinzu
-
+ Ignore ExtensionIgnoriere Erweiterungen
-
+ Ignore FolderIgnoriere Ordner
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Aktivere Sofortwiederherstellungsabfrage, um alle Dateien sofort wiederherzustellen, sobald sie erzeugt werden.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Sie können Ordner und Dateitypen (oder Dateierweiterungen) von der Sofortwiederherstellung ausnehmen.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Wenn die Schnellwiederherstellungsfunktion aufgerufen wird, werden die folgenden Ordner in der Sandbox auf Inhalte geprüft.
-
+ Immediate RecoverySofortwiederherstellung
-
+ Advanced OptionsErweiterte Optionen
-
+ MiscellaneousDiverses
@@ -6830,7 +7038,7 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Blockiere Lesezugriff auf die Zwischenablage
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Erzwinge die Verwendung von eigenen dummy Manifestdateien (veraltetes Verhalten)
@@ -6861,13 +7069,13 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
+ Protect the sandbox integrity itselfDie Sandboxintegrität selbst schützen
-
-
+
+ CompatibilityKompatibilität
@@ -6877,7 +7085,7 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
ACHTUNG: Bei Ausführung unter dem eingebauten Administrator, können Prozesse ihre administrativen Rechten nicht abgeben.
-
+ Emulate sandboxed window station for all processesEmuliere sandgeboxte 'Window Stations' für alle Prozesse
@@ -6887,42 +7095,42 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Öffne Zugriff auf Windows Security Account Manager
-
+ Hide ProcessesVerstecke Prozesse
-
+ Add ProcessProzess hinzufügen
-
+ Hide host processes from processes running in the sandbox.Verstecke Host-Prozesse vor Prozessen in der Sandbox.
-
+ Don't allow sandboxed processes to see processes running in other boxesNicht erlauben, dass sandgeboxte Prozesse die Prozesse in anderen Boxen sehen können
-
+ UsersBenutzer
-
+ Restrict Resource Access monitor to administrators onlyBeschränke den Ressourcenzugriffsmonitor auf Administratoren
-
+ Add UserBenutzer hinzufügen
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -6931,22 +7139,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Notiz: Erzwungene Programme und Ordner für eine Sandbox finden keine Anwendung auf Konten, die diese Sandbox nicht nutzen können.
-
+ TracingRückverfolgung
-
+ Log all SetError's to Trace log (creates a lot of output)Protokolliere alle SetError ins Rückverfolgungsprotokoll (Erzeugt große Ausgabemenge)
-
+ Pipe TracePipe-Rückverfolgung
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -6965,92 +7173,162 @@ Sie können die Protokollierung in der INI anpassen, indem Sie wie folgt wählen
an Stelle von "*".
-
+ Access TracingZugriffsrückverfolgung
-
+ GUI TraceGUI-Rückverfolgung
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ On Box TerminateBeim Box Beenden
-
+ API call Trace (traces all SBIE hooks)API-Aufrufrückverfolgung (verfolgt alle SBIE-Hooks)
-
+ Key TraceSchlüsselrückverfolgung
-
+ File TraceDateirückverfolgung
-
+ IPC TraceIPC-Rückverfolgung
-
+ Log Debug Output to the Trace LogProtokolliere Debug-Ausgabe in das Rückverfolgungsprotokoll
-
+
+ DNS Request Logging
+
+
+
+ COM Class TraceCOM-Klassenrückverfolgung
-
+ DebugDebug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!WARNUNG, diese Optionen können Kernsicherheitsgarantien deaktivieren und die Sandboxsicherheit zerstören!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Diese Optionen sind nur zur Fehlersuche bei Kompatibilitätsproblemen gedacht, bitte nicht im produktiven Einsatz verwenden.
-
+ App TemplatesProgrammvorlagen
-
+ Filter CategoriesFilterkategorien
-
+ Text FilterTextfilter
-
+ Add TemplateFüge Vorlage hinzu
-
+ CategoryKategorie
-
+ This list contains a large amount of sandbox compatibility enhancing templatesDiese Liste enthält eine große Menge an Vorlagen, welche die Kompatibilität der Sandbox verbessern
@@ -7101,11 +7379,13 @@ an Stelle von "*".
+ Move UpNach oben verschieben
+ Move DownNach unten verschieben
@@ -7135,39 +7415,39 @@ an Stelle von "*".
Zugriffsisolation
-
+ Image ProtectionAbbildschutz
-
+ Issue message 1305 when a program tries to load a sandboxed dllGebe Nachricht 1305 aus, wenn ein Programm versucht eine sandgeboxte DLL zu laden
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxHindere sandgeboxte Programme, die auf dem Hostsystem installiert sind, daran, DLLs aus der Sandbox zu laden
-
+ Dlls && ExtensionsDLLs && Erweiterungen
-
+ DescriptionBeschreibung
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Sandboxies Ressourcenzugriffsregeln benachteiligen häufiger Programme in der Sandbox. OpenFilePath und OpenKeyPath funktionieren nur für Programme, die sich auf dem Host befinden. Um eine Regel ohne diese Beschränkungen zu definieren, müssen OpenPipePath oder OpenConfPath verwendet werden. Ebenso werden alle Closed(File|Key|Ipc)Path Anweisungen, welche durch eine Negation definiert werden, z.B. ‘ClosedFilePath=! iexplore.exe,C:Users*’, immer für Programmdateien (Binaries), die sich innerhalb einer Sandbox befinden, geschlossen sein. Beide Beschränkungen lassen sich auf der “Zugriffsrichtlinien”-Seite ausschalten.
Dies wird gemacht um bösartige Prozesse in einer Sandbox daran zu hindern, eine umbenannte Kopie von sich selbst zu erstellen, um so auf geschützte Ressourcen zuzugreifen. Ein anderes Einfallstor ist die Injektion einer Programmbibliothek in einen befugten Prozess um Zugang zu allem zu erhalten, auf das dieser Prozess Zugriff hat. Mit der Verwendung des Abbildschutzes (Host Image Protection), kann dies verhindert werden, durch die Blockierung des Ladens von Programmbibliotheken innerhalb der Sandbox in Programme (installiert auf dem Hostrechner) die in einer Sandbox laufen.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Die Funktionalität von Sandboxie kann durch die Verwendung optionaler DLLs erweitert werden, die beim Start in jeden sandgeboxten Prozess durch die Datei SbieDll.dll geladen werden können. Der Erweiterungsmanager in den globalen Einstellungen bietet ein paar nützliche Erweiterungen, die, nachdem diese installiert wurden, hier für die aktuelle Box aktiviert werden können.
@@ -7366,17 +7646,20 @@ Um einen Prozess anzugeben verwenden Sie '$:program.exe' als Pfad.
-
+ ActionAktion
+ PortPort
+
+ IPIP
@@ -7386,22 +7669,22 @@ Um einen Prozess anzugeben verwenden Sie '$:program.exe' als Pfad.Protokoll
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.ACHTUNG: Die Windows Filtering Platform wird nicht durch den Treiber ermöglicht, deshalb können diese Regeln nur im Nutzerkontext angewendet und nicht erzwungen werden!!! Dies bedeutet, dass ein bösartiges Programm diese umgehen könnte.
-
+ Quick RecoverySchnellwiederherstellung
-
+ Various OptionsVerschiedene Optionen
-
+ Allow use of nested job objects (works on Windows 8 and later)Erlaube Verwendung von verschachtelten Jobobjekten (funktioniert ab Windows 8 und neuer)
@@ -7514,7 +7797,7 @@ Der Prozessübereinstimmungslevel hat eine höhere Priorität als die Genauigkei
Gebe Nachricht 2111 aus, falls ein Prozesszugriff abgelehnt wird
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Deaktiviere standardmäßig die Benutzung von RpcMgmtSetComTimeout (Dies könnte Kompatibilitätsprobleme lösen)
@@ -7544,82 +7827,82 @@ Der Prozessübereinstimmungslevel hat eine höhere Priorität als die Genauigkei
Die unterstehenden Optionen können sicher genutzt werden, wenn Sie keine Adminrechte gewähren.
-
+ TriggersAuslöser
-
+ EventVorgang
-
-
-
-
+
+
+
+ Run CommandKommando ausführen
-
+ Start ServiceDienst starten
-
+ These events are executed each time a box is startedDiese Vorgänge werden jedes Mal ausgeführt, wenn eine Box gestartet wird
-
+ On Box StartBeim Boxstart
-
-
+
+ These commands are run UNBOXED just before the box content is deletedDiese Kommandos werden NICHT-sandgeboxt ausgeführt, direkt bevor der Boxinhalt gelöscht wird
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Diese Kommandos werden nur ausgeführt wenn eine Box initialisiert wird. Um diese erneut auszuführen, muss der Boxinhalt gelöscht werden.
-
+ On Box InitBei Boxinitialisierung
-
+ Here you can specify actions to be executed automatically on various box events.Hier können Sie Aktionen angeben, die automatisch bei bestimmten Boxvorgängen ausgeführt werden.
-
+ Disable Resource Access MonitorDeaktiviere Ressourcenzugriffsmonitor
-
+ Resource Access MonitorRessourcenzugriffsmonitor
-
+ Network FirewallNetzwerk-Firewall
-
+ Template FoldersVorlagenordner
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -7628,23 +7911,23 @@ Please note that this values are currently user specific and saved globally for
Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global für alle Boxen gespeichert werden.
-
-
+
+ ValueWert
-
+ AccessibilityBarrierefreiheit
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Zur Kompensation des verlorenen Schutzes, suchen Sie die Einstellungsseite der Rechteabgabe in der Gruppe der Beschränkungen auf.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessScreenreader, JAWS, NVDA, Window-Eyes, Systemzugriff
@@ -7799,47 +8082,47 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Konfiguriere welche Prozesse Zugriff auf Desktopobjekte wie Fenster und dergleichen haben.
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Wende die ElevateCreateProcess-Problemumgehung an (veraltetes Verhalten)
-
+ Use desktop object workaround for all processesWende den Workaround für Desktopobjekt auf alle Prozesse an
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.Wenn der globale Hotkey 3x kurz hintereinander gedrückt wird, wird diese Ausnahme ignoriert.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Schließe diese Sandbox davon aus, dass sie beendet wird, wenn "Alle Prozesse beenden" aufgerufen wird.
-
+ This command will be run before the box content will be deletedDieses Kommando wird ausgeführt bevor der Boxinhalt gelöscht wird
-
+ On File RecoveryBei Dateiwiederherstellung
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedDieses Kommando wird ausgeführt bevor eine Datei wiederhergestellt wird und der Dateipfad wird als erstes Argument weitergegeben und falls dieses Kommando etwas anderes als den Wert 0 zurückgibt, wird die Wiederherstellung blockiert
-
+ Run File CheckerStarte Dateiprüfer
-
+ On Delete ContentBeim Löschen von Inhalten
@@ -7875,87 +8158,87 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
-
+ ProcessProzess
-
+ Other OptionsAndere Optionen
-
+ Port BlockingPortblockade
-
+ Block common SAMBA portsBlockiere übliche SAMBA-Ports
-
+ Block DNS, UDP port 53Blockiere DNS, UPD Port 53
-
+ Add OptionFüge Option hinzu
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Hier können Sie pro Prozess Optionen konfigurieren, um die Kompatibilität zu verbessern und/oder das Sandboxverhalten zu personalisieren.
-
+ OptionOption
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.Diese Befehle werden AUẞERHALB der Sandbox ausgeführt, nachdem alle Prozesse in der Sandbox beendet wurden.
-
+ Syscall Trace (creates a lot of output)Systemaufrufrückverfolgung (erzeugt große Ausgabemenge)
-
+ TemplatesVorlagen
-
+ Open TemplateÖffne Vorlage
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Die folgenden Einstellungen ermöglichen die Verwendung von Sandboxie in Verbindung mit Barrierefreiheitssoftware. Bitte beachten Sie, dass ein gewisser Umfang des Schutzes von Sandboxie notwendigerweise verloren geht, wenn diese Einstellungen aktiv sind.
-
+ Edit ini SectionINI Sektion bearbeiten
-
+ Edit iniINI bearbeiten
-
+ CancelAbbrechen
-
+ SaveSpeichern
@@ -9083,4 +9366,134 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
Gehe zum Schnappschuss
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Protokoll:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Port:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_en.ts b/SandboxiePlus/SandMan/sandman_en.ts
index b2b3481c..79998242 100644
--- a/SandboxiePlus/SandMan/sandman_en.ts
+++ b/SandboxiePlus/SandMan/sandman_en.ts
@@ -1372,8 +1372,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
COptionsWindow
-
-
+
+ Browse for File
@@ -1384,139 +1384,139 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Closed
-
+ Closed RT
-
+ Read Only
-
+ Normal
-
+ Open
-
+ Open for All
-
+ No Rename
-
+ Box Only (Write Only)
-
+ Ignore UIPI
-
-
-
+
+
+ Unknown
-
+ Regular Sandboxie behavior - allow read and also copy on write.
-
+ Allow write-access outside the sandbox.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.
-
+ Don't rename window classes.
-
+ Deny access to host location and prevent creation of sandboxed copies.
-
+ Block access to WinRT class.
-
+ Allow read-only access only.
-
+ Hide host files, folders or registry keys from sandboxed processes.
-
+ Ignore UIPI restrictions for processes.
-
+ File/Folder
-
+ Registry
-
+ IPC Path
-
+ Wnd Class
-
+ COM Object
-
+ Select File
-
+ All Files (*.*)
-
+
@@ -1525,69 +1525,71 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All Programs
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?
-
+ Don't ask in future
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead
-
-
+
+
-
+ Template values can not be edited.
-
+ Template values can not be removed.
@@ -1649,76 +1651,76 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Add special option:
-
-
+
+ On Start
-
-
-
-
-
+
+
+
+
+ Run Command
-
+ Start Service
-
+ On Init
-
+ On File Recovery
-
+ On Delete Content
-
+ On Terminate
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executed
-
+ Please enter a program file name to allow access to this sandbox
-
+ Please enter a program file name to deny access to this sandbox
-
+ Deny
-
+ %1 (%2)
@@ -1957,7 +1959,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Please enter a service identifier
@@ -1988,68 +1990,83 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+ Any
-
-
+
+ TCP
-
-
+
+ UDP
-
-
+
+ ICMP
-
+ Allow access
-
+ Block using Windows Filtering Platform
-
+ Block by denying access to Network devices
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ Allow
-
+ Block (WFP)
-
+ Block (NDev)
-
+ A non empty program name is required.
-
+ Block
@@ -2155,57 +2172,57 @@ Please select a folder which contains this file.
-
+ File Options
-
+ Grouping
-
+ Add %1 Template
-
+ Search for options
-
+ Box: %1
-
+ Template: %1
-
+ Global: %1
-
+ Default: %1
-
+ This sandbox has been deleted hence configuration can not be saved.
-
+ Some changes haven't been saved yet, do you really want to close this options window?
-
+ Enter program:
@@ -6070,6 +6087,194 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6379,8 +6584,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
+ Protect the system from sandboxed processes
@@ -6517,12 +6721,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Network restrictions
-
+ Block network files and folders, unless specifically opened.
@@ -6545,11 +6749,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
+
+
+
+
+ Name
@@ -6579,13 +6783,15 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Remove
@@ -6651,11 +6857,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
+
+
-
+
+ Show Templates
@@ -6705,7 +6911,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Prevent change to network and firewall parameters (user mode)
@@ -6879,11 +7085,13 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
+ Move Up
+ Move Down
@@ -6954,49 +7162,49 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image Protection
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7225,7 +7433,9 @@ To specify a process use '$:program.exe' as path.
-
+
+
+ Program
@@ -7233,17 +7443,20 @@ To specify a process use '$:program.exe' as path.
-
+ Action
+ Port
+
+ IP
@@ -7253,7 +7466,7 @@ To specify a process use '$:program.exe' as path.
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.
@@ -7350,77 +7563,142 @@ To specify a process use '$:program.exe' as path.
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ File Recovery
-
+ Quick Recovery
-
+ Add Folder
-
+ Immediate Recovery
-
+ Ignore Extension
-
+ Ignore Folder
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content.
-
+ Advanced Options
-
+ Miscellaneous
@@ -7441,7 +7719,7 @@ To specify a process use '$:program.exe' as path.
-
+ Protect the sandbox integrity itself
@@ -7462,7 +7740,7 @@ To specify a process use '$:program.exe' as path.
-
+ Force usage of custom dummy Manifest files (legacy behaviour)
@@ -7513,8 +7791,8 @@ The process match level has a higher priority than the specificity and describes
-
-
+
+ Compatibility
@@ -7524,7 +7802,7 @@ The process match level has a higher priority than the specificity and describes
-
+ Emulate sandboxed window station for all processes
@@ -7554,7 +7832,7 @@ The process match level has a higher priority than the specificity and describes
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)
@@ -7579,76 +7857,76 @@ The process match level has a higher priority than the specificity and describes
-
+ Triggers
-
+ Event
-
-
-
-
+
+
+
+ Run Command
-
+ Start Service
-
+ These events are executed each time a box is started
-
+ On Box Start
-
-
+
+ These commands are run UNBOXED just before the box content is deleted
-
+ Allow use of nested job objects (works on Windows 8 and later)
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.
-
+ On Box Init
-
+ Here you can specify actions to be executed automatically on various box events.
-
+ Hide Processes
-
+ Add Process
-
+ Hide host processes from processes running in the sandbox.
@@ -7658,48 +7936,48 @@ The process match level has a higher priority than the specificity and describes
-
+ Various Options
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)
-
+ Use desktop object workaround for all processes
-
+ This command will be run before the box content will be deleted
-
+ On File Recovery
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked
-
+ Run File Checker
-
+ On Delete Content
-
+ Don't allow sandboxed processes to see processes running in other boxes
@@ -7710,80 +7988,80 @@ The process match level has a higher priority than the specificity and describes
-
+ Process
-
+ Users
-
+ Restrict Resource Access monitor to administrators only
-
+ Add User
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
-
+ Add Option
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.
-
+ Option
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Tracing
-
+ Pipe Trace
-
+ API call Trace (traces all SBIE hooks)
-
+ Log all SetError's to Trace log (creates a lot of output)
-
+ Log Debug Output to the Trace Log
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -7795,171 +8073,176 @@ instead of "*".
-
+ File Trace
-
+ Disable Resource Access Monitor
-
+ IPC Trace
-
+ GUI Trace
-
+ Resource Access Monitor
-
+ Access Tracing
-
+ COM Class Trace
-
+ Key Trace
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.
-
+ Network Firewall
-
+ Debug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use.
-
+ App Templates
-
+ Filter Categories
-
+ Text Filter
-
+ Add Template
-
+ This list contains a large amount of sandbox compatibility enhancing templates
-
+ Category
-
+ Template Folders
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
-
-
+
+ Value
-
+ On Box Terminate
-
+
+ DNS Request Logging
+
+
+
+ Syscall Trace (creates a lot of output)
-
+ Templates
-
+ Open Template
-
+ Accessibility
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System Access
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.
-
+ Edit ini Section
-
+ Edit ini
-
+ Cancel
-
+ Save
@@ -9095,4 +9378,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_es.ts b/SandboxiePlus/SandMan/sandman_es.ts
index f95d4c19..637f5b11 100644
--- a/SandboxiePlus/SandMan/sandman_es.ts
+++ b/SandboxiePlus/SandMan/sandman_es.ts
@@ -1579,47 +1579,47 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Raiz del ipc de la sandbox
-
+ Add special option:Añadir opción especial:
-
-
+
+ On StartAl comenzar
-
-
-
-
-
+
+
+
+
+ Run CommandEjecutar comando
-
+ Start ServiceIniciar servicio
-
+ On InitAl inicializar
-
+ On File RecoveryAl Recuperar Archivo
-
+ On Delete ContentAl Borrar Contenido
-
+ On TerminateAl Finalizar
@@ -1628,31 +1628,31 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Al eliminar
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedPor favor ingrese la linea de comandos a ser ejecutada
-
+ Please enter a program file name to allow access to this sandboxPor favor introduzca un nombre de archivo de programa para permitir acceso a esta sandbox
-
+ Please enter a program file name to deny access to this sandboxPor favor introduzca un nombre de archivo de programa para denegar acceso a esta sandbox
-
+ DenyDenegar
-
+ %1 (%2)%1 (%2)
@@ -1850,8 +1850,8 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Cabecera de Imagen Restaurada
-
-
+
+ Browse for FileBuscar archivo
@@ -1862,52 +1862,52 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Buscar carpeta
-
+ File OptionsOpciones de Archivo
-
+ GroupingAgrupación
-
+ Add %1 TemplateAñadir Plantilla %1
-
+ Search for optionsBuscar opciones
-
+ Box: %1Caja: %1
-
+ Template: %1Plantilla: %1
-
+ Global: %1Global: %1
-
+ Default: %1Predeterminado: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Esta sandbox ha sido eliminada por lo que la configuración no se puede guardar.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Algunos cambios aún no se han guardado, ¿desea realmente cerrar esta ventana de opciones?
@@ -1935,7 +1935,7 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Ejecutables (*.exe *.cmd);;Todos los archivos (*.*)
-
+ Please enter a service identifierPor vavor ingrese un identificador de servicio
@@ -1960,15 +1960,15 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Por favor ingrese un comando
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Grupo: %1
@@ -1978,7 +1978,7 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Por favor ingrese un nombre para el nuevo grupo
-
+ Enter program:Ingrese programa:
@@ -2018,7 +2018,7 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Forzar la entrada especificada probablemente rompa Windows, ¿estás seguro de que quieres continuar?
-
+
@@ -2043,17 +2043,17 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Todo directo
-
+ ClosedCerrado
-
+ Closed RTRT cerrado
-
+ Read OnlySolo lectura
@@ -2062,173 +2062,175 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Oculto
-
+ NormalNormal
-
+ OpenAbierto
-
+ Open for AllAbierto para todos
-
+ No RenameNo Renombrar
-
+ Box Only (Write Only)Solo caja (solo escritura)
-
+ Ignore UIPIIgnorar UIPI
-
-
-
+
+
+ UnknownDesconocido
-
+ Regular Sandboxie behavior - allow read and also copy on write.Comportamiento de Sandboxie regular - permite lectura y también copia en escritura.
-
+ Allow write-access outside the sandbox.Permitir acceso de escritura fuera de la sandbox.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Permitir acceso de escritura fuera de la sandbox, también para aplicaciones instaladas dentro de la sandbox.
-
+ Don't rename window classes.No renombrar clases de ventanas.
-
+ Deny access to host location and prevent creation of sandboxed copies.Denegar acceso a la ubicación del ordenador y prevenir la creación de copias aisladas.
-
+ Block access to WinRT class.Bloquear acceso a la clase WinRT.
-
+ Allow read-only access only.Permitir únicamente acceso de solo lectura.
-
+ Hide host files, folders or registry keys from sandboxed processes.Ocultar archivos, carpetas o llaves del registro del ordenador de los procesos aislados.
-
+ Ignore UIPI restrictions for processes.Ignorar restricciones UIPI para procesos.
-
+ File/FolderArchivo/Carpeta
-
+ RegistryRegistro
-
+ IPC PathRuta IPC
-
+ Wnd ClassWnd clase
-
+ COM ObjectObjeto COM
-
+ Select FileSeleccionar Archivo
-
+ All Files (*.*)Todos los archivos (*.*)
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsTodos los programas
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}Los objetos COM deben especificarse por su GUID, como: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.Las interfaces RT deben estar especificadas por su nombre.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?Abrir todo el acceso a IPC también abre el acceso a COM, ¿todavía desea restringir COM al sandbox?
-
+ Don't ask in futureNo preguntar en el futuro
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead'OpenWinClass=program.exe,#' no está soportado, use en cambio 'OpenWinClass=program.exe,#'
-
-
+
+
-
+ Template values can not be edited.Los valores de plantilla no se pueden editar.
-
+ Template values can not be removed.Los valores de plantilla no se pueden eliminar.
@@ -2351,68 +2353,83 @@ Por favor, selecciona una carpeta que contenga este archivo.
Esta seguro de querer eliminar el template seleccionado local?
-
-
+
+ AnyCualquiera
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow accessPermitir acceso
-
+ Block using Windows Filtering PlatformBloquear usando plataforma de filtrado de Windows
-
+ Block by denying access to Network devicesBloquear denegando acceso a dispositivos de red
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowPermitir
-
+ Block (WFP)Bloquear (WFP)
-
+ Block (NDev)Bloquear (NDev)
-
+ A non empty program name is required.Un nombre de programa no vacío es requerido.
-
+ BlockBloquear
@@ -6643,6 +6660,194 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Permitir acceso directo a los marcadores %1
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -7057,8 +7262,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
-
-
+ Protect the system from sandboxed processesProtejer al sistema de procesos en sandboxes
@@ -7073,7 +7277,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Abrir Credenciales de Windows (modo usuario)
-
+ Block network files and folders, unless specifically opened.Bloquear archivos de red y carpetas, salvo especificamente abiertos.
@@ -7082,7 +7286,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Hace creer a las aplicaciones que son ejecutadas con permisos elevados (permite ejecutar instaladores con seguridad)
-
+ Network restrictionsRestricciones de Red
@@ -7221,11 +7425,11 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
-
-
-
-
-
+
+
+
+
+ NameNombre
@@ -7255,13 +7459,15 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveRemover
@@ -7347,11 +7553,11 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
-
-
-
+
+
-
+
+ Show TemplatesMostrar Plantillas
@@ -7456,12 +7662,14 @@ Si los procesos lider son definidos, todos los demas son tratados como persisten
-
+
+
+ ProgramPrograma
-
+ Prevent change to network and firewall parameters (user mode)Prevenir cambiar parametros de red y cortafuegos (modo usuario)
@@ -7518,11 +7726,13 @@ Ud. puede usar 'Abrir para todos' en vez de aplicar a todos los progra
+ Move UpMover Arriba
+ Move DownMover Abajo
@@ -7537,22 +7747,22 @@ Note que Cerrar todos los ...=!<program>,... exclusiones tienen la misma l
Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo aplicar a todos los programas.
-
+ File RecoveryRecuperación de archivos
-
+ Add FolderAgregar Carpeta
-
+ Ignore ExtensionIgnorar Extension
-
+ Ignore FolderIgnorar Carpeta
@@ -7561,22 +7771,22 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
Habilitar consulta de Recuperación Inmediata que pueda recuperar archivos al momento de crearse.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Ud. puede excluir carpetas y tipos de archivos (o extensiones de archivos) de la Recuperación Instantanea.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Cuando la función de Recuperación Rapida es solicitada, las siguientes carpetas seran verificadas por contenido.
-
+ Advanced OptionsOpciones Avanzadas
-
+ MiscellaneousMiscelaneas
@@ -7587,7 +7797,7 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
-
+ Protect the sandbox integrity itselfProtejer la integridad de la sandbox
@@ -7610,13 +7820,13 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
Proteger procesos de sistema dentro de la sandbox contra procesos no privilegiados fuera de la sandbox
-
-
+
+ CompatibilityCompatibilidad
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Forzar el uso de archivos de manifesto de prueba (comportamiento heredado)
@@ -7647,42 +7857,42 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
Aqui Ud. puede especificar una lista de comandos que son ejecutados cada vez que la sandbox es creada inicialmente.
-
+ Hide ProcessesEsconder Procesos
-
+ Add ProcessAgregar Proceso
-
+ Hide host processes from processes running in the sandbox.Esconder procesos del anfitrion de procesos ejecutandose en la sandbox.
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedEste comando se ejecutará antes de que un archivo se recupere y la ruta del archivo se pasará como primer argumento. Si este comando devuelve algo distinto de 0, la recuperación será bloqueada
-
+ Don't allow sandboxed processes to see processes running in other boxesNo permitir procesos en la sandbox ver procesos ejecutandose en otras sandboxes
-
+ UsersUsuarios
-
+ Restrict Resource Access monitor to administrators onlyRestringir monitor de acceso a recursos solo para administradores
-
+ Add UserAgregar Usuario
@@ -7699,27 +7909,27 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to u
Nota: Configuración de Programas Forzados y Carpetas Forzadas para una sandbox no aplican a cuentas de usuario que no pueden usar la sandbox.
-
+ TracingRastreo
-
+ COM Class TraceRastreo COM Class
-
+ IPC TraceRastreo IPC
-
+ Key TraceRastreo de llave
-
+ GUI TraceRastreo GUI
@@ -7837,22 +8047,22 @@ El proceso de nivel de coincidencia tiene mayor prioridad que la especificidad y
Rastreo de llamadas API (requiere logapi estar instalado en el directorio de sbie)
-
+ Log all SetError's to Trace log (creates a lot of output)Registrar todos los SetErrors al Log de Rastreo (crea mucha salida de datos)
-
+ File TraceRastreo de archivo
-
+ Pipe TraceRastreo Pipe
-
+ Access TracingRastreo de acceso
@@ -7861,12 +8071,12 @@ El proceso de nivel de coincidencia tiene mayor prioridad que la especificidad y
<- para esta lo de arriba no aplica
-
+ Log Debug Output to the Trace LogRegistrar salida de depuración al log de Rastreo
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -7889,42 +8099,42 @@ en cambio de "*".
Rastreo Ntdll syscall (crea mucha información de salida)
-
+ DebugDepuracion
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!ADVERTENCIA, estas opciones pueden deshabilitar garantias de seguridad de nucleo y romper la seguridad de la sandbox!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Estas opciones son para depurar problemas de compatibilidad, por favor no las use en produccion.
-
+ App TemplatesPlantillas de Aplicacion
-
+ Filter CategoriesFiltros de Categorias
-
+ Text FilterFiltro de Texto
-
+ CategoryCategoria
-
+ This list contains a large amount of sandbox compatibility enhancing templatesEsta lista contiene gran cantidad de plantillas para mejorar la compatibilidad de la sandbox
@@ -7979,50 +8189,50 @@ en cambio de "*".
Aislamiento de acceso
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.Cuando la tecla de acceso rápido global se presione 3 veces en rápida sucesión, esta excepción será ignorada.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Excluir esta sandbox de ser finalizada cuando se invoque "Terminar Todos los Procesos".
-
+ Image ProtectionProtección de Imagen
-
+ Issue message 1305 when a program tries to load a sandboxed dllEmitir el mensaje 1305 cuando un programa intenta cargar una dll en un entorno aislado
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxEvitar que los programas de sandbox instalados en el host carguen DLLs desde esta sandbox
-
+ Dlls && ExtensionsDLLs y Extensiones
-
+ DescriptionDescripción
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Las reglas de acceso a recursos de Sandboxie a menudo discriminan contra los binarios de programas ubicados dentro de la sandbox. OpenFilePath y OpenKeyPath funcionan solo para binarios de aplicaciones ubicadas de manera nativa en el ordenador. Para definir una regla sin esta restricción, se debe usar OpenPipePath o OpenConfPath. De igual manera, todas las directivas Closed(File|Key|Ipc)Path que se definen por negación, por ejemplo, 'ClosedFilePath=! iexplore.exe,C:Users*' siempre estarán cerradas para binarios ubicados dentro de una sandbox. Ambas políticas de restricción pueden ser desactivadas en la página de "Políticas de acceso".
Esto se hace para evitar que procesos maliciosos dentro de la sandbox creen una copia renombrada de sí mismos y accedan a recursos protegidos. Otro vector de explotación es la inyección de una biblioteca en un proceso autorizado para obtener acceso a todo lo que se le permite acceder. Utilizando la Protección de Imagen del Host, esto puede prevenirse bloqueando a las aplicaciones (instaladas en el host) que se ejecuten dentro de una sandbox y que carguen bibliotecas desde la propia sandbox.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.La funcionalidad de Sandboxie puede mejorarse mediante el uso de DLLs opcionales que pueden cargarse en cada proceso confinado en uns sandbox al iniciarse por el archivo SbieDll.dll. El administrador de extensiones en la configuración global ofrece un par de extensiones útiles; una vez instaladas, pueden activarse aquí para el sandbox actual.
@@ -8258,7 +8468,7 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.
-
+ ActionAcción
@@ -8446,11 +8656,14 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.
+ PortPuerto
+
+ IPIP
@@ -8460,52 +8673,52 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.Protocolo
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.Precaución: Plataforma de Filtrado de Windows no esta habilitada con el controlador, por lo tanto estas reglas seran aplicadas solo en modo usuario y no pueden ser reforzadas!!! Esto significa que aplicaciones maliciosas pueden saltearlas.
-
+ Other OptionsOtras Opciones
-
+ Port BlockingBloqueo de Puerto
-
+ Block common SAMBA portsBloquear puertos SAMBA comunes
-
+ Block DNS, UDP port 53Bloquear DNS, UDP puerto 53
-
+ Quick RecoveryRecuperación Rápida
-
+ Immediate RecoveryRecuperación Inmediata
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Habilitar que Recuperación Inmediata pueda recuperar archivos tan rapido como son creados.
-
+ Various OptionsVarias opciones
-
+ Emulate sandboxed window station for all processesEmular ventanas de sandbox para todos los procesos
@@ -8514,13 +8727,13 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.COM/RPC
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Permitir el uso de objetos de trabajos anidados (experimental, funciona en Windows 8 y posterior)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Deshabilitar el uso de RpcMgmtSetComTimeout por defecto (esto puede resolver temas de compatibilidad)
@@ -8578,46 +8791,46 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.Aislamiento de Acceso
-
+ TriggersDisparadores
-
+ This command will be run before the box content will be deletedEste comando se ejecutará antes de que el contenido de la caja sea borrado
-
+ EventEvento
-
-
-
-
+
+
+
+ Run CommandEjecutar Comando
-
+ Start ServiceIniciar Servicio
-
+ These events are executed each time a box is startedEstos eventos son excluidos acada vez que la caja es iniciada
-
+ On Box StartAl inicio de la caja
-
-
+
+ These commands are run UNBOXED just before the box content is deletedEstos comandos son ejecutados fuera de la Sandbox justo despues de que el contenido de la caja es eliminado
@@ -8626,27 +8839,27 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.Al eliminar la caja
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Estos comandos son ejecutados solo cuando la caja es inicializada. Para hacer que se ejecuten de nuevo, el contenido de la caja debe ser eliminado.
-
+ On Box InitAl inicializar la caja
-
+ On Box TerminateAl finalizar la caja
-
+ Here you can specify actions to be executed automatically on various box events.Aqui puede especificar acciones a ser ejecutadas automaticamente en varios eventos de la caja.
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8655,23 +8868,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: Las configuraciones de Programas Forzados y Carpetas Forzadas para una sandbox no se aplican a cuentas de usuario que no pueden usar la sandbox.
-
+ API call Trace (traces all SBIE hooks)Rastreo de llamadas API (rastrea todos los ganchos de SBIE)
-
+ Disable Resource Access MonitorDeshabilitar Monitor de Acceso a Recursos
-
+ Resource Access MonitorMonitor de Acceso a Recursos
-
+ Network FirewallCortafuegos de Red
@@ -8680,7 +8893,7 @@ Nota: Las configuraciones de Programas Forzados y Carpetas Forzadas para una san
Plantillas/Templates de Compatibilidad
-
+ Add TemplateAgregar Plantilla
@@ -8689,12 +8902,12 @@ Nota: Las configuraciones de Programas Forzados y Carpetas Forzadas para una san
Remover Plantilla
-
+ Template FoldersPlantillas de Carpetas
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8703,23 +8916,23 @@ Please note that this values are currently user specific and saved globally for
Por favor note que estos valores son especificos para usuario y guardados globalmente para todas las cajas.
-
-
+
+ ValueValor
-
+ AccessibilityAccesibilidad
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Para compensar la perdida de protección, por favor consulte configuración de "Soltar Permisos"en la pagina de seteo de Restricciones de grupo.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessLector de pantallas: JAWS, NVDA, Window-Eyes, Acceso a Sistema
@@ -8729,32 +8942,32 @@ Por favor note que estos valores son especificos para usuario y guardados global
Restricciones
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Aplicar solución alternativa para ElevateCreateProcess (comportamiento heredado)
-
+ Use desktop object workaround for all processesUsar comportamiento alternativo de objetos de escritorio para todos los procesos
-
+ On File RecoveryAl Recuperar Archivo
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.Estos comandos son ejecutados SIN AISLAR después de que todos los procesos en esta sandbox hayan finalizado.
-
+ Run File CheckerEjecutar Comprobador de Archivos
-
+ On Delete ContentAl Borrar Contenido
@@ -8765,67 +8978,133 @@ Por favor note que estos valores son especificos para usuario y guardados global
-
+ ProcessProceso
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Add OptionAñadir Opción
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Aquí puedes configurar opciones avanzadas por proceso para mejorar la compatibilidad y/o personalizar el comportamiento del aislamiento.
-
+ OptionOpción
+ DNS Request Logging
- Registro de peticiones DNS
+ Registro de peticiones DNS
-
+ Syscall Trace (creates a lot of output)Rastreo de Syscall (crea una gran cantidad de salida)
-
+ TemplatesPlantillas
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.La configuración siguiente habilita el uso de Sandboxie en combinación con software de accesibilidad. Por favor note que algunas medidas de seguridad de Sandboxie se pierden cuando esta configuración esta activo.
-
+ Edit ini SectionEditar sección ini
-
+ Edit iniEditar ini
-
+ CancelCancelar
-
+ SaveGuardar
@@ -10057,4 +10336,134 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Tomar una Instantanea
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Protocolo:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Puerto:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_fr.ts b/SandboxiePlus/SandMan/sandman_fr.ts
index 537bd306..0891b35c 100644
--- a/SandboxiePlus/SandMan/sandman_fr.ts
+++ b/SandboxiePlus/SandMan/sandman_fr.ts
@@ -1569,8 +1569,8 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
COptionsWindow
-
-
+
+ Browse for FileChoisir un fichier
@@ -1591,17 +1591,17 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Toujours direct
-
+ ClosedRefusé
-
+ Closed RTRefusé RT
-
+ Read OnlyLecture seule
@@ -1610,125 +1610,125 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Caché
-
+ NormalNormal
-
+ OpenAutorisé
-
+ Open for AllAutorisé pour tous
-
+ No RenamePas de renommage
-
+ Box Only (Write Only)Limité au bac (Écriture seule)
-
+ Ignore UIPIUIPI = User Interface Privilege IsolationIgnorer l'isolation des privilèges de l'IHM
-
-
-
+
+
+ UnknownInconnu
-
+ Regular Sandboxie behavior - allow read and also copy on write.Comportement normal de Sandboxie — autorise la lecture et aussi la copie à l'écriture.
-
+ Allow write-access outside the sandbox.Autorise l'accès en écriture en dehors du bac à sable.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Autorise l'accès en écriture en dehors du bac à sable, également pour les applications installées dans le bac à sable.
-
+ Don't rename window classes.Ne renomme pas les classes de fenêtres.
-
+ Deny access to host location and prevent creation of sandboxed copies.Refuse l'accès à la localisation de l'hôte et empêche la création de copies dans le bac à sable.
-
+ Block access to WinRT class.Bloque l'accès à la classe WinRT.
-
+ Allow read-only access only.Autorise uniquement l'accès en lecture seule.
-
+ Hide host files, folders or registry keys from sandboxed processes.Masque les fichiers de l'hôte, les répertoires ou les clés de registre des processus dans les bacs à sable.
-
+ Ignore UIPI restrictions for processes.Ignore les restrictions d'isolation des privilèges de l'IHM pour les processus.
-
+ File/FolderFichier/Dossier
-
+ RegistryRegistre
-
+ IPC PathChemin IPC
-
+ Wnd ClassClasse Wnd
-
+ COM ObjectObjet COM
-
+ Select FileSélectionner le fichier
-
+ All Files (*.*)Tous les fichiers (*.*)
-
+
@@ -1737,69 +1737,71 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Sélectionner le répertoire
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsTous les programmes
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Groupe : %1
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}Les objets COM doivent être spécifiés par leur GUID, exemple : {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.Les interfaces RT doivent être spécifiées par leur nom.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?L'ouverture de tous les accès IPC ouvre également les accès COM ; voulez-vous toujours restreindre COM au bac à sable ?
-
+ Don't ask in futureNe plus demander
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead« OpenWinClass=programme.exe,# » n'est pas pris en charge, utilisez « NoRenameWinClass=programme.exe,* » à la place
-
-
+
+
-
+ Template values can not be edited.Les valeurs des modèles ne peuvent pas être modifiées.
-
+ Template values can not be removed.Les valeurs des modèles ne peuvent pas être supprimées.
@@ -1865,57 +1867,57 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Racine IPC du bac à sable.
-
+ Add special option:Ajouter une option particulière :
-
-
+
+ On StartAu démarrage
-
-
-
-
-
+
+
+
+
+ Run CommandLancer une commande
-
+ Start ServiceDémarrer un service
-
+ On InitLors de l'initialisation
-
+ On File RecoveryLors de la récupération de fichiers
-
+ On Delete ContentLors de la suppression de contenu
-
+ On TerminateLors de l'arrêt
-
+ Please enter a program file name to allow access to this sandboxVeuillez saisir un nom de fichier de programme pour lequel autoriser l'accès à ce bac à sable
-
+ Please enter a program file name to deny access to this sandboxVeuillez saisir un nom de fichier de programme pour lequel empêcher l'accès à ce bac à sable
@@ -1924,11 +1926,11 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
À la suppression
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedSaisir la ligne de commande à exécuter
@@ -1937,12 +1939,12 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Veuillez saisir le nom de fichier d'un programme
-
+ DenyRefuser
-
+ %1 (%2)%1 (%2)
@@ -2198,7 +2200,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Exécutables (*.exe *.cmd);;Tous les fichiers (*.*)
-
+ Please enter a service identifierVeuillez saisir un identifiant de service
@@ -2237,68 +2239,83 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Veuillez d'abord sélectionner un groupe.
-
-
+
+ AnyTous
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow accessAutoriser l'accès
-
+ Block using Windows Filtering PlatformBloquer à l'aide de la plateforme de filtrage Windows
-
+ Block by denying access to Network devicesBloquer en refusant l'accès aux périphériques réseaux
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowAutoriser
-
+ Block (WFP)Bloquer (WFP)
-
+ Block (NDev)Bloquer (NDev)
-
+ A non empty program name is required.Un nom de programme non vide est nécessaire.
-
+ BlockBloquer
@@ -2426,58 +2443,58 @@ Veuillez choisir un dossier contenant ce fichier.
Sandboxie Plus - Paramètres de « %1 »
-
+ File OptionsOptions des fichiers
-
+ GroupingGroupement
-
+ Add %1 TemplateAjouter un modèle pour : %1
-
+ Search for optionsSearch for OptionsRechercher dans les options
-
+ Box: %1Bac : %1
-
+ Template: %1Modèle : %1
-
+ Global: %1Global : %1
-
+ Default: %1Par défaut : %1
-
+ This sandbox has been deleted hence configuration can not be saved.Ce bac à sable a été supprimé par conséquent la configuration ne peut pas être sauvegardée.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Certains changements n'ont pas encore été enregistrés, voulez-vous vraiment fermer cette fenêtre d'options ?
-
+ Enter program:Saisir le programme :
@@ -6776,6 +6793,194 @@ Si vous êtes déjà « Great Supporter » sur Patreon, Sandboxie peut vérifier
Autoriser l'accès direct aux marque-pages de %1
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -7160,8 +7365,7 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
-
-
+ Protect the system from sandboxed processesProtège le système des processus du bac à sable
@@ -7334,12 +7538,12 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Restrictions d'impression
-
+ Network restrictionsRestrictions de réseau
-
+ Block network files and folders, unless specifically opened.Bloquer les fichiers et dossiers du réseau, sauf s'ils sont spécifiquement ouverts
@@ -7366,11 +7570,11 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
-
-
-
-
-
+
+
+
+
+ NameNom
@@ -7400,13 +7604,15 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveSupprimer
@@ -7493,11 +7699,11 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
-
-
-
+
+
-
+
+ Show TemplatesAfficher les modèles
@@ -7551,7 +7757,7 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Ouvrir le magasin d'identifiants Windows (mode utilisateur)
-
+ Prevent change to network and firewall parameters (user mode)Empêcher les changements aux paramètres réseaux et règles du pare-feu (mode utilisateur)
@@ -7763,7 +7969,9 @@ Si des processus directeurs sont définis, tous les autres sont traités comme d
-
+
+
+ ProgramProgramme
@@ -8000,17 +8208,20 @@ Pour définir un processus, utiliser « $:programme.exe » comme chemin.
-
+ ActionAction
+ PortPort
+
+ IPIP
@@ -8020,7 +8231,7 @@ Pour définir un processus, utiliser « $:programme.exe » comme chemin.Protocole
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.ATTENTION : La plateforme de filtrage Windows n'est pas activée avec le pilote, par conséquent ces règles seront exécutées uniquement en mode utilisateur et ne pourront pas être imposées !!! Cela signifie que les applications malveillantes peuvent les contourner.
@@ -8053,6 +8264,7 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Autorisé pour tous »
+ Move DownDescendre
@@ -8073,6 +8285,7 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Autorisé pour tous »
+ Move UpMonter
@@ -8089,47 +8302,47 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Toujours direct » pour
Appliquer ferme les directives de...=!<programme>,... ainsi que tous les binaires situés dans le bac à sable.
-
+ File RecoveryRécupération de fichiers
-
+ Add FolderAjouter un dossier
-
+ Ignore ExtensionIgnorer une extension
-
+ Ignore FolderIgnorer un dossier
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Activer l'invite de récupération immédiate pour pouvoir récupérer les fichiers dès leur création
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Vous pouvez exclure des dossiers, des types de fichiers, ou des extensions de fichiers de la récupération immédiate.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Lorsque la fonction de récupération rapide est invoquée, les dossiers suivants sont contrôlés pour vérifier la présence de contenu dans le bac à sable.
-
+ Advanced OptionsOptions avancées
-
+ MiscellaneousDivers
@@ -8150,7 +8363,7 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Toujours direct » pour
-
+ Protect the sandbox integrity itselfProtège la propre intégrité du bac à sable
@@ -8175,7 +8388,7 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Toujours direct » pour
Isolation du bac à sable
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Forcer l'utilisation de fichiers Manifest factices personnalisés (ancien comportement)
@@ -8244,8 +8457,8 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Autoriser uniquement les processus privilégiés à accéder au gestionnaire des services
-
-
+
+ CompatibilityCompatibilité
@@ -8263,7 +8476,7 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Isolation COM
-
+ Emulate sandboxed window station for all processesÉmuler une Station Windows en bac à sable pour tous les processus
@@ -8272,13 +8485,13 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
COM/RPC
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Autoriser l'utilisation d'objets de travail imbriqués (fonctionne sur Windows 8 et plus)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Désactiver l'utilisation de RpcMgmtSetComTimeout par défaut (cela peut résoudre des problèmes de compatibilité)
@@ -8356,41 +8569,41 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Ici, vous pouvez spécifier une liste de commandes qui sont exécutées chaque fois que le bac à sable est initialement rempli.
-
+ TriggersDéclencheurs
-
+ EventÉvènements
-
-
-
-
+
+
+
+ Run CommandLancer une commande
-
+ Start ServiceDémarrer un service
-
+ These events are executed each time a box is startedCes évènements sont exécutés à chaque fois qu'un bac à sable est démarré.
-
+ On Box StartAu démarrage du bac
-
-
+
+ These commands are run UNBOXED just before the box content is deletedCes commandes sont lancées EN DEHORS DU BAC juste avant que le contenu du bac soit supprimé.
@@ -8399,52 +8612,52 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
À la suppression
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Ces commandes sont exécutées lorsqu'un bac à sable est initialisé. Pour les lancer à nouveau, le contenu du bac doit être supprimé.
-
+ On Box InitÀ l'initialisation du bac
-
+ Here you can specify actions to be executed automatically on various box events.Vous pouvez spécifier ici des actions à exécuter automatiquement lors de divers évènements.
-
+ Hide ProcessesMasquage des processus
-
+ Add ProcessAjouter un processus
-
+ Hide host processes from processes running in the sandbox.Masquer les processus de l'hôte des processus s'exécutant dans le bac à sable.
-
+ Don't allow sandboxed processes to see processes running in other boxesNe pas permettre aux processus en bac à sable de voir les processus en cours d'exécution dans d'autres bacs
-
+ UsersUtilisateurs
-
+ Restrict Resource Access monitor to administrators onlyRestreindre le moniteur d'accès aux ressources aux administrateurs uniquement
-
+ Add UserAjouter un utilisateur
@@ -8453,7 +8666,7 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Supprimer l'utilisateur
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8462,7 +8675,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Remarque : Les paramètres Programmes forcés et Dossiers forcés d'un bac à sable ne s'appliquent pas aux comptes utilisateurs qui ne peuvent pas utiliser le bac.
-
+ TracingTraçage
@@ -8472,22 +8685,22 @@ Remarque : Les paramètres Programmes forcés et Dossiers forcés d'un bac
Tracer les appels API (nécessite que LogAPI soit installé dans le répertoire de Sandboxie)
-
+ Pipe TraceTracer les Pipes
-
+ Log all SetError's to Trace log (creates a lot of output)Enregistrer toutes les SetError dans le journal de traçage (crée beaucoup de sorties)
-
+ Log Debug Output to the Trace LogEnregistrer la sortie de débogage dans le journal de traçage
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8510,42 +8723,42 @@ au lieu de « * ».
Tracer les appels système Ntdll (crée beaucoup de sorties)
-
+ File TraceTracer les fichiers
-
+ Disable Resource Access MonitorDésactiver le moniteur d'accès aux ressources
-
+ IPC TraceTracer IPC
-
+ GUI TraceTracer l'interface graphique
-
+ Resource Access MonitorMoniteur d'accès aux ressources
-
+ Access TracingTraçage des accès
-
+ COM Class TraceTracer les classes COM
-
+ Key TraceTracer les clés
@@ -8578,37 +8791,102 @@ au lieu de « * ».
-
+ Network FirewallPare-feu réseau
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ These commands are run UNBOXED after all processes in the sandbox have finished.Ces commandes s'exécutent EN DEHORS DU BAC après que tous les processus dans le bac à sable se soient arrêtés.
-
+ API call Trace (traces all SBIE hooks)Tracer les appels API (trace tous les crochets SBIE)
-
+ DebugDébogage
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!ATTENTION, ces options peuvent désactiver les garanties de sécurité de base et briser la sécurité du bac à sable !!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Ces options sont destinées à déboguer les problèmes de compatibilité, veuillez ne pas les utiliser en production.
-
+ App TemplatesModèles d'applications
@@ -8617,22 +8895,22 @@ au lieu de « * ».
Modèles de compatibilité
-
+ Filter CategoriesFiltre de catégorie :
-
+ Text FilterFiltre de texte :
-
+ Add TemplateAjouter un modèle
-
+ This list contains a large amount of sandbox compatibility enhancing templatesCette liste contient un grand nombre de modèles améliorant la compatibilité du bac à sable.
@@ -8641,17 +8919,17 @@ au lieu de « * ».
Supprimer le modèle
-
+ CategoryCatégorie
-
+ Template FoldersDossiers des modèles
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8660,23 +8938,23 @@ Please note that this values are currently user specific and saved globally for
Veuillez noter que ces valeurs sont actuellement spécifiques à l'utilisateur et enregistrées globalement pour tous les bacs.
-
-
+
+ ValueValeur
-
+ AccessibilityAccessibilité
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Pour compenser la perte de protection, veuillez consulter la page d'Abandon des droits dans le groupe de paramètres Restrictions.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessLecteurs d'écran : JAWS, NVDA, Window-Eyes, System Access
@@ -8768,40 +9046,40 @@ Veuillez noter que ces valeurs sont actuellement spécifiques à l'utilisat
Isolation d'accès
-
+ Image ProtectionProtection d'image
-
+ Issue message 1305 when a program tries to load a sandboxed dllÉmettre un message 1305 lorsqu'un programme essaye de charger une DLL dans un bac à sable
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxEmpêcher les programmes dans un bac à sable installé sur l'hôte de charger des DLL depuis le bac à sable
-
+ Dlls && ExtensionsDLL && extensions
-
+ DescriptionDescription
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Les règles d'accès aux ressources de Sandboxie discriminent souvent les binaires des programmes situés dans le bac à sable. OpenFilePath et OpenKeyPath fonctionnent uniquement pour les binaires des applications situées nativement sur l'hôte. Afin de définir une règle sans cette restriction, OpenPipePath et OpenConfPath doivent être utilisés. De même, toutes les directives Closed(File|Key|Ipc)Path qui sont définies par une négation (par exemple « ClosedFilePath=! iexplore.exe,C:Users* ») seront toujours fermées aux binaires situés dans un bac à sable. Les deux politiques de restriction peuvent être désactivées sur la page « Politiques d'accès ».
Ceci est fait pour empêcher les processus malveillants à l'intérieur du bac à sable de créer une copie renommée d'eux-mêmes et d'accéder aux ressources protégées. Un autre vecteur d'exploit est l'injection d'une bibliothèque dans un processus autorisé afin d'accéder à tout ce qu'il est autorisé d'accéder. En utilisant la Protection d'Image de l'Hôte, cela peut être empêché en bloquant les applications (installées sur l'hôte) lancées dans un bac à sable de charger des bibliothèques depuis le bac à sable lui-même.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Les fonctions de Sandboxie peuvent être améliorées en utilisant des DLL optionnels qui peuvent être chargés dans chaque processus dans un bac à sable lors de leur démarrage par SbieDll.dll. Le gestionnaire de modules dans les paramètres généraux offre quelques extensions utiles ; une fois installées, celles-ci peuvent être activées ici pour le bac à sable actuel.
@@ -8822,57 +9100,57 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Configure quels processus peuvent accéder aux objets de bureau tels que les fenêtres et similaires.
-
+ Other OptionsAutres options
-
+ Port BlockingBlocage des ports
-
+ Block common SAMBA portsBloquer les ports SAMBA habituels
-
+ Block DNS, UDP port 53Bloquer le DNS (UDP port 53)
-
+ Quick RecoveryRécupération rapide
-
+ Immediate RecoveryRécupération immédiate
-
+ Various OptionsOptions diverses
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Appliquer le palliatif ElevateCreateProcess (ancien comportement)
-
+ Use desktop object workaround for all processesUtiliser le palliatif d'objet de bureau pour tous les processus
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.Lorsque le raccourci général est utilisé 3 fois rapidement et successivement, cette exception sera ignorée.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Empêcher ce bac à sable d'être arrêté lorsque « Arrêter tous les processus » est invoqué.
@@ -8881,33 +9159,33 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Cette commande s'exécute après que tous les processus dans le bac à sable se soient arrêtés.
-
+ On Box TerminateLors de l'arrêt du bac
-
+ This command will be run before the box content will be deletedCette commande sera exécutée avant que le contenu du bac ne soit supprimé.
-
+ On File RecoveryLors de la récupération de fichiers
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedCette commande sera exécutée avant qu'un fichier ne soit récupéré et le chemin du fichier sera transmis en tant que premier argument ; si cette commande retourne autre chose que « 0 », la récupération sera bloquée.
-
+ Run File CheckerExécuter la vérification de fichiers
-
+ On Delete ContentLors de la suppression de contenu
@@ -8918,7 +9196,7 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
-
+ ProcessProcessus
@@ -8927,62 +9205,63 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Bloquer également l'accès en lecture des processus de ce bac à sable
-
+ Add OptionAjouter une option
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Ici vous pouvez configurer des options en fonction des processus, pour améliorer la compatibilité et/ou personnaliser le comportement de mise en bac à sable.
-
+ OptionOption
+ DNS Request LoggingDns Request Logging
- Enregistrer les requêtes DNS dans le journal
+ Enregistrer les requêtes DNS dans le journal
-
+ Syscall Trace (creates a lot of output)Tracer les appels système (crée beaucoup de sorties)
-
+ TemplatesModèles
-
+ Open TemplateOuvrir le modèle
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Les paramètres suivants permettent l'utilisation de Sandboxie en combinaison avec un logiciel d'accessibilité. Veuillez noter que certaines mesures de protection de Sandboxie sont nécessairement perdues lorsque ces paramètres sont en vigueur.
-
+ Edit ini SectionÉdition de la section ini
-
+ Edit iniÉditer l'ini
-
+ CancelAnnuler
-
+ SaveEnregistrer
@@ -10256,4 +10535,134 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Prendre un instantané
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Protocole :
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Port :
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_hu.ts b/SandboxiePlus/SandMan/sandman_hu.ts
index 3dc60cde..949552d3 100644
--- a/SandboxiePlus/SandMan/sandman_hu.ts
+++ b/SandboxiePlus/SandMan/sandman_hu.ts
@@ -1451,8 +1451,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
COptionsWindow
-
-
+
+ Browse for FileFájl keresése
@@ -1463,139 +1463,139 @@ Note: The update check is often behind the latest GitHub release to ensure that
Mappa keresése
-
+ ClosedBlokkolt
-
+ Closed RTBlokkolt RT
-
+ Read OnlyCsak olvasható
-
+ NormalNormál
-
+ OpenNyitva
-
+ Open for AllMegnyitás mindenkinek
-
+ No RenameÁtnevezés
-
+ Box Only (Write Only)Csak a homokozó (csak írás)
-
+ Ignore UIPIAz UIPI figyelmen kívül hagyása
-
-
-
+
+
+ UnknownIsmeretlen
-
+ Regular Sandboxie behavior - allow read and also copy on write.Szabályos Sandboxie viselkedés – olvasás és másolás engedélyezése íráskor is.
-
+ Allow write-access outside the sandbox.Írási hozzáférés engedélyezése a homokozón kívül.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Az írási hozzáférés engedélyezése a homokozón kívül, a homokozóba telepített alkalmazások számára is.
-
+ Don't rename window classes.Ne nevezze át az ablakosztályokat.
-
+ Deny access to host location and prevent creation of sandboxed copies.Tagadja meg a hozzáférést a gazdagép helyéhez, és akadályozza meg a homokozóba helyezett másolatok létrehozását.
-
+ Block access to WinRT class.A WinRT osztályhoz való hozzáférés letiltása.
-
+ Allow read-only access only.Csak olvasási hozzáférés engedélyezése.
-
+ Hide host files, folders or registry keys from sandboxed processes.Hosztfájlok, mappák vagy beállításkulcsok elrejtése a sandbox folyamatok elől.
-
+ Ignore UIPI restrictions for processes.Hagyja figyelmen kívül a folyamatokra vonatkozó UIPI-korlátozásokat.
-
+ File/FolderFájl ill. mappa
-
+ RegistryRegistry
-
+ IPC PathIPC útvonal
-
+ Wnd ClassAblak osztály
-
+ COM ObjectCOM objektum
-
+ Select FileFájl kiválasztása
-
+ All Files (*.*)Minden fájl (*.*)
-
+
@@ -1604,69 +1604,71 @@ Note: The update check is often behind the latest GitHub release to ensure that
Mappa kiválasztása
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsMinden program
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Csoport: %1
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}A COM objektumokat a GUID azonosítóval kell megadni, pl: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.Az RT interfészeket a nevükön kell megadni.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?Az összes IPC-hozzáférés megnyitása a COM-hozzáférést is megnyitja. Továbbra is korlátozná a COM-ot a sandboxra?
-
+ Don't ask in futureA jövőben ne kérdezzen
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead'OpenWinClass=program.exe,#' nem támogatott, használja a 'NoRenameWinClass=program.exe,*' helyette
-
-
+
+
-
+ Template values can not be edited.A sablonértékek nem szerkeszthetők.
-
+ Template values can not be removed.A sablonértékek nem törölhetők.
@@ -1728,66 +1730,66 @@ Note: The update check is often behind the latest GitHub release to ensure that
Sandbox ipc gyökér
-
+ Add special option:Speciális opció hozzáadása:
-
-
+
+ On StartIndításkor
-
-
-
-
-
+
+
+
+
+ Run CommandParancs futtatása
-
+ Start ServiceSzolgáltatás indítása
-
+ On InitInicializáskor
-
+ On File RecoveryFájl helyreállításakor
-
+ On Delete ContentTartalom törlésekor
-
+ On Terminate
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedKérjük, írja be a végrehajtandó parancssort
-
+ Please enter a program file name to allow access to this sandbox
-
+ Please enter a program file name to deny access to this sandbox
@@ -1796,12 +1798,12 @@ Note: The update check is often behind the latest GitHub release to ensure that
Kérjük, adja meg a programfájl nevét
-
+ DenyTagadás
-
+ %1 (%2)%1 (%2)
@@ -2048,7 +2050,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Please enter a service identifierKérjük, adja meg a szolgáltatás azonosítóját
@@ -2079,68 +2081,83 @@ Note: The update check is often behind the latest GitHub release to ensure that
Kérjük, először válasszon csoportot.
-
-
+
+ AnyBármilyen
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow accessHozzáférés engedélyezése
-
+ Block using Windows Filtering PlatformLetiltás a Windows szűrőplatform használatával
-
+ Block by denying access to Network devicesLetiltás a hálózati eszközökhöz való hozzáférés megtagadásával
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowEngedélyezés
-
+ Block (WFP)Letiltás (WFP)
-
+ Block (NDev)Letiltás (NDev)
-
+ A non empty program name is required.
-
+ BlockLetiltás
@@ -2250,57 +2267,57 @@ Please select a folder which contains this file.
Sandboxie-Plus - '%1' opciók
-
+ File OptionsFájlok beállításai
-
+ GroupingCsoportosítás
-
+ Add %1 Template
-
+ Search for optionsOpciók keresése
-
+ Box: %1Homokozó: %1
-
+ Template: %1Sablon: %1
-
+ Global: %1Globál: %1
-
+ Default: %1Alapértelmezett: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Ezt a homokozót törölték, ezért a konfigurációt nem lehet menteni.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Néhány változtatás még nincs elmentetve. Valóban bezárja ezt az opcióablakot?
-
+ Enter program:Program megadása:
@@ -6271,6 +6288,194 @@ If you are a great patreaon supporter already, sandboxie can check online for an
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6626,8 +6831,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
+ Protect the system from sandboxed processesA rendszer védelme a homokozóban futó folyamatoktól
@@ -6764,12 +6968,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Nyomtatási korlátozások
-
+ Network restrictionsHálózati korlátozások
-
+ Block network files and folders, unless specifically opened.Hálózati fájlok és mappák blokkolása, hacsak nincs külön megnyitva.
@@ -6792,11 +6996,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameNév
@@ -6826,13 +7030,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveEltávolítás
@@ -6898,11 +7104,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
+
+
-
+
+ Show TemplatesSablonok megjelenítése
@@ -6977,7 +7183,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Nyissa meg a Windows hitelesítő adatok áruházát (felhasználói mód)
-
+ Prevent change to network and firewall parameters (user mode)A hálózati és tűzfalparaméterek módosításának megakadályozása (felhasználói mód)
@@ -7188,11 +7394,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
+ Move UpMozgatás felfelé
+ Move DownMozgatás lefelé
@@ -7238,69 +7446,134 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image Protection
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7537,7 +7810,9 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
-
+
+
+ ProgramProgram
@@ -7545,17 +7820,20 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
-
+ ActionMűvelet
+ PortPort
+
+ IPIP
@@ -7565,7 +7843,7 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
Protokoll
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.FIGYELEM: A Windows szűrőplatform nincs engedélyezve az illesztőprogrammal, ezért ezeket a szabályokat csak felhasználói módban kell alkalmazni, és nem lehet érvényesíteni !!! Ez azt jelenti, hogy a rosszindulatú alkalmazások megkerülhetik őket.
@@ -7643,57 +7921,57 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
Alkalmazza a Bezárás...=!<program>,... szabályokat a homokozóban található összes bináris fájlra is.
-
+ File RecoveryFájl helyreállítás
-
+ Quick RecoveryGyors helyreállítás
-
+ Add FolderMappa hozzáadása
-
+ Immediate RecoveryAzonnali helyreállítás
-
+ Ignore ExtensionKiterjesztés kihagyása
-
+ Ignore FolderMappa kihagyása
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Azonnali helyreállítási kérés engedélyezése, hogy a fájlokat a létrehozásuk után azonnal helyreállíthassa.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Az "Azonnali helyreállításból" kizárhat mappákat és fájltípusokat (vagy fájlkiterjesztéseket).
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. A "Gyors helyreállítás" funkció meghívása után a következő mappákat ellenőrzik a homokozós tartalom szempontjából.
-
+ Advanced OptionsFejlett beállítások
-
+ MiscellaneousEgyebek
@@ -7714,7 +7992,7 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
-
+ Protect the sandbox integrity itselfA homokozó integritásának védelme
@@ -7735,7 +8013,7 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
Védje meg az izolált SYSTEM folyamatokat a nem privilegizált folyamatoktól
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Egyéni dummy manifest fájlok használatának kikényszerítése (örökölt viselkedés)
@@ -7787,8 +8065,8 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
Csak a privilegizált folyamatok számára engedélyezze a szolgáltatásvezérlő menedzser (Service Control Manager) elérését
-
-
+
+ CompatibilityKompatibilitás
@@ -7798,7 +8076,7 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
Sandbox-folyamatok hozzáadása munkaobjektumokhoz (ajánlott)
-
+ Emulate sandboxed window station for all processesA homokozós ablakállomás emulálása minden folyamathoz
@@ -7832,7 +8110,7 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
A nem homokozós folyamatok memóriájának olvasásának engedélyezése (nem ajánlott)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Alapértelmezés szerint tiltsa le az "RpcMgmtSetComTimeout" használatát (ez megoldhatja a kompatibilitási problémákat)
@@ -7857,81 +8135,81 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
Az alábbi lehetőségek biztonságosan használhatók, ha nem ad rendszergazdai jogokat.
-
+ TriggersIndítók
-
+ EventEsemény
-
-
-
-
+
+
+
+ Run CommandParancs futtatása
-
+ Start ServiceSzolgáltatás indítása
-
+ These events are executed each time a box is startedEzek az események minden alkalommal végrehajtódnak, amikor egy homokozó elindul
-
+ On Box StartHomokozó indításakor
-
-
+
+ These commands are run UNBOXED just before the box content is deletedEzek a parancsok NEM IZOLÁLTAN futnak le közvetlenül a homokozó tartalmának törlése előtt
-
+ Allow use of nested job objects (works on Windows 8 and later)Beágyazott munkaobjektumok használatának engedélyezése (Windows 8 és újabb rendszeren működik)
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Ezek a parancsok csak akkor hajtódnak végre, ha egy homokozó inicializálva van. Az újrafuttatáshoz a homokozó tartalmát törölni kell.
-
+ On Box InitHomokozó inicializálásakor
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Here you can specify actions to be executed automatically on various box events.Itt adhatja meg a különféle homokozó eseményeken automatikusan végrehajtandó műveleteket.
-
+ Hide ProcessesFolyamatok elrejtése
-
+ Add ProcessFolyamat hozzáadása
-
+ Hide host processes from processes running in the sandbox.Gazdafolyamatok elrejtése a homokozóban futó folyamatok elől.
@@ -7941,48 +8219,48 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
Korlátozások
-
+ Various OptionsKülönféle lehetőségek
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Az "ElevateCreateProcess" megoldás alkalmazása (örökölt viselkedés)
-
+ Use desktop object workaround for all processes
-
+ This command will be run before the box content will be deletedEz a parancs a homokozó tartalmának törlése előtt fut le
-
+ On File RecoveryFájl helyreállításkor
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedEz a parancs a fájl helyreállítása előtt fut le, és a fájl elérési útja lesz átadva első argumentumként. Ha ez a parancs a 0-tól eltérő értéket ad vissza, a helyreállítás blokkolva lesz
-
+ Run File CheckerFájlellenőrző futtatása
-
+ On Delete ContentTartalom törlésekor
-
+ Don't allow sandboxed processes to see processes running in other boxesNe engedje, hogy a homokozós folyamatok más homokozóban futó folyamatokat lássák
@@ -7993,7 +8271,7 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
-
+ ProcessFolyamat
@@ -8002,45 +8280,45 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
A folyamatokhoz való olvasási hozzáférés letiltása ebben a sandboxban
-
+ UsersFelhasználó
-
+ Restrict Resource Access monitor to administrators onlyAz erőforrás-hozzáférés figyelőjét csak a rendszergazdákra korlátozhatja
-
+ Add UserFelhasználó hozzáadása
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.Adjon hozzá felhasználói fiókokat és felhasználói csoportokat az alábbi listához, hogy a homokozó használatát csak azokra a fiókokra korlátozza. Ha a lista üres, akkor a homokozót minden felhasználói fiók használhatja.
-
+ Add OptionOpció hozzáadása
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Itt konfigurálhat speciális folyamatonkénti beállításokat a kompatibilitás javítása és/vagy a homokozó viselkedésének testreszabása érdekében.
-
+ OptionOpció
-
+ TracingNyomkövetés
@@ -8049,22 +8327,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
API-hívás nyomkövetése (a LogAPI-t telepíteni kell az Sbie-könyvtárba)
-
+ Pipe TracePipe nyomkövetés
-
+ Log all SetError's to Trace log (creates a lot of output)Minden SetError rögzítése a nyomkövetési naplóban (sok kimeneti adatot generál)
-
+ Log Debug Output to the Trace LogNapló hibakeresési kimenete a nyomkövetési naplóba
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8087,113 +8365,113 @@ A naplózást az ini használatával testreszabhatja, ha megadja:
Ntdll rendszerhívások nyomon követése (sok kimenetet hoz létre)
-
+ File TraceFájl nyomkövetés
-
+ Disable Resource Access MonitorErőforrás-hozzáférés figyelő letiltása
-
+ IPC TraceIPC nyomok
-
+ GUI TraceGUI nyomkövetés
-
+ Resource Access MonitorErőforrás-hozzáférés figyelő
-
+ Access TracingHozzáférés nyomon követése
-
+ COM Class TraceCOM Class nyom
-
+ Key TraceKulcskövetés
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Az elveszett védelem kompenzálásához tekintse meg a 'Drop Rights' beállítási oldalát a 'Korlátozások beállításai' csoportban.
-
+ Network FirewallHálózati tűzfal
-
+ API call Trace (traces all SBIE hooks)
-
+ DebugHibakeresés
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!FIGYELEM, ezek az opciók letilthatják az alapvető biztonsági garanciákat és megszakíthatják a homokozó biztonságát!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Ezeket az opciókat a kompatibilitási problémák hibakeresésére tervezték. Kérjük, csak tesztelési célra használja.
-
+ App TemplatesProgram sablonok
-
+ Filter CategoriesSzűrő kategóriák
-
+ Text FilterSzöveg szűrő
-
+ Add TemplateSablon hozzáadása
-
+ This list contains a large amount of sandbox compatibility enhancing templatesEz a lista nagy mennyiségű homokozó kompatibilitást javító sablont tartalmaz
-
+ CategoryKategória
-
+ Template FoldersSablon mappák
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8202,63 +8480,68 @@ Please note that this values are currently user specific and saved globally for
Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak és globálisan vannak mentve az összes homokozóhoz.
-
-
+
+ ValueÉrték
-
+ On Box Terminate
-
+
+ DNS Request Logging
+
+
+
+ Syscall Trace (creates a lot of output)
-
+ TemplatesSablonok
-
+ Open Template
-
+ AccessibilityHozzáférhetőség
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessKépernyőolvasók: JAWS, NVDA, Window-Eyes, System Acces
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.A következő beállítások lehetővé teszik a Sandboxie használatát akadálymentes szoftverrel kombinálva. Felhívjuk figyelmét, hogy a Sandboxie bizonyos mértékű védelme szükségszerűen elvész, amikor ezek a beállítások érvénybe lépnek.
-
+ Edit ini SectionKonfiguráció szerkesztése
-
+ Edit iniINI szerkesztése
-
+ CancelMégse
-
+ SaveMentés
@@ -9438,4 +9721,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Pillanatfelvétel készítése
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Protokoll:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Port:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_it.ts b/SandboxiePlus/SandMan/sandman_it.ts
index d3ce74d2..2983e33d 100644
--- a/SandboxiePlus/SandMan/sandman_it.ts
+++ b/SandboxiePlus/SandMan/sandman_it.ts
@@ -1558,76 +1558,76 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Percorso IPC dell'area virtuale
-
+ Add special option:Aggiungi opzione speciale:
-
-
+
+ On StartAll'avvio
-
-
-
-
-
+
+
+
+
+ Run CommandAvvia comando
-
+ Start ServiceAvvia servizio
-
+ On InitAll'inizializzazione
-
+ On File RecoveryAl recupero dei file
-
+ On Delete ContentAlla rimozione del contenuto
-
+ On Terminate
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedImmettere la riga di comando da eseguire
-
+ Please enter a program file name to allow access to this sandbox
-
+ Please enter a program file name to deny access to this sandbox
-
+ DenyNega
-
+ %1 (%2)%1 (%2)
@@ -1829,8 +1829,8 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
-
+
+ Browse for FileCerca file
@@ -1841,52 +1841,52 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Cerca cartella
-
+ File OptionsOpzioni file
-
+ GroupingRaggruppamento
-
+ Add %1 TemplateAggiungi modello %1
-
+ Search for optionsCerca opzioni
-
+ Box: %1Area virtuale: %1
-
+ Template: %1Modello: %1
-
+ Global: %1Globale: %1
-
+ Default: %1Default: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Questa area virtuale è stata cancellata, quindi la configurazione non può essere salvata.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Alcune modifiche non sono state ancora salvate, vuoi chiudere la finestra opzioni?
@@ -1906,7 +1906,7 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Seleziona programma
-
+ Please enter a service identifierInserire un identificativo di servizio
@@ -1927,15 +1927,15 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Immetti un comando
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Gruppo: %1
@@ -1945,7 +1945,7 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Immetti un nome per il nuovo gruppo
-
+ Enter program:Scegli il programma:
@@ -1985,7 +1985,7 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
+
@@ -1994,188 +1994,190 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Seleziona directory
-
+ ClosedNon consentito
-
+ Closed RTWinRT non consentito
-
+ Read OnlySola lettura
-
+ NormalNormale
-
+ OpenConsenti
-
+ Open for AllConsenti tutto
-
+ No RenameNessuna rinomina
-
+ Box Only (Write Only)Solo area virtuale (sola scrittura)
-
+ Ignore UIPIIgnora UIPI
-
-
-
+
+
+ UnknownSconosciuto
-
+ Regular Sandboxie behavior - allow read and also copy on write.Comportamento regolare di Sandboxie: consenti lettura e copia in scrittura.
-
+ Allow write-access outside the sandbox.Consenti l'accesso in scrittura all'esterno dell'area virtuale.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Consenti l'accesso in scrittura all'esterno dell'area virtuale, anche per le applicazioni installate all'interno dell'area virtuale.
-
+ Don't rename window classes.Non rinominare le classi delle finestre.
-
+ Deny access to host location and prevent creation of sandboxed copies.Nega l'accesso alla posizione dell'host e impedisci la creazione di copie nell'area virtuale.
-
+ Block access to WinRT class.Blocca l'accesso alla classe WinRT.
-
+ Allow read-only access only.Consenti l'accesso in sola lettura.
-
+ Hide host files, folders or registry keys from sandboxed processes.Nascondi i file host, le cartelle o le chiavi di registro dai processi dell'area virtuale.
-
+ Ignore UIPI restrictions for processes.Ignora restrizioni UIPI per i processi.
-
+ File/FolderFile/Cartella
-
+ RegistryRegistro
-
+ IPC PathPercorso IPC
-
+ Wnd ClassClasse finestra
-
+ COM ObjectOggetto COM
-
+ Select FileSeleziona file
-
+ All Files (*.*)Tutti i file (*.*)
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsTutti i programmi
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}Gli oggetti COM richiedono il rispettivo GUID, come: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.Le interfacce RT devono essere specificate per nome.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?L'apertura di tutti gli accessi IPC aprirà anche l'accesso COM. Limitare l'accesso COM nell'area virtuale?
-
+ Don't ask in futureNon chiedere in futuro
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead'OpenWinClass=program.exe,#' non è supportato, si prega di usare 'NoRenameWinClass=program.exe,*'
-
-
+
+
-
+ Template values can not be edited.I valori predefiniti non possono essere modificati.
-
+ Template values can not be removed.I valori predefiniti non possono essere rimossi.
@@ -2280,68 +2282,83 @@ Please select a folder which contains this file.
-
-
+
+ AnyQualsiasi
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow accessConsenti accesso
-
+ Block using Windows Filtering PlatformImposta blocco mediante la piattaforma di filtraggio di Windows
-
+ Block by denying access to Network devicesBlocca accesso ai dispositivi di rete
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowConsenti
-
+ Block (WFP)Blocca (WFP)
-
+ Block (NDev)Blocca (NDev)
-
+ A non empty program name is required.È richiesto un nome di programma non vuoto.
-
+ BlockBlocca
@@ -6350,6 +6367,194 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Consenti l'accesso diretto ai segnalibri di %1
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6700,8 +6905,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
-
+ Protect the system from sandboxed processesProteggi il sistema dai processi avviati nell'area virtuale
@@ -6711,7 +6915,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Restrizioni di elevazione
-
+ Block network files and folders, unless specifically opened.Blocca i file e le cartelle di rete, a meno che non siano aperti individualmente.
@@ -6721,7 +6925,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Fai credere alle applicazioni di avviarsi con privilegi elevati (esegue gli installer in modo sicuro)
-
+ Network restrictionsRestrizioni di rete
@@ -6861,11 +7065,11 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
-
-
-
-
+
+
+
+
+ NameNome
@@ -6895,13 +7099,15 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveRimuovi
@@ -6967,11 +7173,11 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
-
-
+
+
-
+
+ Show TemplatesMostra modelli
@@ -7026,7 +7232,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Apri il servizio di gestione credenziali di Windows (user mode)
-
+ Prevent change to network and firewall parameters (user mode)Blocca la modifica dei parametri di rete e firewall (user mode)
@@ -7186,7 +7392,9 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
+
+
+ ProgramProgramma
@@ -7226,47 +7434,47 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Aggiungi percorso IPC
-
+ File RecoveryRecupero file
-
+ Add FolderAggiungi cartella
-
+ Ignore ExtensionIgnora estensione
-
+ Ignore FolderIgnora cartella
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Attiva notifica di Recupero immediato dei file, non appena questi vengono creati.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.È possibile escludere estensioni di file e cartelle dal Recupero immediato.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Una volta richiamata la funzione di Recupero veloce, verrà analizzato il contenuto delle seguenti cartelle nell'area virtuale.
-
+ Advanced OptionsOpzioni avanzate
-
+ MiscellaneousOpzioni varie
@@ -7277,7 +7485,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
+ Protect the sandbox integrity itselfProteggi l'integrità dell'area virtuale
@@ -7287,13 +7495,13 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Non avviare servizi nell'area virtuale tramite token di sistema (raccomandato)
-
-
+
+ CompatibilityCompatibilità
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Forza l'utilizzo dei file manifest fittizi (legacy)
@@ -7319,7 +7527,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Avvisa l'utente durante la copia dei file
-
+ Emulate sandboxed window station for all processesEmula window station per tutti i processi nell'area virtuale
@@ -7448,11 +7656,13 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
+ Move UpSposta in alto
+ Move DownSposta in basso
@@ -7482,47 +7692,47 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Isolamento degli accessi
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image ProtectionProtezione immagine
-
+ Issue message 1305 when a program tries to load a sandboxed dllMostra messaggio 1305 quando un programma tenta di caricare un file DLL nell'area virtuale
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxImpedisci ai programmi in esecuzione nell'area virtuale (installati sul sistema host) di caricare file DLL
@@ -7533,24 +7743,24 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
La selezione parziale impedisce la rimozione dell'area virtuale, ma non la cancellazione del contenuto.
-
+ Dlls && ExtensionsDLL ed estensioni
-
+ DescriptionDescrizione
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Le regole di accesso alle risorse di Sandboxie spesso discriminano i programmi eseguibili all'interno dell'area virtuale. OpenFilePath e OpenKeyPath funzionano solo per gli eseguibili delle applicazioni situati sull'host in modo nativo. Per definire una regola senza questa restrizione, è necessario utilizzare OpenPipePath o OpenConfPath. Allo stesso modo, tutte le regole Closed(File|Key|Ipc)Path che sono definite per negazione, ad esempio ‘ClosedFilePath=!iexplore.exe,C:\Users*’ saranno sempre chiuse per gli eseguibili situati all'interno dell'area virtuale. Entrambi i criteri di restrizione possono essere disattivati dalla pagina “Criteri di accesso”.
In questo modo si impedisce che i processi dannosi all'interno dell'area virtuale creino una copia rinominata di se stessi e accedano alle risorse protette. Un altro vettore di exploit è l'iniezione di una libreria DLL in un processo autorizzato per ottenere l'accesso a tutto ciò a cui è consentito accedere. Utilizzando la protezione dell'immagine host, questo può essere evitato impedendo alle applicazioni (installate sull'host) in esecuzione nell'area virtuale di caricare le librerie DLL dalla stessa area virtuale.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Segnalare eventuali errori di inglese direttamente all'autore di Sandboxie Plus
@@ -7734,7 +7944,7 @@ Per specificare un processo, utilizza '$:program.exe' come percorso.
-
+ ActionAzione
@@ -7767,11 +7977,14 @@ Per specificare un processo, utilizza '$:program.exe' come percorso.
+ PortPorta
+
+ IPIP
@@ -7781,27 +7994,92 @@ Per specificare un processo, utilizza '$:program.exe' come percorso.
Protocollo
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.ATTENZIONE: La piattaforma di filtraggio di Windows non è attiva come impostazione predefinita. Qualora non venisse attivata manualmente, queste regole verranno applicate solo in user mode e le applicazioni dannose potrebbero bypassarle.
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Quick RecoveryRecupero veloce
-
+ Immediate RecoveryRecupero immediato
-
+ Various OptionsOpzioni varie
-
+ Allow use of nested job objects (works on Windows 8 and later)Consenti l'uso dei processi nidificati (per Windows 8 e versioni successive)
@@ -7879,7 +8157,7 @@ Il livello di corrispondenza del processo ha una priorità più alta della speci
Proteggi i processi di sistema nell'area virtuale dai processi senza privilegi
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Disattiva l'utilizzo di RpcMgmtSetComTimeout per impostazione predefinita (potrebbe risolvere problemi di compatibilità)
@@ -7913,47 +8191,47 @@ Il livello di corrispondenza del processo ha una priorità più alta della speci
Le opzioni sottostanti possono essere usate senza rischi quando non si concedono privilegi amministrativi.
-
+ Hide ProcessesNascondi processi
-
+ Add ProcessAggiungi processo
-
+ Hide host processes from processes running in the sandbox.Nascondi i processi di host dai processi in esecuzione nell'area virtuale.
-
+ Don't allow sandboxed processes to see processes running in other boxesNon consentire ai processi dell'area virtuale di vedere i processi avviati in altre aree virtuali
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ UsersUtenti
-
+ Restrict Resource Access monitor to administrators onlyLimita il log di accesso risorse ai soli amministratori
-
+ Add UserAggiungi utente
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -7962,32 +8240,32 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: le impostazioni dei programmi e delle cartelle forzate nell'area virtuale non si applicano agli account utente non abilitati all'utilizzo dell'area virtuale.
-
+ TracingTracing
-
+ API call Trace (traces all SBIE hooks)
-
+ COM Class TraceTraccia classe COM
-
+ IPC TraceTraccia IPC
-
+ Key TraceTraccia chiavi di registro
-
+ GUI TraceTraccia GUI
@@ -7996,28 +8274,28 @@ Nota: le impostazioni dei programmi e delle cartelle forzate nell'area virt
Traccia chiamata API (richiede l'installazione di LogAPI nella cartella di Sandboxie Plus)
-
+ Log all SetError's to Trace log (creates a lot of output)Sostituibile con "log di traccia", tuttavia "log di accesso" mi sembra più adatto per i non espertiRegistra tutti i SetError nel log di accesso (genera molto output)
-
+ File TraceTraccia file
-
+ Pipe TraceTraccia pipe
-
+ Access TracingLog di accesso
-
+ Log Debug Output to the Trace LogSostituibile con "log di traccia", tuttavia "log di accesso" mi sembra più adatto per i non espertiRegistra output di debug nel log di accesso
@@ -8058,63 +8336,63 @@ Nota: le impostazioni dei programmi e delle cartelle forzate nell'area virt
Mostra messaggio 2111 quando è negato l'accesso a un processo
-
+ TriggersAttivazioni
-
+ EventEvento
-
-
-
-
+
+
+
+ Run CommandAvvia comando
-
+ Start ServiceAvvia servizio
-
+ These events are executed each time a box is startedQuesti eventi vengono eseguiti a ogni avvio di un'area virtuale
-
+ On Box StartQui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaAll'avvio<br />dell'area virtuale
-
-
+
+ These commands are run UNBOXED just before the box content is deletedQuesti comandi vengono eseguiti FUORI dall'area virtuale poco prima dell'eliminazione del contenuto
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Questi comandi vengono eseguiti solamente all'inizializzazione di un'area virtuale. Per eseguirli nuovamente, il contenuto dell'area virtuale dovrà essere rimosso.
-
+ On Box InitQui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaAll'inizializzazione<br />dell'area virtuale
-
+ Here you can specify actions to be executed automatically on various box events.È possibile specificare una lista di azioni che verranno eseguite automaticamente in base agli eventi dell'area virtuale.
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8136,73 +8414,73 @@ Queste opzioni impostano la maschera degli eventi a "*" - tutti gli ev
Traccia chiamata di sistema Ntdll (genera molto output)
-
+ Disable Resource Access MonitorDisattiva monitor di accesso risorse per quest'area virtuale
-
+ Resource Access MonitorMonitor accesso risorse
-
+ Network FirewallFirewall di rete
-
+ DebugDebug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!ATTENZIONE! Queste opzioni possono disattivare le misure di sicurezza e compromettere la sicurezza dell'area virtuale!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Queste opzioni sono destinate al debug dei problemi di compatibilità, si prega di utilizzarle solo per scopi di test.
-
+ App TemplatesModelli applicazioni
-
+ Filter CategoriesFiltra categorie
-
+ Text FilterCerca
-
+ Add TemplateAggiungi modello
-
+ CategoryCategoria
-
+ This list contains a large amount of sandbox compatibility enhancing templatesQuesto elenco contiene un gran numero di modelli di compatibilità software
-
+ Template FoldersPercorsi modelli
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8211,23 +8489,23 @@ Please note that this values are currently user specific and saved globally for
I seguenti valori sono specifici per l'utente e salvati a livello globale per tutte le aree virtuali.
-
-
+
+ ValueValore
-
+ AccessibilityAccessibilità
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Per compensare alla disabilitazione delle misure di protezione, consultare la pagina Limitazione dei diritti, nel gruppo Restrizioni.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessScreen reader: JAWS, NVDA, Window-Eyes, System Access
@@ -8237,37 +8515,37 @@ I seguenti valori sono specifici per l'utente e salvati a livello globale p
Restrizioni
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Applica il workaround ElevateCreateProcess (legacy)
-
+ Use desktop object workaround for all processesUsa il workaround dell'oggetto desktop per tutti i processi
-
+ This command will be run before the box content will be deletedQuesto comando verrà eseguito prima che il contenuto dell'area virtuale venga eliminato
-
+ On File RecoveryAl recupero dei file
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedQuesto comando verrà eseguito prima del recupero di un file e il percorso del file passato come primo argomento. Se questo comando restituisce qualcosa di diverso da 0, il recupero viene bloccato
-
+ Run File CheckerAvvia controllo dei file
-
+ On Delete ContentAlla rimozione del<br />contenuto
@@ -8278,7 +8556,7 @@ I seguenti valori sono specifici per l'utente e salvati a livello globale p
-
+ ProcessProcesso
@@ -8287,64 +8565,69 @@ I seguenti valori sono specifici per l'utente e salvati a livello globale p
Blocca anche l'accesso in lettura ai processi in questa area virtuale
-
+ Add OptionAggiungi opzione
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Qui è possibile configurare opzioni avanzate per processo al fine di migliorare la compatibilità e/o personalizzare il comportamento dell'area virtuale.
-
+ OptionOpzione
-
+ On Box Terminate
-
+
+ DNS Request Logging
+
+
+
+ Syscall Trace (creates a lot of output)
-
+ TemplatesModelli
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Le seguenti impostazioni consentono di usare Sandboxie in combinazione con i programmi per l'accesso facilitato. Tuttavia, alcune misure di protezione di Sandboxie vengono disabilitate quando queste impostazioni sono attive.
-
+ Edit ini SectionQui ho forzato di proposito un ritorno a capoModifica configurazione
area virtuale
-
+ Edit iniModifica Sandboxie.ini
-
+ CancelAnnulla
-
+ SaveSalva
@@ -9537,4 +9820,134 @@ globale
Crea istantanea
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Protocollo:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Porta:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_ja.ts b/SandboxiePlus/SandMan/sandman_ja.ts
index 5f385355..03c423f1 100644
--- a/SandboxiePlus/SandMan/sandman_ja.ts
+++ b/SandboxiePlus/SandMan/sandman_ja.ts
@@ -1342,91 +1342,93 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ File Options
-
+ Grouping
-
-
+
+ Browse for File
-
+ Add %1 Template
-
+ Search for options
-
+ Box: %1
-
+ Template: %1
-
+ Global: %1
-
+ Default: %1
-
+ This sandbox has been deleted hence configuration can not be saved.
-
+ Some changes haven't been saved yet, do you really want to close this options window?
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All Programs
-
+ Enter program:
@@ -1436,139 +1438,139 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Normal
-
+ Open
-
+ Open for All
-
+ No Rename
-
+ Closed
-
+ Closed RT
-
+ Read Only
-
+ Box Only (Write Only)
-
+ Ignore UIPI
-
-
-
+
+
+ Unknown
-
+ Regular Sandboxie behavior - allow read and also copy on write.
-
+ Allow write-access outside the sandbox.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.
-
+ Don't rename window classes.
-
+ Deny access to host location and prevent creation of sandboxed copies.
-
+ Block access to WinRT class.
-
+ Allow read-only access only.
-
+ Hide host files, folders or registry keys from sandboxed processes.
-
+ Ignore UIPI restrictions for processes.
-
+ File/Folder
-
+ Registry
-
+ IPC Path
-
+ Wnd Class
-
+ COM Object
-
+ Select File
-
+ All Files (*.*)
-
+
@@ -1577,42 +1579,42 @@ Note: The update check is often behind the latest GitHub release to ensure that
ディレクトリの選択
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?
-
+ Don't ask in future
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead
-
-
+
+
-
+ Template values can not be edited.
-
+ Template values can not be removed.
@@ -1672,88 +1674,88 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Add special option:
-
-
+
+ On Start
-
-
-
-
-
+
+
+
+
+ Run Command
-
+ Start Service
-
+ On Init
-
+ On File Recovery
-
+ On Delete Content
-
+ On Terminate
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executed
-
+ Please enter a service identifier
-
+ Please enter a program file name to allow access to this sandbox
-
+ Please enter a program file name to deny access to this sandbox
-
+ Deny
-
-
-
+
+
+ Allow
-
+ %1 (%2)
@@ -2016,64 +2018,79 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+ Any
-
-
+
+ TCP
-
-
+
+ UDP
-
-
+
+ ICMP
-
+ Allow access
-
+ Block using Windows Filtering Platform
-
+ Block by denying access to Network devices
-
+ Block (WFP)
-
+ Block (NDev)
-
+ A non empty program name is required.
-
+ Block
+
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+ Please enter a file extension to be excluded
@@ -5983,6 +6000,194 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6456,11 +6661,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
+
+
-
+
+ Show Templates
@@ -6468,7 +6673,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Action
@@ -6480,7 +6685,9 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+
+
+ Program
@@ -6530,7 +6737,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Prevent change to network and firewall parameters (user mode)
@@ -6550,7 +6757,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Block network files and folders, unless specifically opened.
@@ -6574,8 +6781,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
+ Protect the system from sandboxed processes
@@ -6590,7 +6796,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Network restrictions
@@ -6615,13 +6821,15 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Remove
@@ -6639,11 +6847,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
+
+
+
+
+ Name名前
@@ -6654,11 +6862,13 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
+ Move Up上に移動
+ Move Down下に移動
@@ -6784,7 +6994,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Protect the sandbox integrity itself
@@ -6826,7 +7036,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Process
@@ -7291,7 +7501,7 @@ The process match level has a higher priority than the specificity and describes
-
+ Network Firewall
@@ -7327,11 +7537,14 @@ The process match level has a higher priority than the specificity and describes
+ Port
+
+ IP
@@ -7341,275 +7554,340 @@ The process match level has a higher priority than the specificity and describes
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ File Recovery
-
+ Quick Recovery
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content.
-
+ Add Folderフォルダを追加
-
+ Immediate Recovery直接リカバリ
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.
-
+ Ignore Extension
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.
-
+ Ignore Folder
-
+ Various Options
-
-
+
+ Compatibility
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)
-
+ Emulate sandboxed window station for all processes
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)
-
+ Force usage of custom dummy Manifest files (legacy behaviour)
-
+ Use desktop object workaround for all processes
-
+ Allow use of nested job objects (works on Windows 8 and later)
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Dlls && Extensions
-
+ Image Protection
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.
-
+ Advanced Options
-
+ Miscellaneous
-
+ Add Option
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.
-
+ Option
-
-
+
+ Value
-
+ Triggers
-
+ On Box Terminate
-
+ This command will be run before the box content will be deleted
-
-
-
-
+
+
+
+ Run Command
-
+ Event
-
-
+
+ These commands are run UNBOXED just before the box content is deleted
-
+ On File Recovery
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blocked
-
+ Run File Checker
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.
-
+ On Box Init
-
+ Here you can specify actions to be executed automatically on various box events.
-
+ These events are executed each time a box is started
-
+ On Box Start
-
+ Start Service
-
+ On Delete Content
@@ -7636,89 +7914,94 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
-
+ Hide Processes
-
+ Add Process
-
+ Don't allow sandboxed processes to see processes running in other boxes
-
+ Hide host processes from processes running in the sandbox.
-
+ Users
-
+ Restrict Resource Access monitor to administrators only
-
+ Add User
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
-
+ Tracing
-
+ API call Trace (traces all SBIE hooks)
-
+ Key Trace
-
+
+ DNS Request Logging
+
+
+
+ GUI Trace
-
+ Log Debug Output to the Trace Log
-
+ Log all SetError's to Trace log (creates a lot of output)
-
+ Access Tracing
-
+ Syscall Trace (creates a lot of output)
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -7730,144 +8013,144 @@ instead of "*".
-
+ Resource Access Monitor
-
+ COM Class Trace
-
+ Pipe Trace
-
+ File Trace
-
+ Disable Resource Access Monitor
-
+ IPC Trace
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Debug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use.
-
+ App Templatesアプリテンプレート
-
+ Templates
-
+ This list contains a large amount of sandbox compatibility enhancing templates
-
+ Text Filter
-
+ Add Template
-
+ Filter Categories
-
+ Category
-
+ Open Template
-
+ Template Folders
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
-
+ Accessibility
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System Access
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.
-
+ Edit ini Sectionini 編集セクション
-
+ Edit iniini を編集
-
+ Cancelキャンセル
-
+ Save保存
@@ -8995,4 +9278,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_ko.ts b/SandboxiePlus/SandMan/sandman_ko.ts
index fb79db9f..cdf826de 100644
--- a/SandboxiePlus/SandMan/sandman_ko.ts
+++ b/SandboxiePlus/SandMan/sandman_ko.ts
@@ -1586,8 +1586,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
COptionsWindow
-
-
+
+ Browse for File파일 찾아보기
@@ -1598,139 +1598,139 @@ Note: The update check is often behind the latest GitHub release to ensure that
폴더 찾아보기
-
+ Closed닫힘
-
+ Closed RTRT 닫힘
-
+ Read Only읽기 전용
-
+ Normal일반
-
+ Open열기
-
+ Open for All모두 열기
-
+ No Rename이름 바꾸기 안 함
-
+ Box Only (Write Only)박스 전용 (쓰기 전용)
-
+ Ignore UIPIUIPI 무시
-
-
-
+
+
+ Unknown알 수 없음
-
+ Regular Sandboxie behavior - allow read and also copy on write.정기 Sandboxie 동작 - 읽기를 허용하고 쓰기 시 복사를 허용합니다.
-
+ Allow write-access outside the sandbox.샌드박스 외부에서 쓰기 액세스를 허용합니다.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.샌드박스 외부에 쓰기 액세스를 허용하고, 샌드박스 내부에 설치된 응용 프로그램에도 쓰기 액세스를 허용합니다.
-
+ Don't rename window classes.창 클래스 이름을 바꾸지 않습니다.
-
+ Deny access to host location and prevent creation of sandboxed copies.호스트 위치에 대한 액세스를 거부하고 샌드박스 복사본이 생성되지 않도록 합니다.
-
+ Block access to WinRT class.WinRT 클래스에 대한 액세스를 차단합니다.
-
+ Allow read-only access only.읽기 전용 액세스만 허용합니다.
-
+ Hide host files, folders or registry keys from sandboxed processes.샌드박스 프로세스에서 호스트 파일, 폴더 또는 레지스트리 키를 숨깁니다.
-
+ Ignore UIPI restrictions for processes.프로세스에 대한 UIPI 제한을 무시합니다.
-
+ File/Folder파일/폴더
-
+ Registry레지스트리
-
+ IPC PathIPC 경로
-
+ Wnd Class창 클래스
-
+ COM ObjectCOM 개체
-
+ Select File파일 선택
-
+ All Files (*.*)모든 파일 (*.*)
-
+
@@ -1739,69 +1739,71 @@ Note: The update check is often behind the latest GitHub release to ensure that
디렉터리 선택
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All Programs모든 프로그램
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1그룹: %1
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}COM 개체는 다음과 같이 GUID로 지정해야 합니다: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.RT 인터페이스는 이름으로 지정해야 합니다.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?모든 IPC 액세스를 열면 COM 액세스도 열립니다. 여전히 COM을 샌드박스로 제한하시겠습니까?
-
+ Don't ask in future앞으로 묻지 않음
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead'OpenWinClass=program.exe,#'는 지원되지 않으므로 대신 'NoRenameWinClass=program.exe,*'를 사용하십시오
-
-
+
+
-
+ Template values can not be edited.템플릿 값은 편집할 수 없습니다.
-
+ Template values can not be removed.템플릿 값은 제거할 수 없습니다.
@@ -1863,57 +1865,57 @@ Note: The update check is often behind the latest GitHub release to ensure that
샌드박스 ipc 루트
-
+ Add special option:특수 옵션 추가:
-
-
+
+ On Start시작 시
-
-
-
-
-
+
+
+
+
+ Run Command명령 실행
-
+ Start Service서비스 시작
-
+ On Init초기화 시
-
+ On File Recovery파일 복구 시
-
+ On Delete Content콘텐츠 삭제 시
-
+ On Terminate종료 시
-
+ Please enter a program file name to allow access to this sandbox이 샌드박스에 액세스를 허용하려면 프로그램 파일 이름을 입력하십시오
-
+ Please enter a program file name to deny access to this sandbox이 샌드박스에 액세스를 거부하려면 프로그램 파일 이름을 입력하십시오
@@ -1922,11 +1924,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
삭제 시
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executed실행할 명령줄을 입력하십시오
@@ -1935,12 +1937,12 @@ Note: The update check is often behind the latest GitHub release to ensure that
프로그램 파일 이름을 입력하십시오
-
+ Deny거부
-
+ %1 (%2)%1 (%2)
@@ -2187,7 +2189,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
이미지 헤더 복원됨
-
+ Please enter a service identifier서비스 식별자를 입력하십시오
@@ -2218,68 +2220,83 @@ Note: The update check is often behind the latest GitHub release to ensure that
먼저 그룹을 선택하세요.
-
-
+
+ Any모두
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow access액세스 허용
-
+ Block using Windows Filtering PlatformWindows 필터링 플랫폼을 사용하여 차단
-
+ Block by denying access to Network devices네트워크 장치에 대한 액세스를 거부하여 차단
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ Allow허용
-
+ Block (WFP)차단 (WFP)
-
+ Block (NDev)차단 (NDev)
-
+ A non empty program name is required.비어 있지 않은 프로그램 이름이 필요합니다.
-
+ Block차단
@@ -2399,57 +2416,57 @@ Please select a folder which contains this file.
Sandboxie Plus - '%1' 옵션
-
+ File Options파일 옵션
-
+ Grouping그룹
-
+ Add %1 Template%1 템플릿 추가
-
+ Search for options옵션 검색
-
+ Box: %1박스: %1
-
+ Template: %1템플릿: %1
-
+ Global: %1전역: %1
-
+ Default: %1기본값: %1
-
+ This sandbox has been deleted hence configuration can not be saved.이 샌드박스가 삭제되어 구성을 저장할 수 없습니다.
-
+ Some changes haven't been saved yet, do you really want to close this options window?일부 변경 사항이 아직 저장되지 않았습니다. 이 옵션 창을 닫으시겠습니까?
-
+ Enter program:프로그램 입력:
@@ -6548,6 +6565,194 @@ If you are a great patreaon supporter already, sandboxie can check online for an
%1 북마크에 대한 직접 액세스 허용
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6963,8 +7168,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
+ Protect the system from sandboxed processes샌드박스 프로세스로부터 시스템 보호
@@ -6974,11 +7178,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
+ Move Up위로 이동
+ Move Down아래로 이동
@@ -7123,12 +7329,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
인쇄 제한
-
+ Network restrictions네트워크 제한
-
+ Block network files and folders, unless specifically opened.특별히 열지 않는 한 네트워크 파일 및 폴더를 차단합니다.
@@ -7151,11 +7357,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Name이름
@@ -7185,13 +7391,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Remove제거
@@ -7257,11 +7465,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
+
+
-
+
+ Show Templates템플릿 표시
@@ -7311,7 +7519,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Windows 자격 증명 저장소 열기 (사용자 모드)
-
+ Prevent change to network and firewall parameters (user mode)네트워크 및 방화벽 매개 변수 (사용자 모드) 변경 방지
@@ -7499,7 +7707,9 @@ If leader processes are defined, all others are treated as lingering processes.<
-
+
+
+ Program프로그램
@@ -7507,17 +7717,20 @@ If leader processes are defined, all others are treated as lingering processes.<
-
+ Action동작
+ Port포트
+
+ IPIP
@@ -7527,7 +7740,7 @@ If leader processes are defined, all others are treated as lingering processes.<
프로토콜
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.주의: Windows 필터링 플랫폼이 드라이버에서 사용할 수 없으므로 이 규칙은 사용자 모드에서만 적용되며 강제 적용할 수 없습니다!!! 즉, 악성 프로그램이 이를 무시할 수 있습니다.
@@ -7578,47 +7791,47 @@ You can use 'Open for All' instead to make it apply to all programs, o
COM 개체 추가
-
+ File Recovery파일 복구
-
+ Add Folder폴더 추가
-
+ Ignore Extension확장자 무시
-
+ Ignore Folder폴더 무시
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.파일이 생성되는 즉시 복구할 수 있도록 즉시 복구 프롬프트를 실행합니다.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.즉시 복구에서 폴더 및 파일 유형 (또는 파일 확장자)을 제외할 수 있습니다.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. 빠른 복구 기능이 호출되면 샌드박스 내용에 대해 다음 폴더가 확인됩니다.
-
+ Advanced Options고급 옵션
-
+ Miscellaneous기타
@@ -7639,7 +7852,7 @@ You can use 'Open for All' instead to make it apply to all programs, o
-
+ Protect the sandbox integrity itself샌드박스 무결성 자체 보호
@@ -7664,7 +7877,7 @@ You can use 'Open for All' instead to make it apply to all programs, o
샌드박스 격리
-
+ Force usage of custom dummy Manifest files (legacy behaviour)사용자 지정 더미 매니페스트 파일 강제 사용 (레거시 동작)
@@ -7728,8 +7941,8 @@ The process match level has a higher priority than the specificity and describes
권한 있는 프로세스만 서비스 제어 관리자에 액세스할 수 있도록 허용
-
-
+
+ Compatibility호환성
@@ -7743,12 +7956,12 @@ The process match level has a higher priority than the specificity and describes
작업 개체에 샌드박스 프로세스 추가 (권장)
-
+ Emulate sandboxed window station for all processes모든 프로세스에 대해 샌드박스 창 스테이션 에뮬레이트
-
+ Allow use of nested job objects (works on Windows 8 and later)중첩된 작업 개체 사용 허용 (Windows 8 이상에서 작동)
@@ -7818,7 +8031,7 @@ The process match level has a higher priority than the specificity and describes
COM/RPC
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)기본적으로 RpcMgmtSetComTimeout 사용 안 함 (호환성 문제가 해결될 수 있음)
@@ -7847,41 +8060,41 @@ The process match level has a higher priority than the specificity and describes
액세스 격리
-
+ Triggers트리거
-
+ Event이벤트
-
-
-
-
+
+
+
+ Run Command명령 실행
-
+ Start Service서비스 시작
-
+ These events are executed each time a box is started이 이벤트는 박스가 시작될 때마다 실행됩니다
-
+ On Box Start박스 시작 시
-
-
+
+ These commands are run UNBOXED just before the box content is deleted이 명령은 박스 내용이 삭제되기 직전에 UNBOXED로 실행됩니다
@@ -7890,32 +8103,32 @@ The process match level has a higher priority than the specificity and describes
박스 삭제 시
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.이러한 명령은 박스가 초기화될 때만 실행됩니다. 다시 실행하려면 박스 내용을 삭제해야 합니다.
-
+ On Box Init박스 초기화 시
-
+ Here you can specify actions to be executed automatically on various box events.여기서 다양한 박스 이벤트에 대해 자동으로 실행할 동작을 지정할 수 있습니다.
-
+ Hide Processes프로세스 숨기기
-
+ Add Process프로세스 추가
-
+ Hide host processes from processes running in the sandbox.샌드박스에서 실행 중인 프로세스에서 호스트 프로세스를 숨깁니다.
@@ -7964,40 +8177,40 @@ The process match level has a higher priority than the specificity and describes
액세스 격리
-
+ Image Protection이미지 보호
-
+ Issue message 1305 when a program tries to load a sandboxed dll프로그램이 샌드박스된 dll을 로드하려고 할 때 1305 메시지 발생
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox호스트에 설치된 샌드박스 프로그램이 샌드박스에서 DLL을 로드하지 못하도록 방지
-
+ Dlls && ExtensionsDll 및 확장자
-
+ Description설명
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.샌드박스의 리소스 액세스 규칙은 샌드박스 내부에 있는 프로그램 이진 파일을 차별하는 경우가 많습니다. OpenFilePath 및 OpenKeyPath는 호스트에 기본적으로 있는 응용 프로그램 이진 파일에만 작동합니다. 이 제한이 없는 규칙을 정의하려면 OpenPipePath 또는 OpenConfPath를 사용해야 합니다. 마찬가지로 모두 닫힘 (파일|키|Ipc)예를 들어 ‘ClosedFilePath=! iexplore.exe,C:Users*'는 샌드박스 내에 있는 이진 파일의 경우 항상 닫혀 있습니다. 두 제한 정책 모두 "액세스 정책" 페이지에서 사용 불가능으로 설정할 수 있습니다.
이 작업은 샌드박스 내부의 악성 프로세스가 자신의 이름이 변경된 복사본을 생성하여 보호된 리소스에 액세스하는 것을 방지하기 위해 수행됩니다. 또 다른 공격 벡터는 라이브러리가 액세스할 수 있는 모든 항목에 액세스하기 위해 승인된 프로세스에 라이브러리를 주입하는 것입니다. 호스트 이미지 보호를 사용하면 샌드박스 내부에서 실행 중인 응용 프로그램 (호스트에 설치)이 샌드박스 자체에서 라이브러리를 로드하지 못하도록 차단하여 이러한 문제를 방지할 수 있습니다.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Sandboxies 기능은 SbieDll.dll에 의해 시작할 때 각 샌드박스 프로세스에 로드될 수 있는 옵션 DLL을 사용하여 향상될 수 있습니다. 전역 설정의 애드온 관리자는 몇 가지 유용한 확장 기능을 제공합니다. 일단 설치되면 현재 박스에 대해 활성화할 수 있습니다.
@@ -8285,57 +8498,57 @@ To specify a process use '$:program.exe' as path.
네트워크 옵션
-
+ Other Options기타 옵션
-
+ Port Blocking포트 차단
-
+ Block common SAMBA ports공통 SAMBA 포트 차단
-
+ Block DNS, UDP port 53DNS, UDP 포트 53 차단
-
+ Quick Recovery빠른 복구
-
+ Immediate Recovery즉시 복구
-
+ Various Options다양한 옵션
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)ElevateCreateProcess 해결 방법 적용 (레거시 동작)
-
+ Use desktop object workaround for all processes모든 프로세스에 대해 데스크톱 개체 해결 방법 사용
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.전역 단축키를 짧게 3번 누르면 이 예외가 무시됩니다.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked."모든 프로세스 종료"가 호출될 때 이 샌드박스가 종료되지 않도록 제외합니다.
@@ -8344,38 +8557,38 @@ To specify a process use '$:program.exe' as path.
이 명령은 샌드박스의 모든 프로세스가 완료된 후에 실행됩니다.
-
+ On Box Terminate박스 종료 시
-
+ This command will be run before the box content will be deleted박스 내용이 삭제되기 전에 이 명령이 실행됩니다
-
+ On File Recovery파일 복구 시
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked이 명령은 파일을 복구하기 전에 실행되며 파일 경로가 첫 번째 인수로 전달됩니다. 이 명령이 0이 아닌 다른 것을 반환하는 경우 복구가 차단됩니다
-
+ Run File Checker파일 검사 실행
-
+ On Delete Content콘텐츠 삭제 시
-
+ Don't allow sandboxed processes to see processes running in other boxes샌드박스 프로세스에서 다른 박스에서 실행 중인 프로세스 보기 허용 안 함
@@ -8386,7 +8599,7 @@ To specify a process use '$:program.exe' as path.
-
+ Process프로세스
@@ -8395,22 +8608,22 @@ To specify a process use '$:program.exe' as path.
이 샌드박스의 프로세스에 대한 읽기 액세스도 차단
-
+ Users사용자
-
+ Restrict Resource Access monitor to administrators only리소스 액세스 모니터를 관리자로만 제한
-
+ Add User사용자 추가
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8419,23 +8632,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
참고: 샌드박스에 대한 강제 프로그램 및 강제 폴더 설정은 샌드박스를 사용할 수 없는 사용자 계정에는 적용되지 않습니다.
-
+ Add Option옵션 추가
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.여기서 호환성 향상 및/또는 샌드박스 동작을 사용자 정의하도록 고급 프로세스별 옵션을 구성할 수 있습니다.
-
+ Option옵션
-
+ Tracing추적
@@ -8445,22 +8658,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
API 호출 추적 (Sbie 디렉터리에 LogAPI를 설치해야 함)
-
+ Pipe Trace파이프 추적
-
+ Log all SetError's to Trace log (creates a lot of output)모든 SetError를 추적 로그에 기록 (많은 출력을 생성)
-
+ Log Debug Output to the Trace Log추적 로그에 디버그 출력 기록
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8483,78 +8696,78 @@ instead of "*".Ntdll syscall 추적 (많은 출력을 생성합니다)
-
+ File Trace파일 추적
-
+ Disable Resource Access Monitor리소스 액세스 모니터 사용 안 함
-
+ IPC TraceIPC 추적
-
+ GUI TraceGUI 추적
-
+ Resource Access Monitor리소스 액세스 모니터
-
+ Access Tracing액세스 추적
-
+ COM Class TraceCOM 클래스 추적
-
+ Key Trace키 추적
-
+ Network Firewall네트워크 방화벽
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.이러한 명령은 샌드박스의 모든 프로세스가 완료된 후 언박스 상태로 실행됩니다.
-
+ API call Trace (traces all SBIE hooks)API 호출 추적 (모든 SBIE 후크 추적)
-
+ Debug디버그
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!경고, 이러한 옵션은 핵심 보안 보장을 비활성화하고 샌드박스 보안을 파괴할 수 있습니다!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. 이러한 옵션은 호환성 문제를 디버깅하기 위한 것이므로 프로덕션에서 사용하지 마십시오.
-
+ App Templates앱 템플릿
@@ -8563,22 +8776,22 @@ instead of "*".
템플릿 호환성
-
+ Filter Categories필터 범주
-
+ Text Filter텍스트 필터
-
+ Add Template템플릿 추가
-
+ This list contains a large amount of sandbox compatibility enhancing templates이 목록에는 많은 양의 샌드박스 호환성 향상 템플릿이 포함되어 있습니다
@@ -8587,17 +8800,17 @@ instead of "*".
템플릿 제거
-
+ Category범주
-
+ Template Folders템플릿 폴더
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8606,68 +8819,134 @@ Please note that this values are currently user specific and saved globally for
이 값은 현재 사용자마다 다르며 모든 박스에 대해 전역으로 저장됩니다.
-
-
+
+ Value값
-
+ Accessibility접근성
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.손실된 보호를 보상하려면 제한 설정 그룹의 삭제 권한 설정 페이지를 참조하십시오.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System Access화면 판독기: JAWS, NVDA, Window-Eyes, 시스템 액세스
- DNS Request Logging
- Dns Request Logging
- DNS 요청 로깅
+
+ DNS Filter
+
-
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+
+ DNS Request Logging
+ Dns Request Logging
+ DNS 요청 로깅
+
+
+ Syscall Trace (creates a lot of output)Syscall 추적 (출력이 많이 생성됨)
-
+ Templates템플릿
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.다음 설정은 내게 필요한 옵션 소프트웨어와 함께 Sandboxie를 사용할 수 있도록 합니다. 이러한 설정이 적용되면 일부 Sandboxie 보호 기능이 손실됩니다.
-
+ Edit ini Section이 섹션 편집
-
+ Edit iniini 편집
-
+ Cancel취소
-
+ Save저장
@@ -9906,4 +10185,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
스냅샷 생성
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ 프로토콜:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ 포트:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_nl.ts b/SandboxiePlus/SandMan/sandman_nl.ts
index 5a0e8b6f..14fde007 100644
--- a/SandboxiePlus/SandMan/sandman_nl.ts
+++ b/SandboxiePlus/SandMan/sandman_nl.ts
@@ -1478,8 +1478,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
COptionsWindow
-
-
+
+ Browse for FileBladeren naar bestand
@@ -1490,139 +1490,139 @@ Note: The update check is often behind the latest GitHub release to ensure that
Bladeren naar map
-
+ ClosedGesloten
-
+ Closed RTGesloten RT
-
+ Read OnlyAlleen-lezen
-
+ NormalNormaal
-
+ OpenOpen
-
+ Open for AllOpen voor iedereen
-
+ No Rename
-
+ Box Only (Write Only)Alleen box (alleen schrijven)
-
+ Ignore UIPI
-
-
-
+
+
+ UnknownOnbekend
-
+ Regular Sandboxie behavior - allow read and also copy on write.
-
+ Allow write-access outside the sandbox.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.
-
+ Don't rename window classes.
-
+ Deny access to host location and prevent creation of sandboxed copies.
-
+ Block access to WinRT class.
-
+ Allow read-only access only.
-
+ Hide host files, folders or registry keys from sandboxed processes.
-
+ Ignore UIPI restrictions for processes.
-
+ File/FolderBestand/map
-
+ RegistryRegister
-
+ IPC PathIPC-pad
-
+ Wnd ClassWnd-klasse
-
+ COM ObjectCOM-object
-
+ Select FileBestand selecteren
-
+ All Files (*.*)Alle bestanden (*.*)
-
+
@@ -1631,69 +1631,71 @@ Note: The update check is often behind the latest GitHub release to ensure that
Map selecteren
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsAlle programma's
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Groep: %1
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}COM-objecten moeten via hun GUID worden opgegeven, zoals: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.RT-interfaces moeten via hun naam worden opgegeven.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?
-
+ Don't ask in future
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead
-
-
+
+
-
+ Template values can not be edited.Sjabloonwaarden kunnen niet worden bewerkt.
-
+ Template values can not be removed.Sjabloonwaarden kunnen niet worden verwijderd.
@@ -1755,57 +1757,57 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Add special option:
-
-
+
+ On StartBij starten
-
-
-
-
-
+
+
+
+
+ Run CommandOpdracht uitvoeren
-
+ Start ServiceService starten
-
+ On InitBij initialisatie
-
+ On File Recovery
-
+ On Delete Content
-
+ On Terminate
-
+ Please enter a program file name to allow access to this sandbox
-
+ Please enter a program file name to deny access to this sandbox
@@ -1814,11 +1816,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
Bij verwijderen
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedVoer de uit te voeren opdrachtregel in
@@ -1827,12 +1829,12 @@ Note: The update check is often behind the latest GitHub release to ensure that
Voer een programma-bestandsnaam in
-
+ Deny
-
+ %1 (%2)%1 (%2)
@@ -2075,7 +2077,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Please enter a service identifierEen service-identifier invoeren
@@ -2106,68 +2108,83 @@ Note: The update check is often behind the latest GitHub release to ensure that
Selecteer eerst een groep
-
-
+
+ AnyElke
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow accessToegang toestaan
-
+ Block using Windows Filtering PlatformBlokkeren met Windows Filtering Platform
-
+ Block by denying access to Network devicesBlokkeren door toegang tot netwerkapparaten te weigeren
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowToestaan
-
+ Block (WFP)Blokkeren (WFP)
-
+ Block (NDev)Blokkeren (NDev)
-
+ A non empty program name is required.
-
+ BlockBlokkeren
@@ -2289,57 +2306,57 @@ Please select a folder which contains this file.
Sandboxie Plus - '%1' opties
-
+ File OptionsBestandsopties
-
+ Grouping
-
+ Add %1 Template
-
+ Search for options
-
+ Box: %1
-
+ Template: %1
-
+ Global: %1
-
+ Default: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Deze sandbox is verwijderd, dus de configuratie kan niet worden opgeslagen.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Sommige wijzigingen zijn nog niet opgeslagen. Wilt u dit venster echt sluiten?
-
+ Enter program:Programma invoeren:
@@ -6427,6 +6444,194 @@ If you are a great patreaon supporter already, sandboxie can check online for an
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6770,8 +6975,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
+ Protect the system from sandboxed processesHet systeem beschermen tegen gesandboxte processen
@@ -6916,12 +7120,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Afdrukbeperkingen
-
+ Network restrictionsNetwerkbeperkingen
-
+ Block network files and folders, unless specifically opened.Netwerkbestanden en -mappen blokkeren, tenzij ze specifiek worden geopend.
@@ -6944,11 +7148,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameNaam
@@ -6978,13 +7182,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveVerwijderen
@@ -7059,11 +7265,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
+
+
-
+
+ Show TemplatesSjablonen weergeven
@@ -7117,7 +7323,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Windows Credentials Store openen (gebruikersmodus)
-
+ Prevent change to network and firewall parameters (user mode)Wijziging aan netwerk- en firewall-parameters voorkomen (gebruikersmodus)
@@ -7320,11 +7526,13 @@ Als leidende processen gedefinieerd zijn, worden alle andere als achterblijvende
+ Move UpOmhoog verplaatsen
+ Move DownOmlaag verplaatsen
@@ -7395,49 +7603,49 @@ Als leidende processen gedefinieerd zijn, worden alle andere als achterblijvende
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image Protection
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7671,7 +7879,9 @@ To specify a process use '$:program.exe' as path.
-
+
+
+ ProgramProgramma
@@ -7679,17 +7889,20 @@ To specify a process use '$:program.exe' as path.
-
+ ActionActie
+ PortPoort
+
+ IPIP
@@ -7699,7 +7912,7 @@ To specify a process use '$:program.exe' as path.
Protocol
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.WAARSCHUWING: Windows Filtering Platform is niet ingeschakeld met de driver. Daardoor zullen deze regels alleen toegepast worden in gebruikersmodus en kunnen ze niet geforceerd worden! Dit betekent dat kwaadaardige toepassingen ze kunnen omzeilen.
@@ -7746,57 +7959,57 @@ U kunt in plaats daarvan 'open voor iedereen' gebruiken om het op alle
COM-object toevoegen
-
+ File RecoveryBestandsherstel
-
+ Quick Recovery
-
+ Add FolderMap toevoegen
-
+ Immediate Recovery
-
+ Ignore ExtensionExtensie negeren
-
+ Ignore FolderMap negeren
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Inschakelen dat onmiddellijk herstel bestanden kan herstellen van zodra ze aangemaakt worden.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.U kunt mappen en bestandstypes (of bestandextensies) uitsluiten van onmiddellijk herstel.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Wanneer de snel-herstel-functie ingeroepen wordt, worden de volgende mappen gecontroleerd op gesandboxte inhoud.
-
+ Advanced OptionsGeavanceerde opties
-
+ MiscellaneousDiverse
@@ -7817,7 +8030,7 @@ U kunt in plaats daarvan 'open voor iedereen' gebruiken om het op alle
-
+ Protect the sandbox integrity itselfIntegriteit van de sandbox zelf beschermen
@@ -7842,7 +8055,7 @@ U kunt in plaats daarvan 'open voor iedereen' gebruiken om het op alle
Sandbox-isolatie
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Gebruik van aangepaste dummy-manifest-bestanden forceren (oud gedrag)
@@ -7906,8 +8119,8 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Alleen processen met rechten toegang geven tot de Service Control Manager
-
-
+
+ CompatibilityCompatibiliteit
@@ -7921,12 +8134,12 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Gesandboxte processen aan job-objecten toevoegen (aanbevolen)
-
+ Emulate sandboxed window station for all processesGesandboxt venster station emuleren voor alle processen
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Gebruik van geneste job-objecten toestaan (experimenteel, wekt op Windows 8 en later)
@@ -7993,7 +8206,7 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
COM/RPC
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Het gebruik van RpcMgmtSetComTimeout standaard uitschakelen (dit kan compatibiliteitsproblemen oplossen)
@@ -8022,41 +8235,41 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Toegangsisolatie
-
+ TriggersTriggers
-
+ EventGebeurtenis
-
-
-
-
+
+
+
+ Run CommandOpdracht uitvoeren
-
+ Start ServiceService starten
-
+ These events are executed each time a box is startedDeze gebeurtenissen worden uitgevoerd telkens wanneer een box wordt gestart
-
+ On Box StartBij starten van box
-
-
+
+ These commands are run UNBOXED just before the box content is deletedDeze opdrachten worden NIET-GEBOXT uitgevoerd vlak voordat de inhoud van de box verwijderd wordt
@@ -8065,52 +8278,52 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Bij verwijderen van box
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Deze opdrachten worden alleen uitgevoerd wanneer een box geïnitialiseerd wordt. Om ze opnieuw te laten uitvoeren, moet de inhoud van de box verwijderd worden.
-
+ On Box InitBij initialisatie van de box
-
+ Here you can specify actions to be executed automatically on various box events.Hier kunt u aangeven welke acties automatisch moeten worden uitgevoerd bij diverse boxgebeurtenissen.
-
+ Hide ProcessesProcessen verbergen
-
+ Add ProcessProcessen toevoegen
-
+ Hide host processes from processes running in the sandbox.Host-processen verbergen van processen die in de sandbox worden uitgevoerd.
-
+ Don't allow sandboxed processes to see processes running in other boxesGesandboxte processen niet toestaan om processen te zien die in andere boxen worden uitgevoerd
-
+ UsersGebruikers
-
+ Restrict Resource Access monitor to administrators onlyBrontoegang-monitor beperken tot alleen administrators
-
+ Add UserGebruiker toevoegen
@@ -8119,7 +8332,7 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Gebruiker verwijderen
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8128,23 +8341,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Opmerking: Instellingen voor geforceerde programma's en geforceerde mappen voor een zandbak zijn niet van toepassing op gebruikersaccounts die de zandbak niet kunnen gebruiken.
-
+ Add Option
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.
-
+ Option
-
+ TracingTraceren
@@ -8154,22 +8367,22 @@ Opmerking: Instellingen voor geforceerde programma's en geforceerde mappen
API call trace (logapi moet geïnstalleerd zijn in de sbie-map)
-
+ Pipe TracePipe-trace
-
+ Log all SetError's to Trace log (creates a lot of output)Alle SetErrors loggen naar trace-log (maakt veel uitvoer aan)
-
+ Log Debug Output to the Trace LogDebug-uitvoer naar de trace-log loggen
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8192,78 +8405,78 @@ in plaats van "*".
Ntdll syscall Trace (maakt veel uitvoer aan)
-
+ File TraceBestand-trace
-
+ Disable Resource Access MonitorBrontoegang-monitor uitschakelen
-
+ IPC TraceIPC-trace
-
+ GUI TraceGUI-trace
-
+ Resource Access MonitorBrontoegang-monitor
-
+ Access TracingToegang-tracing
-
+ COM Class TraceCOM Class trace
-
+ Key TraceKey-trace
-
+ Network FirewallNetwerk-firewall
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Syscall Trace (creates a lot of output)
-
+ DebugDebug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!WAARSCHUWING, deze opties kunnen kernbeveiligingsgaranties uitschakelen en sandbox-beveiliging breken!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Deze opties zijn bedoeld voor het debuggen van compatibiliteitsproblemen, gebruik ze niet in productiegebruik.
-
+ App TemplatesApp-sjablonen
@@ -8272,22 +8485,22 @@ in plaats van "*".
Compatibiliteit-sjablonen
-
+ Filter CategoriesFilter categorieën
-
+ Text FilterTekstfilter
-
+ Add TemplateSjabloon toevoegen
-
+ This list contains a large amount of sandbox compatibility enhancing templatesDeze lijst bevat een groot aantal sjablonen om sandbox-compatibiliteit te verbeteren
@@ -8296,17 +8509,17 @@ in plaats van "*".
Sjabloon verwijderen
-
+ CategoryCategorie
-
+ Template FoldersSjabloonmappen
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8315,23 +8528,23 @@ Please note that this values are currently user specific and saved globally for
Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden opgeslagen voor alle boxen.
-
-
+
+ ValueWaarde
-
+ AccessibilityToegankelijkheid
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Om te compenseren voor de verloren bescherming, raadpleeg de "rechten ontnemen"-instellingenpagina in de beperking-instellingen-groep.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessSchermlezers: JAWS, NVDA, Window-Eyes, System Access
@@ -8341,43 +8554,43 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+ Various Options
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)
-
+ Use desktop object workaround for all processes
-
+ This command will be run before the box content will be deleted
-
+ On File Recovery
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked
-
+ Run File Checker
-
+ On Delete Content
@@ -8415,72 +8628,142 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+ ProcessProces
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Block DNS, UDP port 53
-
+ On Box Terminate
-
+ API call Trace (traces all SBIE hooks)
-
+
+ DNS Request Logging
+
+
+
+ Templates
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.De volgende instellingen schakelen het gebruik van Sandboxie in combinatie met toegankelijkheidssoftware in. Merk op dat sommige beschermingsmaatregelen van Sandboxie noodzakelijk verloren gaan wanneer deze instellingen van toepassing zijn.
-
+ Edit ini SectionIni-sectie bewerken
-
+ Edit iniIni bewerken
-
+ CancelAnnuleren
-
+ SaveOpslaan
@@ -9668,4 +9951,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Snapshot nemen
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Protocol:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Poort:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_pl.ts b/SandboxiePlus/SandMan/sandman_pl.ts
index 0587578c..0fa50893 100644
--- a/SandboxiePlus/SandMan/sandman_pl.ts
+++ b/SandboxiePlus/SandMan/sandman_pl.ts
@@ -1602,47 +1602,47 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Główny ipc piaskownicy
-
+ Add special option:Dodaj opcję specjalną:
-
-
+
+ On StartUruchom Start
-
-
-
-
-
+
+
+
+
+ Run CommandUruchom polecenie
-
+ Start ServiceUruchom usługę
-
+ On InitUruchom Init
-
+ On File RecoveryO odzyskiwaniu plików
-
+ On Delete ContentUruchom, Usuń zawartość
-
+ On Terminate
@@ -1651,31 +1651,31 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Uruchom kasowanie
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedWprowadź wiersz polecenia do wykonania
-
+ Please enter a program file name to allow access to this sandboxWprowadź nazwę pliku programu, aby zezwolić na dostęp do tej piaskownicy
-
+ Please enter a program file name to deny access to this sandboxWprowadź nazwę pliku programu, aby odmówić dostępu do tej piaskownicy
-
+ DenyOdmowa
-
+ %1 (%2)%1 (%2)
@@ -1877,8 +1877,8 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Przywrócony nagłówek obrazu
-
-
+
+ Browse for FilePrzeglądaj w poszukiwaniu pliku
@@ -1889,52 +1889,52 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Przeglądaj w poszukiwaniu folderu
-
+ File OptionsOpcje plików
-
+ GroupingGrupowanie
-
+ Add %1 TemplateDodaj %1 szablon
-
+ Search for optionsSzukaj opcji
-
+ Box: %1Boks: %1
-
+ Template: %1Szablon: %1
-
+ Global: %1Globalny: %1
-
+ Default: %1Domyślny: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Ta piaskownica została usunięta, dlatego nie można zapisać konfiguracji.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Niektóre ustawienia nie zostały jeszcze zapisane, czy naprawdę chcesz zamknąć ustawienia?
@@ -1962,7 +1962,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Programy (*.exe *.cmd);;Wszystkie pliki (*.*)
-
+ Please enter a service identifierProszę wpisać identyfikator usługi
@@ -1991,15 +1991,15 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Proszę wpisać polecenie
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Grupa: %1
@@ -2009,7 +2009,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Proszę wpisać nazwę nowej grupy
-
+ Enter program:Podaj program:
@@ -2049,7 +2049,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Wymuszenie określonego wpisu najprawdopodobniej zepsuje system Windows, czy na pewno chcesz kontynuować?
-
+
@@ -2066,188 +2066,190 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Wiodący
-
+ ClosedZamknięte
-
+ Closed RTZamknięte RT
-
+ Read OnlyTylko do odczytu
-
+ NormalNormalna
-
+ OpenOtwórz
-
+ Open for AllOtwarte dla wszystkich
-
+ No RenameBez zmiany nazwy
-
+ Box Only (Write Only)Tylko boks (tylko zapis)
-
+ Ignore UIPIIgnoruj UIPI
-
-
-
+
+
+ UnknownNieznane
-
+ Regular Sandboxie behavior - allow read and also copy on write.Regularne zachowanie Sandboxie - zezwolenie na odczyt, a także kopiowanie przy zapisie.
-
+ Allow write-access outside the sandbox.Zezwól na dostęp do zapisu poza piaskownicą.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Zezwól na zapis poza piaskownicą, także dla aplikacji zainstalowanych wewnątrz piaskownicy.
-
+ Don't rename window classes.Nie zmieniaj nazw klas okien.
-
+ Deny access to host location and prevent creation of sandboxed copies.Odmów dostępu do lokalizacji hosta i zapobiegaj tworzeniu kopii w trybie piaskownicy.
-
+ Block access to WinRT class.Zablokuj dostęp do klasy WinRT.
-
+ Allow read-only access only.Zezwól na dostęp tylko do odczytu.
-
+ Hide host files, folders or registry keys from sandboxed processes.Ukryj pliki hosta, foldery lub klucze rejestru przed procesami w piaskownicy.
-
+ Ignore UIPI restrictions for processes.Ignoruj ograniczenia UIPI dla procesów.
-
+ File/FolderPliki/Foldery
-
+ RegistryRejestr Systemu
-
+ IPC PathŚcieżka IPC
-
+ Wnd ClassKlasa Okna
-
+ COM ObjectObjekt COM
-
+ Select FileWybierz plik
-
+ All Files (*.*)Wszystkie pliki(*.*)
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsWszystkie programy
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}Obiekty COM musza być podane w formacie GUID, tak jak: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.Interfejsy RT muszą być podane jako nazwy.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?Otwarcie całego dostępu IPC otwiera również dostęp do COM, czy nadal chcesz ograniczać COM w piaskownicy?
-
+ Don't ask in futureNie pytaj w przyszłości
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead'OpenWinClass=program.exe,#' nie jest obsługiwane, zamiennie użyj 'NoRenameWinClass=program.exe,*'
-
-
+
+
-
+ Template values can not be edited.Wartości szablonów nie mogą być zmienione.
-
+ Template values can not be removed.Wartości szablonów nie mogą być usunięte.
@@ -2370,68 +2372,83 @@ Wybierz folder, który zawiera ten plik.
Czy na pewno chcesz usunąć wybrany szablon lokalny?
-
-
+
+ Anykażdy
-
-
+
+ TCP
-
-
+
+ UDP
-
-
+
+ ICMP
-
+ Allow accessZezwól na dostęp
-
+ Block using Windows Filtering PlatformBlokuj przy użyciu platformy filtrowania systemu Windows
-
+ Block by denying access to Network devicesBlokuj, odmawiając dostępu do urządzeń sieciowych
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowPozwól
-
+ Block (WFP)Blokada (WFP)
-
+ Block (NDev)Blokada (NDev)
-
+ A non empty program name is required.Wymagana jest niepusta nazwa programu.
-
+ BlockBlokada
@@ -6636,6 +6653,194 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Pozwól na bezpośredni dostęp do zakładek %1
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -7001,7 +7206,7 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
+ Block network files and folders, unless specifically opened.Zablokuj dostęp do dysków sieciowych, chyba że specjalnie dopuszczone.
@@ -7030,8 +7235,7 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
-
+ Protect the system from sandboxed processesChroń system przed programami w piaskownicy
@@ -7064,11 +7268,11 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
-
-
-
-
+
+
+
+
+ NameNazwa
@@ -7098,13 +7302,15 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveUsuń
@@ -7161,7 +7367,7 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Spraw, by aplikacje uznały, że działają z podwyższonym poziomem uprawnień (umożliwia bezpieczne uruchamianie instalatorów)
-
+ Network restrictionsOgraniczenia sieciowe
@@ -7282,11 +7488,11 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
-
-
+
+
-
+
+ Show TemplatesPokaż szablony
@@ -7344,7 +7550,7 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Otwórz Windows Credentials Store (tryb użytkownika)
-
+ Prevent change to network and firewall parameters (user mode)Zapobiegaj zmianom parametrów sieci i zapory (tryb użytkownika)
@@ -7455,7 +7661,9 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
-
+
+
+ ProgramProgram
@@ -7495,47 +7703,47 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Dodaj ścieżkę IPC
-
+ File RecoveryPrzywracanie plików
-
+ Add FolderDodaj folder
-
+ Ignore ExtensionIgnoruj rozszerzenie pliku
-
+ Ignore FolderIgnoruj folder
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Włącz monit Natychmiastowego Przywracania, aby móc odzyskać pliki zaraz po ich utworzeniu.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Możesz wykluczyć foldery i typy plików (lub rozszerzenia plików) z Natychmiastowego Odzyskiwania.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Po wywołaniu funkcji szybkiego odzyskiwania następujące foldery zostaną sprawdzone pod kątem zawartości w piaskownicy.
-
+ Advanced OptionsOpcje zaawansowane
-
+ MiscellaneousRóżne
@@ -7551,7 +7759,7 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
-
+ Protect the sandbox integrity itselfChroń integralność piaskownicy
@@ -7585,13 +7793,13 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Dodaj procesy w piaskownicy do obiektów zadań (zalecane)
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Wymuś użycie niestandardowych fałszywych plików manifestu (zachowanie starszego typu)
-
-
+
+ CompatibilityZgodność
@@ -7608,42 +7816,42 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Tutaj można określić listę poleceń do wykonania przy inicjalizacji pustej piaskownicy.
-
+ Hide ProcessesUkryj procesy
-
+ Add ProcessDodaj proces
-
+ Hide host processes from processes running in the sandbox.Ukryj procesy hosta piaskownicy przed procesami działającymi w piaskownicy.
-
+ Don't allow sandboxed processes to see processes running in other boxesNie zezwalaj procesom w trybie piaskownicy widzieć procesów działających w innych boksach
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ UsersUżytkownicy
-
+ Restrict Resource Access monitor to administrators onlyOgranicz dostęp do monitora dostępu do zasobów tylko dla administratorów
-
+ Add UserDodaj użytkownika
@@ -7652,7 +7860,7 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Usuń użytkownika
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -7661,47 +7869,47 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Uwaga: ustawienia Wymuszonych Programów i Wymuszania Folderów dla piaskownicy nie mają zastosowania do kont użytkowników, które nie mogą korzystać z piaskownicy.
-
+ TracingŚledzenie
-
+ GUI TraceŚledzenie GUI
-
+ IPC TraceŚledzenie IPC
-
+ Pipe TraceŚledzenie pipe
-
+ Access TracingŚledzenie dostępów
-
+ Log Debug Output to the Trace LogRejestruj dane wyjściowe debugowania w dzienniku śledzenia
-
+ File TraceŚledzenie plikow
-
+ Key TraceŚledzenie kluczy
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -7720,12 +7928,12 @@ Możesz dostosować rejestrowanie za pomocą ini, określając
zamiast "*".
-
+ COM Class TraceŚledzenie klas COM
-
+ Emulate sandboxed window station for all processesEmuluj piaskownicę dla wszystkich procesów
@@ -7738,38 +7946,38 @@ zamiast "*".
Izolacja dostępu
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Zastosuj obejście ElevateCreateProcess (starsze zachowanie)
-
+ Use desktop object workaround for all processesUżyj obejścia dla obiektów pulpitu dla wszystkich procesów
-
+ This command will be run before the box content will be deletedTo polecenie zostanie uruchomione zanim zawartość boksu zostanie usunięta
-
+ On File RecoveryO odzyskiwaniu plików
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedTo polecenie zostanie uruchomione przed odzyskaniem pliku i ścieżka do pliku zostanie przekazana jako pierwszy argument, jeśli to polecenie zwrócić coś innego niż 0 odzyskanie zostanie zablokowane
-
+ Run File CheckerUruchom sprawdzanie plików
-
+ On Delete ContentUruchom, Usuń zawartość
@@ -7780,7 +7988,7 @@ zamiast "*".
-
+ ProcessProces
@@ -7789,7 +7997,7 @@ zamiast "*".
Zablokuj również dostęp do odczytu procesów w tej piaskownicy
-
+ Add OptionDodaj opcję
@@ -7798,7 +8006,7 @@ zamiast "*".
Tutaj możesz skonfigurować zaawansowane opcje dla każdego procesu, aby poprawić kompatybilność i/lub dostosować zachowanie piaskownicy.
-
+ OptionOpcja
@@ -7808,7 +8016,7 @@ zamiast "*".
Śledzenie wywołań API (wymaga zainstalowania logapi w katalogu sbie)
-
+ Log all SetError's to Trace log (creates a lot of output)Rejestruj wszystkie błędy SetError do dziennika śledzenia (tworzy dużo danych wyjściowych)
@@ -7817,27 +8025,28 @@ zamiast "*".
Śledzenie Ntdll syscall (tworzy dużo danych wyjściowych)
+ DNS Request LoggingDns Request Logging
- Rejestrowanie żądań DNS
+ Rejestrowanie żądań DNS
-
+ DebugDebug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!UWAGA, te opcje mogą wyłączyć podstawowe gwarancje bezpieczeństwa i złamać zabezpieczenia sandboxa!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Te opcje są przeznaczone do debugowania problemów z kompatybilnością, proszę nie używać ich w zastosowaniach produkcyjnych.
-
+ App TemplatesDodaj szablony
@@ -7846,17 +8055,17 @@ zamiast "*".
Szablony zgodności
-
+ Filter CategoriesFiltruj kategorie
-
+ Text FilterFiltruj text
-
+ Add TemplateDodaj szablon
@@ -7865,12 +8074,12 @@ zamiast "*".
Usuń szablon
-
+ CategoryKategoria
-
+ This list contains a large amount of sandbox compatibility enhancing templatesTa lista zawiera dużą ilość szablonów poprawiających kompatybilność z piaskownicą
@@ -7949,33 +8158,33 @@ zamiast "*".
Izolacja dostępu
-
+ Image ProtectionOchrona obrazu
-
+ Issue message 1305 when a program tries to load a sandboxed dllProblem z komunikatem 1305, gdy program próbuje załadować bibliotekę DLL w trybie piaskownicy
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxZapobieganie ładowaniu dll'ów z piaskownicy przez programy zainstalowane na hoście
-
+ Dlls && ExtensionsDll-e && Rozszerzenia
-
+ DescriptionOpis
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Zasady dostępu do zasobów Sandboxa często dyskryminują binarki programów znajdujących się wewnątrz piaskownicy. OpenFilePath i OpenKeyPath działają tylko dla binarek aplikacji znajdujących się natywnie na hoście. Aby zdefiniować regułę bez tego ograniczenia, należy użyć OpenPipePath lub OpenConfPath. Podobnie, wszystkie dyrektywy Closed(File|Key|Ipc)Path, które są zdefiniowane przez negację np. 'ClosedFilePath=! iexplore.exe,C:Users*' będą zawsze zamknięte dla binariów znajdujących się wewnątrz sandboxa. Obie polityki ograniczeń mogą być wyłączone na stronie "Zasady dostępu".
@@ -8268,7 +8477,7 @@ Aby określić proces, użyj jako ścieżki '$:program.exe'.
-
+ ActionAkcja
@@ -8351,11 +8560,13 @@ Aby określić proces, użyj jako ścieżki '$:program.exe'.
+ Move UpPrzesuń w górę
+ Move DownPrzesuń w dół
@@ -8366,11 +8577,14 @@ Aby określić proces, użyj jako ścieżki '$:program.exe'.
+ PortPort
+
+ IPIP
@@ -8380,27 +8594,27 @@ Aby określić proces, użyj jako ścieżki '$:program.exe'.Protokół
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.UWAGA: Platforma filtrowania Windows nie jest włączona w sterowniku, dlatego te reguły będą stosowane tylko w trybie użytkownika i nie mogą być egzekwowane! Oznacza to, że złośliwe aplikacje mogą je ominąć.
-
+ Quick RecoverySzybkie odzyskiwanie
-
+ Immediate RecoveryNatychmiastowe Przywracanie
-
+ Various OptionsRóżne opcje
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Zezwalaj na używanie zagnieżdżonych obiektów zadań (eksperymentalne, działa od Windows 8 i w następnych)
@@ -8544,7 +8758,7 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
COM/RPC
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Wyłączenie domyślnego użycia RpcMgmtSetComTimeout (może rozwiązać problemy z kompatybilnością)
@@ -8582,41 +8796,41 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
Poniższe opcje mogą być bezpiecznie użyte, gdy nie nadano uprawnień administratora.
-
+ TriggersWyzwalacze
-
+ EventZdarzenie
-
-
-
-
+
+
+
+ Run CommandUruchom polecenie
-
+ Start ServiceUruchom usługę
-
+ These events are executed each time a box is startedZdarzenia te wykonywane są za każdym razem, gdy uruchamiany jest boks
-
+ On Box StartWłącz w start boksu
-
-
+
+ These commands are run UNBOXED just before the box content is deletedTe polecenia uruchamiane są tuż przed usunięciem zawartości boksu
@@ -8625,43 +8839,43 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
Przy usuwaniu boksu
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Polecenia te wykonywane są tylko wtedy, gdy boks jest inicjalizowany. Aby je ponownie uruchomić, należy usunąć zawartość boksu.
-
+ On Box InitWłącz w Init boksu
-
+ Here you can specify actions to be executed automatically on various box events.W tym miejscu można określić akcje, które mają być wykonywane automatycznie w przypadku różnych zdarzeń w boksie.
-
+ Disable Resource Access MonitorWyłącz monitor dostępu do zasobów
-
+ Resource Access MonitorMonitor dostępu do zasobów
-
+ Network FirewallZapora sieciowa
-
+ Template FoldersFoldery szablonów
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8670,114 +8884,179 @@ Please note that this values are currently user specific and saved globally for
Należy pamiętać, że te wartości są obecnie specyficzne dla użytkownika i zapisywane globalnie dla wszystkich boksów.
-
-
+
+ ValueWartość
-
+ AccessibilityDostępność
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Aby zrekompensować utratę ochrony, zapoznaj się ze stroną ustawień Usuwania Uprawnień w grupie ustawień Ograniczenia.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessCzytniki ekranu: JAWS, NVDA, Window-Eyes, System Access
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Block DNS, UDP port 53
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.Gdy globalny klawisz skrótu zostanie naciśnięty 3 razy w krótkim odstępie czasu, wyjątek ten zostanie zignorowany.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Wyklucza tę piaskownicę z zakończenia po wywołaniu opcji "Zakończ wszystkie procesy".
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Funkcjonalność Sandboxie można rozszerzyć za pomocą opcjonalnych bibliotek DLL, które mogą być ładowane do każdego procesu sandboxie podczas uruchamiania przez plik SbieDll.dll, menedżer dodatków w ustawieniach globalnych oferuje kilka przydatnych rozszerzeń, po zainstalowaniu można je tutaj włączyć dla bieżącej skrzynki.
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Tutaj można skonfigurować zaawansowane opcje dla poszczególnych procesów, aby poprawić zgodność i/lub dostosować zachowanie piaskownicy.
-
+ On Box Terminate
-
+ API call Trace (traces all SBIE hooks)
-
+ Syscall Trace (creates a lot of output)Syscall Trace (tworzy dużo danych wyjściowych)
-
+ TemplatesSzablony
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Poniższe ustawienia umożliwiają korzystanie z usługi Sandboxie w połączeniu z oprogramowaniem zapewniającym dostępność. Należy pamiętać, że niektóre środki ochrony Sandboxie są z konieczności tracone, gdy te ustawienia są aktywne.
-
+ Edit ini SectionEdytuj sekcję ini
-
+ Edit iniEdytuj ini
-
+ CancelAnuluj
-
+ SaveZapisz
@@ -10038,4 +10317,134 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Zrób migawkę
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Protokół:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Port:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_pt_BR.ts b/SandboxiePlus/SandMan/sandman_pt_BR.ts
index 44f6b756..e4fb06cd 100644
--- a/SandboxiePlus/SandMan/sandman_pt_BR.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_BR.ts
@@ -1516,8 +1516,8 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
COptionsWindow
-
-
+
+ Browse for FileProcurar por Arquivo
@@ -1536,17 +1536,17 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Direto a Todos
-
+ ClosedFechado
-
+ Closed RTRT fechado
-
+ Read OnlySomente Leitura
@@ -1555,124 +1555,124 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Oculto
-
+ Normal
-
+ OpenAberto
-
+ Open for AllAberto para Todos
-
+ No RenameNão Renomear
-
+ Box Only (Write Only)Somente Caixa (Somente gravação)
-
+ Ignore UIPIIgnorar UIPI
-
-
-
+
+
+ UnknownDesconhecido
-
+ Regular Sandboxie behavior - allow read and also copy on write.Comportamento normal do Sandboxie - permitir leitura e também cópia na gravação.
-
+ Allow write-access outside the sandbox.Permitir acesso de gravação fora do sandbox.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Permitir acesso de gravação fora do sandbox, também para aplicativos instalados dentro do sandbox.
-
+ Don't rename window classes.Não renomear classes de janela.
-
+ Deny access to host location and prevent creation of sandboxed copies.Negar acesso ao o host local e impedir a criação de cópias na caixa de areia.
-
+ Block access to WinRT class.Bloquear acesso à classe WinRT.
-
+ Allow read-only access only.Permitir somente leitura acesso apenas.
-
+ Hide host files, folders or registry keys from sandboxed processes.Ocultar do host arquivos, pastas ou chaves de registro de processos na caixa de areia.
-
+ Ignore UIPI restrictions for processes.Ignore as restrições UIPI para processos.
-
+ File/FolderArquivo/Pasta
-
+ RegistryRegistro
-
+ IPC PathCaminho IPC
-
+ Wnd Class
-
+ COM ObjectObjeto COM
-
+ Select FileSelecionar Arquivo
-
+ All Files (*.*)Todos os Arquivos (*.*)
-
+
@@ -1681,69 +1681,71 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Selecionar Diretório
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsTodos os Programas
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Grupo: %1
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}Os objetos COM devem ser especificados pelo seu GUID, como: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.As interfaces RT devem ser especificadas pelo nome.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?Abrir todo o acesso IPC também abrir o acesso COM, você ainda deseja restringir o COM à caixa?
-
+ Don't ask in futureNão perguntar no futuro
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead'OpenWinClass=programa.exe,#' não é suportado, use 'NoRenameWinClass=programa.exe,*' em vez de
-
-
+
+
-
+ Template values can not be edited.Os valores de modelo não podem ser editados.
-
+ Template values can not be removed.Os valores de modelo não podem ser removidos.
@@ -1809,66 +1811,66 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Raiz do ipc do Sandbox
-
+ Add special option:Adicionar opção especial:
-
-
+
+ On StartAo iniciar
-
-
-
-
-
+
+
+
+
+ Run CommandExecutar comando
-
+ Start ServiceIniciar Serviço
-
+ On InitAo Iniciar
-
+ On File RecoveryNa recuperação de arquivos
-
+ On Delete ContentAo excluir conteúdo
-
+ On Terminate
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedDigite a linha de comando a ser executada
-
+ Please enter a program file name to allow access to this sandbox
-
+ Please enter a program file name to deny access to this sandbox
@@ -1877,12 +1879,12 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Insira o nome do programa
-
+ DenyNegar
-
+ %1 (%2)Same as in source%1 (%2)
@@ -2141,7 +2143,7 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Executáveis (*.exe *.cmd);;Todos os arquivos (*.*)
-
+ Please enter a service identifierPor favor, insira um identificador do serviço
@@ -2180,68 +2182,83 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Selecione o grupo primeiro.
-
-
+
+ AnyQualquer
-
-
+
+ TCP
-
-
+
+ UDP
-
-
+
+ ICMP
-
+ Allow accessPermitir acesso
-
+ Block using Windows Filtering PlatformBloquear usando a Plataforma de Filtragem do Windows
-
+ Block by denying access to Network devicesBloquear, negando acesso a Dispositivos de rede
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowPermitir
-
+ Block (WFP)Bloquear (WFP)
-
+ Block (NDev)Bloquear (NDev)
-
+ A non empty program name is required.É necessário um nome de programa não vazio.
-
+ BlockBloquear
@@ -2363,57 +2380,57 @@ Please select a folder which contains this file.
Opções do Sandboxie Plus - '%1'
-
+ File OptionsOpções de Arquivo
-
+ GroupingAgrupamento
-
+ Add %1 TemplateAdicionar %1 Modelo
-
+ Search for optionsPesquisar opções
-
+ Box: %1Caixa: %1
-
+ Template: %1Modelo: %1
-
+ Global: %1
-
+ Default: %1Padrão: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Essa caixa de areia foi excluída, portanto, a configuração não pode ser salva.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Algumas alterações ainda não foram salvas, você realmente quer fechar essa janela de opções?
-
+ Enter program:Insira um programa:
@@ -6616,6 +6633,194 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Permitir acesso direto aos %1 favoritos
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6994,8 +7199,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
+ Protect the system from sandboxed processesProteger o sistema de processos do sandbox
@@ -7184,12 +7388,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Restrições de Impressão
-
+ Network restrictionsRestrições de Rede
-
+ Block network files and folders, unless specifically opened.Bloquear arquivos e pastas de rede, a menos que especificamente abertos.
@@ -7216,11 +7420,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameNome
@@ -7250,13 +7454,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveRemover
@@ -7346,11 +7552,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
+
+
-
+
+ Show TemplatesMostrar Modelos
@@ -7389,7 +7595,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Abrir Credencias de Armazenamento do Windows (modo de usuário)
-
+ Prevent change to network and firewall parameters (user mode)Impedir a alteração de parâmetros de rede e firewall (modo de usuário)
@@ -7605,7 +7811,9 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
-
+
+
+ ProgramPrograma
@@ -7692,40 +7900,40 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Isolamento de Acesso
-
+ Image ProtectionProteção de Imagem
-
+ Issue message 1305 when a program tries to load a sandboxed dllEmitir mensagem 1305 quando um programa tenta carregar uma dll na caixa de areia
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxImpedir que programas das caixas instalados no host carreguem dll's do sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.As regras de acesso a recursos do sandboxie geralmente discriminam os binários do programa localizados dentro do sandbox. OpenFilePath e OpenKeyPath funcionam apenas para binários de aplicativos localizados no host nativamente. Para definir uma regra sem essa restrição, deve-se usar OpenPipePath ou OpenConfPath. Da mesma forma, todas as diretivas Closed(File|Key|Ipc)Path que são definidas por negação, por exemplo 'ClosedFilePath =! iexplore.exe,C:Users*’ será sempre fechado para binários localizados dentro de uma caixa. Ambas as políticas de restrição podem ser desativadas na página “Políticas de Acesso”.
Isso é feito para evitar que processos invasores dentro do sandbox criem uma cópia renomeada de si mesmos e acessem recursos protegidos. Outro vetor de exploração é a injeção de uma biblioteca em um processo autorizado para obter acesso a tudo o que é permitido acessar.Usando a proteção de imagem do host, isso pode ser evitado bloqueando os aplicativos (instalados no host) executados dentro de uma caixa de carregar bibliotecas do próprio sandbox.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7952,17 +8160,20 @@ Para especificar um processo, use '$:program.exe' como caminho.
-
+ ActionAção
+ PortPorta
+
+ IP
@@ -7972,7 +8183,7 @@ Para especificar um processo, use '$:program.exe' como caminho.Protocolo
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.CUIDADO: A Plataforma de Filtragem do Windows não está ativada com o driver, portanto, essas regras serão aplicadas apenas no modo de usuário e não podem ser impostas!!! Isso significa que as aplicações maliciosas podem contorná-las.
@@ -8005,6 +8216,7 @@ Você pode usar 'Abrir para Todos' em vez de fazê-lo aplicar a todos
+ Move DownMover para Baixo
@@ -8025,6 +8237,7 @@ Você pode usar 'Abrir para Todos' em vez de fazê-lo aplicar a todos
+ Move UpMover para Cima
@@ -8046,47 +8259,47 @@ Para acessar arquivos, você pode usar o 'Direto a Todos' em vez de fa
Aplicar e Fechar...=!<programa>,... diretivas também para todos os binários localizados na caixa de areia.
-
+ File RecoveryRecuperação de Arquivos
-
+ Add FolderAdicionar Pasta
-
+ Ignore ExtensionIgnorar Extensão
-
+ Ignore FolderIgnorar Pasta
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Ativar mensagem de recuperação imediata para poder recuperar arquivos assim que forem criados.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Você pode excluir pastas e tipos de arquivos (ou extensões de arquivos) da Recuperação Imediata.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Quando a função Recuperação Rápida for invocada, as seguintes pastas serão verificadas para obter conteúdo da caixa de areia.
-
+ Advanced OptionsOpções Avançadas
-
+ MiscellaneousDiversos
@@ -8107,7 +8320,7 @@ Para acessar arquivos, você pode usar o 'Direto a Todos' em vez de fa
-
+ Protect the sandbox integrity itselfProteger integridade da própria caixa de areia
@@ -8132,7 +8345,7 @@ Para acessar arquivos, você pode usar o 'Direto a Todos' em vez de fa
Isolamento da caixa de areia
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Forçar uso de arquivos de manifesto fictícios personalizados (comportamento legado)
@@ -8196,8 +8409,8 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Permitir apenas processos privilegiados para acessar o Gerenciador de Controle de Serviços
-
-
+
+ CompatibilityCompatibilidade
@@ -8211,12 +8424,12 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Adicionar processos de caixa de areia a objetos de trabalho (recomendado)
-
+ Emulate sandboxed window station for all processesEmular estação de janela da caixa de areia para todos os processos
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Permitir o uso de objetos de trabalho aninhados (experimental, funciona no Windows 8 e anteriores)
@@ -8259,7 +8472,7 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Controle de Programa
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Desativar o uso de RpcMgmtSetComTimeout por padrão (isso pode resolver problemas de compatibilidade)
@@ -8312,37 +8525,37 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Aqui você pode especificar uma lista de comandos que serão executados sempre que o sandbox for iniciado.
-
+ Hide ProcessesOcultar Processo
-
+ Add ProcessAdicionar Processo
-
+ Hide host processes from processes running in the sandbox.Ocultar processos do host de processos em execução no sandbox.
-
+ Don't allow sandboxed processes to see processes running in other boxesNão permitir que processos do sandbox vejam processos em execução de outras caixas
-
+ UsersUsuários
-
+ Restrict Resource Access monitor to administrators onlyRestringir o monitor de acesso a recursos apenas para administradores
-
+ Add UserAdicionar Usuário
@@ -8351,7 +8564,7 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Remover Usuário
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8360,7 +8573,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: As configurações de programas e pastas forçadas para uma caixa de areia não se aplicam a contas de usuários que não podem usar o sandbox.
-
+ TracingRastreamento
@@ -8370,22 +8583,22 @@ Nota: As configurações de programas e pastas forçadas para uma caixa de areia
Rastreamento de chamada de API (requer logapi instalado na pasta sbie)
-
+ Pipe TraceRastreamento de Pipe
-
+ Log all SetError's to Trace log (creates a lot of output)Log SetError's para todas os log de Rastreamento (cria muitas saídas)
-
+ Log Debug Output to the Trace LogRegistrar a saída de depuração no log de rastreamento
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8408,37 +8621,37 @@ ao invés de "*".
Rastreamento Ntdll syscall (cria muita saída)
-
+ File TraceRastreamento de Arquivo
-
+ Disable Resource Access MonitorDesativar Monitor de Acesso ao Recurso
-
+ IPC TraceRastreamento IPC
-
+ GUI TraceRastreamento de GUI
-
+ Resource Access MonitorMonitor de Acesso ao Recurso
-
+ Access TracingRastrear Acesso
-
+ COM Class TraceRastreamento de Classe COM
@@ -8447,41 +8660,41 @@ ao invés de "*".
<- para um desses acima não se aplica
-
+ TriggersGatilhos
-
+ EventEvento
-
-
-
-
+
+
+
+ Run CommandExecutar Comando
-
+ Start ServiceIniciar Serviço
-
+ These events are executed each time a box is startedEsses eventos são executados sempre que uma caixa é iniciada
-
+ On Box StartAo iniciar uma caixa
-
-
+
+ These commands are run UNBOXED just before the box content is deletedEsses comandos são executados FORA DA CAIXA logo antes do conteúdo da caixa ser excluído
@@ -8513,53 +8726,118 @@ ao invés de "*".
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Esses comandos são executados apenas quando uma caixa é inicializada. Para fazê-los funcionar novamente, o conteúdo da caixa deve ser excluído.
-
+ On Box InitAo criar uma caixa
-
+ Here you can specify actions to be executed automatically on various box events.Aqui você pode especificar ações a serem executadas automaticamente em vários eventos de caixa.
-
+ API call Trace (traces all SBIE hooks)
-
+ Key TraceRastreamento de Chave
-
+ Network FirewallFirewall de Rede
-
+ DebugDepurar
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!AVISO, essas opções podem desativar as garantias de segurança essenciais e interromper a segurança da sandbox!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Essas opções destinam-se a depurar problemas de compatibilidade, não as use em produção.
-
+ App TemplatesModelos de Aplicativos
@@ -8568,22 +8846,22 @@ ao invés de "*".
Modelos de Compatibilidade
-
+ Filter CategoriesCategorias de Filtro
-
+ Text FilterFiltro de Texto
-
+ Add TemplateAdicionar Modelo
-
+ This list contains a large amount of sandbox compatibility enhancing templatesEssa lista contém uma grande quantidade de modelos de compatibilidade de caixa de areia
@@ -8592,17 +8870,17 @@ ao invés de "*".
Remover Modelo
-
+ CategoryCategoria
-
+ Template FoldersPasta de Modelos
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8611,23 +8889,23 @@ Please note that this values are currently user specific and saved globally for
Por favor, note que esse valores são atualmente para o usuário específico e salvos globalmente para todas as caixas.
-
-
+
+ ValueValor
-
+ AccessibilityAcessibilidade
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Para compensar a proteção perdida, consulte a página de configurações de Liberar Direitos no grupo de configurações de Restrições.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessLeitores de tela: JAWS, NVDA, Window-Eyes, Acesso ao Sistema
@@ -8652,88 +8930,88 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ Quick RecoveryRecuperação Rápida
-
+ Immediate RecoveryRecuperação Imediata
-
+ Various OptionsVárias opções
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Aplicar ElevateCreateProcess solução alternativa (comportamento herdado)
-
+ Use desktop object workaround for all processesUsar solução alternativa de objeto da área de trabalho para todos os processos
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ On Box Terminate
-
+ This command will be run before the box content will be deletedEsse comando será executado antes que o conteúdo da caixa seja excluído
-
+ On File RecoveryAo recuperar arquivos
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedEsse comando será executado antes de um arquivo ser recuperado e o caminho do arquivo será passado como primeiro argumento. Se esse comando retornar algo diferente de 0, a recuperação será bloqueada
-
+ Run File CheckerExecutar Verificador de Arquivos
-
+ On Delete ContentAo Excluir Conteúdo
@@ -8744,7 +9022,7 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
-
+ ProcessProcesso
@@ -8753,63 +9031,68 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
Bloquear também o acesso de leitura aos processos nessa caixa
-
+ Add OptionAdicionar Opção
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Aqui você pode configurar opções avançadas por processo para melhorar a compatibilidade e/ou personalizar o comportamento do sandbox.
-
+ OptionOpção
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+
+ DNS Request Logging
+
+
+
+ Syscall Trace (creates a lot of output)
-
+ TemplatesModelos
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.As configurações a seguir permitem usar o sandboxie em combinação com software de acessibilidade. Note que algumas medidas de proteção do sandboxie seram perdidas quando essas configurações estiverem em vigor.
-
+ Edit ini SectionEditar Seção ini
-
+ Edit iniEditar ini
-
+ CancelCancelar
-
+ SaveSalvar
@@ -10092,4 +10375,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Obter Instantâneo
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Protocolo:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Porta:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_pt_PT.ts b/SandboxiePlus/SandMan/sandman_pt_PT.ts
index 3d7d6f35..c3adb49e 100644
--- a/SandboxiePlus/SandMan/sandman_pt_PT.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_PT.ts
@@ -1516,8 +1516,8 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
COptionsWindow
-
-
+
+ Browse for FileProcurar por Ficheiro
@@ -1536,17 +1536,17 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Direto a Todos
-
+ ClosedFechado
-
+ Closed RTRT fechado
-
+ Read OnlySó Leitura
@@ -1555,124 +1555,124 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Oculto
-
+ Normal
-
+ OpenAberto
-
+ Open for AllAberto para Todos
-
+ No RenameNão mudar nome
-
+ Box Only (Write Only)Somente Caixa (Somente gravação)
-
+ Ignore UIPIIgnorar UIPI
-
-
-
+
+
+ UnknownDesconhecido
-
+ Regular Sandboxie behavior - allow read and also copy on write.Comportamento normal do Sandboxie - permitir leitura e também cópia na gravação.
-
+ Allow write-access outside the sandbox.Permitir acesso de gravação fora do sandbox.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Permitir acesso de gravação fora do sandbox, também para aplicativos instalados dentro do sandbox.
-
+ Don't rename window classes.Não mudar nome das classes de janela.
-
+ Deny access to host location and prevent creation of sandboxed copies.Negar acesso ao o host local e impedir a criação de cópias na caixa de areia.
-
+ Block access to WinRT class.Bloquear acesso à classe WinRT.
-
+ Allow read-only access only.Permitir somente leitura acesso apenas.
-
+ Hide host files, folders or registry keys from sandboxed processes.Esconder do host ficheiros, pastas ou chaves de registro de processos na caixa de areia.
-
+ Ignore UIPI restrictions for processes.Ignore as restrições UIPI para processos.
-
+ File/FolderFicheiro/Pasta
-
+ RegistryRegistro
-
+ IPC PathLocalização IPC
-
+ Wnd Class
-
+ COM ObjectObjecto COM
-
+ Select FileSeleccionar Ficheiro
-
+ All Files (*.*)Todos os Ficheiros (*.*)
-
+
@@ -1681,69 +1681,71 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Seleccionar Pasta
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsTodos os Programas
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Grupo: %1
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}Os objetos COM devem ser especificados pelo seu GUID, como: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.As interfaces RT devem ser especificadas pelo nome.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?Abrir todo o acesso IPC também abrir o acesso COM, você ainda deseja restringir o COM à caixa?
-
+ Don't ask in futureNão perguntar no futuro
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead'OpenWinClass=programa.exe,#' não é suportado, use 'NoRenameWinClass=programa.exe,*' em vez de
-
-
+
+
-
+ Template values can not be edited.Os valores do modelo não podem ser editados.
-
+ Template values can not be removed.Os valores do modelo não podem ser removidos.
@@ -1809,66 +1811,66 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Raiz do ipc do Sandbox
-
+ Add special option:Adicionar opção especial:
-
-
+
+ On StartAo iniciar
-
-
-
-
-
+
+
+
+
+ Run CommandRodar comando
-
+ Start ServiceIniciar Serviço
-
+ On InitAo Iniciar
-
+ On File RecoveryNa recuperação de ficheiros
-
+ On Delete ContentAo apagar conteúdo
-
+ On Terminate
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedDigite a linha de comando a ser executada
-
+ Please enter a program file name to allow access to this sandbox
-
+ Please enter a program file name to deny access to this sandbox
@@ -1877,12 +1879,12 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Introduza o nome do programa
-
+ DenyNegar
-
+ %1 (%2)Same as in source%1 (%2)
@@ -2141,7 +2143,7 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Executáveis (*.exe *.cmd);;Todos os ficheiros (*.*)
-
+ Please enter a service identifierPor favor, introduza um identificador de serviço
@@ -2180,68 +2182,83 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Seleccione o grupo primeiro.
-
-
+
+ AnyQualquer
-
-
+
+ TCP
-
-
+
+ UDP
-
-
+
+ ICMP
-
+ Allow accessPermitir acesso
-
+ Block using Windows Filtering PlatformBloquear usando a Plataforma de Filtragem do Windows
-
+ Block by denying access to Network devicesBloquear negando acesso a Dispositivos de rede
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowPermitir
-
+ Block (WFP)Bloquear (WFP)
-
+ Block (NDev)Bloquear (NDev)
-
+ A non empty program name is required.É necessário um nome de programa não vazio.
-
+ BlockBloquear
@@ -2363,57 +2380,57 @@ Please select a folder which contains this file.
Definições do Sandboxie Plus - '%1'
-
+ File OptionsOpções de Ficheiro
-
+ GroupingAgrupamento
-
+ Add %1 TemplateAdicionar %1 Modelo
-
+ Search for optionsPesquisar opções
-
+ Box: %1Caixa: %1
-
+ Template: %1Modelo: %1
-
+ Global: %1
-
+ Default: %1Predefinido: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Esta caixa de areia foi eliminada, portanto, a definição não pode ser salva.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Algumas alterações ainda não foram salvas, você realmente quer fechar esta janela de opções?
-
+ Enter program:Introduza um programa:
@@ -6620,6 +6637,194 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Permitir acesso direto aos %1 favoritos
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6998,8 +7203,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
+ Protect the system from sandboxed processesProteger o sistema de processos do sandbox
@@ -7188,12 +7392,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Restrições de impressão
-
+ Network restrictionsRestrições de rede
-
+ Block network files and folders, unless specifically opened.Bloquear ficheiros e pastas de rede, a menos que especificamente abertos.
@@ -7220,11 +7424,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameNome
@@ -7254,13 +7458,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveRemover
@@ -7350,11 +7556,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
+
+
-
+
+ Show TemplatesMostrar Modelos
@@ -7393,7 +7599,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Abrir Credencias de Armazenamento do Windows (modo de utilizador)
-
+ Prevent change to network and firewall parameters (user mode)Impedir a alteração de parâmetros de rede e firewall (modo de utilizador)
@@ -7609,7 +7815,9 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
-
+
+
+ ProgramPrograma
@@ -7692,40 +7900,40 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Isolamento de Acesso
-
+ Image ProtectionProteção de Imagem
-
+ Issue message 1305 when a program tries to load a sandboxed dllEmitir mensagem 1305 quando um programa tenta carregar uma dll na caixa de areia
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxImpedir que programas das caixas instalados no host carreguem dll's do sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.As regras de acesso a recursos do sandboxie geralmente discriminam os binários do programa localizados dentro do sandbox. OpenFilePath e OpenKeyPath funcionam apenas para binários de aplicativos localizados no host nativamente. Para definir uma regra sem essa restrição, deve-se utilizar OpenPipePath ou OpenConfPath. Da mesma forma, todas as diretivas Closed(File|Key|Ipc)Path que são definidas por negação, por exemplo 'ClosedFilePath =! iexplore.exe,C:Users*’ será sempre fechado para binários localizados dentro de uma caixa. Ambas as políticas de restrição podem ser desativadas na página “Políticas de Acesso”.
Isso é feito para evitar que processos invasores dentro do sandbox criem uma cópia renomeada de si mesmos e acessem recursos protegidos. Outro vetor de exploração é a injeção de uma biblioteca em um processo autorizado para obter acesso a tudo o que é permitido acessar.Usando a proteção de imagem do host, isso pode ser evitado bloqueando os aplicativos (instalados no host) executados dentro de uma caixa de carregar bibliotecas do próprio sandbox.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7952,17 +8160,20 @@ Para especificar um processo, use '$:program.exe' como localização.<
-
+ ActionAção
+ PortPorta
+
+ IP
@@ -7972,7 +8183,7 @@ Para especificar um processo, use '$:program.exe' como localização.<
Protocolo
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.CUIDADO: A Plataforma de Filtragem do Windows não está ativada com o controlador, portanto, essas regras serão aplicadas apenas no modo de utilizador e não podem ser impostas!!! Isso significa que as aplicações maliciosas podem contorná-las.
@@ -8005,6 +8216,7 @@ Você pode utilizar 'Abrir para Todos' em vez de fazê-lo aplicar a to
+ Move DownMover para Baixo
@@ -8025,6 +8237,7 @@ Você pode utilizar 'Abrir para Todos' em vez de fazê-lo aplicar a to
+ Move UpMover para Cima
@@ -8046,47 +8259,47 @@ Para aceder ficheiros, você pode utilizar o 'Direto a Todos' em vez d
Aplicar e Fechar...=!<programa>,... diretivas também para todos os binários localizados na caixa de areia.
-
+ File RecoveryRecuperação de Ficheiros
-
+ Add FolderAdicionar Pasta
-
+ Ignore ExtensionIgnorar Extensão
-
+ Ignore FolderIgnorar Pasta
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Activar mensagem de recuperação imediata para poder recuperar ficheiros assim que for criado.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Você pode apagar pastas e tipos de ficheiros (ou extensões de ficheiros) da Recuperação Imediata.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Quando a função Recuperação Rápida for invocada, as seguintes pastas serão verificadas para obter conteúdo da caixa de areia.
-
+ Advanced OptionsOpções Avançadas
-
+ MiscellaneousDiversos
@@ -8107,7 +8320,7 @@ Para aceder ficheiros, você pode utilizar o 'Direto a Todos' em vez d
-
+ Protect the sandbox integrity itselfProteger integridade da própria caixa de areia
@@ -8132,7 +8345,7 @@ Para aceder ficheiros, você pode utilizar o 'Direto a Todos' em vez d
Isolamento da caixa de areia
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Forçar uso de ficheiros de manifesto fictícios personalizados (comportamento legado)
@@ -8196,8 +8409,8 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Permitir apenas processos privilegiados para acessar o Gerenciador de Controlo de Serviços
-
-
+
+ CompatibilityCompatibilidade
@@ -8211,12 +8424,12 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Adicionar processos de caixa de areia a objetos de trabalho (recomendado)
-
+ Emulate sandboxed window station for all processesEmular estação de janela da caixa de areia para todos os processos
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Permitir o uso de objetos de trabalho aninhados (experimental, funciona no Windows 8 e posterior)
@@ -8259,7 +8472,7 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Controlo de Programa
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Desactivar o uso do RpcMgmtSetComTimeout predefinido (isso pode resolver problemas de compatibilidade)
@@ -8312,37 +8525,37 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Aqui você pode especificar uma lista de comandos que serão executados sempre que o sandbox for iniciado.
-
+ Hide ProcessesEsconder Processo
-
+ Add ProcessAdicionar Processo
-
+ Hide host processes from processes running in the sandbox.Esconder processos do host de processos em execução na sandbox.
-
+ Don't allow sandboxed processes to see processes running in other boxesNão permitir que processos do sandbox vejam processos em execução de outras caixas
-
+ UsersUsuários
-
+ Restrict Resource Access monitor to administrators onlyRestringir o monitor de acesso a recursos apenas para administradores
-
+ Add UserAdicionar Utilizador
@@ -8351,7 +8564,7 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Remover Utilizador
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8360,7 +8573,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: As definições de programas e pastas forçadas para uma caixa de areia não se aplicam a contas de usuários que não podem utilizar o sandbox.
-
+ TracingRastreamento
@@ -8370,22 +8583,22 @@ Nota: As definições de programas e pastas forçadas para uma caixa de areia n
Rastreamento de chamada de API (requer logapi instalado na pasta sbie)
-
+ Pipe TraceRastreamento de Pipe
-
+ Log all SetError's to Trace log (creates a lot of output)Registro SetError's para todas os registro de Rastreamento (cria muitas saídas)
-
+ Log Debug Output to the Trace LogRegistrar a saída de depuração no registro de rastreamento
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8408,37 +8621,37 @@ ao invés de "*".
Rastreamento Ntdll syscall (cria muita saída)
-
+ File TraceRastreamento de Ficheiro
-
+ Disable Resource Access MonitorDesactivar Monitor de Acesso ao Recurso
-
+ IPC TraceRastreamento IPC
-
+ GUI TraceRastreamento de GUI
-
+ Resource Access MonitorMonitor de Acesso ao Recurso
-
+ Access TracingRastrear acesso
-
+ COM Class TraceRastreamento de Classe COM
@@ -8447,41 +8660,41 @@ ao invés de "*".
<- para um desses acima não se aplica
-
+ TriggersGatilhos
-
+ EventEvento
-
-
-
-
+
+
+
+ Run CommandRodar Comando
-
+ Start ServiceIniciar Serviço
-
+ These events are executed each time a box is startedEsses eventos são executados sempre que uma caixa é iniciada
-
+ On Box StartAo iniciar uma caixa
-
-
+
+ These commands are run UNBOXED just before the box content is deletedEsses comandos são executados FORA DA CAIXA logo antes do conteúdo da caixa ser excluído
@@ -8513,53 +8726,118 @@ ao invés de "*".
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Esses comandos são executados apenas quando uma caixa é inicializada. Para fazê-los funcionar novamente, o conteúdo da caixa deve ser excluído.
-
+ On Box InitAo criar uma caixa
-
+ Here you can specify actions to be executed automatically on various box events.Aqui você pode especificar acções a serem executadas automaticamente em vários eventos de caixa.
-
+ API call Trace (traces all SBIE hooks)
-
+ Key TraceRastreamento de Chave
-
+ Network FirewallFirewall de Rede
-
+ DebugDepurar
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!ADVERTÊNCIA, essas opções podem desactivar as garantias de segurança essenciais e interromper a segurança da sandbox!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Essas opções destinam-se a depurar problemas de compatibilidade, não as use em produção.
-
+ App TemplatesModelos de Aplicação
@@ -8568,22 +8846,22 @@ ao invés de "*".
Modelos de Compatibilidade
-
+ Filter CategoriesCategorias de Filtro
-
+ Text FilterFiltro de Texto
-
+ Add TemplateAdicionar Modelo
-
+ This list contains a large amount of sandbox compatibility enhancing templatesEsta lista contém uma grande quantidade de modelos de compatibilidade de caixa de areia
@@ -8592,17 +8870,17 @@ ao invés de "*".
Remover Modelo
-
+ CategoryCategoria
-
+ Template FoldersPasta de Modelos
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8611,23 +8889,23 @@ Please note that this values are currently user specific and saved globally for
Por favor, note que este valores são atualmente para o utilizador específico e salvo globalmente para todas as caixas.
-
-
+
+ ValueValor
-
+ AccessibilityAcessibilidade
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Para compensar a proteção perdida, consulte a página de definições de Liberar Direitos no grupo de definições de Restrições.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessLeitores de eclã: JAWS, NVDA, Window-Eyes, Acesso ao Sistema
@@ -8652,88 +8930,88 @@ Por favor, note que este valores são atualmente para o utilizador específico e
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ Quick RecoveryRecuperação Rápida
-
+ Immediate RecoveryRecuperação Imediata
-
+ Various OptionsVárias opções
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Aplicar ElevateCreateProcess solução alternativa (comportamento herdado)
-
+ Use desktop object workaround for all processes
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ On Box Terminate
-
+ This command will be run before the box content will be deletedEste comando será executado antes que o conteúdo da caixa seja excluído
-
+ On File RecoveryAo recuperar ficheiros
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedEste comando será executado antes de um ficheiro ser recuperado e o localização do ficheiro será passado como primeiro argumento. Se este comando retornar algo diferente de 0, a recuperação será bloqueada
-
+ Run File CheckerRodar Verificador de Ficheiros
-
+ On Delete ContentAo apagar conteúdo
@@ -8744,7 +9022,7 @@ Por favor, note que este valores são atualmente para o utilizador específico e
-
+ ProcessProcesso
@@ -8753,63 +9031,68 @@ Por favor, note que este valores são atualmente para o utilizador específico e
Bloquear também o acesso de leitura aos processos nesta caixa
-
+ Add OptionAdicionar Opção
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Aqui você pode configurar opções avançadas por processo para melhorar a compatibilidade e/ou personalizar o comportamento do sandbox.
-
+ OptionOpção
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+
+ DNS Request Logging
+
+
+
+ Syscall Trace (creates a lot of output)
-
+ TemplatesModelos
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.As definições a seguir permitem utilizar o sandboxie em combinação com software de acessibilidade. Note que algumas medidas de proteção do sandboxie será perdida quando essas definições estão em vigor.
-
+ Edit ini SectionEditar Seção ini
-
+ Edit iniEditar ini
-
+ CancelCancelar
-
+ SaveSalvar
@@ -10092,4 +10375,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Obter Instantâneo
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Protocolo:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Porta:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_ru.ts b/SandboxiePlus/SandMan/sandman_ru.ts
index aff6fc48..1a170025 100644
--- a/SandboxiePlus/SandMan/sandman_ru.ts
+++ b/SandboxiePlus/SandMan/sandman_ru.ts
@@ -1387,8 +1387,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
COptionsWindow
-
-
+
+ Browse for FileВыбрать файл
@@ -1399,139 +1399,139 @@ Note: The update check is often behind the latest GitHub release to ensure that
Выбрать папку
-
+ ClosedЗакрытый
-
+ Closed RTЗакрытый RT
-
+ Read OnlyТолько чтение
-
+ NormalНормальный
-
+ OpenОткрытый
-
+ Open for AllОткрытый для всех
-
+ No RenameНет переименования
-
+ Box Only (Write Only)Только песочница (только запись)
-
+ Ignore UIPIИгнорировать UIPI
-
-
-
+
+
+ UnknownНеизвестно
-
+ Regular Sandboxie behavior - allow read and also copy on write.Обычное поведение Sandboxie - разрешить чтение, а также копирование при записи.
-
+ Allow write-access outside the sandbox.Разрешить доступ на запись вне песочницы.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Разрешить доступ на запись за пределами песочницы, а также для приложений, установленных внутри песочницы.
-
+ Don't rename window classes.Не переименовывать классы окон.
-
+ Deny access to host location and prevent creation of sandboxed copies.Запретить доступ к местоположению хоста и предотвратить создание изолированных копий.
-
+ Block access to WinRT class.Заблокировать доступ к классу WinRT.
-
+ Allow read-only access only.Разрешить доступ только для чтения.
-
+ Hide host files, folders or registry keys from sandboxed processes.Скрыть файлы, папки или ключи реестра хоста от изолированных процессов.
-
+ Ignore UIPI restrictions for processes.Игнорировать ограничения UIPI для процессов.
-
+ File/FolderФайл/Папка
-
+ RegistryРеестр
-
+ IPC PathПуть IPC
-
+ Wnd ClassWnd класс
-
+ COM ObjectCOM объект
-
+ Select FileВыбрать файл
-
+ All Files (*.*)Все файлы (*.*)
-
+
@@ -1540,69 +1540,71 @@ Note: The update check is often behind the latest GitHub release to ensure that
Выбрать каталог
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsВсе программы
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Группа: %1
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}COM-объекты должны быть указаны по их GUID, например: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.Интерфейсы RT должны быть указаны по их имени.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?Открытие всего доступа к IPC также открывает доступ к COM, вы все еще хотите ограничить COM песочницей?
-
+ Don't ask in futureНе спрашивать в будущем
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead'OpenWinClass=program.exe,#' не поддерживается, используйте 'NoRenameWinClass=program.exe,*' вместо него
-
-
+
+
-
+ Template values can not be edited.Значения шаблона нельзя редактировать.
-
+ Template values can not be removed.Значения шаблона удалить нельзя.
@@ -1662,76 +1664,76 @@ Note: The update check is often behind the latest GitHub release to ensure that
Корень IPC песочницы
-
+ Add special option:Добавить специальную опцию:
-
-
+
+ On StartПри запуске
-
-
-
-
-
+
+
+
+
+ Run CommandВыполнить комманду
-
+ Start ServiceЗапустить службу
-
+ On InitПри инициализации
-
+ On File RecoveryПри восстановлении файлов
-
+ On Delete ContentПри удалении контента
-
+ On TerminateПри завершении
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedПожалуйста, введите командную строку для выполнения
-
+ Please enter a program file name to allow access to this sandboxВведите имя файла программы, чтобы разрешить доступ к этой песочнице
-
+ Please enter a program file name to deny access to this sandboxВведите имя файла программы, чтобы запретить доступ к этой песочнице
-
+ DenyОтклонить
-
+ %1 (%2)%1 (%2)
@@ -1968,7 +1970,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
Заголовок образа восстановлен
-
+ Please enter a service identifierПожалуйста, введите идентификатор службы
@@ -1999,68 +2001,83 @@ Note: The update check is often behind the latest GitHub release to ensure that
Пожалуйста, сначала выберите группу.
-
-
+
+ AnyЛюбой
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow accessРазрешить доступ
-
+ Block using Windows Filtering PlatformБлокировать с помощью платформы фильтрации Windows
-
+ Block by denying access to Network devicesБлокировать путем запрета доступа к сетевым устройствам
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowРазрешить
-
+ Block (WFP)Block (WFP)
-
+ Block (NDev)Block (NDev)
-
+ A non empty program name is required.Требуется непустое имя программы.
-
+ BlockБлокировать
@@ -2172,57 +2189,57 @@ Please select a folder which contains this file.
Sandboxie Plus - Опции '%1'
-
+ File OptionsПараметры файла
-
+ GroupingГруппировка
-
+ Add %1 TemplateДобавить шаблон %1
-
+ Search for optionsПоиск вариантов
-
+ Box: %1Песочница: %1
-
+ Template: %1Шаблон: %1
-
+ Global: %1Глобально: %1
-
+ Default: %1По умолчанию: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Эта песочница была удалена, поэтому сохранить конфигурацию невозможно.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Некоторые изменения еще не были сохранены, вы действительно хотите закрыть окно параметров?
-
+ Enter program:Введите программу:
@@ -6088,6 +6105,194 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Разрешить прямой доступ к закладкам %1
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6397,8 +6602,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
+ Protect the system from sandboxed processesЗащита системы от изолированных процессов
@@ -6535,12 +6739,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Ограничения печати
-
+ Network restrictionsСетевые ограничения
-
+ Block network files and folders, unless specifically opened.Блокировать сетевые файлы и папки, если они специально не открываются.
@@ -6563,11 +6767,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
+
+
+
+
+ NameИмя
@@ -6597,13 +6801,15 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveУдалить
@@ -6669,11 +6875,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
+
+
-
+
+ Show TemplatesПоказать шаблоны
@@ -6807,22 +7013,89 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Открыть хранилище учетных данных Windows (пользовательский режим)
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Other Options
-
+ Prevent change to network and firewall parameters (user mode)Запретить изменение параметров сети и брандмауэра (пользовательский режим)
+ Move UpСдвинуть вверх
+ Move DownСдвинуть вниз
@@ -6893,33 +7166,33 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Настроить, какие процессы могут получать доступ к объектам рабочего стола, таким как Windows и т.п.
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.При нажатии глобальной горячей клавиши 3 раза подряд это исключение будет проигнорировано.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Исключить завершение этой песочницы при вызове "Завершить все процессы".
-
+ Image ProtectionЗащита изображения
-
+ Issue message 1305 when a program tries to load a sandboxed dllВыдать сообщение 1305, когда программа пытается загрузить изолированную dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxЗапретить программам в песочнице, установленным на хосте, загружать dll из песочницы
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Правила доступа к ресурсам Sandboxie часто дискриминируют двоичные файлы программ, расположенные внутри песочницы. OpenFilePath и OpenKeyPath работают только для двоичных файлов приложений, изначально расположенных на хосте. Чтобы определить правило без этого ограничения, необходимо использовать OpenPipePath или OpenConfPath. Аналогично, все директивы Closed(File|Key|Ipc)Path, которые определены отрицанием, например. ‘ClosedFilePath=! iexplore.exe,C:Users*’ всегда будет закрыт для двоичных файлов, находящихся внутри песочницы. Обе политики ограничения можно отключить на странице "Политики доступа".
@@ -7077,17 +7350,17 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
Ограничения
-
+ Dlls && ExtensionsDLL и расширения
-
+ DescriptionОписание
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Функциональность Sandboxie можно расширить с помощью дополнительных dll, которые можно загружать в каждый изолированный процесс при запуске с помощью SbieDll.dll. Менеджер надстроек в глобальных настройках предлагает несколько полезных расширений, после установки их можно включить здесь для текущей песочницы.
@@ -7270,7 +7543,9 @@ To specify a process use '$:program.exe' as path.
-
+
+
+ ProgramПрограмма
@@ -7278,17 +7553,20 @@ To specify a process use '$:program.exe' as path.
-
+ ActionДействие
+ PortПорт
+
+ IPIP
@@ -7298,7 +7576,7 @@ To specify a process use '$:program.exe' as path.
Протокол
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.ВНИМАНИЕ: Платформа фильтрации Windows не включена с драйвером, поэтому эти правила будут применяться только в пользовательском режиме и не могут быть применены!!! Это означает, что вредоносные приложения могут их обойти.
@@ -7333,57 +7611,57 @@ To specify a process use '$:program.exe' as path.
Добавить COM объект
-
+ File RecoveryВосстановление файлов
-
+ Quick RecoveryБыстрое восстановление
-
+ Add FolderДобавить папку
-
+ Immediate RecoveryНемедленное восстановление
-
+ Ignore ExtensionИгнорировать расширение
-
+ Ignore FolderИгнорировать папку
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Включить запрос немедленного восстановления, чтобы иметь возможность восстанавливать файлы сразу после их создания.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Вы можете исключить папки и типы файлов (или расширения файлов) из немедленного восстановления.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. При вызове функции быстрого восстановления следующие папки будут проверяться на наличие изолированного содержимого.
-
+ Advanced OptionsРасширенные настройки
-
+ MiscellaneousРазное
@@ -7404,7 +7682,7 @@ To specify a process use '$:program.exe' as path.
-
+ Protect the sandbox integrity itselfЗащитить целостность самой песочницы
@@ -7425,7 +7703,7 @@ To specify a process use '$:program.exe' as path.
Защитить изолированные процессы SYSTEM от непривилегированных процессов
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Принудительное использование пользовательских фиктивных файлов манифеста (устаревшее поведение)
@@ -7477,8 +7755,8 @@ The process match level has a higher priority than the specificity and describes
Разрешить доступ к диспетчеру управления службами только привилегированным процессам
-
-
+
+ CompatibilityСовместимость
@@ -7488,12 +7766,12 @@ The process match level has a higher priority than the specificity and describes
Добавить изолированные процессы к объектам задания (рекомендуется)
-
+ Emulate sandboxed window station for all processesЭмуляция оконной станции в песочнице для всех процессов
-
+ Allow use of nested job objects (works on Windows 8 and later)Разрешить использование вложенных объектов заданий (работает в Windows 8 и новее)
@@ -7518,7 +7796,7 @@ The process match level has a higher priority than the specificity and describes
Открыть доступ к серверу проверки подлинности локальной системы безопасности
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Отключить использование RpcMgmtSetComTimeout по умолчанию (это может решить проблемы совместимости)
@@ -7543,27 +7821,27 @@ The process match level has a higher priority than the specificity and describes
Приведенные ниже параметры можно безопасно использовать, если вы не предоставляете прав администратора.
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.Эти команды запускаются ВНЕ ПЕСОЧНИЦЫ после завершения всех процессов в песочнице.
-
+ Hide ProcessesСкрыть процессы
-
+ Add ProcessДобавить процесс
-
+ Hide host processes from processes running in the sandbox.Скрыть хост-процессы от процессов, запущенных в песочнице.
-
+ Don't allow sandboxed processes to see processes running in other boxesНе позволять изолированным процессам видеть процессы, запущенные в других песочницах
@@ -7595,42 +7873,42 @@ The process match level has a higher priority than the specificity and describes
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ On Box TerminateПри завершении песочницы
-
+ UsersПользователи
-
+ Restrict Resource Access monitor to administrators onlyОграничить мониторинг доступа к ресурсам только администраторам
-
+ Add UserДобавить пользователя
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -7639,27 +7917,27 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Примечание. Параметры принудительных программ и принудительных папок для песочницы не применяются к учетным записям пользователей, которые не могут использовать эту песочницу.
-
+ TracingТрассировка
-
+ Pipe TraceТрассировка pipe
-
+ API call Trace (traces all SBIE hooks)API-вызов Trace (отслеживает все хуки SBIE)
-
+ Log all SetError's to Trace log (creates a lot of output)Записывать все SetError в журнал трассировки (создает много выходных данных)
-
+ Log Debug Output to the Trace LogЗаписывать вывод отладки в журнал трассировки
@@ -7699,71 +7977,71 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Выдать сообщение 2111, когда доступ к процессу запрещен
-
+ TriggersТриггеры
-
+ EventСобытие
-
-
-
-
+
+
+
+ Run CommandВыполнить комманду
-
+ Start ServiceЗапустить службу
-
+ These events are executed each time a box is startedЭти события выполняются каждый раз при запуске песочницы
-
+ On Box StartПри запуске песочницы
-
-
+
+ These commands are run UNBOXED just before the box content is deletedЭти команды запускаются вне песочницы непосредственно перед удалением содержимого песочницы
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Применение обходного пути ElevateCreateProcess (устаревшее поведение)
-
+ Use desktop object workaround for all processesИспользовать обходной путь для объектов рабочего стола для всех процессов
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Эти команды выполняются только при инициализации песочницы. Чтобы они снова запустились, содержимое песочницы должно быть удалено.
-
+ On Box InitПри инициализации песочницы
-
+ Here you can specify actions to be executed automatically on various box events.Здесь вы можете указать действия, которые будут выполняться автоматически при различных событиях песочницы.
-
+ On Delete ContentПри удалении контента
@@ -7774,27 +8052,27 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
-
+ ProcessПроцесс
-
+ Add OptionДобавить опцию
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Здесь вы можете настроить расширенные параметры для каждого процесса, чтобы улучшить совместимость и/или настроить поведение песочницы.
-
+ OptionОпция
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -7813,103 +8091,103 @@ instead of "*".
вместо "*".
-
+ File TraceТрассировка файлов
-
+ Disable Resource Access MonitorОтключить монитор доступа к ресурсам
-
+ IPC TraceТрассировка IPC
-
+ GUI TraceТрассировка GUI
-
+ Resource Access MonitorМонитор доступа к ресурсам
-
+ Access TracingОтслеживание доступа
-
+ COM Class TraceТрассировка COM класса
-
+ Key TraceТрассировка ключей
-
+ Network FirewallСетевой брандмауэр
-
+ DebugОтладка
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!ВНИМАНИЕ, эти параметры могут отключить основные гарантии безопасности и нарушить безопасность песочницы!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Эти параметры предназначены для устранения проблем совместимости, не используйте их в продакшен среде.
-
+ App TemplatesШаблоны приложений
-
+ Filter CategoriesКатегории фильтров
-
+ Text FilterТекстовый фильтр
-
+ Add TemplateДобавить шаблон
-
+ This list contains a large amount of sandbox compatibility enhancing templatesЭтот список содержит большое количество шаблонов для улучшения совместимости песочницы
-
+ CategoryКатегория
-
+ Template FoldersПапки шаблонов
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -7918,88 +8196,93 @@ Please note that this values are currently user specific and saved globally for
Обратите внимание, что эти значения в настоящее время специфичны для пользователя и сохраняются глобально для всех песочниц.
-
-
+
+ ValueЗначение
-
+ AccessibilityДоступность
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Чтобы компенсировать потерю защиты, обратитесь к странице настроек Сброс прав в группе настроек Ограничения.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessЧтение экрана: JAWS, NVDA, Window-Eyes, System Access
-
+ Various OptionsРазличные опции
-
+ This command will be run before the box content will be deletedЭта команда будет запущена до того, как содержимое песочницы будет удалено
-
+ On File RecoveryПри восстановлении файлов
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedЭта команда будет запущена перед восстановлением файла, и путь к файлу будет передан в качестве первого аргумента. Если эта команда возвращает значение, отличное от 0, восстановление будет заблокировано
-
+ Run File CheckerЗапустить проверку файлов
-
+
+ DNS Request Logging
+
+
+
+ Syscall Trace (creates a lot of output)Трассировка системных вызовов (создает много выходных данных)
-
+ TemplatesШаблоны
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Следующие настройки позволяют использовать Sandboxie в сочетании с программным обеспечением специальных возможностей. Обратите внимание, что когда действуют эти настройки, определенная степень защиты Sandboxie обязательно теряется.
-
+ Edit ini SectionРедактировать раздел ini
-
+ Edit iniРедактировать ini
-
+ CancelОтмена
-
+ SaveСохранить
@@ -9128,4 +9411,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Сделать снимок
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Протокол:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Порт:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_sv_SE.ts b/SandboxiePlus/SandMan/sandman_sv_SE.ts
index 17a50da6..6e611ebe 100644
--- a/SandboxiePlus/SandMan/sandman_sv_SE.ts
+++ b/SandboxiePlus/SandMan/sandman_sv_SE.ts
@@ -1632,78 +1632,78 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Sandboxie-Plus - '%1' Alternativ
-
+ File OptionsFilalternativ
-
+ GroupingGrupperar
-
-
+
+ Browse for FileBläddra efter fil
-
+ Add %1 TemplateAddera %1 mall
-
+ Search for optionsSearch for OptionsSök efter alternativ
-
+ Box: %1Låda: %1
-
+ Template: %1Mall: %1
-
+ Global: %1Global: %1
-
+ Default: %1Standard: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Denna sandlåda har blivit raderad därför kan konfigurationen inte sparas.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Vissa ändringar har inte sparats ännu, vill du verkligen stänga detta alternativsfönster?
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Grupp: %1
-
+ Enter program:För in program:
@@ -1713,139 +1713,139 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Bläddra efter mapp
-
+ NormalVanlig
-
+ OpenÖppna
-
+ Open for AllÖppna för alla
-
+ No RenameInget namnbyte
-
+ ClosedStängd
-
+ Closed RTStängd RT
-
+ Read OnlySkrivskyddad
-
+ Box Only (Write Only)Låda endast (Lässkyddad)
-
+ Ignore UIPIIgnorera UIPI
-
-
-
+
+
+ UnknownOkänd
-
+ Regular Sandboxie behavior - allow read and also copy on write.Vanligt Sandboxie beteende - tillåt läs och även kopiera vid skrivande.
-
+ Allow write-access outside the sandbox.Tillåt skrivtillgång utanför sandlådan.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Tillåt skrivtillgång utanför sandlådan, även för applikationer installerade inuti sandlådan.
-
+ Don't rename window classes.Nämnändra inte fönsterklasser.
-
+ Deny access to host location and prevent creation of sandboxed copies.Neka tillgång till värdplats och förhindra skapande av sandlådade kopior.
-
+ Block access to WinRT class.Blockera tillgång till WinRT-class.
-
+ Allow read-only access only.Tillåt endast skrivskyddad tillgång.
-
+ Hide host files, folders or registry keys from sandboxed processes.Dölj värdfiler, mappar eller registernycklar från sandlådade processer.
-
+ Ignore UIPI restrictions for processes.Ignorera UIPI-restriktioner för processer.
-
+ File/FolderFil/Mapp
-
+ RegistryRegistret
-
+ IPC PathIPC-sökväg
-
+ Wnd ClassWnd Class
-
+ COM ObjectCOM-objekt
-
+ Select FileVälj fil
-
+ All Files (*.*)Alla filer (*.*)
-
+
@@ -1854,56 +1854,58 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Välj katalog
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsAlla program
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}COM-objekt måste specificeras efter deras GUID, likt: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.RT-gränssnitt måste specificeras efter deras namn.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?Öppna all IPC-tillgång öppnar även COM-tillgång, vill du fortfarande begränsa COM till sandlådan?
-
+ Don't ask in futureFråga inte i framtiden
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' insteadÖppna WinClass=program.exe,#' stöds inte, använd 'NoRenameWinClass=program.exe,*' istället
-
-
+
+
-
+ Template values can not be edited.Mallvärden kan inte redigeras.
-
+ Template values can not be removed.Mallvärden kan inte tas bort.
@@ -1965,57 +1967,57 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Sandlåda IPC-root
-
+ Add special option:Addera speciellt alternativ:
-
-
+
+ On StartVid start
-
-
-
-
-
+
+
+
+
+ Run CommandKör kommandot
-
+ Start ServiceStarta tjänst
-
+ On InitVid start
-
+ On File RecoveryVid filåterställande
-
+ On Delete ContentVid radering av innehåll
-
+ On TerminateVid terminering
-
+ Please enter a program file name to allow access to this sandboxVänligen för in ett programfilsnamn för att tillåta tillgång till denna sandlåda
-
+ Please enter a program file name to deny access to this sandboxVänligen för in ett programfilsnamn för att neka tillgång till denna sandlåda
@@ -2024,16 +2026,16 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Vid raderande
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedVänligen för in kommandoraden som ska verkställas
-
+ Please enter a service identifierVänligen för in en tjänstidentifierare
@@ -2042,12 +2044,12 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Vänligen ange ett programfilsnamn
-
+ DenyNeka
-
+ %1 (%2)%1 (%2)
@@ -2320,68 +2322,83 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Vänligen välj grupp först.
-
-
+
+ AnyVarje
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow accessTillåt tillgång
-
+ Block using Windows Filtering PlatformBlockera användande av Windows Filtering Platform
-
+ Block by denying access to Network devicesBlockera genom att neka tillgång till nätverksenheter
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowTillåt
-
+ Block (WFP)Blockera (WFP)
-
+ Block (NDev)Blockera (NDev)
-
+ A non empty program name is required.Ett icke tomt programnamn krävs.
-
+ BlockBlockera
@@ -6683,6 +6700,194 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Tillåt direkt tillgång till %1 bokmärken
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -7181,8 +7386,7 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
-
-
+ Protect the system from sandboxed processesSkydda systemet från sandlådade processer
@@ -7259,7 +7463,7 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Utskriftsbegränsningar
-
+ Prevent change to network and firewall parameters (user mode)Förhindra ändring av nätverks- och brandväggsparametrar (användarläge)
@@ -7269,7 +7473,7 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Tillåt läsning av minne av osandlådade processer (inte rekommenderat)
-
+ Network restrictionsNätverksbegränsningar
@@ -7284,7 +7488,7 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Tillåt Print Spooler att skriva ut till filer utanför sandlådan
-
+ Block network files and folders, unless specifically opened.Blockera nätverksfiler och mappar, förutom om specifikt öppnade.
@@ -7321,11 +7525,11 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
-
-
-
-
-
+
+
+
+
+ NameNamn
@@ -7387,13 +7591,15 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveTa bort
@@ -7482,11 +7688,11 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
-
-
-
+
+
-
+
+ Show TemplatesVisa mallar
@@ -7700,7 +7906,9 @@ Om ledarprocesser är definierade, behandlas alla andra som kvardröjande progra
-
+
+
+ ProgramProgram
@@ -7783,11 +7991,13 @@ Om ledarprocesser är definierade, behandlas alla andra som kvardröjande progra
+ Move UpFlytta upp
+ Move DownFlytta ner
@@ -7803,40 +8013,40 @@ Om ledarprocesser är definierade, behandlas alla andra som kvardröjande progra
Tillgångsisolering
-
+ Image ProtectionAvbildsskydd
-
+ Issue message 1305 when a program tries to load a sandboxed dllUtfärda meddelande 1305 när ett program försöker ladda en sandlådad dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxFörhindra sandlådade program installerade på värden från att ladda DLL:s från sandlådan
-
+ Dlls && ExtensionsDll:s && förlängningar
-
+ DescriptionBeskrivning
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Sandboxie:s resurstillgångsregler särskiljer ofta emot programbinärer lokaliserade inuti sandlådan. OpenFilePath och OpenKeyPath fungerar bara för app-binärer lokaliserade på värden ursprungligen. För att kunna definiera en regel utan denna begränsning, måste OpenPipePath eller OpenConPath användas. Likaså, alla stängda(File|Key|Ipc)sökvägsdirektiv vilka är definierade via negation e.x. ClosedFilePath=!iexplore.exe,CUsers* kommer alltid vara stängda för binärer lokaliserade inuti en sandlåda. Båda begränsningspolicyerna kan inaktiveras på sidan Tillgångspolicy.
Detta görs för att förhindra Rogue-processer inuti sandlådan från att skapa en namnändrad kopia av sig själva och tillgå skyddade resurser. En annan exploateringsvektor är injicerandet av ett bibliotek in i en auktoriserad process för att få tillgång till allting det ges tillgång till. Användande av Host Image Protection, kan detta förhindras genom att blockera applikationer (installerade på värden) körandes inuti en sandlåda från att ladda bibliotek från sandlådan självt.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Sandboxies funktionalitet kan utökas genom att använda valfria dll`s som kan laddas in i varje sandlådad process av SbieDll.dll vid starten, tilläggshanteraren i globala inställningar erbjuder ett antal användbara förlängningar, väl installerade kan de aktiveras här för nuvarande låda.
@@ -8048,17 +8258,20 @@ För att specificera en process, använd '$:program.exe' som sökväg.
-
+ ActionAktion
+ PortPort
+
+ IPIP
@@ -8068,7 +8281,7 @@ För att specificera en process, använd '$:program.exe' som sökväg.
Protokoll
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.BEAKTA: Windows Filtering Platform är inte aktiverad med drivrutinen, därför tillämpas dessa regler endast i användarläge och kan inte påtvingas!!! Detta betyder att skadliga applikationer kan passera dem.
@@ -8161,42 +8374,42 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Tillämpa fil- och nyckelöppnardirektiv endast till binärer lokaliserade utanför sandlådan.
-
+ File RecoveryFilåterställning
-
+ Add FolderAddera mapp
-
+ Ignore ExtensionIgnorera förlängning
-
+ Ignore FolderIgnorera mapp
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Aktivera meddelandet Omedelbart återställande för att kunna återställa filer så fort som de är skapade.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Du kan utesluta mappar och filtyper (eller filförlängningar) från omedelbart återställande.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. När funktionen Omedelbart återställande är åberopad, kommer följande mappar bli kontrollerade för sandlådat innehåll.
-
+ Immediate RecoveryOmedelbart återställande
@@ -8205,17 +8418,17 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Diverse alternativ
-
+ Advanced OptionsAvancerade alternativ
-
+ MiscellaneousÖvrigt
-
+ Emulate sandboxed window station for all processesEfterlikna sandlådad fönsterstation för alla processer
@@ -8249,7 +8462,7 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Tillåt endast priviligerade processer att tillgå Service Control Manager
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Tvinga användandet av anpassade modellmanifestfiler (legacy beteende)
@@ -8270,8 +8483,8 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Ändra inte fönsterklassnamn skapade av sandlådade program
-
-
+
+ CompatibilityKompatibilitet
@@ -8282,7 +8495,7 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
-
+ Protect the sandbox integrity itselfSkydda själva sandlådans integritet
@@ -8299,7 +8512,7 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Tillåt användande av kapslade jobbobjekt (experimentell, fungerar på Windows 8 och senare)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Inaktivera användandet av RpcMgmtSetComTimeout som standard (det kan lösa kompatibilitetsproblem)
@@ -8364,57 +8577,57 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Avancerad
-
+ Add OptionAddera alternativ
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Här kan du konfigurera avancerade per process alternativ för förbättrande av kompatibiliteten och/eller anpassa sandlådningsbeteende.
-
+ OptionAlternativ
-
+ TriggersUtlösare
-
+ EventHändelse
-
-
-
-
+
+
+
+ Run CommandKör kommandot
-
+ Start ServiceStarta tjänsten
-
+ These events are executed each time a box is startedDessa händelser verkställs varje gång en låda startas
-
+ On Box StartVid lådstart
-
-
+
+ These commands are run UNBOXED just before the box content is deletedDessa kommandon körs OLÅDADE precis innan lådinnehållet raderas
@@ -8423,57 +8636,57 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Vid lådraderande
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Dessa kommandon verkställs endast när en låda påbörjas. För att köra dem igen, måste lådinnehållet raderas.
-
+ On Box InitVid lådstart
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.Dessa kommandon körs OLÅDADE efter att alla processer i sandlådan har avslutats.
-
+ Here you can specify actions to be executed automatically on various box events.Här kan du specificera aktioner att verkställas automatiskt vid varierande lådhändelser.
-
+ Hide ProcessesDölj processer
-
+ Add ProcessAddera process
-
+ Hide host processes from processes running in the sandbox.Dölj värdprocesser från processer körandes i sandlådan.
-
+ Don't allow sandboxed processes to see processes running in other boxesTillåt inte sandlådade processer att se processer som körs i andra lådor
-
+ UsersAnvändare
-
+ Restrict Resource Access monitor to administrators onlyBegränsa resurstillgångsövervakning till administratörer endast
-
+ Add UserAddera användare
@@ -8482,7 +8695,7 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Ta bort användare
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8491,7 +8704,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Notera: Inställningarna Tvingade program och Tvinga mappar, för en sandlåda, gäller inte för användarkonton som inte kan använda sandlådan.
-
+ TracingSpårning
@@ -8501,22 +8714,22 @@ Notera: Inställningarna Tvingade program och Tvinga mappar, för en sandlåda,
API call spårning (kräver att LogAPI är installerat i sbie:s katalog)
-
+ Pipe TracePipe Trace
-
+ API call Trace (traces all SBIE hooks)API-anropspår (spårar alla SBIE hooks)
-
+ Log all SetError's to Trace log (creates a lot of output)Logga alla SetError's till spårloggen (skapar en massa utflöde)
-
+ Log Debug Output to the Trace LogLogga Debug Output till spårloggen
@@ -8547,77 +8760,78 @@ istället för "*".
Ntdll syscall-spår (skapar en massa utflöde)
-
+ File TraceFilspår
-
+ Disable Resource Access MonitorInaktivera resurstillgångsövervakning
-
+ IPC TraceIPC-spår
-
+ GUI TraceGUI-spår
-
+ Resource Access MonitorResurstillgångsövervakare
-
+ Access TracingTillgångsspårning
-
+ COM Class TraceCOM-class spår
-
+ Key TraceNyckelspår
-
+ Network FirewallNätverksbrandvägg
+ DNS Request Logging
- Loggning av DNS-förfrågan
+ Loggning av DNS-förfrågan
-
+ Syscall Trace (creates a lot of output)Syscall spår (skapar en logg av utdata)
-
+ DebugFelsök
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!VARNING, dessa alternativ kan inaktivera kärnsäkerhetsgarantier och bryta sandlådesäkerhet!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Dessa alternativ är avsedda för felsökning av kompatibilitetsproblem, vänligen använd dem inte vid produktionsanvändning.
-
+ App TemplatesAppmallar
@@ -8626,22 +8840,22 @@ istället för "*".
Kompatibilitetsmallar
-
+ Filter CategoriesFilterkategorier
-
+ Text FilterTextfilter
-
+ Add TemplateAddera mall
-
+ This list contains a large amount of sandbox compatibility enhancing templatesDenna lista innehåller en stor mängd av kompatibilitetsutökande sandlådemallar
@@ -8650,17 +8864,17 @@ istället för "*".
Ta bort mall
-
+ CategoryKategori
-
+ Template FoldersMallmappar
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8669,13 +8883,13 @@ Please note that this values are currently user specific and saved globally for
Vänligen notera att detta värde är för tillfället användarspecifikt och sparas globalt för alla lådor.
-
-
+
+ ValueVärde
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8707,22 +8921,22 @@ istället för "*".
Tillämpa Stäng...=!<programmet>,... regler även till alla binärer lokaliserade i sandlådan.
-
+ Allow use of nested job objects (works on Windows 8 and later)Tillåt användning av kapslade jobbobjekt (fungerar på Windows 8 och senare)
-
+ AccessibilityTillgänglighet
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.För att kompensera för det förlorade skyddet, vänligen konsultera inställningen Skippa rättigheter i Säkerhetsalternativ > Säkerhetshärdning > Förhöjningsbegränsningar.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessSkärmläsare: JAWS, NVDA, Window-Eyes, Systemtillgång
@@ -8742,83 +8956,148 @@ istället för "*".
Konfigurera vilka processer som kan tillgå skrivbordsobjekt såsom Windows och liknande.
-
+ Other OptionsAndra alternativ
-
+ Port BlockingPortblockering
-
+ Block common SAMBA portsBlockera vanliga SAMBA-portar
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Block DNS, UDP port 53Blockera DNS, UDP-port 53
-
+ Quick RecoveryOmedelbart återställande
-
+ Various OptionsOlika alternativ
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Tillämpa ElevateCreateProcess-lösningen (legacy beteende)
-
+ Use desktop object workaround for all processesAnvänd skrivbordsobjektlösningen för alla processer
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.När den globala snabbtangenten trycks 3 gånger i kort följd kommer detta undantag att ignoreras.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Exkludera denna sandlåda från att bli avslutad när Avsluta alla processer är anropat.
-
+ On Box TerminateVid Låd Terminerande
-
+ This command will be run before the box content will be deletedDetta kommando kommer köras före det att lådinnehållet raderas
-
+ On File RecoveryVid filåterställande
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedDetta kommando kommer köras före det att en fil återställs och filsökvägen kommer att passeras som första argument. Om detta kommando returnerar något annat än 0, blockeras återställningen
-
+ Run File CheckerKör filkontrolleraren
-
+ On Delete ContentVid Radera innehåll
@@ -8829,7 +9108,7 @@ istället för "*".
-
+ ProcessProcess
@@ -8838,37 +9117,37 @@ istället för "*".
Blockera även lästillgång till processer i denna sandlåda
-
+ TemplatesMallar
-
+ Open TemplateÖppna mall
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Följande inställningar aktiverar användandet av Sandboxie i kombination med tillgänglighetsprogram. Vänligen notera att ett visst mått av Sandboxies skydd av nödvändighet förloras när dessa inställningar aktiveras.
-
+ Edit ini SectionRedigera ini-sektionen
-
+ Edit iniRedigera ini
-
+ CancelAvbryt
-
+ SaveSpara
@@ -10108,4 +10387,134 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade, möjligen fö
Gå till ögonblicksbild
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Protokoll:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Port:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_tr.ts b/SandboxiePlus/SandMan/sandman_tr.ts
index 842d0536..0d41bf42 100644
--- a/SandboxiePlus/SandMan/sandman_tr.ts
+++ b/SandboxiePlus/SandMan/sandman_tr.ts
@@ -1366,18 +1366,18 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Her zaman göster
-
-
+
+
-
+ Template values can not be edited.Şablon değerleri düzenlenemez.
-
-
+
+ Browse for FileDosya için Göz At
@@ -1389,7 +1389,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Lütfen bir menü başlığı girin
-
+
@@ -1403,7 +1403,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Lütfen yeni grup için bir isim girin
-
+ Template values can not be removed.Şablon değerleri kaldırılamaz.
@@ -1441,15 +1441,15 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Sandboxie Plus - '%1' Ayarlar
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Grup: %1
@@ -1465,7 +1465,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Yalnızca [#] göstergesini görüntüle
-
+ %1 (%2)%1 (%2)
@@ -1485,7 +1485,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Lütfen hariç tutulacak bir dosya uzantısı girin
-
+ Select FileDosya Seç
@@ -1500,7 +1500,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Lütfen önce grubu seçin.
-
+ All Files (*.*)Tüm Dosyalar (*.*)
@@ -1545,16 +1545,18 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Pencere başlığını değiştirme
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsTüm Programlar
@@ -1564,17 +1566,17 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Klasör için Göz At
-
+ Enter program:Program girin:
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}COM nesneleri GUID'lerine göre belirtilmelidir, bunun gibi: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.RT arayüzleri isimleriyle belirtilmelidir.
@@ -1584,174 +1586,174 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Program için Göz At
-
+ Please enter a service identifierLütfen bir hizmet tanımlayıcısı girin
-
+ File OptionsDosya Seçenekleri
-
+ GroupingGruplama
-
+ Add %1 Template%1 Şablonu Ekle
-
+ Search for optionsSeçeneklerde ara
-
+ Box: %1Alan: %1
-
+ Template: %1Şablon: %1
-
+ Global: %1Genel: %1
-
+ Default: %1Varsayılan: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Bu korumalı alan silindi, bu nedenle yapılandırma kaydedilemiyor.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Bazı değişiklikler henüz kaydedilmedi, bu seçenekler penceresini gerçekten kapatmak istiyor musunuz?
-
+ No RenameYeniden Adlandırma Yok
-
+ ClosedKapalı
-
+ Closed RTKapalı RT
-
+ Read OnlySalt Okunur
-
+ Ignore UIPIUIPI Yok Say
-
-
-
+
+
+ UnknownBilinmeyen
-
+ Regular Sandboxie behavior - allow read and also copy on write.Normal Sandboxie davranışı - okumaya izin verir ve ayrıca yazma üzerine kopyalar.
-
+ Allow write-access outside the sandbox.Korumalı alanın dışına yazma erişimine izin verir.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Korumalı alanın içine yüklenen uygulamalar için de korumalı alanın dışına yazma erişimine izin verir.
-
+ Don't rename window classes.Pencere sınıfları yeniden adlandırmaz.
-
+ Deny access to host location and prevent creation of sandboxed copies.Ana sistem konumuna erişimi reddeder ve korumalı alan kopyalarının oluşturulmasını önler.
-
+ Block access to WinRT class.WinRT sınıfına erişimi engeller.
-
+ Allow read-only access only.Yalnızca salt okunur erişime izin verir.
-
+ Hide host files, folders or registry keys from sandboxed processes.Ana sistem dosyalarını, klasörlerini veya kayıt defteri anahtarlarını korumalı alan işlemlerinden gizler.
-
+ Ignore UIPI restrictions for processes.İşlemler için UIPI kısıtlamalarını yok sayar.
-
+ File/FolderDosya/Klasör
-
+ RegistryKayıt
-
+ IPC PathIPC Yolu
-
+ Wnd ClassWnd Sınıfı
-
+ COM ObjectCOM Objesi
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?Tüm IPC erişimini açmak COM erişimini de açar, COM'u yine de korumalı alanla sınırlandırmak istiyor musunuz?
-
+ Don't ask in futureGelecekte sorma
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead'OpenWinClass=program.exe,#' desteklenmiyor, bunun yerine 'NoRenameWinClass=program.exe,*' kullanın
@@ -1843,83 +1845,98 @@ Seçilen konum bu dosyayı içermiyor.
Lütfen bu dosyayı içeren bir klasör seçin.
-
-
+
+ AnyHerhangi
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow accessErişime izin ver
-
+ Block using Windows Filtering PlatformWindows Filtreleme Platformunu kullanarak engelle
-
+ Block by denying access to Network devicesAğ cihazlarına erişimi reddederek engelle
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ Allowİzin ver
-
+ Block (WFP)Engelle (WFP)
-
+ Block (NDev)Engelle (NDev)
-
+ A non empty program name is required.Boş olmayan bir program adı gereklidir.
-
+ BlockEngelle
-
+ NormalNormal
-
+ OpenAçık
-
+ Open for AllHepsine Açık
@@ -2072,7 +2089,7 @@ Lütfen bu dosyayı içeren bir klasör seçin.
Görüntü Başlığı Geri Yüklendi
-
+ Box Only (Write Only)Yalnızca Alan (Salt Yazma)
@@ -2132,71 +2149,71 @@ Lütfen bu dosyayı içeren bir klasör seçin.
Korumalı alan ipc kökü
-
+ Add special option:Özel seçenek ekle:
-
-
+
+ On StartBaşlangıçta
-
-
-
-
-
+
+
+
+
+ Run CommandKomutu Çalıştır
-
+ Start ServiceHizmeti Başlat
-
+ On Initİlk Kullanımda
-
+ On File RecoveryDoysa Kurtarmada
-
+ On Delete Contentİçerik Silmede
-
+ On TerminateSonlandığında
-
+ Please enter a program file name to allow access to this sandboxBu korumalı alana erişime izin vermek için lütfen bir program dosyası adı girin
-
+ Please enter a program file name to deny access to this sandboxBu korumalı alana erişimi reddetmek için lütfen bir program dosyası adı girin
-
+ DenyReddet
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedLütfen çalıştırılacak komut satırını girin
@@ -6038,6 +6055,194 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
%1 yer imlerine doğrudan erişime izin ver
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6301,11 +6506,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
+
+
+
+
+ NameAd
@@ -6317,7 +6522,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Yol
-
+ SaveKaydet
@@ -6353,17 +6558,17 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Başlıktaki korumalı alan göstergesi:
-
+ DebugHata Ayıklama
-
+ UsersKullanıcılar
-
+ Block network files and folders, unless specifically opened.Özel olarak açılmadıkça ağ dosyalarını ve klasörlerini engelle.
@@ -6378,7 +6583,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Korumalı alandaki programlar tarafından oluşturulan pencere sınıfı adları değiştirilmesin
-
+ Log Debug Output to the Trace LogHata Ayıklama Çıktısını İzleme Günlüğüne Kaydet
@@ -6388,7 +6593,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Wnd Sınıfı Ekle
-
+ Access TracingErişim İzleme
@@ -6413,7 +6618,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Tüm programların bu alanda başlamasına izin ver.
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Dosyalar oluşturulur oluşturulmaz kurtarabilmek için Anında Kurtarma istemini etkinleştir.
@@ -6428,27 +6633,27 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Erişim
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Bu seçenekler uyumluluk sorunlarındaki hataları ayıklamaya yönelik tasarlanmıştır, lütfen bu ayarları üretim amaçlı kullanmayın.
-
+ TemplatesŞablonlar
-
+ Text FilterMetin Filtresi
-
+ Cancelİptal
-
+ Restrict Resource Access monitor to administrators onlyKaynak Erişimi İzleyicisini yalnızca yöneticilerle kısıtla
@@ -6459,12 +6664,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Protect the sandbox integrity itselfKorumalı alan bütünlüğünün kendisini koruyun
-
+ Add FolderKlasör Ekle
@@ -6474,7 +6679,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Kullanıcıya ablukadan muafiyete izin verip vermeyeceğini sor.
-
+ IPC TraceIPC İzleme
@@ -6494,13 +6699,15 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveKaldır
@@ -6515,8 +6722,8 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Bir programın internet erişimi reddedildiğinde 1307 mesajını yayınla
-
-
+
+ CompatibilityUyumluluk
@@ -6531,7 +6738,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Alan Seçenekleri
-
+ Don't allow sandboxed processes to see processes running in other boxesKorumalı alandaki işlemlerin diğer alanlarda çalışan işlemleri görmesine izin verilmesin
@@ -6551,7 +6758,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Seçili programların bu alanda başlamasını önle.
-
+ MiscellaneousÇeşitli
@@ -6561,7 +6768,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Dosya çok büyükse 2102 mesajını yayınla
-
+ File RecoveryDosya Kurtarma
@@ -6571,12 +6778,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Alan Silme Seçenekleri
-
+ Pipe TraceBoru İzleme
-
+ File TraceDosya İzleme
@@ -6588,12 +6795,14 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+
+
+ ProgramProgram
-
+ Add Processİşlem Ekle
@@ -6607,7 +6816,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Program Ekle
-
+ Filter CategoriesKategorileri Filtrele
@@ -6626,8 +6835,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
+ Protect the system from sandboxed processesSistemi korumalı alandaki işlemlerden koru
@@ -6637,7 +6845,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
SandboxiePlus Ayarları
-
+ CategoryKategori
@@ -6652,17 +6860,17 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Kayıt Anahtarı Ekle
-
+ Hide Processesİşlemleri Gizle
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Hızlı Kurtarma işlevi çağrıldığında, aşağıdaki klasörler korumalı alan içeriği için denetlenecektir.
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -6686,7 +6894,7 @@ günlüğe kaydetme özelleştirilebilir.
px Genişliği
-
+ Add UserKullanıcı Ekle
@@ -6701,12 +6909,12 @@ günlüğe kaydetme özelleştirilebilir.
Program Zorla
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!UYARI, bu seçenekler temel güvenlik garantilerini devre dışı bırakabilir ve korumalı alan güvenliğini bozabilir!
-
+ Edit iniIni Düzenle
@@ -6725,31 +6933,31 @@ günlüğe kaydetme özelleştirilebilir.
-
-
-
+
+
-
+
+ Show TemplatesŞablonları Göster
-
+ Ignore FolderKlasörü Yok Say
-
+ GUI TraceGKA İzleme
-
+ Key TraceTuş İzleme
-
+ Tracingİzleme
@@ -6764,7 +6972,7 @@ günlüğe kaydetme özelleştirilebilir.
Korumalı alan işlemlerini iş nesnelerine ekle (Önerilir)
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Klasörleri ve dosya türlerini (veya dosya uzantılarını) Anında Kurtarma'nın dışında bırakabilirsiniz.
@@ -6774,12 +6982,12 @@ günlüğe kaydetme özelleştirilebilir.
Çalıştır Menüsü
-
+ App TemplatesUygulama Şablonları
-
+ Ignore ExtensionUzantıyı Yok Say
@@ -6789,7 +6997,7 @@ günlüğe kaydetme özelleştirilebilir.
Bu korumalı alanı silinmeye veya boşaltılmaya karşı koru
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -6803,7 +7011,7 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
* Not: Bu korumalı alana yüklenen programlar hiçbir şekilde başlatılamaz.
-
+ This list contains a large amount of sandbox compatibility enhancing templatesBu liste, korumalı alan uyumluluğunu geliştiren çok sayıda şablonlar içerir
@@ -6823,12 +7031,12 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Kaynak Erişimi
-
+ Advanced OptionsGelişmiş Seçenekler
-
+ Hide host processes from processes running in the sandbox.Korumalı alanda çalışan işlemlerden ana sistem işlemlerini gizler.
@@ -6859,17 +7067,17 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Başlatma Kısıtlamaları
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Özel sahte Manifest dosyalarının kullanımını zorla (Eski davranış)
-
+ Edit ini SectionIni Düzenleme Bölümü
-
+ COM Class TraceCOM Sınıf İzleme
@@ -6909,7 +7117,7 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Uygulamaların yetkilendirilmiş çalıştıklarını düşünmelerini sağla (Yükleyicileri güvenli bir şekilde çalıştırmanıza izin verir)
-
+ Network restrictionsAğ Kısıtlamaları
@@ -7089,11 +7297,13 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
+ Move UpYukarı Taşı
+ Move DownAşağı Taşı
@@ -7164,42 +7374,42 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Hangi işlemlerin pencereler ve benzeri masaüstü nesnelerine erişebileceğini yapılandırın.
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.Genel kısayol tuşuna art arda 3 kez basıldığında bu istisna göz ardı edilecektir.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked."Tüm İşlemleri Sonlandır" çalıştırıldığında bu korumalı alanı sonlandırılma dışında tut.
-
+ Image ProtectionGörüntü Koruması
-
+ Issue message 1305 when a program tries to load a sandboxed dllBir program korumalı alandan bir DLL dosyası yüklemeye çalıştığında 1305 mesajını yayınla
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxSistemde yüklü korumalı alanda çalışan programların alan içinden DLL yüklemesini önle
-
+ Dlls && ExtensionsDLL'ler && Uzantılar
-
+ DescriptionAçıklama
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Sandboxie'nin kaynak erişim kuralları, genellikle korumalı alan içinde bulunan program ikili dosyalarına göre ayrım yapar. OpenFilePath ve OpenKeyPath yalnızca ana sistemde yerel olarak bulunan uygulama ikili dosyaları için çalışır.
@@ -7207,7 +7417,7 @@ Bu kısıtlama olmaksızın bir kural tanımlamak için OpenPipePath veya OpenCo
Bu, korumalı alan içindeki haydut işlemlerin kendilerinin yeniden adlandırılmış bir kopyasını oluşturmasını ve korunan kaynaklara erişmesini önlemek için yapılır. Başka bir istismar vektörü de bir kütüphanenin yetkili bir işleme yerleşerek ona izin verilen her şeye erişim hakkı elde etmesidir. Ana Sistem Görüntü Koruması kullanılarak, bir korumalı alanda çalışan uygulamaların (ana sistemde yüklü) korumalı alanda bulunan kütüphaneleri yüklemesi engellenerek bu durum önlenebilir.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxie'nin işlevselliği, korumalı alanda herhangi bir işlem başlatıldığında SbieDll.dll tarafından ona yüklenebilen, isteğe bağlı DLL'ler kullanılarak genişletilebilir. Genel ayarlardaki Eklenti Yöneticisinde bazı yararlı uzantılar sunulmaktadır. Bunlar kurulduktan sonra geçerli korumalı alan için buradan etkinleştirilebilirler.
@@ -7409,77 +7619,142 @@ Bir işlemi belirtmek için yol olarak '$:program.exe' kullanın.Ağ Seçenekleri
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Other OptionsDiğer Seçenekler
-
+ Port BlockingBağlantı Noktası Engelleme
-
+ Block common SAMBA portsYaygın SAMBA bağlantı noktalarını engelle
-
+ Block DNS, UDP port 53DNS, UDP bağlantı noktası 53'ü engelle
-
+ Quick RecoveryHızlı Kurtarma
-
+ Immediate RecoveryAnında Kurtarma
-
+ Various OptionsÇeşitli Seçenekler
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)ElevateCreateProcess geçici çözümünü uygula (Eski davranış)
-
+ Use desktop object workaround for all processesMasaüstü nesnesi geçici çözümünü tüm işlemler için kullan
-
+ On Box TerminateAlan Sonlandığında
-
+ This command will be run before the box content will be deletedBu komut, alan içeriği silinmeden önce çalıştırılacaktır
-
+ On File RecoveryDosya Kurtarmada
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedBu komut, bir dosya kurtarılmadan önce çalıştırılacak ve dosya yolu ilk bağımsız değişken olarak aktarılacaktır. Bu komut 0'dan başka bir değer döndürürse, kurtarma işlemi engellenecektir
-
+ Run File CheckerDosya Denetleyicisini Gir
-
+ On Delete Contentİçerik Silmede
@@ -7490,37 +7765,37 @@ Bir işlemi belirtmek için yol olarak '$:program.exe' kullanın.
-
+ Processİşlem
-
+ Add OptionSeçenek Ekle
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Burada, uyumluluğu artırmak veya korumalı alan davranışını özelleştirmek için işlem başına gelişmiş seçenekleri yapılandırabilirsiniz.
-
+ OptionSeçenek
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.Bu komutlar korumalı alandaki tüm işlemler sonlandıktan sonra ALAN DIŞINDAN çalıştırılır.
-
+ API call Trace (traces all SBIE hooks)API çağrısı İzleme (tüm SBIE kancalarını izler)
-
+ Log all SetError's to Trace log (creates a lot of output)Tüm SetError Mesajlarını İzleme Günlüğüne Kaydet (Çok fazla çıktı oluşturur)
@@ -7535,32 +7810,37 @@ Bir işlemi belirtmek için yol olarak '$:program.exe' kullanın.Panoya okuma erişimini engelle
-
+ Emulate sandboxed window station for all processesTüm işlemler için korumalı alan pencere istasyonunu taklit et
-
+
+ DNS Request Logging
+
+
+
+ Syscall Trace (creates a lot of output)Syscall İzleme (Çok fazla çıktı oluşturur)
-
+ Add TemplateŞablon Ekle
-
+ Open TemplateŞablonu Aç
-
+ Template FoldersŞablon Klasörleri
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -7569,28 +7849,28 @@ Please note that this values are currently user specific and saved globally for
Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için global olarak kaydedildiğini unutmayın.
-
-
+
+ ValueDeğer
-
+ AccessibilityErişilebilirlik
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Kaybedilen korumayı telafi etmek için lütfen Güvenlik Seçenekleri > Güvenlik Sıkılaştırması altındaki Yetkilendirme Kısıtlamaları bölümü Hak Bırakma ayarlarına bakın.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessEkran Okuyucuları: JAWS, NVDA, Window-Eyes, System Access
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Aşağıdaki ayarlar, Sandboxie'nin erişilebilirlik yazılımıyla birlikte kullanılmasını sağlar. Lütfen bu ayarlar etkin olduğunda Sandboxie korumasının bir kısmının ister istemez kaybedildiğini unutmayın.
@@ -7605,12 +7885,12 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
Windows Güvenlik Hesap Yöneticisine açık erişim
-
+ Disable Resource Access MonitorKaynak Erişim İzleyicisini Devre Dışı Bırak
-
+ Resource Access MonitorKaynak Erişim İzleyicisi
@@ -7703,17 +7983,20 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
-
+ ActionEylem
+ PortBağlantı Noktası
+
+ IPIP
@@ -7723,7 +8006,7 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
Protokol
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.DİKKAT: Windows Filtreleme Platformu sürücü ile etkinleştirilmemiştir, bu nedenle bu kurallar yalnızca kullanıcı modunda uygulanacaktır ve zorlanmaz! Bu, kötü amaçlı uygulamaların bunları atlayabileceği anlamına gelir.
@@ -7739,7 +8022,7 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
-
+ Network FirewallAğ Güvenlik Duvarı
@@ -7769,7 +8052,7 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
Windows Kimlik Bilgileri Deposunu aç (Kullanıcı modu)
-
+ Prevent change to network and firewall parameters (user mode)Ağ ve güvenlik duvarı parametrelerinde değişikliği engelle (Kullanıcı modu)
@@ -7867,61 +8150,61 @@ The process match level has a higher priority than the specificity and describes
İşlem eşleştirme düzeyi, özgüllükten daha yüksek bir önceliğe sahiptir ve bir kuralın belirli bir işleme nasıl uygulanacağını tanımlar. İşlem adına veya grubuna göre uygulanan kurallar en güçlü eşleştirme düzeyine sahiptir. Ardından olumsuzlama ile eşleştirme gelir, yani belirtilen işlem dışındaki tüm işlemlere uygulanan kurallara aittir; en düşük eşleştirme düzeyleri ise genel eşleştirmelere, yani herhangi bir işleme uygulanan kurallara aittir.
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Varsayılan olarak RpcMgmtSetComTimeout kullanımını devre dışı bırak (Uyumluluk sorunlarını çözebilir)
-
+ TriggersTetikleyiciler
-
+ EventOlay
-
-
-
-
+
+
+
+ Run CommandKomut Gir
-
+ Start ServiceHizmeti Gir
-
+ These events are executed each time a box is startedBu olaylar, bir alan her başlatıldığında yürütülür
-
+ On Box StartAlan Başlangıcında
-
-
+
+ These commands are run UNBOXED just before the box content is deletedBu komutlar alan içeriği silinmeden hemen önce ALAN DIŞINDAN çalıştırılır
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Bu komutlar yalnızca bir alan ilk kullanıma hazırlandığında yürütülür. Tekrar çalışması için alan içeriğinin silinmesi gerekir.
-
+ On Box InitAlan İlk Kullanımında
-
+ Here you can specify actions to be executed automatically on various box events.Burada, çeşitli alan olaylarında otomatik olarak yürütülecek eylemleri belirleyebilirsiniz.
@@ -7936,7 +8219,7 @@ The process match level has a higher priority than the specificity and describes
Bir işlem erişimi reddedildiğinde 2111 mesajını yayınla
-
+ Allow use of nested job objects (works on Windows 8 and later)İç içe iş nesnelerinin kullanımına izin ver (Windows 8 ve sonraki sürümlerde çalışır)
@@ -9064,4 +9347,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Varsayılan anlık görüntü
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Protokol:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Bağlantı Noktası:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_uk.ts b/SandboxiePlus/SandMan/sandman_uk.ts
index a9ff47db..b722559e 100644
--- a/SandboxiePlus/SandMan/sandman_uk.ts
+++ b/SandboxiePlus/SandMan/sandman_uk.ts
@@ -1472,8 +1472,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
COptionsWindow
-
-
+
+ Browse for FileПошук файлу
@@ -1484,139 +1484,139 @@ Note: The update check is often behind the latest GitHub release to ensure that
Пошук папки
-
+ ClosedЗакритий
-
+ Closed RTЗакритий RT
-
+ Read OnlyТільки зчитування
-
+ NormalНормальний
-
+ OpenВідкритий
-
+ Open for AllВідкритий для всіх
-
+ No Rename
-
+ Box Only (Write Only)Тільки контейнер (Лише запис)
-
+ Ignore UIPI
-
-
-
+
+
+ UnknownНевідомо
-
+ Regular Sandboxie behavior - allow read and also copy on write.
-
+ Allow write-access outside the sandbox.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.
-
+ Don't rename window classes.
-
+ Deny access to host location and prevent creation of sandboxed copies.
-
+ Block access to WinRT class.
-
+ Allow read-only access only.
-
+ Hide host files, folders or registry keys from sandboxed processes.
-
+ Ignore UIPI restrictions for processes.
-
+ File/FolderФайл/Папка
-
+ RegistryРеєстр
-
+ IPC PathШлях IPC
-
+ Wnd ClassКлас Wnd
-
+ COM ObjectОб'єкт COM
-
+ Select FileОберіть файл
-
+ All Files (*.*)Усі файли (*.*)
-
+
@@ -1625,69 +1625,71 @@ Note: The update check is often behind the latest GitHub release to ensure that
Оберіть каталог
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsУсі програми
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Група: %1
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}Об'єкти COM повинні бути вказані за своїм GUID, наприклад {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.Інтерфейси RT повинні бути вказані за своїм ім'ям.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?
-
+ Don't ask in future
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead
-
-
+
+
-
+ Template values can not be edited.Шаблон не можна редагувати.
-
+ Template values can not be removed.Шаблон не можна видалити.
@@ -1749,57 +1751,57 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Add special option:
-
-
+
+ On StartПри старті
-
-
-
-
-
+
+
+
+
+ Run CommandВиконати команду
-
+ Start ServiceЗапустити слубжу
-
+ On InitПри ініціалізації
-
+ On File Recovery
-
+ On Delete Content
-
+ On Terminate
-
+ Please enter a program file name to allow access to this sandbox
-
+ Please enter a program file name to deny access to this sandbox
@@ -1808,11 +1810,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
При видаленні
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedБудь ласка, введіть командний рядок, який потрібно виконати
@@ -1821,12 +1823,12 @@ Note: The update check is often behind the latest GitHub release to ensure that
Будь ласка, введіть назву файла програми
-
+ Deny
-
+ %1 (%2)%1 (%2)
@@ -2069,7 +2071,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Please enter a service identifierБудь ласка, введіть індентификатор служби
@@ -2100,68 +2102,83 @@ Note: The update check is often behind the latest GitHub release to ensure that
Будь ласка, оберіть спочатку групу.
-
-
+
+ AnyБудь-який
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow accessДозволити доступ
-
+ Block using Windows Filtering PlatformЗаборонити за допомогою Windows Filtering Platform
-
+ Block by denying access to Network devicesЗаборонити, заблокувавши доступ до пристроїв мережі
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowДозволити
-
+ Block (WFP)Заборонити (WFP)
-
+ Block (NDev)Заборонити (NDev)
-
+ A non empty program name is required.
-
+ BlockЗаборонити
@@ -2283,57 +2300,57 @@ Please select a folder which contains this file.
Sandboxie Plus - Параметри '%1'
-
+ File OptionsНалаштування файла
-
+ Grouping
-
+ Add %1 Template
-
+ Search for options
-
+ Box: %1
-
+ Template: %1
-
+ Global: %1
-
+ Default: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Цей контейнер був видалений, тому конфігурацію не можна зберегти.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Деякі зміни не збережені досі, ви дійсно хочете закрити це вікно параметрів?
-
+ Enter program:Введіть програму:
@@ -6389,6 +6406,194 @@ If you are a great patreaon supporter already, sandboxie can check online for an
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6744,8 +6949,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
+ Protect the system from sandboxed processesЗахистити систему від процесів у пісочниці
@@ -6890,12 +7094,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Обмеження друку
-
+ Network restrictionsОбмеження мережі
-
+ Block network files and folders, unless specifically opened.Блокувати файли та папки у мережі, якщо вони не відкриті.
@@ -6918,11 +7122,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameНазва
@@ -6952,13 +7156,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveПрибрати
@@ -7028,11 +7234,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
+
+
-
+
+ Show TemplatesПоказати шаблони
@@ -7086,7 +7292,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Відкрити Сховище Windows Credentials (user mode)
-
+ Prevent change to network and firewall parameters (user mode)Заборонити змінювати налаштування мережі та файрволу (user mode)
@@ -7289,11 +7495,13 @@ If leader processes are defined, all others are treated as lingering processes.<
+ Move UpПеремістити вгору
+ Move DownПеремістити вниз
@@ -7364,49 +7572,49 @@ If leader processes are defined, all others are treated as lingering processes.<
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image Protection
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7649,7 +7857,9 @@ To specify a process use '$:program.exe' as path.
-
+
+
+ ProgramПрограма
@@ -7657,17 +7867,20 @@ To specify a process use '$:program.exe' as path.
-
+ ActionДія
+ PortПорт
+
+ IPIP
@@ -7677,7 +7890,7 @@ To specify a process use '$:program.exe' as path.
Протокол
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.УВАГА: Windows Filtering Platform не увімнений у драйвері, тому ці правила можуть працювати тільки в користувальницькому режимі та можуть бути не застосовані!!! Шкідливі програми можуть це обійти.
@@ -7724,57 +7937,57 @@ You can use 'Open for All' instead to make it apply to all programs, o
Додати об'єкт COM
-
+ File RecoveryВідновлення файлів
-
+ Quick Recovery
-
+ Add FolderДодати папку
-
+ Immediate RecoveryНегайне відновлення
-
+ Ignore ExtensionІгнорувати розширення
-
+ Ignore FolderІгнорувати папку
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Увімкнути термінове відновлення файлів, щоб швидко відновити файли після їх створення.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Ви можете виключити деякі папки та типи файлів (або розширення файлів) з термінового відновлення.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Коли швидке відновлення викликано, ці папки будуть перевірені в пісочниці.
-
+ Advanced OptionsДодаткові налаштування
-
+ MiscellaneousРізне
@@ -7795,7 +8008,7 @@ You can use 'Open for All' instead to make it apply to all programs, o
-
+ Protect the sandbox integrity itselfЗахистити цілісність пісочниці
@@ -7820,7 +8033,7 @@ You can use 'Open for All' instead to make it apply to all programs, o
Ізоляція пісочниці
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Примусове використання користувальницьких файлів маніфесту (застаріле)
@@ -7884,8 +8097,8 @@ The process match level has a higher priority than the specificity and describes
Дозволити доступ до Service Control Manager тільки привільованим процесам
-
-
+
+ CompatibilityСумістність
@@ -7899,12 +8112,12 @@ The process match level has a higher priority than the specificity and describes
Додати процеси у пісочниці до об'єктів завдань (рекомендовано)
-
+ Emulate sandboxed window station for all processesЕмулювати віконну станцію для всіх процесів у пісочниці
-
+ Allow use of nested job objects (works on Windows 8 and later)Дозволити використання вкладених об'єктів завдань (працює тільки в Windows 8 та вище)
@@ -7970,7 +8183,7 @@ The process match level has a higher priority than the specificity and describes
COM/RPC
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Вимкнути використання RpcMgmtSetComTimeout за замовчуванням (може визивати проблеми з сумісністю)
@@ -7999,41 +8212,41 @@ The process match level has a higher priority than the specificity and describes
Ізоляція доступу
-
+ TriggersТригери
-
+ EventПодія
-
-
-
-
+
+
+
+ Run CommandВиконати команду
-
+ Start ServiceЗапустити слубжу
-
+ These events are executed each time a box is startedЦі події виконуються щоразу, коли запускається контейнер
-
+ On Box StartПри запуску контейнера
-
-
+
+ These commands are run UNBOXED just before the box content is deletedЦі команди виконуються ПОЗА ПІСОЧНИЦЕЮ безпосередньо перед видаленням вмісту контейнера
@@ -8042,52 +8255,52 @@ The process match level has a higher priority than the specificity and describes
При видаленні контейнера
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Ці команди виконуються лише після ініціалізації контейнера. Щоб запустити їх знову, вміст контейнера потрібно видалити.
-
+ On Box InitПри ініціалізації контейнера
-
+ Here you can specify actions to be executed automatically on various box events.Тут ви можете вказати дії, які будуть виконуватися автоматично для різних подій контейнера.
-
+ Hide ProcessesСховати процеси
-
+ Add ProcessДодати процес
-
+ Hide host processes from processes running in the sandbox.Сховати процеси хоста від процесів, які виконуються в пісочниці.
-
+ Don't allow sandboxed processes to see processes running in other boxesНе дозволяти ізольованим процесам бачити процеси, що виконуються в інших контейнерах
-
+ UsersКористувачі
-
+ Restrict Resource Access monitor to administrators onlyОбмежити монітор доступу до ресурсів лише адміністраторам
-
+ Add UserДодати користувача
@@ -8096,7 +8309,7 @@ The process match level has a higher priority than the specificity and describes
Видалити користувача
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8105,23 +8318,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Примітка: Примусові налаштування програм і примусових папок для пісочниці не застосовуються до облікових записів користувачів, які не можуть використовувати пісочницю.
-
+ Add Option
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.
-
+ Option
-
+ TracingВідстежування
@@ -8131,22 +8344,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Відстежування викликів API (потрібен logapi, який повинен бути встановлений у папку sbie)
-
+ Pipe TraceТрасування pipe
-
+ Log all SetError's to Trace log (creates a lot of output)Записувати всі SetError у журналі трасування (створює багато вихідних даних)
-
+ Log Debug Output to the Trace LogЗаписувати дані відладки до журналу трасування
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8169,78 +8382,78 @@ instead of "*".Трасування системних викликів NTDLL (створює багато даних у виході)
-
+ File TraceТрасування файлів
-
+ Disable Resource Access MonitorВиключити монітор доступу до ресурсів
-
+ IPC TraceТрасування IPC
-
+ GUI TraceТрасування GUI
-
+ Resource Access MonitorМонітор доступу до ресурсів
-
+ Access TracingТрасування доступу
-
+ COM Class TraceТрасування COM Class
-
+ Key TraceТрасування Key Trace
-
+ Network FirewallМережевий брандмауер
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Syscall Trace (creates a lot of output)
-
+ DebugВідладка
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!УВАГА, ці налаштування можуть вимкнути захист ядра та зламати захист пісочниці!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Ці параметри призначені для налагодження проблем із сумісністю, будь ласка, не використовуйте їх у виробництві.
-
+ App TemplatesШаблони для додатків
@@ -8249,22 +8462,22 @@ instead of "*".
Шаблони сумісності
-
+ Filter CategoriesКатегорії фільтрів
-
+ Text FilterТекстовий фільтр
-
+ Add TemplateДодати шаблон
-
+ This list contains a large amount of sandbox compatibility enhancing templatesЦей список має багату кількість шаблонів сумісності
@@ -8273,17 +8486,17 @@ instead of "*".
Прибрати
-
+ CategoryКатегорія
-
+ Template FoldersПапка з шаблонами
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8292,23 +8505,23 @@ Please note that this values are currently user specific and saved globally for
Зауважте, що наразі ці значення є специфічними для користувача та зберігаються глобально для всіх контейнерів.
-
-
+
+ ValueЗначення
-
+ AccessibilityДоступність
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Щоб компенсувати втрачений захист, зверніться до сторінки налаштувань Скинути права у групі налаштувань Обмежень.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessЧитачі екрану: JAWS, NVDA, Window-Eyes, System Access
@@ -8318,43 +8531,43 @@ Please note that this values are currently user specific and saved globally for
-
+ Various Options
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)
-
+ Use desktop object workaround for all processes
-
+ This command will be run before the box content will be deleted
-
+ On File Recovery
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked
-
+ Run File Checker
-
+ On Delete Content
@@ -8392,72 +8605,142 @@ Please note that this values are currently user specific and saved globally for
-
+ ProcessПроцес
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Block DNS, UDP port 53
-
+ On Box Terminate
-
+ API call Trace (traces all SBIE hooks)
-
+
+ DNS Request Logging
+
+
+
+ Templates
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Ці налаштування допомагають використовувати Sandboxie з програмний забезпеченням для спеціальних можливостей. Зауважте, що при використанні цих параметрів, деякі функції захисту можуть не діяти.
-
+ Edit ini SectionРедагувати розділ ini файлу
-
+ Edit iniРедагувати ini
-
+ CancelСкасувати
-
+ SaveЗберігти
@@ -9640,4 +9923,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Зробити знімок
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Протокол:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Порт:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_vi.ts b/SandboxiePlus/SandMan/sandman_vi.ts
index 9189e9c4..34c2f7f5 100644
--- a/SandboxiePlus/SandMan/sandman_vi.ts
+++ b/SandboxiePlus/SandMan/sandman_vi.ts
@@ -1464,8 +1464,8 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
COptionsWindow
-
-
+
+ Browse for FileDuyệt tìm tệp
@@ -1476,139 +1476,139 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Duyệt thư mục
-
+ ClosedĐóng.
-
+ Closed RTĐóng RT
-
+ Read OnlyChỉ Đọc
-
+ NormalBình Thường
-
+ OpenMở
-
+ Open for AllMở cho tất cả
-
+ No RenameKhông Đổi Tên
-
+ Box Only (Write Only)Chỉ Sandbox (Chỉ Ghi)
-
+ Ignore UIPIBỏ qua UIPI
-
-
-
+
+
+ UnknownKhông rõ
-
+ Regular Sandboxie behavior - allow read and also copy on write.Hành vi mặc định của Sandbox - cho phép đọc và cũng có thể sao chép khi ghi.
-
+ Allow write-access outside the sandbox.Cho phép quyền ghi bên ngoài Sandbox.
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.Cho phép quyền ghi bên ngoài hộp cát, cũng cho các ứng dụng được cài đặt bên trong Sandbox.
-
+ Don't rename window classes.Không đổi tên WindowClass.
-
+ Deny access to host location and prevent creation of sandboxed copies.Từ chối quyền truy cập vào vị trí máy chủ lưu trữ và ngăn tạo các bản sao Sandbox.
-
+ Block access to WinRT class.Chặn quyền truy cập vào WinRT class.
-
+ Allow read-only access only.Chỉ cho phép quyền truy cập chỉ đọc.
-
+ Hide host files, folders or registry keys from sandboxed processes.Ẩn tệp máy chủ, thư mục hoặc khóa đăng ký khỏi các quy trình Sandbox.
-
+ Ignore UIPI restrictions for processes.Bỏ qua các giới hạn UIPI cho các tiến trình.
-
+ File/FolderTệp/Thư Mục
-
+ RegistryRegistry
-
+ IPC PathIPC Path
-
+ Wnd ClassWnd Class
-
+ COM ObjectCOM Object
-
+ Select FileChọn Tệp
-
+ All Files (*.*)Tất cả Tệp (*.*)
-
+
@@ -1617,69 +1617,71 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Chọn Thư Mục
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All ProgramsTất cả Chương Trình
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1Nhóm: %1
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}Các đối tượng COM phải được chỉ định bởi GUID của chúng, như: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.Các giao diện RT phải được chỉ định theo tên của chúng.
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?Mở tất cả quyền truy cập IPC cũng mở quyền truy cập COM, bạn vẫn muốn giới hạn COM trong Sandbox?
-
+ Don't ask in futureKhông hỏi trong tương lai
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead'OpenWinClass=program.exe,#' không được hỗ trợ, sử dụng 'NoRenameWinClass=program.exe,*' để thay thế
-
-
+
+
-
+ Template values can not be edited.Không thể chỉnh sửa giá trị mẫu.
-
+ Template values can not be removed.Giá trị mẫu không thể bị xóa.
@@ -1741,66 +1743,66 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Gốc IPC của Sandbox
-
+ Add special option:Thêm các tuỳ chọn đặc biệt:
-
-
+
+ On StartLúc khởi động
-
-
-
-
-
+
+
+
+
+ Run CommandLệnh Chạy
-
+ Start ServiceKhởi động Dịch vụ
-
+ On InitLúc Bắt Đầu
-
+ On File RecoveryLúc Khôi Phục Tệp
-
+ On Delete ContentLúc Xoá Dữ Liệu
-
+ On Terminate
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executedVui lòng nhập dòng lệnh sẽ được thực hiện
-
+ Please enter a program file name to allow access to this sandbox
-
+ Please enter a program file name to deny access to this sandbox
@@ -1809,12 +1811,12 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Vui lòng nhập tên tệp chương trình
-
+ DenyTừ Chối
-
+ %1 (%2)%1 (%2)
@@ -2061,7 +2063,7 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
+ Please enter a service identifierVui lòng nhập số nhận dạng dịch vụ
@@ -2092,68 +2094,83 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Vui lòng chọn nhóm trước.
-
-
+
+ AnyMọi Loại
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow accessCho phép truy cập
-
+ Block using Windows Filtering PlatformChặn bằng cách sử dụng Nền tảng lọc của Windows
-
+ Block by denying access to Network devicesChặn bằng cách từ chối quyền truy cập vào các thiết bị Mạng
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ AllowCho phép
-
+ Block (WFP)Chặn (WFP)
-
+ Block (NDev)Chặn (NDev)
-
+ A non empty program name is required.
-
+ BlockChặn
@@ -2263,57 +2280,57 @@ Please select a folder which contains this file.
Sandboxie Plus - '%1' Tùy chọn
-
+ File OptionsTùy chọn tệp
-
+ GroupingPhân nhóm
-
+ Add %1 Template
-
+ Search for optionsTìm kiếm các tùy chọn
-
+ Box: %1Hộp: %1
-
+ Template: %1Mẫu: %1
-
+ Global: %1Toàn bộ: %1
-
+ Default: %1Mặc định: %1
-
+ This sandbox has been deleted hence configuration can not be saved.Sandbox này đã bị xóa do đó không thể lưu cấu hình.
-
+ Some changes haven't been saved yet, do you really want to close this options window?Một số thay đổi vẫn chưa được lưu, bạn có thực sự muốn đóng cửa sổ tùy chọn này không?
-
+ Enter program:Nhập chương trình:
@@ -6313,6 +6330,194 @@ If you are a great patreaon supporter already, sandboxie can check online for an
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6668,8 +6873,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
+ Protect the system from sandboxed processesBảo vệ hệ thống khỏi các tiến trình Sandbox
@@ -6810,12 +7014,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Hạn chế in ấn
-
+ Network restrictionsHạn chế mạng
-
+ Block network files and folders, unless specifically opened.Chặn các tệp và thư mục mạng, trừ khi được mở cụ thể.
@@ -6838,11 +7042,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameTên
@@ -6872,13 +7076,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveLoại bỏ
@@ -6944,11 +7150,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
+
+
-
+
+ Show TemplatesHiển thị Mẫu
@@ -6998,7 +7204,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Mở Windows Credentials Store (chế độ người dùng)
-
+ Prevent change to network and firewall parameters (user mode)Ngăn chặn sự thay đổi đối với các thông số mạng và tường lửa (chế độ người dùng)
@@ -7192,11 +7398,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
+ Move UpĐi lên
+ Move DownĐi xuống
@@ -7278,49 +7486,49 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image Protection
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7530,7 +7738,9 @@ To specify a process use '$:program.exe' as path.
-
+
+
+ ProgramChương trình
@@ -7538,17 +7748,20 @@ To specify a process use '$:program.exe' as path.
-
+ ActionHoạt động
+ PortPort
+
+ IPIP
@@ -7558,7 +7771,7 @@ To specify a process use '$:program.exe' as path.
Giao thức
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.THẬN TRỌNG:Nền tảng lọc của Windows không được kích hoạt với trình điều khiển, do đó các quy tắc này sẽ chỉ được áp dụng trong chế độ người dùng và không thể được thực thi !!! Điều này có nghĩa là các ứng dụng độc hại có thể bỏ qua chúng.
@@ -7636,57 +7849,57 @@ To specify a process use '$:program.exe' as path.
Áp dụng Đóng...=!<chương trình>,... quy tắc cũng cho tất cả các tệp nhị phân nằm trong Sandbox.
-
+ File RecoveryPhục hồi tập tin
-
+ Quick RecoveryKhôi phục nhanh
-
+ Add FolderThêm thư mục
-
+ Immediate RecoveryPhục hồi ngay lập tức
-
+ Ignore ExtensionBỏ qua phần mở rộng
-
+ Ignore FolderBỏ qua thư mục
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Bật lời nhắc Khôi phục ngay lập tức để có thể khôi phục tệp ngay sau khi chúng được tạo.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Bạn có thể loại trừ các thư mục và loại tệp (hoặc phần mở rộng tệp) khỏi Khôi phục ngay lập tức.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Khi chức năng Khôi phục nhanh được gọi, các thư mục sau sẽ được kiểm tra nội dung Sandbox.
-
+ Advanced OptionsTùy chọn nâng cao
-
+ MiscellaneousKhác
@@ -7707,7 +7920,7 @@ To specify a process use '$:program.exe' as path.
-
+ Protect the sandbox integrity itselfBảo vệ tính toàn vẹn của hộp cát
@@ -7728,7 +7941,7 @@ To specify a process use '$:program.exe' as path.
Bảo vệ các quy trình HỆ THỐNG hộp cát khỏi các quy trình không có đặc quyền
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Buộc sử dụng các tệp Tệp kê khai giả tùy chỉnh (hành vi kế thừa)
@@ -7780,8 +7993,8 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Chỉ cho phép các quy trình đặc quyền truy cập Trình quản lý kiểm soát dịch vụ
-
-
+
+ CompatibilityKhả năng tương thích
@@ -7791,7 +8004,7 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Thêm các quy trình Sandbox vào các đối tượng công việc (được khuyến nghị)
-
+ Emulate sandboxed window station for all processesMô phỏng trạm cửa sổ Sandbox cho tất cả các quy trình
@@ -7825,7 +8038,7 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Cho phép đọc bộ nhớ của các quy trình không trong Sandbox (không được khuyến nghị)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Vô hiệu hóa việc sử dụng RpcMgmtSetComTimeout theo mặc định (điều này có thể giải quyết các vấn đề tương thích)
@@ -7850,81 +8063,81 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Các tùy chọn dưới đây có thể được sử dụng một cách an toàn khi bạn không cấp quyền quản trị viên.
-
+ TriggersTriggers
-
+ EventEvent
-
-
-
-
+
+
+
+ Run CommandChạy lệnh
-
+ Start ServiceBắt đầu dịch vụ
-
+ These events are executed each time a box is startedCác sự kiện này được thực thi mỗi khi một Sandbox được khởi động
-
+ On Box StartKhi bắt đầu Sandbox
-
-
+
+ These commands are run UNBOXED just before the box content is deletedCác lệnh này được chạy ngoài Sandbox ngay trước khi nội dung Sandbox bị xóa
-
+ Allow use of nested job objects (works on Windows 8 and later)Cho phép sử dụng các đối tượng công việc lồng ghép nhau (hoạt động trên Windows 8 trở lên)
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Các lệnh này chỉ được thực thi khi một Sandbox được khởi tạo. Để làm cho chúng chạy lại, nội dung Sandbox phải được xóa.
-
+ On Box InitKhi khởi động Sandbox
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Here you can specify actions to be executed automatically on various box events.Tại đây, bạn có thể chỉ định các hành động được thực thi tự động trên các sự kiện Sandbox khác nhau.
-
+ Hide ProcessesẨn các tiến trình
-
+ Add ProcessThêm tiến trình
-
+ Hide host processes from processes running in the sandbox.Ẩn các tiến trình máy chủ khỏi các tiến trình đang chạy trong Sandbox.
@@ -7934,48 +8147,48 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Những hạn chế
-
+ Various OptionsCác tùy chọn khác nhau
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Áp dụng ElevateCreateProcess Workaround (hành vi cũ)
-
+ Use desktop object workaround for all processes
-
+ This command will be run before the box content will be deletedLệnh này sẽ được chạy trước khi nội dung Sandbox bị xóa
-
+ On File RecoveryKhi phục hồi tệp
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedLệnh này sẽ được chạy trước khi tệp được khôi phục và đường dẫn tệp sẽ được chuyển làm đối số đầu tiên. Nếu lệnh này trả về bất kỳ điều gì khác với 0, quá trình khôi phục sẽ bị chặn
-
+ Run File CheckerChạy trình kiểm tra tệp
-
+ On Delete ContentKhi xóa nội dung
-
+ Don't allow sandboxed processes to see processes running in other boxesKhông cho phép các tiến trình trong Sandbox cát xem các quy trình đang chạy trong các Sandbox khác
@@ -7986,7 +8199,7 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
-
+ ProcessTiến trình
@@ -7995,22 +8208,22 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Chặn cũng đọc quyền truy cập vào các tiến trình trong Sandbox này
-
+ UsersNgười dùng
-
+ Restrict Resource Access monitor to administrators onlyGiới hạn giám sát Quyền truy cập tài nguyên chỉ dành cho quản trị viên
-
+ Add UserThêm người dùng
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8019,23 +8232,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Ghi chú: Cài đặt Buộc chương trình và Thư mục bắt buộc cho Sandbox không áp dụng cho các tài khoản người dùng không thể sử dụng Sandbox.
-
+ Add OptionThêm tùy chọn
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Tại đây, bạn có thể định cấu hình các tùy chọn nâng cao cho mỗi quy trình để cải thiện khả năng tương thích và / hoặc tùy chỉnh hành vi Sandbox.
-
+ OptionTuỳ chọn
-
+ TracingTruy tìm
@@ -8044,22 +8257,22 @@ Ghi chú: Cài đặt Buộc chương trình và Thư mục bắt buộc cho Sa
Theo dõi cuộc gọi API (yêu cầu phải cài đặt LogAPI trong thư mục Sbie)
-
+ Pipe TracePipe Trace
-
+ Log all SetError's to Trace log (creates a lot of output)Ghi lại tất cả SetError' đến Nhật ký theo dõi (tạo ra nhiều đầu ra)
-
+ Log Debug Output to the Trace LogGhi đầu ra Gỡ lỗi vào Nhật ký theo dõi
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8082,113 +8295,113 @@ thay vì "*".
Ntdll syscall Trace (tạo ra nhiều đầu ra)
-
+ File TraceTheo dõi tệp
-
+ Disable Resource Access MonitorTắt tính năng giám sát quyền truy cập tài nguyên
-
+ IPC TraceTheo dõi IPC
-
+ GUI TraceTheo dõi giao diện người dùng
-
+ Resource Access MonitorGiám sát truy cập tài nguyên
-
+ Access TracingTruy cập theo dõi
-
+ COM Class TraceTheo dõi lớp COM
-
+ Key TraceTheo dõi khoá
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Để bù đắp cho sự bảo vệ đã mất, vui lòng tham khảo trang cài đặt Quyền thả trong nhóm cài đặt Hạn chế.
-
+ Network FirewallTường lửa mạng
-
+ API call Trace (traces all SBIE hooks)
-
+ DebugGỡ lỗi
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!CẢNH BÁO, các tùy chọn này có thể vô hiệu hóa các đảm bảo bảo mật cốt lõi và phá vỡ bảo mật Sandbox !!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Các tùy chọn này nhằm gỡ lỗi các vấn đề tương thích, vui lòng không sử dụng chúng trong sản xuất.
-
+ App TemplatesMẫu ứng dụng
-
+ Filter CategoriesLọc danh mục
-
+ Text FilterBộ lọc văn bản
-
+ Add TemplateThêm mẫu
-
+ This list contains a large amount of sandbox compatibility enhancing templatesDanh sách này chứa một lượng lớn các mẫu nâng cao khả năng tương thích với Sandbox
-
+ CategoryLoại
-
+ Template FoldersThư mục Mẫu
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8197,8 +8410,8 @@ Please note that this values are currently user specific and saved globally for
Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dùng và được lưu trên toàn cầu cho tất cả các Sandbox.
-
-
+
+ ValueGiá trị
@@ -8230,77 +8443,147 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Block DNS, UDP port 53
-
+ On Box Terminate
-
+
+ DNS Request Logging
+
+
+
+ Syscall Trace (creates a lot of output)
-
+ TemplatesMẫu
-
+ Open Template
-
+ AccessibilityKhả năng tiếp cận
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessTrình đọc màn hình: JAWS, NVDA, Window-Eyes, System Access
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Các cài đặt sau cho phép sử dụng Sandboxie kết hợp với phần mềm trợ năng. Xin lưu ý rằng một số biện pháp bảo vệ Sandboxie nhất thiết bị mất khi các cài đặt này có hiệu lực.
-
+ Edit ini SectionChỉnh sửa file .ini
-
+ Edit iniChỉnh sửa ini
-
+ CancelHủy bỏ
-
+ SaveLưu
@@ -9496,4 +9779,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Chụp bản ghi
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ Giao thức:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ Port:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index 3c296c60..ce862d57 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -1641,76 +1641,76 @@ Note: The update check is often behind the latest GitHub release to ensure that
沙盒 IPC 根目录
-
+ Add special option:添加特殊选项:
-
-
+
+ On Start沙盒启动阶段
-
-
-
-
-
+
+
+
+
+ Run Command执行命令
-
+ Start Service启动服务
-
+ On Init沙盒初始阶段
-
+ On File Recovery文件恢复阶段
-
+ On Delete Content内容删除阶段
-
+ On Terminate在沙盒终止时
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executed请输入需要执行的命令行
-
+ Please enter a program file name to allow access to this sandbox输入允许访问该沙盒的程序名
-
+ Please enter a program file name to deny access to this sandbox输入不允许访问该沙盒的程序名
-
+ Deny拒绝(禁止)
-
+ %1 (%2)%1 (%2)
@@ -1912,8 +1912,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
映像头已恢复
-
-
+
+ Browse for File浏览文件
@@ -1924,52 +1924,52 @@ Note: The update check is often behind the latest GitHub release to ensure that
浏览文件夹
-
+ File Options文件选项
-
+ Grouping分组
-
+ Add %1 Template添加 %1 模板
-
+ Search for options搜索选项
-
+ Box: %1沙盒: %1
-
+ Template: %1模板: %1
-
+ Global: %1全局: %1
-
+ Default: %1默认: %1
-
+ This sandbox has been deleted hence configuration can not be saved.该沙盒已被删除,因此配置无法保存
-
+ Some changes haven't been saved yet, do you really want to close this options window?部分变更未保存,您确定要关闭这个选项窗口吗?
@@ -1989,7 +1989,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
选择程序
-
+ Please enter a service identifier请输入一个服务标识符
@@ -2010,15 +2010,15 @@ Note: The update check is often behind the latest GitHub release to ensure that
请输入一则命令
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1组: %1
@@ -2028,7 +2028,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
请输入新组的名称
-
+ Enter program:请输入程序:
@@ -2068,7 +2068,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
强制指定文件夹很可能会损坏 Windows,你确定要继续吗?
-
+
@@ -2077,188 +2077,190 @@ Note: The update check is often behind the latest GitHub release to ensure that
选择目录
-
+ Closed封禁
-
+ Closed RT封禁 RT
-
+ Read Only只读
-
+ Normal标准
-
+ Open开放
-
+ Open for All完全开放
-
+ No Rename禁止重命名
-
+ Box Only (Write Only)仅沙盒内 (只写)
-
+ Ignore UIPI忽略 UIPI(用户界面特权隔离(User Interface Privilege Isolation))
-
-
-
+
+
+ Unknown未知
-
+ Regular Sandboxie behavior - allow read and also copy on write.常规沙盒行为 - 允许读取及写时复制
-
+ Allow write-access outside the sandbox.允许透写到沙盒外(仅当执行写操作的程序位于沙盒外时)
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.允许透写到沙盒外(无论执行写操作的程序是否位于沙盒内)
-
+ Don't rename window classes.禁止重命名 Windows 窗口类
-
+ Deny access to host location and prevent creation of sandboxed copies.拒绝对主机位置的访问,防止在沙盒内创建相应的副本
-
+ Block access to WinRT class.阻止对 WinRT 类的访问
-
+ Allow read-only access only.只允许只读访问
-
+ Hide host files, folders or registry keys from sandboxed processes.对沙盒内的进程隐藏主机文件、目录或注册表键值
-
+ Ignore UIPI restrictions for processes.忽略对进程的 UIPI(用户界面特权隔离(User Interface Privilege Isolation)) 限制
-
+ File/Folder文件/文件夹
-
+ Registry注册表
-
+ IPC PathIPC 路径
-
+ Wnd Class窗口类
-
+ COM ObjectCOM 组件
-
+ Select File选择文件
-
+ All Files (*.*)所有文件 (*.*)
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All Programs所有程序
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}COM 对象必须用其 GUID 来指定,例如:{00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.RT 接口必须用其名称来指定
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?开放 IPC 访问权限的同时也将开放 COM 的访问权限,你是否想继续在沙盒内限制 COM 接口的访问权限?
-
+ Don't ask in future此后不再询问
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead不支持 'OpenWinClass=program.exe,#' 配置格式,请使用 'NoRenameWinClass=program.exe,*' 替换
-
-
+
+
-
+ Template values can not be edited.模板值不能被编辑
-
+ Template values can not be removed.模板值无法被移除
@@ -2367,68 +2369,83 @@ Please select a folder which contains this file.
请选择包含此文件的文件夹。
-
-
+
+ Any任意
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow access允许访问
-
+ Block using Windows Filtering Platform阻止访问 - 使用 Windows 筛选平台 (WFP)
-
+ Block by denying access to Network devices阻止访问 - 通过禁止访问网络设备
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ Allow允许
-
+ Block (WFP)阻止 (WFP)
-
+ Block (NDev)阻止 (网络设备)
-
+ A non empty program name is required.程序名不得为空
-
+ Block阻止
@@ -6448,6 +6465,194 @@ If you are a great patreaon supporter already, sandboxie can check online for an
允许直接访问 %1 收藏的书签
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6794,8 +6999,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
+ Protect the system from sandboxed processes保护系统免受沙盒内进程的影响
@@ -6805,7 +7009,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
提权限制
-
+ Block network files and folders, unless specifically opened.拦截对网络文件和文件夹的访问,除非专门开放访问权限
@@ -6815,7 +7019,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
使应用程序认为自己已被提权运行(允许安全地运行安装程序)
-
+ Network restrictions网络限制
@@ -6965,11 +7169,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Name名称
@@ -6999,13 +7203,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Remove移除
@@ -7071,11 +7277,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
+
+
-
+
+ Show Templates显示模板
@@ -7110,7 +7316,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
开放 Windows 凭据存储访问权限 (用户态)
-
+ Prevent change to network and firewall parameters (user mode)拦截对网络及防火墙参数的更改 (用户态)
@@ -7217,7 +7423,9 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+
+
+ Program程序
@@ -7257,47 +7465,47 @@ If you are a great patreaon supporter already, sandboxie can check online for an
添加 IPC 路径
-
+ File Recovery文件恢复
-
+ Add Folder添加文件夹
-
+ Ignore Extension忽略扩展名
-
+ Ignore Folder忽略文件夹
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.启用快速恢复提示,以便快速恢复创建的文件
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.可以在此处从快速恢复中排除特定目录和文件类型(扩展名)
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. 当快速恢复功能被调用时,检查沙盒内的下列文件夹
-
+ Advanced Options高级选项
-
+ Miscellaneous杂项
@@ -7318,13 +7526,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Protect the sandbox integrity itself沙盒完整性保护
-
-
+
+ Compatibility兼容性
@@ -7334,7 +7542,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
添加沙盒化进程到作业对象 (推荐)
-
+ Force usage of custom dummy Manifest files (legacy behaviour)强制使用自定义虚拟 Manifest 文件 (传统行为)
@@ -7344,7 +7552,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
仅允许特权进程访问“服务控制管理器”
-
+ Emulate sandboxed window station for all processes为所有进程模拟沙盒化的窗口状况
@@ -7355,47 +7563,47 @@ If you are a great patreaon supporter already, sandboxie can check online for an
开放 Windows 安全帐户管理器 (SAM) 的访问权限
-
+ Hide Processes隐藏进程
-
+ Add Process添加进程
-
+ Hide host processes from processes running in the sandbox.对沙盒内运行的进程隐藏宿主的进程
-
+ Don't allow sandboxed processes to see processes running in other boxes不允许沙盒内的进程查看其它沙盒里运行的进程
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.沙盒中的所有进程结束后,这些命令将在无沙盒的环境下运行。
-
+ Users用户
-
+ Restrict Resource Access monitor to administrators only仅允许管理员访问“资源访问监视器”
-
+ Add User添加用户
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -7404,32 +7612,32 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
注意:沙盒的必沙程序及文件夹设置不适用于不能运行沙盒的系统用户
-
+ Tracing跟踪
-
+ API call Trace (traces all SBIE hooks)API 调用跟踪 (跟踪所有 SBIE 钩子)
-
+ COM Class TraceCOM 类跟踪
-
+ IPC TraceIPC 跟踪
-
+ Key Trace键值跟踪
-
+ GUI TraceGUI 跟踪
@@ -7474,11 +7682,13 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
+ Move Up上移
+ Move Down下移
@@ -7508,33 +7718,33 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
访问隔离
-
+ Image Protection映像保护
-
+ Issue message 1305 when a program tries to load a sandboxed dll当一个程序试图加载一个沙盒内部的动态链接库(.dll)文件时,提示问题代码 1305
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox阻止安装在宿主上的沙盒程序从沙盒内部加载DLL(动态链接库)文件
-
+ Dlls && ExtensionsDll && 扩展
-
+ Description说明
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Sandboxie 的资源访问规则通常对位于沙盒内的二进制程序具有歧视性
@@ -7553,7 +7763,7 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
使用主机映像保护,可以通过阻止在沙盒内运行的应用程序(安装在宿主上的)加载来自沙盒的动态链接库来防止此类现象
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.沙盒功能可以使用可选的.dll文件来获得增强,这些.dll文件可以在SbieDll.dll启动时加载到每个沙盒进程中。全局设置中的插件管理器提供了一些有用的扩展。安装后,就可以在这里为当前的沙盒启用。
@@ -7777,17 +7987,20 @@ To specify a process use '$:program.exe' as path.
-
+ Action动作
+ Port端口
+
+ IPIP
@@ -7797,7 +8010,7 @@ To specify a process use '$:program.exe' as path.
协议
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.警告:未在此驱动程序启用 Windows 筛选平台,因此以下规则只能在用户模式下生效,无法被强制执行!!!恶意程序可能会绕过这些规则的限制
@@ -7844,7 +8057,7 @@ The process match level has a higher priority than the specificity and describes
以系统进程启动沙盒服务 RpcSs (不推荐)
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)允许使用嵌套作业对象(job object) (仅适用于 Windows 8 及更高版本)
@@ -7891,7 +8104,7 @@ The process match level has a higher priority than the specificity and describes
进程被拒绝访问非沙盒进程内存时,提示问题代码 2111
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)默认禁用 RpcMgmtSetComTimeout (或许可以解决兼容性问题)
@@ -7920,56 +8133,56 @@ The process match level has a higher priority than the specificity and describes
以下选项可以在你未授予管理员权限时安全的使用
-
+ Triggers触发器
-
+ Event事件
-
-
-
-
+
+
+
+ Run Command执行命令
-
+ Start Service启动服务
-
+ These events are executed each time a box is started这些事件当沙盒每次启动时都会被执行
-
+ On Box Start沙盒启动阶段
-
-
+
+ These commands are run UNBOXED just before the box content is deleted这些命令将在删除沙盒的内容之前,以非沙盒化的方式被执行
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.这些命令只在沙盒被初始化时执行,要使它们再次运行,必须删除沙盒内容
-
+ On Box Init沙盒初始阶段
-
+ Here you can specify actions to be executed automatically on various box events.在此处可以配置各种沙盒事件中自动执行特定的动作
@@ -7979,32 +8192,32 @@ The process match level has a higher priority than the specificity and describes
API 调用跟踪 (需要安装 LogAPI 模块到沙盒目录)
-
+ Log all SetError's to Trace log (creates a lot of output)记录所有 SetError 到跟踪日志 (将产生大量输出)
-
+ File Trace文件跟踪
-
+ Pipe Trace管道跟踪
-
+ Access Tracing访问跟踪
-
+ Log Debug Output to the Trace Log调试日志输出到跟踪日志
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8027,73 +8240,73 @@ instead of "*".Ntdll 系统调用跟踪 (将产生大量输出)
-
+ Disable Resource Access Monitor禁用资源访问监控器
-
+ Resource Access Monitor资源访问监控
-
+ Network Firewall网络防火墙
-
+ Debug调试
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!警告,这些选项可使核心安全保障失效并且破坏沙盒安全!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. 这些选项是为调试兼容性问题提供的,日常使用者勿碰。
-
+ App Templates应用模板
-
+ Filter Categories类别筛选
-
+ Text Filter文本筛选
-
+ Add Template添加模板
-
+ This list contains a large amount of sandbox compatibility enhancing templates此列表含有大量的沙盒兼容性增强模板
-
+ Category类别
-
+ Template Folders目录模板
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8102,23 +8315,23 @@ Please note that this values are currently user specific and saved globally for
请注意,这些值对当前用户的所有沙盒保存
-
-
+
+ Value值
-
+ Accessibility无障碍功能
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.要弥补失去的保护,请参考“限制”设置组中的降低权限部分
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System Access屏幕阅读器:JAWS、NVDA、Window-Eyes、系统无障碍接口
@@ -8322,57 +8535,122 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
配置那些进程可以访问桌面组件(例如窗口等)
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Other Options其它选项
-
+ Port Blocking阻止端口
-
+ Block common SAMBA ports阻止常见 SAMBA 端口
-
+ Block DNS, UDP port 53阻止 DNS、UDP 端口 53
-
+ Quick Recovery快速恢复
-
+ Immediate Recovery即时恢复
-
+ Various Options其它杂项
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)应用 ElevateCreateProcess 解决方案 (传统行为)
-
+ Use desktop object workaround for all processes对所有进程应用桌面对象解决方案
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.当短时间连续按下全局热键3次时,此异常将被忽略。
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.当调用“终止所有进程”时,排除终止此沙盒的进程。
@@ -8381,33 +8659,33 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
此命令在沙盒中的所有进程终止后运行。
-
+ On Box Terminate在沙盒所有进程终止时
-
+ This command will be run before the box content will be deleted该命令将在删除沙盒内容之前运行
-
+ On File Recovery文件恢复阶段
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked该命令将在文件恢复前运行,文件路径将作为最先被传递的参数,如果该命令的返回值不为 0,恢复动作将被终止
-
+ Run File Checker运行文件检查
-
+ On Delete Content内容删除阶段
@@ -8418,7 +8696,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
-
+ Process进程
@@ -8427,62 +8705,63 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
阻止对位于该沙盒中的进程的读取访问
-
+ Add Option添加选项
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.在此处可以配置各个进程的高级选项,以提高兼容性或自定义沙盒的某些行为
-
+ Option选项
+ DNS Request Logging
- DNS 请求日志
+ DNS 请求日志
-
+ Syscall Trace (creates a lot of output)系统调用追踪(产生大量输出)
-
+ Templates模板
-
+ Open Template打开模板
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.以下设置允许 Sandboxie 与辅助功能软件结合,请注意:当这些设置生效时,会使 Sandboxie 的部分保护措施失效
-
+ Edit ini Section配置文本
-
+ Edit ini编辑配置
-
+ Cancel取消
-
+ Save保存
@@ -9672,4 +9951,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
抓取快照
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ 协议:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ 端口:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
diff --git a/SandboxiePlus/SandMan/sandman_zh_TW.ts b/SandboxiePlus/SandMan/sandman_zh_TW.ts
index 5ed47880..8e40d03a 100644
--- a/SandboxiePlus/SandMan/sandman_zh_TW.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_TW.ts
@@ -1559,8 +1559,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
COptionsWindow
-
-
+
+ Browse for File瀏覽檔案
@@ -1571,139 +1571,139 @@ Note: The update check is often behind the latest GitHub release to ensure that
瀏覽資料夾
-
+ Closed已關閉
-
+ Closed RT封閉 RT
-
+ Read Only唯讀
-
+ Normal標準
-
+ Open開放
-
+ Open for All完全開放
-
+ No Rename沒有重新命名
-
+ Box Only (Write Only)僅沙箱內 (唯寫)
-
+ Ignore UIPI忽略 UIPI
-
-
-
+
+
+ Unknown未知
-
+ Regular Sandboxie behavior - allow read and also copy on write.常規 Sandboxie 行為 - 允許讀取及寫入時複製。
-
+ Allow write-access outside the sandbox.允許沙箱外的寫入。
-
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.允許沙箱外的寫入 (同時適用於安裝在沙箱內的應用程式)。
-
+ Don't rename window classes.不重新命名視窗類別。
-
+ Deny access to host location and prevent creation of sandboxed copies.拒絕對主機位置的存取,防止在沙箱內建立相應的複本。
-
+ Block access to WinRT class.阻止對 WinRT 類別的存取。
-
+ Allow read-only access only.只允許唯讀存取。
-
+ Hide host files, folders or registry keys from sandboxed processes.對沙箱內的處理程序隱藏主機檔案、資料夾或登錄機碼。
-
+ Ignore UIPI restrictions for processes.忽略對處理程序的 UIPI 限制。
-
+ File/Folder檔案和資料夾
-
+ Registry登錄
-
+ IPC PathIPC 路徑
-
+ Wnd ClassWnd 元件
-
+ COM ObjectCOM 物件
-
+ Select File選擇檔案
-
+ All Files (*.*)所有檔案 (*.*)
-
+
@@ -1712,69 +1712,71 @@ Note: The update check is often behind the latest GitHub release to ensure that
選擇目錄
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+ All Programs所有程式
-
-
-
+
+
+
-
-
-
+
+
+ Group: %1群組: %1
-
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}COM 物件必須被它們的 GUID 所指定,例如: {00000000-0000-0000-0000-000000000000}
-
+ RT interfaces must be specified by their name.RT 介面必須用其名稱來指定。
-
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?開放 IPC 存取權限的同時也將開放 COM 的存取權限,您是否想繼續在沙箱內限制 COM 介面的存取權限?
-
+ Don't ask in future此後不再詢問
-
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead不支援 'OpenWinClass=program.exe,#',請改為使用 'NoRenameWinClass=program.exe,*'
-
-
+
+
-
+ Template values can not be edited.範本值無法編輯。
-
+ Template values can not be removed.範本值無法刪除。
@@ -1837,66 +1839,66 @@ Note: The update check is often behind the latest GitHub release to ensure that
沙箱 IPC 根目錄
-
+ Add special option:加入特殊選項:
-
-
+
+ On Start啟動階段
-
-
-
-
-
+
+
+
+
+ Run Command執行命令
-
+ Start Service啟動服務
-
+ On Init初始化階段
-
+ On File Recovery檔案復原階段
-
+ On Delete Content內容刪除階段
-
+ On Terminate終止階段
-
-
-
-
-
+
+
+
+
+ Please enter the command line to be executed請輸入將要執行的命令列
-
+ Please enter a program file name to allow access to this sandbox請輸入程式檔案名稱以允許存取此沙箱
-
+ Please enter a program file name to deny access to this sandbox請輸入程式檔案名稱以拒絕存取此沙箱
@@ -1905,12 +1907,12 @@ Note: The update check is often behind the latest GitHub release to ensure that
請輸入一個程式檔案名稱
-
+ Deny拒絕 (停用)
-
+ %1 (%2)%1 (%2)
@@ -2157,7 +2159,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
已復原映像標頭
-
+ Please enter a service identifier請輸入服務識別字元
@@ -2188,68 +2190,83 @@ Note: The update check is often behind the latest GitHub release to ensure that
請先選取群組。
-
-
+
+ Any任何
-
-
+
+ TCPTCP
-
-
+
+ UDPUDP
-
-
+
+ ICMPICMP
-
+ Allow access允許存取
-
+ Block using Windows Filtering Platform阻止存取 - 使用 Windows 篩選平台 (WFP)
-
+ Block by denying access to Network devices阻止存取 - 透過拒絕對區域網路裝置的存取
-
-
-
+
+ Please enter a domain to be filtered
+
+
+
+
+ Please enter IP and Port.
+
+
+
+
+ entry: IP or Port cannot be empty
+
+
+
+
+
+ Allow允許
-
+ Block (WFP)阻止 (WFP)
-
+ Block (NDev)阻止 (區域網路裝置)
-
+ A non empty program name is required.程式名稱不得為空。
-
+ Block阻止
@@ -2361,57 +2378,57 @@ Please select a folder which contains this file.
Sandboxie Plus - '%1' 選項
-
+ File Options檔案選項
-
+ Grouping分組
-
+ Add %1 Template加入 %1 範本
-
+ Search for options搜尋選項
-
+ Box: %1沙箱: %1
-
+ Template: %1範本: %1
-
+ Global: %1全域: %1
-
+ Default: %1預設: %1
-
+ This sandbox has been deleted hence configuration can not be saved.此沙箱已被刪除,因此組態無法儲存。
-
+ Some changes haven't been saved yet, do you really want to close this options window?部分變更未儲存,確定關閉這個選項視窗嗎?
-
+ Enter program:請輸入程式:
@@ -6400,6 +6417,194 @@ If you are a great patreaon supporter already, sandboxie can check online for an
允許直接存取 %1 的書籤
+
+ CTestProxyDialog
+
+
+
+
+
+
+
+ Sandboxie-Plus - Test Proxy
+
+
+
+
+ N/A
+
+
+
+
+
+ Testing...
+
+
+
+
+ This test cannot be disabled.
+
+
+
+
+ [%1] Starting Test 1: Connection to the Proxy Server
+
+
+
+
+ [%1] IP Address: %2
+
+
+
+
+ [%1] Connection established.
+
+
+
+
+
+ [%1] Test passed.
+
+
+
+
+ [%1] Connection to proxy server failed: %2.
+
+
+
+
+
+
+
+ [%1] Test failed.
+
+
+
+
+ [%1] Starting Test 2: Connection through the Proxy Server
+
+
+
+
+ [%1] Authentication was successful.
+
+
+
+
+ [%1] Connection to %2 established through the proxy server.
+
+
+
+
+ [%1] Loading a web page to test the proxy server.
+
+
+
+
+ [%1] %2.
+
+
+
+
+ [%1] Connection through proxy server failed: %2.
+
+
+
+
+ [%1] Web page loaded successfully.
+
+
+
+
+ Timeout
+
+
+
+
+ [%1] Failed to load web page: %2.
+
+
+
+
+ [%1] Starting Test 3: Proxy Server latency
+
+
+
+
+ [%1] Latency through proxy server: %2ms.
+
+
+
+
+ [%1] Failed to get proxy server latency: Request timeout.
+
+
+
+
+ [%1] Failed to get proxy server latency.
+
+
+
+
+ [%1] Test Finished.
+
+
+
+
+
+ Stopped
+
+
+
+
+ Stop
+
+
+
+
+ [%1] Testing started...
+ Proxy Server
+ Address: %2
+ Protocol: %3
+ Authentication: %4%5
+
+
+
+
+ Retry
+
+
+
+
+ Test Passed
+
+
+
+
+ Test Failed
+
+
+
+
+ Invalid Timeout value. Please enter a value between 1 and 60.
+
+
+
+
+ Invalid Port value. Please enter a value between 1 and 65535.
+
+
+
+
+ Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
+
+
+
+
+ Invalid Ping Count value. Please enter a value between 1 and 10.
+
+
+CTraceModel
@@ -6762,8 +6967,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
+ Protect the system from sandboxed processes保護系統免受來自沙箱化處理程序的存取
@@ -6900,12 +7104,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
列印限制
-
+ Network restrictions區域網路限制
-
+ Block network files and folders, unless specifically opened.阻止區域網路檔案和資料夾的存取,除非額外開啟。
@@ -6928,11 +7132,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Name名稱
@@ -6962,13 +7166,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Remove移除
@@ -7034,11 +7240,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
+
+
-
+
+ Show Templates顯示範本
@@ -7113,7 +7319,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
開放 Windows 憑證儲存存取權限 (使用者模式)
-
+ Prevent change to network and firewall parameters (user mode)防止對區域網路及防火牆參數的變更 (使用者模式)
@@ -7350,11 +7556,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
+ Move Up向上移
+ Move Down向下移
@@ -7374,40 +7582,40 @@ If you are a great patreaon supporter already, sandboxie can check online for an
存取隔離
-
+ Image Protection映像保護
-
+ Issue message 1305 when a program tries to load a sandboxed dll當一個程式試圖載入一個沙箱內部的應用程式擴充 (DLL) 檔案時,提示錯誤代碼 1305
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox防止主機上安裝的沙箱化程式從沙箱載入應用程式擴充 (DLL) 檔案
-
+ Dlls && ExtensionsDll && 擴充功能
-
+ Description說明
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Sandboxie 的資源存取規則通常對位於沙箱內的二進位程式具有歧視性。OpenFilePath 和 OpenKeyPath 只對主機上的原生程式 (安裝在主機上的) 有效。為了定義沒有此類限制的規則,則必須使用 OpenPipePath 和 OpenConfPath。同樣的,透過否定來定義所有的 Closed(File|Key|Ipc)Path 指令例如:'ClosedFilePath=! iexplore.exe,C:Users*' 將限制沙箱內的程式存取相應資源。這兩種限制原則都可以透過「存取原則」頁面來停用。
這樣做是為了防止沙箱內的流氓處理程序建立自己的重新命名複本並存取受保護的資源。另一個漏洞載體是將一個動態連結程式庫注入到一個被授權處理程序中,以取得對被授權處理程序所允許存取的一切資源的存取權。使用主機映像保護,可以透過阻止在沙箱內執行的應用程式 (安裝在主機上的) 載入來自沙箱的動態連結程式庫來防止此類現象。
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Sandboxie 的功能可以透過使用可選 DLL 加以增強,這些 DLL 可在啟動時透過 SbieDll.dll 檔案載入到每個沙箱執行緒中,全域設定中的附加元件管理員提供了一些實用擴充套件,安裝後可以在此處對目前沙箱啟用。
@@ -7616,7 +7824,9 @@ To specify a process use '$:program.exe' as path.
-
+
+
+ Program程式
@@ -7624,17 +7834,20 @@ To specify a process use '$:program.exe' as path.
-
+ Action動作
+ Port連接埠
+
+ IPIP
@@ -7644,7 +7857,7 @@ To specify a process use '$:program.exe' as path.
協定
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.警告: 未在驅動程式中啟動 Windows 篩選平台,因此以下規則只能在使用者模式下生效,無法被強制執行!!!惡意程式可能會繞過這些規則的限制。
@@ -7739,77 +7952,142 @@ To specify a process use '$:program.exe' as path.
將 Close...=!<program>,... 規則,套用到位於沙箱內的所有相關二進位檔。
-
+
+ DNS Filter
+
+
+
+
+ Add Filter
+
+
+
+
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
+
+
+
+
+ Domain
+
+
+
+
+ Internet Proxy
+
+
+
+
+ Add Proxy
+
+
+
+
+ Test Proxy
+
+
+
+
+ Auth
+
+
+
+
+ Login
+
+
+
+
+ Password
+
+
+
+
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+
+
+ Encrypt Passwords
+
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ Other Options其他選項
-
+ Port Blocking封鎖連接埠
-
+ Block common SAMBA ports封鎖常見 SAMBA 連接埠
-
+ Block DNS, UDP port 53封鎖 DNS UDP 連接埠 53
-
+ File Recovery檔案復原
-
+ Quick Recovery快速復原
-
+ Add Folder加入資料夾
-
+ Immediate Recovery即時復原
-
+ Ignore Extension忽略副檔名
-
+ Ignore Folder忽略資料夾
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.啟用快速復原提示,以便快速復原建立的檔案。
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.您可以從快速復原中排除特定目錄和檔案類型 (副檔名)。
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. 當快速復原功能被執行時,下列資料夾將為沙箱化內容被檢查。
-
+ Advanced Options進階選項
-
+ Miscellaneous雜項
@@ -7830,7 +8108,7 @@ To specify a process use '$:program.exe' as path.
-
+ Protect the sandbox integrity itself保護沙箱本身的完整性
@@ -7851,7 +8129,7 @@ To specify a process use '$:program.exe' as path.
保護沙箱中的系統處理程序免受非特權處理程序的影響
-
+ Force usage of custom dummy Manifest files (legacy behaviour)強制使用自訂虛擬 Manifest 檔案 (遺留行為)
@@ -7903,8 +8181,8 @@ The process match level has a higher priority than the specificity and describes
僅允許已有特權的處理程序存取服務控制管理員
-
-
+
+ Compatibility相容性
@@ -7914,7 +8192,7 @@ The process match level has a higher priority than the specificity and describes
加入沙箱化處理程序至作業物件 (推薦)
-
+ Emulate sandboxed window station for all processes為所有處理程序模擬沙箱化視窗站台
@@ -7948,7 +8226,7 @@ The process match level has a higher priority than the specificity and describes
允許讀取非沙箱處理程序的記憶體 (不推薦)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)預設情況下停用 RpcMgmtSetComTimeout (這可能會解決相容性問題)
@@ -7973,56 +8251,56 @@ The process match level has a higher priority than the specificity and describes
以下選項可以在您未授予管理員許可時安全的使用。
-
+ Triggers觸發器
-
+ Event事件
-
-
-
-
+
+
+
+ Run Command執行命令
-
+ Start Service啟動服務
-
+ These events are executed each time a box is started這些事件當沙箱每次啟動時都會被執行
-
+ On Box Start沙箱啟動階段
-
-
+
+ These commands are run UNBOXED just before the box content is deleted這些命令將在刪除沙箱的內容之前,以非沙箱化的方式被執行
-
+ Allow use of nested job objects (works on Windows 8 and later)允許使用嵌套作業物件 (job object) (適用於 Windows 8 及更高版本)
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.這些命令只在沙箱被初始化時執行。要使它們再次執行,必須刪除沙箱內容。
-
+ On Box Init沙箱初始化階段
@@ -8031,27 +8309,27 @@ The process match level has a higher priority than the specificity and describes
此命令在沙箱中所有執行緒完成後執行。
-
+ On Box Terminate沙箱終止階段
-
+ Here you can specify actions to be executed automatically on various box events.在這裡,您可以設定各種沙箱事件中自動執行特定的動作。
-
+ Hide Processes隱藏處理程序
-
+ Add Process加入處理程序
-
+ Hide host processes from processes running in the sandbox.面向沙箱內執行的處理程序隱藏的主機處理程序。
@@ -8066,63 +8344,63 @@ The process match level has a higher priority than the specificity and describes
限制
-
+ Various Options差異性選項
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)套用 ElevateCreateProcess 因應措施 (遺留行為)
-
+ Use desktop object workaround for all processes對所有處理程序使用桌面物件因應措施
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.當全域性快速鍵在短時間連續按下 3 次時,此異常將被忽略。
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.當呼叫「終止所有執行緒」時,排除此沙箱。
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.這些指令將在沙箱內全部執行緒完成後以「未沙箱化」狀態執行。
-
+ This command will be run before the box content will be deleted該命令將在刪除沙箱內容之前執行
-
+ On File Recovery檔案復原階段
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked該命令將在檔案復原前執行,檔案路徑將作為第一個參數被傳遞,如果該命令的返回值不是 0,則復原將被阻止
-
+ Run File Checker執行檔案檢查程式
-
+ On Delete Content內容刪除階段
-
+ Don't allow sandboxed processes to see processes running in other boxes不允許沙箱內的處理程序檢視其他沙箱內執行的處理程序
@@ -8133,7 +8411,7 @@ The process match level has a higher priority than the specificity and describes
-
+ Process處理程序
@@ -8142,22 +8420,22 @@ The process match level has a higher priority than the specificity and describes
阻止對位於該沙箱中的處理程序的讀取
-
+ Users使用者
-
+ Restrict Resource Access monitor to administrators only僅允許管理員存取資源存取監控
-
+ Add User加入使用者
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8166,23 +8444,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
注意: 沙箱的強制沙箱程式及資料夾設定不適用於不能使用沙箱的帳戶。
-
+ Add Option加入選項
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.在此處可以設定各個處理程序的進階選項,以提高相容性或自訂沙箱的某些行為。
-
+ Option選項
-
+ Tracing追蹤
@@ -8191,22 +8469,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
API 呼叫追蹤 (需要在沙箱資料夾中安裝 LogAPI)
-
+ Pipe TracePipe 追蹤
-
+ Log all SetError's to Trace log (creates a lot of output)記錄所有 SetError 至追蹤日誌 (產生大量輸出)
-
+ Log Debug Output to the Trace Log紀錄偵錯輸出至追蹤日誌
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8229,113 +8507,113 @@ instead of "*".Ntdll 系統呼叫追蹤 (將產生大量輸出)
-
+ File Trace檔案追蹤
-
+ Disable Resource Access Monitor停用資源存取監控
-
+ IPC TraceIPC 追蹤
-
+ GUI TraceGUI 追蹤
-
+ Resource Access Monitor資源存取監控
-
+ Access Tracing存取追蹤
-
+ COM Class TraceCOM 類別追蹤
-
+ Key Trace機碼追蹤
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.為了彌補失去的保護,請參考「限制」設定組中的「廢棄許可」部分。
-
+ Network Firewall區域網路防火牆
-
+ API call Trace (traces all SBIE hooks)API 呼叫追蹤 (追蹤全部 SBIE 勾點)
-
+ Debug偵錯
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!警告,這些選項可使核心安全性保障失效並且破壞沙箱安全性!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. 這些選項是為偵錯相容性問題設計的,請勿用於生產力用途。
-
+ App Templates軟體範本
-
+ Filter Categories篩選類別
-
+ Text Filter篩選文字
-
+ Add Template加入範本
-
+ This list contains a large amount of sandbox compatibility enhancing templates此清單含有大量的相容性增強範本
-
+ Category類別
-
+ Template Folders範本資料夾
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8344,62 +8622,63 @@ Please note that this values are currently user specific and saved globally for
請注意,這些值為目前使用者針對所有沙箱儲存。
-
-
+
+ Value值
+ DNS Request Logging
- DNS 請求日誌紀錄
+ DNS 請求日誌紀錄
-
+ Syscall Trace (creates a lot of output)Syscall 追蹤 (建立大量輸出)
-
+ Templates範本
-
+ Open Template開啟範本
-
+ Accessibility協助工具
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System Access螢幕閱讀器: JAWS、NVDA、Window-Eyes、系統協助工具
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.以下設定允許 Sandboxie 與協助工具軟體結合。請注意當這些設定生效時,必然會失去部分 Sandboxie 保護措施。
-
+ Edit ini Section編輯 ini 區段
-
+ Edit ini編輯 ini
-
+ Cancel取消
-
+ Save儲存
@@ -9578,4 +9857,134 @@ Unlike the preview channel, it does not include untested, potentially breaking,
擷取快照
+
+ TestProxyDialog
+
+
+ Test Proxy
+
+
+
+
+ Test Settings...
+
+
+
+
+ Testing...
+
+
+
+
+ Proxy Server
+
+
+
+
+ Address:
+
+
+
+
+ 127.0.0.1:80
+
+
+
+
+ Protocol:
+ 協定:
+
+
+
+ SOCKS 5
+
+
+
+
+ Authentication:
+
+
+
+
+ NO
+
+
+
+
+ Login:
+
+
+
+
+ username
+
+
+
+
+ Timeout (secs):
+
+
+
+
+ 5
+
+
+
+
+ Test 1: Connection to the Proxy Server
+
+
+
+
+
+
+ Enable this test
+
+
+
+
+ Test 2: Connection through the Proxy Server
+
+
+
+
+ Target host:
+
+
+
+
+ www.google.com
+
+
+
+
+ Port:
+ 連接埠:
+
+
+
+ 80
+
+
+
+
+ Load a default web page from the host. (There must be a web server running on the host)
+
+
+
+
+ Test 3: Proxy Server latency
+
+
+
+
+ Ping count:
+
+
+
+
+ Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
+
+
+
From bfe118315935e4612b0104230385d76748bcd98a Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sat, 11 May 2024 01:29:44 +0000
Subject: [PATCH 083/122] Update SBIE language reports (RunReport)
---
Sandboxie/msgs/report/Report-Albanian.txt | 4 ++++
Sandboxie/msgs/report/Report-Arabic.txt | 4 ++++
Sandboxie/msgs/report/Report-Bulgarian.txt | 4 ++++
Sandboxie/msgs/report/Report-Croatian.txt | 4 ++++
Sandboxie/msgs/report/Report-Czech.txt | 4 ++++
Sandboxie/msgs/report/Report-Danish.txt | 4 ++++
Sandboxie/msgs/report/Report-Dutch.txt | 4 ++++
Sandboxie/msgs/report/Report-Estonian.txt | 4 ++++
Sandboxie/msgs/report/Report-Farsi.txt | 4 ++++
Sandboxie/msgs/report/Report-Finnish.txt | 4 ++++
Sandboxie/msgs/report/Report-French.txt | 4 ++++
Sandboxie/msgs/report/Report-German.txt | 4 +++-
Sandboxie/msgs/report/Report-Greek.txt | 4 ++++
Sandboxie/msgs/report/Report-Hebrew.txt | 4 ++++
Sandboxie/msgs/report/Report-Hungarian.txt | 4 ++++
Sandboxie/msgs/report/Report-Indonesian.txt | 4 ++++
Sandboxie/msgs/report/Report-Italian.txt | 4 ++++
Sandboxie/msgs/report/Report-Japanese.txt | 4 ++++
Sandboxie/msgs/report/Report-Korean.txt | 4 +++-
Sandboxie/msgs/report/Report-Macedonian.txt | 4 ++++
Sandboxie/msgs/report/Report-Polish.txt | 4 ++++
Sandboxie/msgs/report/Report-Portuguese.txt | 4 ++++
Sandboxie/msgs/report/Report-PortugueseBr.txt | 4 ++++
Sandboxie/msgs/report/Report-Russian.txt | 4 ++++
Sandboxie/msgs/report/Report-SimpChinese.txt | 4 +++-
Sandboxie/msgs/report/Report-Slovak.txt | 4 ++++
Sandboxie/msgs/report/Report-Spanish.txt | 4 ++++
Sandboxie/msgs/report/Report-Swedish.txt | 4 ++++
Sandboxie/msgs/report/Report-TradChinese.txt | 4 ++++
Sandboxie/msgs/report/Report-Turkish.txt | 4 +++-
Sandboxie/msgs/report/Report-Ukrainian.txt | 4 ++++
31 files changed, 120 insertions(+), 4 deletions(-)
diff --git a/Sandboxie/msgs/report/Report-Albanian.txt b/Sandboxie/msgs/report/Report-Albanian.txt
index 54a082ab..b01d28f7 100644
--- a/Sandboxie/msgs/report/Report-Albanian.txt
+++ b/Sandboxie/msgs/report/Report-Albanian.txt
@@ -190,6 +190,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Arabic.txt b/Sandboxie/msgs/report/Report-Arabic.txt
index 53cc2124..2b3812ba 100644
--- a/Sandboxie/msgs/report/Report-Arabic.txt
+++ b/Sandboxie/msgs/report/Report-Arabic.txt
@@ -186,6 +186,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Bulgarian.txt b/Sandboxie/msgs/report/Report-Bulgarian.txt
index 23f9f5ea..45aa6bbf 100644
--- a/Sandboxie/msgs/report/Report-Bulgarian.txt
+++ b/Sandboxie/msgs/report/Report-Bulgarian.txt
@@ -186,6 +186,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Croatian.txt b/Sandboxie/msgs/report/Report-Croatian.txt
index 65f5a4a4..8183333b 100644
--- a/Sandboxie/msgs/report/Report-Croatian.txt
+++ b/Sandboxie/msgs/report/Report-Croatian.txt
@@ -186,6 +186,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Czech.txt b/Sandboxie/msgs/report/Report-Czech.txt
index 966d3200..50be99ab 100644
--- a/Sandboxie/msgs/report/Report-Czech.txt
+++ b/Sandboxie/msgs/report/Report-Czech.txt
@@ -174,6 +174,10 @@ SBIE2302 Process image configuration conflict: %2
SBIE2325 Debug: %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2338;pop;err;01
SBIE2338 Encountered unsupported architecture in process: %2
.
diff --git a/Sandboxie/msgs/report/Report-Danish.txt b/Sandboxie/msgs/report/Report-Danish.txt
index ab4fabac..be28beab 100644
--- a/Sandboxie/msgs/report/Report-Danish.txt
+++ b/Sandboxie/msgs/report/Report-Danish.txt
@@ -222,6 +222,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Dutch.txt b/Sandboxie/msgs/report/Report-Dutch.txt
index 3c7d29ec..cef32d54 100644
--- a/Sandboxie/msgs/report/Report-Dutch.txt
+++ b/Sandboxie/msgs/report/Report-Dutch.txt
@@ -142,6 +142,10 @@ SBIE2246 Failed to mount box image, ImBox error %2
SBIE2325 Debug: %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2338;pop;err;01
SBIE2338 Encountered unsupported architecture in process: %2
.
diff --git a/Sandboxie/msgs/report/Report-Estonian.txt b/Sandboxie/msgs/report/Report-Estonian.txt
index be2452c5..a1c51d87 100644
--- a/Sandboxie/msgs/report/Report-Estonian.txt
+++ b/Sandboxie/msgs/report/Report-Estonian.txt
@@ -222,6 +222,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Farsi.txt b/Sandboxie/msgs/report/Report-Farsi.txt
index d8e1fb13..72e8cf4c 100644
--- a/Sandboxie/msgs/report/Report-Farsi.txt
+++ b/Sandboxie/msgs/report/Report-Farsi.txt
@@ -174,6 +174,10 @@ SBIE2302 Process image configuration conflict: %2
SBIE2325 Debug: %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2338;pop;err;01
SBIE2338 Encountered unsupported architecture in process: %2
.
diff --git a/Sandboxie/msgs/report/Report-Finnish.txt b/Sandboxie/msgs/report/Report-Finnish.txt
index 2c9eb916..83771a62 100644
--- a/Sandboxie/msgs/report/Report-Finnish.txt
+++ b/Sandboxie/msgs/report/Report-Finnish.txt
@@ -186,6 +186,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-French.txt b/Sandboxie/msgs/report/Report-French.txt
index 2cf8a31a..f5dc9faf 100644
--- a/Sandboxie/msgs/report/Report-French.txt
+++ b/Sandboxie/msgs/report/Report-French.txt
@@ -14,6 +14,10 @@ SBIE1206 Your Windows build (%2) is not yet supported by sandboxie, error: %3
SBIE1207 Your Windows build (%2) is not yet supported by Sandboxie, which means applications will run without security isolation!
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
3001;txt;01
&OK
.
diff --git a/Sandboxie/msgs/report/Report-German.txt b/Sandboxie/msgs/report/Report-German.txt
index 14672c77..4e947035 100644
--- a/Sandboxie/msgs/report/Report-German.txt
+++ b/Sandboxie/msgs/report/Report-German.txt
@@ -2,5 +2,7 @@
* Missing Messages in Text-German-1031.txt
*==========
-There are no missing messages.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
diff --git a/Sandboxie/msgs/report/Report-Greek.txt b/Sandboxie/msgs/report/Report-Greek.txt
index 74ce4c95..e026480e 100644
--- a/Sandboxie/msgs/report/Report-Greek.txt
+++ b/Sandboxie/msgs/report/Report-Greek.txt
@@ -186,6 +186,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Hebrew.txt b/Sandboxie/msgs/report/Report-Hebrew.txt
index 85874a94..b7e9ba63 100644
--- a/Sandboxie/msgs/report/Report-Hebrew.txt
+++ b/Sandboxie/msgs/report/Report-Hebrew.txt
@@ -174,6 +174,10 @@ SBIE2302 Process image configuration conflict: %2
SBIE2325 Debug: %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2338;pop;err;01
SBIE2338 Encountered unsupported architecture in process: %2
.
diff --git a/Sandboxie/msgs/report/Report-Hungarian.txt b/Sandboxie/msgs/report/Report-Hungarian.txt
index 591321d0..7d26e0b3 100644
--- a/Sandboxie/msgs/report/Report-Hungarian.txt
+++ b/Sandboxie/msgs/report/Report-Hungarian.txt
@@ -186,6 +186,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Indonesian.txt b/Sandboxie/msgs/report/Report-Indonesian.txt
index 9e078179..e00dc717 100644
--- a/Sandboxie/msgs/report/Report-Indonesian.txt
+++ b/Sandboxie/msgs/report/Report-Indonesian.txt
@@ -186,6 +186,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Italian.txt b/Sandboxie/msgs/report/Report-Italian.txt
index 8a8736cb..3cf1f8ec 100644
--- a/Sandboxie/msgs/report/Report-Italian.txt
+++ b/Sandboxie/msgs/report/Report-Italian.txt
@@ -78,6 +78,10 @@ SBIE2244 Failed to mount box image, Password required
SBIE2246 Failed to mount box image, ImBox error %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
6008;pop;err;01
The configuration %3 of box %2 requires a supporter certificate and can not be used without it.
.
diff --git a/Sandboxie/msgs/report/Report-Japanese.txt b/Sandboxie/msgs/report/Report-Japanese.txt
index f5e5ef6b..37d27504 100644
--- a/Sandboxie/msgs/report/Report-Japanese.txt
+++ b/Sandboxie/msgs/report/Report-Japanese.txt
@@ -186,6 +186,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Korean.txt b/Sandboxie/msgs/report/Report-Korean.txt
index 75f30986..e2be807d 100644
--- a/Sandboxie/msgs/report/Report-Korean.txt
+++ b/Sandboxie/msgs/report/Report-Korean.txt
@@ -2,5 +2,7 @@
* Missing Messages in Text-Korean-1042.txt
*==========
-There are no missing messages.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
diff --git a/Sandboxie/msgs/report/Report-Macedonian.txt b/Sandboxie/msgs/report/Report-Macedonian.txt
index 48849ba8..04ba744a 100644
--- a/Sandboxie/msgs/report/Report-Macedonian.txt
+++ b/Sandboxie/msgs/report/Report-Macedonian.txt
@@ -222,6 +222,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Polish.txt b/Sandboxie/msgs/report/Report-Polish.txt
index 8ba2729b..837dc4cb 100644
--- a/Sandboxie/msgs/report/Report-Polish.txt
+++ b/Sandboxie/msgs/report/Report-Polish.txt
@@ -18,6 +18,10 @@ SBIE1207 Your Windows build (%2) is not yet supported by Sandboxie, which means
SBIE1222 Error with security token: %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
*==========
* Extraneous Messages in Text-Polish-1045.txt
*==========
diff --git a/Sandboxie/msgs/report/Report-Portuguese.txt b/Sandboxie/msgs/report/Report-Portuguese.txt
index 1aedef02..56ac4aaa 100644
--- a/Sandboxie/msgs/report/Report-Portuguese.txt
+++ b/Sandboxie/msgs/report/Report-Portuguese.txt
@@ -186,6 +186,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-PortugueseBr.txt b/Sandboxie/msgs/report/Report-PortugueseBr.txt
index 5f86ac90..da580977 100644
--- a/Sandboxie/msgs/report/Report-PortugueseBr.txt
+++ b/Sandboxie/msgs/report/Report-PortugueseBr.txt
@@ -114,6 +114,10 @@ SBIE2246 Failed to mount box image, ImBox error %2
SBIE2325 Debug: %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
3469;txt;01
What's new in Sandboxie-Plus
.
diff --git a/Sandboxie/msgs/report/Report-Russian.txt b/Sandboxie/msgs/report/Report-Russian.txt
index b00c8116..3bad8e88 100644
--- a/Sandboxie/msgs/report/Report-Russian.txt
+++ b/Sandboxie/msgs/report/Report-Russian.txt
@@ -14,3 +14,7 @@ SBIE1206 Your Windows build (%2) is not yet supported by sandboxie, error: %3
SBIE1207 Your Windows build (%2) is not yet supported by Sandboxie, which means applications will run without security isolation!
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
diff --git a/Sandboxie/msgs/report/Report-SimpChinese.txt b/Sandboxie/msgs/report/Report-SimpChinese.txt
index de112d23..889bf747 100644
--- a/Sandboxie/msgs/report/Report-SimpChinese.txt
+++ b/Sandboxie/msgs/report/Report-SimpChinese.txt
@@ -2,5 +2,7 @@
* Missing Messages in Text-SimpChinese-2052.txt
*==========
-There are no missing messages.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
diff --git a/Sandboxie/msgs/report/Report-Slovak.txt b/Sandboxie/msgs/report/Report-Slovak.txt
index 0d7e2391..4a399b50 100644
--- a/Sandboxie/msgs/report/Report-Slovak.txt
+++ b/Sandboxie/msgs/report/Report-Slovak.txt
@@ -186,6 +186,10 @@ SBIE2325 Debug: %2
SBIE2335 Initialization failed for process %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2336;pop;err;01
SBIE2336 Error in GUI server: %2
.
diff --git a/Sandboxie/msgs/report/Report-Spanish.txt b/Sandboxie/msgs/report/Report-Spanish.txt
index 683227d0..a844dcc5 100644
--- a/Sandboxie/msgs/report/Report-Spanish.txt
+++ b/Sandboxie/msgs/report/Report-Spanish.txt
@@ -158,6 +158,10 @@ SBIE2302 Process image configuration conflict: %2
SBIE2325 Debug: %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2338;pop;err;01
SBIE2338 Encountered unsupported architecture in process: %2
.
diff --git a/Sandboxie/msgs/report/Report-Swedish.txt b/Sandboxie/msgs/report/Report-Swedish.txt
index ac0d27a7..246d4f00 100644
--- a/Sandboxie/msgs/report/Report-Swedish.txt
+++ b/Sandboxie/msgs/report/Report-Swedish.txt
@@ -130,6 +130,10 @@ SBIE2246 Failed to mount box image, ImBox error %2
SBIE2325 Debug: %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2338;pop;err;01
SBIE2338 Encountered unsupported architecture in process: %2
.
diff --git a/Sandboxie/msgs/report/Report-TradChinese.txt b/Sandboxie/msgs/report/Report-TradChinese.txt
index 1cf43ff4..d96f7b6e 100644
--- a/Sandboxie/msgs/report/Report-TradChinese.txt
+++ b/Sandboxie/msgs/report/Report-TradChinese.txt
@@ -122,6 +122,10 @@ SBIE2244 Failed to mount box image, Password required
SBIE2246 Failed to mount box image, ImBox error %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2338;pop;err;01
SBIE2338 Encountered unsupported architecture in process: %2
.
diff --git a/Sandboxie/msgs/report/Report-Turkish.txt b/Sandboxie/msgs/report/Report-Turkish.txt
index 34399aec..cd0a02c2 100644
--- a/Sandboxie/msgs/report/Report-Turkish.txt
+++ b/Sandboxie/msgs/report/Report-Turkish.txt
@@ -2,5 +2,7 @@
* Missing Messages in Text-Turkish-1055.txt
*==========
-There are no missing messages.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
diff --git a/Sandboxie/msgs/report/Report-Ukrainian.txt b/Sandboxie/msgs/report/Report-Ukrainian.txt
index 57d4258d..91b90403 100644
--- a/Sandboxie/msgs/report/Report-Ukrainian.txt
+++ b/Sandboxie/msgs/report/Report-Ukrainian.txt
@@ -122,6 +122,10 @@ SBIE2244 Failed to mount box image, Password required
SBIE2246 Failed to mount box image, ImBox error %2
.
+2360;pop;err;01
+SBIE2360 Failed to inject SOCKS5 proxy: %2
+.
+
2338;pop;err;01
SBIE2338 Encountered unsupported architecture in process: %2
.
From 717d2d7317a37d9a5da379f3baa1ac2ee409cbf8 Mon Sep 17 00:00:00 2001
From: nkh0472 <67589323+nkh0472@users.noreply.github.com>
Date: Sat, 11 May 2024 10:22:58 +0800
Subject: [PATCH 084/122] Update Text-SimpChinese-2052.txt
follow 49af2ab36768db83c956343ed08286c164937065
---
Sandboxie/msgs/Text-SimpChinese-2052.txt | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Sandboxie/msgs/Text-SimpChinese-2052.txt b/Sandboxie/msgs/Text-SimpChinese-2052.txt
index 53715a45..956fc2ee 100644
--- a/Sandboxie/msgs/Text-SimpChinese-2052.txt
+++ b/Sandboxie/msgs/Text-SimpChinese-2052.txt
@@ -733,6 +733,10 @@ SBIE2332 无法访问文件 SbiePst.dat
SBIE2335 进程 %2 初始化失败
.
+2360;pop;err;01
+SBIE2360 注入 SOCKS5 代理失败: %2
+.
+
2336;pop;err;01
SBIE2336 GUI 服务器出错: %2
.
From 1dff029975497a0189693cd713b1e231ef4ad5f5 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 11 May 2024 11:23:54 +0200
Subject: [PATCH 085/122] dyn update
---
CHANGELOG.md | 3 +++
Sandboxie/core/drv/dyn_data.c | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6837bc23..14bb7834 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,6 +18,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- added support for SOCKS5 proxy authentication based on RFC1928 (thanks Deezzir)
- added Test Dialog UI for SOCKS5 proxy (thanks Deezzir)
+### Changed
+- validated compatybility with windows build 26212 and updated dyn data
+
## [1.13.7 / 5.68.7] - 2024-05-01
diff --git a/Sandboxie/core/drv/dyn_data.c b/Sandboxie/core/drv/dyn_data.c
index bc315c73..103e3d57 100644
--- a/Sandboxie/core/drv/dyn_data.c
+++ b/Sandboxie/core/drv/dyn_data.c
@@ -34,7 +34,7 @@ const wchar_t Parameters[] = L"\\Parameters";
#define IMAGE_FILE_MACHINE_ARM64 0xAA64 // ARM64 Little-Endian
#endif
-#define WIN11_LATEST 26200 // <-----
+#define WIN11_LATEST 26212 // <-----
#define SVR2025 26040
#define WIN11_FIRST 22000
#define SVR2022 20348
From 59236b509ac968efd19525eea529e70096cf683f Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 11 May 2024 13:52:00 +0200
Subject: [PATCH 086/122] Update proxy.c
---
Sandboxie/core/dll/proxy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Sandboxie/core/dll/proxy.c b/Sandboxie/core/dll/proxy.c
index 7e5d18d5..f2568325 100644
--- a/Sandboxie/core/dll/proxy.c
+++ b/Sandboxie/core/dll/proxy.c
@@ -78,7 +78,7 @@ _FX BOOLEAN socks5_handshake(SOCKET s, BOOLEAN auth, WCHAR login[SOCKS_AUTH_MAX_
if (auth)
req[3] = SOCKS_USERNAME_PASSWORD;
- if (__sys_send(s, req, 3 + auth, 0) != sizeof(req))
+ if (__sys_send(s, req, (3 + auth), 0) != (3 + auth))
goto on_error;
char res[2];
From c1e06897c86fc4a0f992b52826cefac8bf71a6d2 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 11 May 2024 13:57:31 +0200
Subject: [PATCH 087/122] Update OptionsWindow.ui
---
SandboxiePlus/SandMan/Forms/OptionsWindow.ui | 149 +++++++++----------
1 file changed, 71 insertions(+), 78 deletions(-)
diff --git a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
index b769a44a..63ebfa35 100644
--- a/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
+++ b/SandboxiePlus/SandMan/Forms/OptionsWindow.ui
@@ -45,7 +45,7 @@
QTabWidget::North
- 0
+ 7
@@ -3090,7 +3090,7 @@ The process match level has a higher priority than the specificity and describes
- 2
+ 3
@@ -3331,6 +3331,7 @@ The process match level has a higher priority than the specificity and describes
+ 75truetrue
@@ -3442,6 +3443,42 @@ The process match level has a higher priority than the specificity and describes
+
+
+
+ 2
+
+
+
+
+
+
+ Move Up
+
+
+
+
+
+
+
+
+
+
+ Move Down
+
+
+
+
+
+
+
+
+
+
+ Remove
+
+
+
@@ -3449,14 +3486,37 @@ The process match level has a higher priority than the specificity and describes
-
-
+
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 40
+
+
+
+
+
+
- Test Proxy
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
+
+
+ true
-
+
+
+
+ Resolve hostnames via proxy
+
+
+
+ false
@@ -3493,68 +3553,6 @@ The process match level has a higher priority than the specificity and describes
-
-
-
- Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
-
- true
-
-
-
-
-
-
- 2
-
-
-
-
-
-
- Move Up
-
-
-
-
-
-
-
-
-
-
- Move Down
-
-
-
-
-
-
-
-
-
-
- true
-
-
- Encrypt Passwords
-
-
-
-
-
-
- Qt::Vertical
-
-
-
- 20
- 40
-
-
-
-
@@ -3568,17 +3566,10 @@ The process match level has a higher priority than the specificity and describes
-
-
+
+
- Remove
-
-
-
-
-
-
- Resolve hostnames via proxy
+ Test Proxy
@@ -3631,6 +3622,7 @@ The process match level has a higher priority than the specificity and describes
+ 75truetrue
@@ -3657,6 +3649,7 @@ The process match level has a higher priority than the specificity and describes
+ 75truetrue
From 5f6c6b2c29bda684f85a2201154c0d98af8ec150 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 11 May 2024 22:04:19 +0200
Subject: [PATCH 088/122] 1.14.0
---
Sandboxie/common/rc4.c | 110 ++++++++++++++++++
Sandboxie/core/dll/net.c | 31 ++++-
Sandboxie/core/svc/SboxSvc.vcxproj | 10 ++
Sandboxie/core/svc/SboxSvc.vcxproj.filters | 3 +
Sandboxie/core/svc/includes.cpp | 2 +
Sandboxie/core/svc/msgids.h | 3 +
Sandboxie/core/svc/sbieiniserver.cpp | 41 +++++++
Sandboxie/core/svc/sbieiniserver.h | 2 +
Sandboxie/core/svc/sbieiniwire.h | 23 ++++
SandboxiePlus/QSbieAPI/SbieAPI.cpp | 21 ++++
SandboxiePlus/QSbieAPI/SbieAPI.h | 2 +
.../SandMan/Windows/OptionsNetwork.cpp | 14 ++-
12 files changed, 260 insertions(+), 2 deletions(-)
create mode 100644 Sandboxie/common/rc4.c
diff --git a/Sandboxie/common/rc4.c b/Sandboxie/common/rc4.c
new file mode 100644
index 00000000..b39ff8dd
--- /dev/null
+++ b/Sandboxie/common/rc4.c
@@ -0,0 +1,110 @@
+/*
+ * Copyright 2024 David Xanatos, xanasoft.com
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+//---------------------------------------------------------------------------
+// Simple INSECURE Encryption Functions
+//---------------------------------------------------------------------------
+
+
+#ifdef RC4_HEADER_ONLY
+
+
+//---------------------------------------------------------------------------
+// Functions
+//---------------------------------------------------------------------------
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void rc4_crypt(const unsigned char *key_ptr, unsigned int key_len, unsigned int stream_pos, unsigned char *buffer_ptr, unsigned int buffer_len);
+
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
+
+//---------------------------------------------------------------------------
+// Body
+//---------------------------------------------------------------------------
+
+
+#else RC4_HEADER_ONLY
+
+typedef struct rc4_sbox_s
+{
+ unsigned char state[256];
+ unsigned int x;
+ unsigned int y;
+} rc4_sbox_t;
+
+void rc4_swap(unsigned char &a, unsigned char &b)
+{
+ unsigned char c = a;
+ a = b;
+ b = c;
+}
+
+void rc4_init(rc4_sbox_t *rc4_sbox, const unsigned char *key_ptr, unsigned int key_len)
+{
+ rc4_sbox->x = 0;
+ rc4_sbox->y = 0;
+
+ // Initialisation of the permutation
+ unsigned int i;
+ for (i = 0; i < 256; i++)
+ rc4_sbox->state[i] = (char)i;
+
+ // Mixing permutation
+ unsigned int j = 0;
+ unsigned int k;
+ for (i = 0; i < 256; i++)
+ {
+ k = i % key_len;
+
+ j = (key_ptr[k] + rc4_sbox->state[i] + j) & 0xff;
+ rc4_swap(rc4_sbox->state[i], rc4_sbox->state[j]);
+ }
+}
+
+void rc4_transform(rc4_sbox_t *rc4_sbox, unsigned char *buffer_ptr, unsigned int buffer_len)
+{
+ unsigned int i;
+ for (i = 0; i < buffer_len; i++)
+ {
+ // The pseudo-random generation algorithm
+ rc4_sbox->x = (rc4_sbox->x + 1) & 0xff;
+ rc4_sbox->y = (rc4_sbox->y + rc4_sbox->state[rc4_sbox->x]) & 0xff;
+ rc4_swap(rc4_sbox->state[rc4_sbox->x], rc4_sbox->state[rc4_sbox->y]);
+ unsigned char keyChar = rc4_sbox->state[(rc4_sbox->state[rc4_sbox->x] + rc4_sbox->state[rc4_sbox->y]) & 0xff];
+
+ if (buffer_ptr) // NULL when seeking
+ buffer_ptr[i] ^= keyChar;
+ }
+}
+
+void rc4_crypt(const unsigned char* key_ptr, unsigned int key_len, unsigned int stream_pos, unsigned char* buffer_ptr, unsigned int buffer_len)
+{
+ rc4_sbox_s sbox;
+ rc4_init(&sbox, key_ptr, key_len);
+ if(stream_pos) // RC4 is very insecure but the first few kb are espetially insecure
+ rc4_transform(&sbox, NULL, stream_pos);
+ rc4_transform(&sbox, buffer_ptr, buffer_len);
+}
+
+#endif RC4_HEADER_ONLY
\ No newline at end of file
diff --git a/Sandboxie/core/dll/net.c b/Sandboxie/core/dll/net.c
index 3440d712..532cd85c 100644
--- a/Sandboxie/core/dll/net.c
+++ b/Sandboxie/core/dll/net.c
@@ -31,6 +31,8 @@
#include "common/map.h"
#include "common/str_util.h"
#include "wsa_defs.h"
+#include "core/svc/sbieiniwire.h"
+#include "common/base64.c"
//---------------------------------------------------------------------------
@@ -1245,12 +1247,39 @@ BOOLEAN WSA_ParseNetProxy(NETPROXY_RULE* proxy, const WCHAR* found_value)
WCHAR* pass_value;
ULONG pass_len;
- if (SbieDll_FindTagValuePtr(found_value, L"Password", &pass_value, &pass_len, L'=', L';')) {
+ BOOLEAN ok = SbieDll_FindTagValuePtr(found_value, L"Password", &pass_value, &pass_len, L'=', L';');
+ if (ok) {
if (pass_len > 255)
return FALSE;
wmemcpy(proxy->pass, pass_value, pass_len);
proxy->pass[pass_len] = L'\0';
}
+ else {
+ ok = SbieDll_FindTagValuePtr(found_value, L"EncryptedPW", &pass_value, &pass_len, L'=', L';');
+ if (ok) {
+
+ SBIE_INI_RC4_CRYPT_REQ req;
+ SBIE_INI_RC4_CRYPT_RPL *rpl;
+
+ req.h.length = sizeof(SBIE_INI_RC4_CRYPT_REQ) + 255;
+ req.h.msgid = MSGID_SBIE_INI_RC4_CRYPT;
+ req.value_len = b64_decoded_size(pass_value);
+ b64_decode(pass_value, req.value, req.value_len);
+
+ rpl = (SBIE_INI_RC4_CRYPT_RPL *)SbieDll_CallServer(&req.h);
+ if (rpl){
+
+ pass_len = rpl->value_len / sizeof(wchar_t);
+ if (pass_len > 255)
+ return FALSE;
+ wmemcpy(proxy->pass, rpl->value, pass_len);
+ proxy->pass[pass_len] = L'\0';
+
+ Dll_Free(rpl);
+ }
+ }
+ }
+
return TRUE;
}
diff --git a/Sandboxie/core/svc/SboxSvc.vcxproj b/Sandboxie/core/svc/SboxSvc.vcxproj
index fece0fcb..96e56de7 100644
--- a/Sandboxie/core/svc/SboxSvc.vcxproj
+++ b/Sandboxie/core/svc/SboxSvc.vcxproj
@@ -373,6 +373,16 @@
truetrue
+
+ true
+ true
+ true
+ true
+ true
+ true
+ true
+ true
+ truetrue
diff --git a/Sandboxie/core/svc/SboxSvc.vcxproj.filters b/Sandboxie/core/svc/SboxSvc.vcxproj.filters
index 7f9cdb74..dacf74ec 100644
--- a/Sandboxie/core/svc/SboxSvc.vcxproj.filters
+++ b/Sandboxie/core/svc/SboxSvc.vcxproj.filters
@@ -84,6 +84,9 @@
MountManager
+
+ common
+
diff --git a/Sandboxie/core/svc/includes.cpp b/Sandboxie/core/svc/includes.cpp
index 2a1223a5..e96d7d03 100644
--- a/Sandboxie/core/svc/includes.cpp
+++ b/Sandboxie/core/svc/includes.cpp
@@ -39,6 +39,8 @@ extern "C" {
#define CRC_WITH_ADLER32
#include "common/crc.c"
+#include "common/rc4.c"
+
#define PATTERN XPATTERN
#include "common/pattern.c"
diff --git a/Sandboxie/core/svc/msgids.h b/Sandboxie/core/svc/msgids.h
index f84465b3..1cc16131 100644
--- a/Sandboxie/core/svc/msgids.h
+++ b/Sandboxie/core/svc/msgids.h
@@ -100,6 +100,9 @@
#define MSGID_SBIE_INI_GET_VERSION 0x18AA
#define MSGID_SBIE_INI_GET_WAIT_HANDLE 0x18AB
#define MSGID_SBIE_INI_RUN_SBIE_CTRL 0x180A
+#define MSGID_SBIE_INI_RC4_CRYPT 0x180F
+
+//#define MSGID_SBIE_MGR 0x1900
#define MSGID_NETAPI 0x1A00
#define MSGID_NETAPI_USE_ADD 0x1A01
diff --git a/Sandboxie/core/svc/sbieiniserver.cpp b/Sandboxie/core/svc/sbieiniserver.cpp
index 31d0e37d..bdaae16d 100644
--- a/Sandboxie/core/svc/sbieiniserver.cpp
+++ b/Sandboxie/core/svc/sbieiniserver.cpp
@@ -33,6 +33,9 @@
#include "common/my_version.h"
#define CRC_HEADER_ONLY
#include "common/crc.c"
+#define RC4_HEADER_ONLY
+#include "common/rc4.c"
+#include "core/drv/api_defs.h"
#ifdef NEW_INI_MODE
extern "C" {
@@ -147,6 +150,11 @@ MSG_HEADER *SbieIniServer::Handler2(MSG_HEADER *msg)
return RunSbieCtrl(msg, idProcess, NT_SUCCESS(status));
}
+ if (msg->msgid == MSGID_SBIE_INI_RC4_CRYPT) {
+
+ return RC4Crypt(msg, idProcess, NT_SUCCESS(status));
+ }
+
if (NT_SUCCESS(status)) // if sandboxed
return SHORT_REPLY(STATUS_NOT_SUPPORTED);
@@ -2392,3 +2400,36 @@ MSG_HEADER *SbieIniServer::RunSbieCtrl(MSG_HEADER *msg, HANDLE idProcess, bool i
return SHORT_REPLY(status);
}
+
+
+//---------------------------------------------------------------------------
+// RC4Crypt
+//---------------------------------------------------------------------------
+
+
+MSG_HEADER *SbieIniServer::RC4Crypt(MSG_HEADER *msg, HANDLE idProcess, bool isSandboxed)
+{
+ SBIE_INI_RC4_CRYPT_REQ *req = (SBIE_INI_RC4_CRYPT_REQ *)msg;
+ if (req->h.length < sizeof(SBIE_INI_RC4_CRYPT_REQ))
+ return SHORT_REPLY(STATUS_INVALID_PARAMETER);
+
+ ULONG rpl_len = sizeof(SBIE_INI_RC4_CRYPT_RPL) + req->value_len;
+ SBIE_INI_RC4_CRYPT_RPL *rpl = (SBIE_INI_RC4_CRYPT_RPL *)LONG_REPLY(rpl_len);
+ if (!rpl)
+ return SHORT_REPLY(STATUS_INSUFFICIENT_RESOURCES);
+
+ rpl->value_len = req->value_len;
+ memcpy(rpl->value, req->value, req->value_len);
+
+ ULONG64 RandID = 0;
+ SbieApi_Call(API_GET_SECURE_PARAM, 3, L"RandID", (ULONG_PTR)&RandID, sizeof(RandID));
+ if (RandID == 0) {
+ srand(GetTickCount());
+ RandID = ULONG64(rand() & 0xFFFF) | (ULONG64(rand() & 0xFFFF) << 16) | (ULONG64(rand() & 0xFFFF) << 32) | (ULONG64(rand() & 0xFFFF) << 48);
+ SbieApi_Call(API_SET_SECURE_PARAM, 3, L"RandID", (ULONG_PTR)&RandID, sizeof(RandID));
+ }
+
+ rc4_crypt((BYTE*)&RandID, sizeof(RandID), 0x1000, rpl->value, rpl->value_len);
+
+ return (MSG_HEADER*)rpl;
+}
\ No newline at end of file
diff --git a/Sandboxie/core/svc/sbieiniserver.h b/Sandboxie/core/svc/sbieiniserver.h
index f45141d6..bba3ec02 100644
--- a/Sandboxie/core/svc/sbieiniserver.h
+++ b/Sandboxie/core/svc/sbieiniserver.h
@@ -105,6 +105,8 @@ protected:
MSG_HEADER *RunSbieCtrl(MSG_HEADER *msg, HANDLE idProcess, bool isSandboxed);
+ MSG_HEADER *RC4Crypt(MSG_HEADER *msg, HANDLE idProcess, bool isSandboxed);
+
protected:
diff --git a/Sandboxie/core/svc/sbieiniwire.h b/Sandboxie/core/svc/sbieiniwire.h
index 86ddc5a1..94308de1 100644
--- a/Sandboxie/core/svc/sbieiniwire.h
+++ b/Sandboxie/core/svc/sbieiniwire.h
@@ -174,6 +174,29 @@ struct tagSBIE_INI_PASSWORD_REQ
typedef struct tagSBIE_INI_PASSWORD_REQ SBIE_INI_PASSWORD_REQ;
+//---------------------------------------------------------------------------
+// rc4 Crypt
+//---------------------------------------------------------------------------
+
+
+struct tagSBIE_INI_RC4_CRYPT_REQ
+{
+ MSG_HEADER h;
+ ULONG value_len;
+ UCHAR value[1];
+};
+
+struct tagSBIE_INI_RC4_CRYPT_RPL
+{
+ MSG_HEADER h;
+ ULONG value_len;
+ UCHAR value[1];
+};
+
+typedef struct tagSBIE_INI_RC4_CRYPT_REQ SBIE_INI_RC4_CRYPT_REQ;
+typedef struct tagSBIE_INI_RC4_CRYPT_RPL SBIE_INI_RC4_CRYPT_RPL;
+
+
//---------------------------------------------------------------------------
diff --git a/SandboxiePlus/QSbieAPI/SbieAPI.cpp b/SandboxiePlus/QSbieAPI/SbieAPI.cpp
index 8974e888..69f23dd4 100644
--- a/SandboxiePlus/QSbieAPI/SbieAPI.cpp
+++ b/SandboxiePlus/QSbieAPI/SbieAPI.cpp
@@ -2150,6 +2150,27 @@ void CSbieAPI::ClearPassword()
m->Password.clear();
}
+SB_RESULT(QByteArray) CSbieAPI::RC4Crypt(const QByteArray& Data)
+{
+ ULONG req_len = sizeof(SBIE_INI_RC4_CRYPT_REQ) + Data.size();
+ SScoped req(malloc(req_len));
+
+ req->h.length = req_len;
+ req->h.msgid = MSGID_SBIE_INI_RC4_CRYPT;
+ req->value_len = Data.size();
+ memcpy(req->value, Data.constData(), req->value_len);
+
+ SScoped rpl;
+ SB_STATUS Status = CallServer(&req->h, &rpl);
+ if (!Status)
+ return Status;
+ if (!rpl)
+ return SB_ERR(ERROR_SERVER_DISABLED);
+ if (rpl->h.status != 0)
+ return SB_ERR(rpl->h.status);
+ return CSbieResult(QByteArray((char*)rpl->value, rpl->value_len));
+}
+
bool CSbieAPI::GetDriverInfo(quint32 InfoClass, void* pBuffer, size_t Size)
{
__declspec(align(8)) ULONG64 parms[API_NUM_ARGS];
diff --git a/SandboxiePlus/QSbieAPI/SbieAPI.h b/SandboxiePlus/QSbieAPI/SbieAPI.h
index 9287befa..bb0b4fe6 100644
--- a/SandboxiePlus/QSbieAPI/SbieAPI.h
+++ b/SandboxiePlus/QSbieAPI/SbieAPI.h
@@ -108,6 +108,8 @@ public:
virtual SB_STATUS LockConfig(const QString& NewPassword);
virtual void ClearPassword();
+ virtual SB_RESULT(QByteArray) RC4Crypt(const QByteArray& Data);
+
virtual bool GetDriverInfo(quint32 InfoClass, void* pBuffer, size_t Size);
enum EFeatureFlags
diff --git a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
index 86bb7a5e..fcb1d919 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
@@ -986,6 +986,12 @@ void COptionsWindow::ParseAndAddNetProxy(const QString& Value, bool disabled, co
pItem->setData(4, Qt::UserRole, Login);
QString Pass = Tags.value("password");
+ if(Pass.isEmpty()) {
+ Pass = Tags.value("encryptedpw");
+ auto res = theAPI->RC4Crypt(QByteArray::fromBase64(Pass.toLatin1()));
+ if (!res.IsError())
+ Pass = QString::fromWCharArray((wchar_t*)res.GetValue().data(), res.GetValue().length() / sizeof(wchar_t));
+ }
if (Pass.length() > 255) Pass = Pass.left(255);
pItem->setText(5, Pass);
pItem->setData(5, Qt::UserRole, Pass);
@@ -1024,7 +1030,13 @@ void COptionsWindow::SaveNetProxy()
Tags.append("Port=" + Port);
if (!Auth.isEmpty()) Tags.append("Auth=" + Auth);
if (!Login.isEmpty()) Tags.append("Login=" + Login);
- if (!Pass.isEmpty()) Tags.append("Password=" + Pass);
+ if (!Pass.isEmpty()) {
+ auto res = theAPI->RC4Crypt(QByteArray((char*)Pass.toStdWString().c_str(), Pass.length() * sizeof(wchar_t)));
+ if(res.IsError())
+ Tags.append("Password=" + Pass);
+ else
+ Tags.append("EncryptedPW=" + res.GetValue().toBase64(QByteArray::OmitTrailingEquals));
+ }
QString Entry = Tags.join(";").prepend(Program + ",");
if (pItem->checkState(0) == Qt::Checked)
From 1a100dccbefa0d24ba52dd79f392bdcc6399b37a Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 11 May 2024 22:14:20 +0200
Subject: [PATCH 089/122] Update SbieAPI.cpp
---
SandboxiePlus/QSbieAPI/SbieAPI.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/SandboxiePlus/QSbieAPI/SbieAPI.cpp b/SandboxiePlus/QSbieAPI/SbieAPI.cpp
index 69f23dd4..5acec029 100644
--- a/SandboxiePlus/QSbieAPI/SbieAPI.cpp
+++ b/SandboxiePlus/QSbieAPI/SbieAPI.cpp
@@ -2168,7 +2168,7 @@ SB_RESULT(QByteArray) CSbieAPI::RC4Crypt(const QByteArray& Data)
return SB_ERR(ERROR_SERVER_DISABLED);
if (rpl->h.status != 0)
return SB_ERR(rpl->h.status);
- return CSbieResult(QByteArray((char*)rpl->value, rpl->value_len));
+ return CSbieResult(QByteArray((char*)rpl->value, rpl->value_len));
}
bool CSbieAPI::GetDriverInfo(quint32 InfoClass, void* pBuffer, size_t Size)
From f22661c99cfa556c9543e257ecbbfc1981b6c028 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sat, 11 May 2024 22:25:32 +0200
Subject: [PATCH 090/122] 1.14.0
---
Sandboxie/core/dll/net.c | 12 +++++++++++-
Sandboxie/core/dll/proxy.c | 14 +++++++++++---
SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp | 6 ++++--
3 files changed, 26 insertions(+), 6 deletions(-)
diff --git a/Sandboxie/core/dll/net.c b/Sandboxie/core/dll/net.c
index 532cd85c..3333981b 100644
--- a/Sandboxie/core/dll/net.c
+++ b/Sandboxie/core/dll/net.c
@@ -291,7 +291,9 @@ static BOOLEAN WSA_TraceFlag = FALSE;
static BOOLEAN WSA_ProxyEnabled = FALSE;
static NETPROXY_RULE* WSA_Proxy = NULL;
+#ifdef PROXY_RESOLVE_HOST_NAMES
HASH_MAP DNS_LookupMap;
+#endif
typedef struct _WSA_SOCK {
ULONG NonBlocking;
@@ -1357,7 +1359,10 @@ _FX BOOLEAN WSA_Init(HMODULE module)
/*P_recvfrom recvfrom;
P_WSARecvFrom WSARecvFrom;*/
P_closesocket closesocket;
+
+#ifdef PROXY_RESOLVE_HOST_NAMES
P_GetAddrInfoW GetAddrInfoW;
+#endif
//
// initialize the network firewall rule list and hook the relevant functions
@@ -1500,7 +1505,10 @@ _FX BOOLEAN WSA_Init(HMODULE module)
__sys_shutdown = (P_shutdown)GetProcAddress(module, "shutdown");
__sys_inet_ntop = (P_inet_ntop)GetProcAddress(module, "inet_ntop");
+
+#ifdef PROXY_RESOLVE_HOST_NAMES
if(WSA_ProxyEnabled && SbieApi_QueryConfBool(NULL, L"NetworkProxyResolveHostnames", FALSE)) {
+
map_init(&DNS_LookupMap, Dll_Pool);
GetAddrInfoW = (P_GetAddrInfoW)GetProcAddress(module, "GetAddrInfoW");
@@ -1508,6 +1516,7 @@ _FX BOOLEAN WSA_Init(HMODULE module)
SBIEDLL_HOOK(WSA_,GetAddrInfoW);
}
}
+#endif
closesocket = (P_closesocket)GetProcAddress(module, "closesocket");
if (closesocket) {
@@ -1766,7 +1775,7 @@ _FX HRESULT Net_Common_ImageNamePut(
// WSA_GetAddrInfoW
//---------------------------------------------------------------------------
-
+#ifdef PROXY_RESOLVE_HOST_NAMES
_FX int WSA_GetAddrInfoW(
PCWSTR pNodeName,
PCWSTR pServiceName,
@@ -1796,3 +1805,4 @@ _FX int WSA_GetAddrInfoW(
}
return ret;
}
+#endif
\ No newline at end of file
diff --git a/Sandboxie/core/dll/proxy.c b/Sandboxie/core/dll/proxy.c
index f2568325..fc66801a 100644
--- a/Sandboxie/core/dll/proxy.c
+++ b/Sandboxie/core/dll/proxy.c
@@ -64,7 +64,9 @@
extern P_recv __sys_recv;
extern P_send __sys_send;
extern P_inet_ntop __sys_inet_ntop;
+#ifdef PROXY_RESOLVE_HOST_NAMES
extern HASH_MAP DNS_LookupMap;
+#endif
//---------------------------------------------------------------------------
// socks5_handshake
@@ -251,6 +253,7 @@ _FX char socks5_request(SOCKET s, const SOCKADDR* addr)
char* ptr = req + 3;
if (addr->sa_family == AF_INET) {
const SOCKADDR_IN* v4 = (const SOCKADDR_IN*)addr;
+#ifdef PROXY_RESOLVE_HOST_NAMES
char* domain = (char*)map_get(&DNS_LookupMap, (void*)v4->sin_addr.s_addr);
if (domain) {
*ptr++ = SOCKS_DOMAINNAME;
@@ -259,8 +262,10 @@ _FX char socks5_request(SOCKET s, const SOCKADDR* addr)
ptr += strlen(domain);
*((USHORT*)ptr) = v4->sin_port;
ptr += sizeof(USHORT);
- }
- else {
+ }
+ else
+#endif
+ {
*ptr++ = SOCKS_IPV4;
*((ULONG*)ptr) = v4->sin_addr.s_addr;
ptr += sizeof(ULONG);
@@ -270,6 +275,7 @@ _FX char socks5_request(SOCKET s, const SOCKADDR* addr)
}
else if (addr->sa_family == AF_INET6) {
const SOCKADDR_IN6_LH* v6 = (const SOCKADDR_IN6_LH*)addr;
+#ifdef PROXY_RESOLVE_HOST_NAMES
char* domain = (char*)map_get(&DNS_LookupMap, (void*)&v6->sin6_addr.s6_addr);
if (domain) {
*ptr++ = SOCKS_DOMAINNAME;
@@ -279,7 +285,9 @@ _FX char socks5_request(SOCKET s, const SOCKADDR* addr)
*((USHORT*)ptr) = v6->sin6_port;
ptr += sizeof(USHORT);
}
- else {
+ else
+#endif
+ {
*ptr++ = SOCKS_IPV6;
memcpy(ptr, &v6->sin6_addr, sizeof(v6->sin6_addr));
ptr += sizeof(v6->sin6_addr);
diff --git a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
index fcb1d919..10fe5eaf 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
@@ -59,6 +59,8 @@ void COptionsWindow::CreateNetwork()
connect(ui.chkBlockDns, SIGNAL(clicked(bool)), this, SLOT(OnBlockDns()));
connect(ui.chkBlockSamba, SIGNAL(clicked(bool)), this, SLOT(OnBlockSamba()));
+
+ ui.chkProxyResolveHostnames->setVisible(false);
}
void COptionsWindow::OnBlockDns()
@@ -942,7 +944,7 @@ void COptionsWindow::OnNetProxyItemDoubleClicked(QTreeWidgetItem* pItem, int Col
void COptionsWindow::LoadNetProxy()
{
- ui.chkProxyResolveHostnames->setChecked(m_pBox->GetBool("NetworkProxyResolveHostnames", false));
+ //ui.chkProxyResolveHostnames->setChecked(m_pBox->GetBool("NetworkProxyResolveHostnames", false));
ui.treeProxy->clear();
foreach(const QString & Value, m_pBox->GetTextList("NetworkUseProxy", m_Template))
@@ -1003,7 +1005,7 @@ void COptionsWindow::ParseAndAddNetProxy(const QString& Value, bool disabled, co
void COptionsWindow::SaveNetProxy()
{
- WriteAdvancedCheck(ui.chkProxyResolveHostnames, "NetworkProxyResolveHostnames", "y", "");
+ //WriteAdvancedCheck(ui.chkProxyResolveHostnames, "NetworkProxyResolveHostnames", "y", "");
QStringList NetworkUseProxy;
QStringList NetworkUseProxyDisabled;
From f7a5162fc37d5f31d5fe4411b9e4c7a4b1f75234 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 12 May 2024 01:30:38 +0000
Subject: [PATCH 091/122] Sync SBIE Plus language files (lupdate)
---
SandboxiePlus/SandMan/sandman_de.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_en.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_es.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_fr.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_hu.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_it.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_ja.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_ko.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_nl.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_pl.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_pt_BR.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_pt_PT.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_ru.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_sv_SE.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_tr.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_uk.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_vi.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_zh_CN.ts | 359 ++++++++++++-------------
SandboxiePlus/SandMan/sandman_zh_TW.ts | 359 ++++++++++++-------------
19 files changed, 3363 insertions(+), 3458 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts
index 5bbabf2e..ae86c2cf 100644
--- a/SandboxiePlus/SandMan/sandman_de.ts
+++ b/SandboxiePlus/SandMan/sandman_de.ts
@@ -1791,9 +1791,9 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
-
-
-
+
+
+ Group: %1Gruppe: %1
@@ -2077,11 +2077,11 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
-
-
-
-
-
+
+
+
+
+ All ProgramsAlle Programme
@@ -2106,7 +2106,7 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
-
+ Template values can not be edited.Vorlagenwerte können nicht bearbeitet werden.
@@ -2147,82 +2147,82 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
-
+ AnyAlle
-
+ TCPTCP
-
+ UDPUPD
-
+ ICMPICMP
-
+ Allow accessErlaube Zugriff
-
+ Block using Windows Filtering PlatformBlockieren durch Verwendung der Windows Filtering Platform
-
+ Block by denying access to Network devicesBlockieren durch Zugriffsverweigerung auf Netzwerkgeräte
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowErlauben
-
+ Block (WFP)Blockieren (WFP)
-
+ Block (NDev)Blockieren (NDev)
-
+ A non empty program name is required.Ein nicht leerer Programmname wird benötigt.
-
+ BlockBlockieren
@@ -6557,12 +6557,12 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
+ Protect the system from sandboxed processesSchütze das System vor Prozessen in der Sandbox
-
+ Block network files and folders, unless specifically opened.Blockiere Netzwerkdateien und Ordner, außer diese wurden explizit geöffnet.
@@ -6590,11 +6590,11 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
-
-
-
-
+
+
+
+
+ NameName
@@ -6619,15 +6619,15 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveEntfernen
@@ -6683,7 +6683,7 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Lässt Programme denken, sie würden mit erhöhten Rechten laufen (Erlaubt das sichere Ausführen von Installern)
-
+ Network restrictionsNetzwerkbeschränkungen
@@ -6758,11 +6758,11 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
-
-
-
-
+
+
+
+
+ Show TemplatesZeige Vorlagen
@@ -6859,7 +6859,7 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Druckerbeschränkungen
-
+ Prevent change to network and firewall parameters (user mode)Verhindere Änderungen an Netzwerk und Firewall-Parametern (Nutzermodus)
@@ -6936,9 +6936,9 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
-
-
+
+
+ ProgramProgramm
@@ -6978,52 +6978,52 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Füge IPC-Pfad hinzu
-
+ File RecoveryDateiwiederherstellung
-
+ Add FolderFüge Ordner hinzu
-
+ Ignore ExtensionIgnoriere Erweiterungen
-
+ Ignore FolderIgnoriere Ordner
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Aktivere Sofortwiederherstellungsabfrage, um alle Dateien sofort wiederherzustellen, sobald sie erzeugt werden.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Sie können Ordner und Dateitypen (oder Dateierweiterungen) von der Sofortwiederherstellung ausnehmen.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Wenn die Schnellwiederherstellungsfunktion aufgerufen wird, werden die folgenden Ordner in der Sandbox auf Inhalte geprüft.
-
+ Immediate RecoverySofortwiederherstellung
-
+ Advanced OptionsErweiterte Optionen
-
+ MiscellaneousDiverses
@@ -7038,7 +7038,7 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Blockiere Lesezugriff auf die Zwischenablage
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Erzwinge die Verwendung von eigenen dummy Manifestdateien (veraltetes Verhalten)
@@ -7069,13 +7069,13 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
-
+ Protect the sandbox integrity itselfDie Sandboxintegrität selbst schützen
-
-
+
+ CompatibilityKompatibilität
@@ -7085,7 +7085,7 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
ACHTUNG: Bei Ausführung unter dem eingebauten Administrator, können Prozesse ihre administrativen Rechten nicht abgeben.
-
+ Emulate sandboxed window station for all processesEmuliere sandgeboxte 'Window Stations' für alle Prozesse
@@ -7095,42 +7095,42 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Öffne Zugriff auf Windows Security Account Manager
-
+ Hide ProcessesVerstecke Prozesse
-
+ Add ProcessProzess hinzufügen
-
+ Hide host processes from processes running in the sandbox.Verstecke Host-Prozesse vor Prozessen in der Sandbox.
-
+ Don't allow sandboxed processes to see processes running in other boxesNicht erlauben, dass sandgeboxte Prozesse die Prozesse in anderen Boxen sehen können
-
+ UsersBenutzer
-
+ Restrict Resource Access monitor to administrators onlyBeschränke den Ressourcenzugriffsmonitor auf Administratoren
-
+ Add UserBenutzer hinzufügen
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -7139,22 +7139,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Notiz: Erzwungene Programme und Ordner für eine Sandbox finden keine Anwendung auf Konten, die diese Sandbox nicht nutzen können.
-
+ TracingRückverfolgung
-
+ Log all SetError's to Trace log (creates a lot of output)Protokolliere alle SetError ins Rückverfolgungsprotokoll (Erzeugt große Ausgabemenge)
-
+ Pipe TracePipe-Rückverfolgung
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -7173,162 +7173,157 @@ Sie können die Protokollierung in der INI anpassen, indem Sie wie folgt wählen
an Stelle von "*".
-
+ Access TracingZugriffsrückverfolgung
-
+ GUI TraceGUI-Rückverfolgung
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ On Box TerminateBeim Box Beenden
-
+ API call Trace (traces all SBIE hooks)API-Aufrufrückverfolgung (verfolgt alle SBIE-Hooks)
-
+ Key TraceSchlüsselrückverfolgung
-
+ File TraceDateirückverfolgung
-
+ IPC TraceIPC-Rückverfolgung
-
+ Log Debug Output to the Trace LogProtokolliere Debug-Ausgabe in das Rückverfolgungsprotokoll
-
+ DNS Request Logging
-
+ COM Class TraceCOM-Klassenrückverfolgung
-
+ DebugDebug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!WARNUNG, diese Optionen können Kernsicherheitsgarantien deaktivieren und die Sandboxsicherheit zerstören!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Diese Optionen sind nur zur Fehlersuche bei Kompatibilitätsproblemen gedacht, bitte nicht im produktiven Einsatz verwenden.
-
+ App TemplatesProgrammvorlagen
-
+ Filter CategoriesFilterkategorien
-
+ Text FilterTextfilter
-
+ Add TemplateFüge Vorlage hinzu
-
+ CategoryKategorie
-
+ This list contains a large amount of sandbox compatibility enhancing templatesDiese Liste enthält eine große Menge an Vorlagen, welche die Kompatibilität der Sandbox verbessern
@@ -7379,13 +7374,13 @@ an Stelle von "*".
-
+ Move UpNach oben verschieben
-
+ Move DownNach unten verschieben
@@ -7415,39 +7410,39 @@ an Stelle von "*".
Zugriffsisolation
-
+ Image ProtectionAbbildschutz
-
+ Issue message 1305 when a program tries to load a sandboxed dllGebe Nachricht 1305 aus, wenn ein Programm versucht eine sandgeboxte DLL zu laden
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxHindere sandgeboxte Programme, die auf dem Hostsystem installiert sind, daran, DLLs aus der Sandbox zu laden
-
+ Dlls && ExtensionsDLLs && Erweiterungen
-
+ DescriptionBeschreibung
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Sandboxies Ressourcenzugriffsregeln benachteiligen häufiger Programme in der Sandbox. OpenFilePath und OpenKeyPath funktionieren nur für Programme, die sich auf dem Host befinden. Um eine Regel ohne diese Beschränkungen zu definieren, müssen OpenPipePath oder OpenConfPath verwendet werden. Ebenso werden alle Closed(File|Key|Ipc)Path Anweisungen, welche durch eine Negation definiert werden, z.B. ‘ClosedFilePath=! iexplore.exe,C:Users*’, immer für Programmdateien (Binaries), die sich innerhalb einer Sandbox befinden, geschlossen sein. Beide Beschränkungen lassen sich auf der “Zugriffsrichtlinien”-Seite ausschalten.
Dies wird gemacht um bösartige Prozesse in einer Sandbox daran zu hindern, eine umbenannte Kopie von sich selbst zu erstellen, um so auf geschützte Ressourcen zuzugreifen. Ein anderes Einfallstor ist die Injektion einer Programmbibliothek in einen befugten Prozess um Zugang zu allem zu erhalten, auf das dieser Prozess Zugriff hat. Mit der Verwendung des Abbildschutzes (Host Image Protection), kann dies verhindert werden, durch die Blockierung des Ladens von Programmbibliotheken innerhalb der Sandbox in Programme (installiert auf dem Hostrechner) die in einer Sandbox laufen.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Die Funktionalität von Sandboxie kann durch die Verwendung optionaler DLLs erweitert werden, die beim Start in jeden sandgeboxten Prozess durch die Datei SbieDll.dll geladen werden können. Der Erweiterungsmanager in den globalen Einstellungen bietet ein paar nützliche Erweiterungen, die, nachdem diese installiert wurden, hier für die aktuelle Box aktiviert werden können.
@@ -7646,20 +7641,20 @@ Um einen Prozess anzugeben verwenden Sie '$:program.exe' als Pfad.
-
+ ActionAktion
-
+ PortPort
-
-
+
+ IPIP
@@ -7669,22 +7664,22 @@ Um einen Prozess anzugeben verwenden Sie '$:program.exe' als Pfad.Protokoll
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.ACHTUNG: Die Windows Filtering Platform wird nicht durch den Treiber ermöglicht, deshalb können diese Regeln nur im Nutzerkontext angewendet und nicht erzwungen werden!!! Dies bedeutet, dass ein bösartiges Programm diese umgehen könnte.
-
+ Quick RecoverySchnellwiederherstellung
-
+ Various OptionsVerschiedene Optionen
-
+ Allow use of nested job objects (works on Windows 8 and later)Erlaube Verwendung von verschachtelten Jobobjekten (funktioniert ab Windows 8 und neuer)
@@ -7797,7 +7792,7 @@ Der Prozessübereinstimmungslevel hat eine höhere Priorität als die Genauigkei
Gebe Nachricht 2111 aus, falls ein Prozesszugriff abgelehnt wird
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Deaktiviere standardmäßig die Benutzung von RpcMgmtSetComTimeout (Dies könnte Kompatibilitätsprobleme lösen)
@@ -7827,82 +7822,82 @@ Der Prozessübereinstimmungslevel hat eine höhere Priorität als die Genauigkei
Die unterstehenden Optionen können sicher genutzt werden, wenn Sie keine Adminrechte gewähren.
-
+ TriggersAuslöser
-
+ EventVorgang
-
-
-
-
+
+
+
+ Run CommandKommando ausführen
-
+ Start ServiceDienst starten
-
+ These events are executed each time a box is startedDiese Vorgänge werden jedes Mal ausgeführt, wenn eine Box gestartet wird
-
+ On Box StartBeim Boxstart
-
-
+
+ These commands are run UNBOXED just before the box content is deletedDiese Kommandos werden NICHT-sandgeboxt ausgeführt, direkt bevor der Boxinhalt gelöscht wird
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Diese Kommandos werden nur ausgeführt wenn eine Box initialisiert wird. Um diese erneut auszuführen, muss der Boxinhalt gelöscht werden.
-
+ On Box InitBei Boxinitialisierung
-
+ Here you can specify actions to be executed automatically on various box events.Hier können Sie Aktionen angeben, die automatisch bei bestimmten Boxvorgängen ausgeführt werden.
-
+ Disable Resource Access MonitorDeaktiviere Ressourcenzugriffsmonitor
-
+ Resource Access MonitorRessourcenzugriffsmonitor
-
+ Network FirewallNetzwerk-Firewall
-
+ Template FoldersVorlagenordner
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -7911,23 +7906,23 @@ Please note that this values are currently user specific and saved globally for
Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global für alle Boxen gespeichert werden.
-
-
+
+ ValueWert
-
+ AccessibilityBarrierefreiheit
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Zur Kompensation des verlorenen Schutzes, suchen Sie die Einstellungsseite der Rechteabgabe in der Gruppe der Beschränkungen auf.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessScreenreader, JAWS, NVDA, Window-Eyes, Systemzugriff
@@ -8082,47 +8077,47 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
Konfiguriere welche Prozesse Zugriff auf Desktopobjekte wie Fenster und dergleichen haben.
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Wende die ElevateCreateProcess-Problemumgehung an (veraltetes Verhalten)
-
+ Use desktop object workaround for all processesWende den Workaround für Desktopobjekt auf alle Prozesse an
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.Wenn der globale Hotkey 3x kurz hintereinander gedrückt wird, wird diese Ausnahme ignoriert.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Schließe diese Sandbox davon aus, dass sie beendet wird, wenn "Alle Prozesse beenden" aufgerufen wird.
-
+ This command will be run before the box content will be deletedDieses Kommando wird ausgeführt bevor der Boxinhalt gelöscht wird
-
+ On File RecoveryBei Dateiwiederherstellung
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedDieses Kommando wird ausgeführt bevor eine Datei wiederhergestellt wird und der Dateipfad wird als erstes Argument weitergegeben und falls dieses Kommando etwas anderes als den Wert 0 zurückgibt, wird die Wiederherstellung blockiert
-
+ Run File CheckerStarte Dateiprüfer
-
+ On Delete ContentBeim Löschen von Inhalten
@@ -8158,87 +8153,87 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
-
+ ProcessProzess
-
+ Other OptionsAndere Optionen
-
+ Port BlockingPortblockade
-
+ Block common SAMBA portsBlockiere übliche SAMBA-Ports
-
+ Block DNS, UDP port 53Blockiere DNS, UPD Port 53
-
+ Add OptionFüge Option hinzu
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Hier können Sie pro Prozess Optionen konfigurieren, um die Kompatibilität zu verbessern und/oder das Sandboxverhalten zu personalisieren.
-
+ OptionOption
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.Diese Befehle werden AUẞERHALB der Sandbox ausgeführt, nachdem alle Prozesse in der Sandbox beendet wurden.
-
+ Syscall Trace (creates a lot of output)Systemaufrufrückverfolgung (erzeugt große Ausgabemenge)
-
+ TemplatesVorlagen
-
+ Open TemplateÖffne Vorlage
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Die folgenden Einstellungen ermöglichen die Verwendung von Sandboxie in Verbindung mit Barrierefreiheitssoftware. Bitte beachten Sie, dass ein gewisser Umfang des Schutzes von Sandboxie notwendigerweise verloren geht, wenn diese Einstellungen aktiv sind.
-
+ Edit ini SectionINI Sektion bearbeiten
-
+ Edit iniINI bearbeiten
-
+ CancelAbbrechen
-
+ SaveSpeichern
diff --git a/SandboxiePlus/SandMan/sandman_en.ts b/SandboxiePlus/SandMan/sandman_en.ts
index 79998242..e2f17b07 100644
--- a/SandboxiePlus/SandMan/sandman_en.ts
+++ b/SandboxiePlus/SandMan/sandman_en.ts
@@ -1532,11 +1532,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All Programs
@@ -1547,9 +1547,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1
@@ -1584,7 +1584,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.
@@ -1991,82 +1991,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Any
-
+ TCP
-
+ UDP
-
+ ICMP
-
+ Allow access
-
+ Block using Windows Filtering Platform
-
+ Block by denying access to Network devices
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ Allow
-
+ Block (WFP)
-
+ Block (NDev)
-
+ A non empty program name is required.
-
+ Block
@@ -6584,7 +6584,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Protect the system from sandboxed processes
@@ -6721,12 +6721,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Network restrictions
-
+ Block network files and folders, unless specifically opened.
@@ -6749,11 +6749,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
+
+
+
+
+ Name
@@ -6783,15 +6783,15 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Remove
@@ -6857,11 +6857,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
+
+
+
+
+ Show Templates
@@ -6911,7 +6911,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Prevent change to network and firewall parameters (user mode)
@@ -7085,13 +7085,13 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Move Up
-
+ Move Down
@@ -7162,49 +7162,49 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image Protection
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7433,9 +7433,9 @@ To specify a process use '$:program.exe' as path.
-
-
-
+
+
+ Program
@@ -7443,20 +7443,20 @@ To specify a process use '$:program.exe' as path.
-
+ Action
-
+ Port
-
-
+
+ IP
@@ -7466,7 +7466,7 @@ To specify a process use '$:program.exe' as path.
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.
@@ -7563,142 +7563,137 @@ To specify a process use '$:program.exe' as path.
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ File Recovery
-
+ Quick Recovery
-
+ Add Folder
-
+ Immediate Recovery
-
+ Ignore Extension
-
+ Ignore Folder
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content.
-
+ Advanced Options
-
+ Miscellaneous
@@ -7719,7 +7714,7 @@ To specify a process use '$:program.exe' as path.
-
+ Protect the sandbox integrity itself
@@ -7740,7 +7735,7 @@ To specify a process use '$:program.exe' as path.
-
+ Force usage of custom dummy Manifest files (legacy behaviour)
@@ -7791,8 +7786,8 @@ The process match level has a higher priority than the specificity and describes
-
-
+
+ Compatibility
@@ -7802,7 +7797,7 @@ The process match level has a higher priority than the specificity and describes
-
+ Emulate sandboxed window station for all processes
@@ -7832,7 +7827,7 @@ The process match level has a higher priority than the specificity and describes
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)
@@ -7857,76 +7852,76 @@ The process match level has a higher priority than the specificity and describes
-
+ Triggers
-
+ Event
-
-
-
-
+
+
+
+ Run Command
-
+ Start Service
-
+ These events are executed each time a box is started
-
+ On Box Start
-
-
+
+ These commands are run UNBOXED just before the box content is deleted
-
+ Allow use of nested job objects (works on Windows 8 and later)
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.
-
+ On Box Init
-
+ Here you can specify actions to be executed automatically on various box events.
-
+ Hide Processes
-
+ Add Process
-
+ Hide host processes from processes running in the sandbox.
@@ -7936,48 +7931,48 @@ The process match level has a higher priority than the specificity and describes
-
+ Various Options
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)
-
+ Use desktop object workaround for all processes
-
+ This command will be run before the box content will be deleted
-
+ On File Recovery
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked
-
+ Run File Checker
-
+ On Delete Content
-
+ Don't allow sandboxed processes to see processes running in other boxes
@@ -7988,80 +7983,80 @@ The process match level has a higher priority than the specificity and describes
-
+ Process
-
+ Users
-
+ Restrict Resource Access monitor to administrators only
-
+ Add User
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
-
+ Add Option
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.
-
+ Option
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Tracing
-
+ Pipe Trace
-
+ API call Trace (traces all SBIE hooks)
-
+ Log all SetError's to Trace log (creates a lot of output)
-
+ Log Debug Output to the Trace Log
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8073,176 +8068,176 @@ instead of "*".
-
+ File Trace
-
+ Disable Resource Access Monitor
-
+ IPC Trace
-
+ GUI Trace
-
+ Resource Access Monitor
-
+ Access Tracing
-
+ COM Class Trace
-
+ Key Trace
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.
-
+ Network Firewall
-
+ Debug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use.
-
+ App Templates
-
+ Filter Categories
-
+ Text Filter
-
+ Add Template
-
+ This list contains a large amount of sandbox compatibility enhancing templates
-
+ Category
-
+ Template Folders
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
-
-
+
+ Value
-
+ On Box Terminate
-
+ DNS Request Logging
-
+ Syscall Trace (creates a lot of output)
-
+ Templates
-
+ Open Template
-
+ Accessibility
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System Access
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.
-
+ Edit ini Section
-
+ Edit ini
-
+ Cancel
-
+ Save
diff --git a/SandboxiePlus/SandMan/sandman_es.ts b/SandboxiePlus/SandMan/sandman_es.ts
index 637f5b11..479ce0d0 100644
--- a/SandboxiePlus/SandMan/sandman_es.ts
+++ b/SandboxiePlus/SandMan/sandman_es.ts
@@ -1966,9 +1966,9 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
-
-
-
+
+
+ Group: %1Grupo: %1
@@ -2186,11 +2186,11 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
-
-
-
-
-
+
+
+
+
+ All ProgramsTodos los programas
@@ -2225,7 +2225,7 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
-
+ Template values can not be edited.Los valores de plantilla no se pueden editar.
@@ -2354,82 +2354,82 @@ Por favor, selecciona una carpeta que contenga este archivo.
-
+ AnyCualquiera
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessPermitir acceso
-
+ Block using Windows Filtering PlatformBloquear usando plataforma de filtrado de Windows
-
+ Block by denying access to Network devicesBloquear denegando acceso a dispositivos de red
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowPermitir
-
+ Block (WFP)Bloquear (WFP)
-
+ Block (NDev)Bloquear (NDev)
-
+ A non empty program name is required.Un nombre de programa no vacío es requerido.
-
+ BlockBloquear
@@ -7262,7 +7262,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
-
+ Protect the system from sandboxed processesProtejer al sistema de procesos en sandboxes
@@ -7277,7 +7277,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Abrir Credenciales de Windows (modo usuario)
-
+ Block network files and folders, unless specifically opened.Bloquear archivos de red y carpetas, salvo especificamente abiertos.
@@ -7286,7 +7286,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Hace creer a las aplicaciones que son ejecutadas con permisos elevados (permite ejecutar instaladores con seguridad)
-
+ Network restrictionsRestricciones de Red
@@ -7425,11 +7425,11 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
-
-
-
-
-
+
+
+
+
+ NameNombre
@@ -7459,15 +7459,15 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveRemover
@@ -7553,11 +7553,11 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
-
-
-
-
-
+
+
+
+
+ Show TemplatesMostrar Plantillas
@@ -7662,14 +7662,14 @@ Si los procesos lider son definidos, todos los demas son tratados como persisten
-
-
-
+
+
+ ProgramPrograma
-
+ Prevent change to network and firewall parameters (user mode)Prevenir cambiar parametros de red y cortafuegos (modo usuario)
@@ -7726,13 +7726,13 @@ Ud. puede usar 'Abrir para todos' en vez de aplicar a todos los progra
-
+ Move UpMover Arriba
-
+ Move DownMover Abajo
@@ -7747,22 +7747,22 @@ Note que Cerrar todos los ...=!<program>,... exclusiones tienen la misma l
Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo aplicar a todos los programas.
-
+ File RecoveryRecuperación de archivos
-
+ Add FolderAgregar Carpeta
-
+ Ignore ExtensionIgnorar Extension
-
+ Ignore FolderIgnorar Carpeta
@@ -7771,22 +7771,22 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
Habilitar consulta de Recuperación Inmediata que pueda recuperar archivos al momento de crearse.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Ud. puede excluir carpetas y tipos de archivos (o extensiones de archivos) de la Recuperación Instantanea.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Cuando la función de Recuperación Rapida es solicitada, las siguientes carpetas seran verificadas por contenido.
-
+ Advanced OptionsOpciones Avanzadas
-
+ MiscellaneousMiscelaneas
@@ -7797,7 +7797,7 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
-
+ Protect the sandbox integrity itselfProtejer la integridad de la sandbox
@@ -7820,13 +7820,13 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
Proteger procesos de sistema dentro de la sandbox contra procesos no privilegiados fuera de la sandbox
-
-
+
+ CompatibilityCompatibilidad
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Forzar el uso de archivos de manifesto de prueba (comportamiento heredado)
@@ -7857,42 +7857,42 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
Aqui Ud. puede especificar una lista de comandos que son ejecutados cada vez que la sandbox es creada inicialmente.
-
+ Hide ProcessesEsconder Procesos
-
+ Add ProcessAgregar Proceso
-
+ Hide host processes from processes running in the sandbox.Esconder procesos del anfitrion de procesos ejecutandose en la sandbox.
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedEste comando se ejecutará antes de que un archivo se recupere y la ruta del archivo se pasará como primer argumento. Si este comando devuelve algo distinto de 0, la recuperación será bloqueada
-
+ Don't allow sandboxed processes to see processes running in other boxesNo permitir procesos en la sandbox ver procesos ejecutandose en otras sandboxes
-
+ UsersUsuarios
-
+ Restrict Resource Access monitor to administrators onlyRestringir monitor de acceso a recursos solo para administradores
-
+ Add UserAgregar Usuario
@@ -7909,27 +7909,27 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to u
Nota: Configuración de Programas Forzados y Carpetas Forzadas para una sandbox no aplican a cuentas de usuario que no pueden usar la sandbox.
-
+ TracingRastreo
-
+ COM Class TraceRastreo COM Class
-
+ IPC TraceRastreo IPC
-
+ Key TraceRastreo de llave
-
+ GUI TraceRastreo GUI
@@ -8047,22 +8047,22 @@ El proceso de nivel de coincidencia tiene mayor prioridad que la especificidad y
Rastreo de llamadas API (requiere logapi estar instalado en el directorio de sbie)
-
+ Log all SetError's to Trace log (creates a lot of output)Registrar todos los SetErrors al Log de Rastreo (crea mucha salida de datos)
-
+ File TraceRastreo de archivo
-
+ Pipe TraceRastreo Pipe
-
+ Access TracingRastreo de acceso
@@ -8071,12 +8071,12 @@ El proceso de nivel de coincidencia tiene mayor prioridad que la especificidad y
<- para esta lo de arriba no aplica
-
+ Log Debug Output to the Trace LogRegistrar salida de depuración al log de Rastreo
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8099,42 +8099,42 @@ en cambio de "*".
Rastreo Ntdll syscall (crea mucha información de salida)
-
+ DebugDepuracion
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!ADVERTENCIA, estas opciones pueden deshabilitar garantias de seguridad de nucleo y romper la seguridad de la sandbox!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Estas opciones son para depurar problemas de compatibilidad, por favor no las use en produccion.
-
+ App TemplatesPlantillas de Aplicacion
-
+ Filter CategoriesFiltros de Categorias
-
+ Text FilterFiltro de Texto
-
+ CategoryCategoria
-
+ This list contains a large amount of sandbox compatibility enhancing templatesEsta lista contiene gran cantidad de plantillas para mejorar la compatibilidad de la sandbox
@@ -8189,50 +8189,50 @@ en cambio de "*".
Aislamiento de acceso
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.Cuando la tecla de acceso rápido global se presione 3 veces en rápida sucesión, esta excepción será ignorada.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Excluir esta sandbox de ser finalizada cuando se invoque "Terminar Todos los Procesos".
-
+ Image ProtectionProtección de Imagen
-
+ Issue message 1305 when a program tries to load a sandboxed dllEmitir el mensaje 1305 cuando un programa intenta cargar una dll en un entorno aislado
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxEvitar que los programas de sandbox instalados en el host carguen DLLs desde esta sandbox
-
+ Dlls && ExtensionsDLLs y Extensiones
-
+ DescriptionDescripción
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Las reglas de acceso a recursos de Sandboxie a menudo discriminan contra los binarios de programas ubicados dentro de la sandbox. OpenFilePath y OpenKeyPath funcionan solo para binarios de aplicaciones ubicadas de manera nativa en el ordenador. Para definir una regla sin esta restricción, se debe usar OpenPipePath o OpenConfPath. De igual manera, todas las directivas Closed(File|Key|Ipc)Path que se definen por negación, por ejemplo, 'ClosedFilePath=! iexplore.exe,C:Users*' siempre estarán cerradas para binarios ubicados dentro de una sandbox. Ambas políticas de restricción pueden ser desactivadas en la página de "Políticas de acceso".
Esto se hace para evitar que procesos maliciosos dentro de la sandbox creen una copia renombrada de sí mismos y accedan a recursos protegidos. Otro vector de explotación es la inyección de una biblioteca en un proceso autorizado para obtener acceso a todo lo que se le permite acceder. Utilizando la Protección de Imagen del Host, esto puede prevenirse bloqueando a las aplicaciones (instaladas en el host) que se ejecuten dentro de una sandbox y que carguen bibliotecas desde la propia sandbox.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.La funcionalidad de Sandboxie puede mejorarse mediante el uso de DLLs opcionales que pueden cargarse en cada proceso confinado en uns sandbox al iniciarse por el archivo SbieDll.dll. El administrador de extensiones en la configuración global ofrece un par de extensiones útiles; una vez instaladas, pueden activarse aquí para el sandbox actual.
@@ -8468,7 +8468,7 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.
-
+ ActionAcción
@@ -8656,14 +8656,14 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.
-
+ PortPuerto
-
-
+
+ IPIP
@@ -8673,52 +8673,52 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.Protocolo
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.Precaución: Plataforma de Filtrado de Windows no esta habilitada con el controlador, por lo tanto estas reglas seran aplicadas solo en modo usuario y no pueden ser reforzadas!!! Esto significa que aplicaciones maliciosas pueden saltearlas.
-
+ Other OptionsOtras Opciones
-
+ Port BlockingBloqueo de Puerto
-
+ Block common SAMBA portsBloquear puertos SAMBA comunes
-
+ Block DNS, UDP port 53Bloquear DNS, UDP puerto 53
-
+ Quick RecoveryRecuperación Rápida
-
+ Immediate RecoveryRecuperación Inmediata
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Habilitar que Recuperación Inmediata pueda recuperar archivos tan rapido como son creados.
-
+ Various OptionsVarias opciones
-
+ Emulate sandboxed window station for all processesEmular ventanas de sandbox para todos los procesos
@@ -8727,13 +8727,13 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.COM/RPC
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Permitir el uso de objetos de trabajos anidados (experimental, funciona en Windows 8 y posterior)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Deshabilitar el uso de RpcMgmtSetComTimeout por defecto (esto puede resolver temas de compatibilidad)
@@ -8791,46 +8791,46 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.Aislamiento de Acceso
-
+ TriggersDisparadores
-
+ This command will be run before the box content will be deletedEste comando se ejecutará antes de que el contenido de la caja sea borrado
-
+ EventEvento
-
-
-
-
+
+
+
+ Run CommandEjecutar Comando
-
+ Start ServiceIniciar Servicio
-
+ These events are executed each time a box is startedEstos eventos son excluidos acada vez que la caja es iniciada
-
+ On Box StartAl inicio de la caja
-
-
+
+ These commands are run UNBOXED just before the box content is deletedEstos comandos son ejecutados fuera de la Sandbox justo despues de que el contenido de la caja es eliminado
@@ -8839,27 +8839,27 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.Al eliminar la caja
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Estos comandos son ejecutados solo cuando la caja es inicializada. Para hacer que se ejecuten de nuevo, el contenido de la caja debe ser eliminado.
-
+ On Box InitAl inicializar la caja
-
+ On Box TerminateAl finalizar la caja
-
+ Here you can specify actions to be executed automatically on various box events.Aqui puede especificar acciones a ser ejecutadas automaticamente en varios eventos de la caja.
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8868,23 +8868,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: Las configuraciones de Programas Forzados y Carpetas Forzadas para una sandbox no se aplican a cuentas de usuario que no pueden usar la sandbox.
-
+ API call Trace (traces all SBIE hooks)Rastreo de llamadas API (rastrea todos los ganchos de SBIE)
-
+ Disable Resource Access MonitorDeshabilitar Monitor de Acceso a Recursos
-
+ Resource Access MonitorMonitor de Acceso a Recursos
-
+ Network FirewallCortafuegos de Red
@@ -8893,7 +8893,7 @@ Nota: Las configuraciones de Programas Forzados y Carpetas Forzadas para una san
Plantillas/Templates de Compatibilidad
-
+ Add TemplateAgregar Plantilla
@@ -8902,12 +8902,12 @@ Nota: Las configuraciones de Programas Forzados y Carpetas Forzadas para una san
Remover Plantilla
-
+ Template FoldersPlantillas de Carpetas
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8916,23 +8916,23 @@ Please note that this values are currently user specific and saved globally for
Por favor note que estos valores son especificos para usuario y guardados globalmente para todas las cajas.
-
-
+
+ ValueValor
-
+ AccessibilityAccesibilidad
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Para compensar la perdida de protección, por favor consulte configuración de "Soltar Permisos"en la pagina de seteo de Restricciones de grupo.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessLector de pantallas: JAWS, NVDA, Window-Eyes, Acceso a Sistema
@@ -8942,32 +8942,32 @@ Por favor note que estos valores son especificos para usuario y guardados global
Restricciones
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Aplicar solución alternativa para ElevateCreateProcess (comportamiento heredado)
-
+ Use desktop object workaround for all processesUsar comportamiento alternativo de objetos de escritorio para todos los procesos
-
+ On File RecoveryAl Recuperar Archivo
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.Estos comandos son ejecutados SIN AISLAR después de que todos los procesos en esta sandbox hayan finalizado.
-
+ Run File CheckerEjecutar Comprobador de Archivos
-
+ On Delete ContentAl Borrar Contenido
@@ -8978,133 +8978,128 @@ Por favor note que estos valores son especificos para usuario y guardados global
-
+ ProcessProceso
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Add OptionAñadir Opción
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Aquí puedes configurar opciones avanzadas por proceso para mejorar la compatibilidad y/o personalizar el comportamiento del aislamiento.
-
+ OptionOpción
-
+ DNS Request LoggingRegistro de peticiones DNS
-
+ Syscall Trace (creates a lot of output)Rastreo de Syscall (crea una gran cantidad de salida)
-
+ TemplatesPlantillas
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.La configuración siguiente habilita el uso de Sandboxie en combinación con software de accesibilidad. Por favor note que algunas medidas de seguridad de Sandboxie se pierden cuando esta configuración esta activo.
-
+ Edit ini SectionEditar sección ini
-
+ Edit iniEditar ini
-
+ CancelCancelar
-
+ SaveGuardar
diff --git a/SandboxiePlus/SandMan/sandman_fr.ts b/SandboxiePlus/SandMan/sandman_fr.ts
index 0891b35c..b3ae4639 100644
--- a/SandboxiePlus/SandMan/sandman_fr.ts
+++ b/SandboxiePlus/SandMan/sandman_fr.ts
@@ -1744,11 +1744,11 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
-
-
-
-
+
+
+
+
+ All ProgramsTous les programmes
@@ -1759,9 +1759,9 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
-
-
+
+
+ Group: %1Groupe : %1
@@ -1796,7 +1796,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
+ Template values can not be edited.Les valeurs des modèles ne peuvent pas être modifiées.
@@ -2240,82 +2240,82 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
+ AnyTous
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessAutoriser l'accès
-
+ Block using Windows Filtering PlatformBloquer à l'aide de la plateforme de filtrage Windows
-
+ Block by denying access to Network devicesBloquer en refusant l'accès aux périphériques réseaux
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowAutoriser
-
+ Block (WFP)Bloquer (WFP)
-
+ Block (NDev)Bloquer (NDev)
-
+ A non empty program name is required.Un nom de programme non vide est nécessaire.
-
+ BlockBloquer
@@ -7365,7 +7365,7 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
-
+ Protect the system from sandboxed processesProtège le système des processus du bac à sable
@@ -7538,12 +7538,12 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Restrictions d'impression
-
+ Network restrictionsRestrictions de réseau
-
+ Block network files and folders, unless specifically opened.Bloquer les fichiers et dossiers du réseau, sauf s'ils sont spécifiquement ouverts
@@ -7570,11 +7570,11 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
-
-
-
-
-
+
+
+
+
+ NameNom
@@ -7604,15 +7604,15 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveSupprimer
@@ -7699,11 +7699,11 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
-
-
-
-
-
+
+
+
+
+ Show TemplatesAfficher les modèles
@@ -7757,7 +7757,7 @@ Idéal s'il y a un grand nombre de petits fichiers, cela rendra l'arch
Ouvrir le magasin d'identifiants Windows (mode utilisateur)
-
+ Prevent change to network and firewall parameters (user mode)Empêcher les changements aux paramètres réseaux et règles du pare-feu (mode utilisateur)
@@ -7969,9 +7969,9 @@ Si des processus directeurs sont définis, tous les autres sont traités comme d
-
-
-
+
+
+ ProgramProgramme
@@ -8208,20 +8208,20 @@ Pour définir un processus, utiliser « $:programme.exe » comme chemin.
-
+ ActionAction
-
+ PortPort
-
-
+
+ IPIP
@@ -8231,7 +8231,7 @@ Pour définir un processus, utiliser « $:programme.exe » comme chemin.Protocole
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.ATTENTION : La plateforme de filtrage Windows n'est pas activée avec le pilote, par conséquent ces règles seront exécutées uniquement en mode utilisateur et ne pourront pas être imposées !!! Cela signifie que les applications malveillantes peuvent les contourner.
@@ -8264,7 +8264,7 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Autorisé pour tous »
-
+ Move DownDescendre
@@ -8285,7 +8285,7 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Autorisé pour tous »
-
+ Move UpMonter
@@ -8302,47 +8302,47 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Toujours direct » pour
Appliquer ferme les directives de...=!<programme>,... ainsi que tous les binaires situés dans le bac à sable.
-
+ File RecoveryRécupération de fichiers
-
+ Add FolderAjouter un dossier
-
+ Ignore ExtensionIgnorer une extension
-
+ Ignore FolderIgnorer un dossier
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Activer l'invite de récupération immédiate pour pouvoir récupérer les fichiers dès leur création
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Vous pouvez exclure des dossiers, des types de fichiers, ou des extensions de fichiers de la récupération immédiate.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Lorsque la fonction de récupération rapide est invoquée, les dossiers suivants sont contrôlés pour vérifier la présence de contenu dans le bac à sable.
-
+ Advanced OptionsOptions avancées
-
+ MiscellaneousDivers
@@ -8363,7 +8363,7 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Toujours direct » pour
-
+ Protect the sandbox integrity itselfProtège la propre intégrité du bac à sable
@@ -8388,7 +8388,7 @@ Pour l'accès aux fichiers, vous pouvez utiliser « Toujours direct » pour
Isolation du bac à sable
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Forcer l'utilisation de fichiers Manifest factices personnalisés (ancien comportement)
@@ -8457,8 +8457,8 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Autoriser uniquement les processus privilégiés à accéder au gestionnaire des services
-
-
+
+ CompatibilityCompatibilité
@@ -8476,7 +8476,7 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Isolation COM
-
+ Emulate sandboxed window station for all processesÉmuler une Station Windows en bac à sable pour tous les processus
@@ -8485,13 +8485,13 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
COM/RPC
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Autoriser l'utilisation d'objets de travail imbriqués (fonctionne sur Windows 8 et plus)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Désactiver l'utilisation de RpcMgmtSetComTimeout par défaut (cela peut résoudre des problèmes de compatibilité)
@@ -8569,41 +8569,41 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Ici, vous pouvez spécifier une liste de commandes qui sont exécutées chaque fois que le bac à sable est initialement rempli.
-
+ TriggersDéclencheurs
-
+ EventÉvènements
-
-
-
-
+
+
+
+ Run CommandLancer une commande
-
+ Start ServiceDémarrer un service
-
+ These events are executed each time a box is startedCes évènements sont exécutés à chaque fois qu'un bac à sable est démarré.
-
+ On Box StartAu démarrage du bac
-
-
+
+ These commands are run UNBOXED just before the box content is deletedCes commandes sont lancées EN DEHORS DU BAC juste avant que le contenu du bac soit supprimé.
@@ -8612,52 +8612,52 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
À la suppression
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Ces commandes sont exécutées lorsqu'un bac à sable est initialisé. Pour les lancer à nouveau, le contenu du bac doit être supprimé.
-
+ On Box InitÀ l'initialisation du bac
-
+ Here you can specify actions to be executed automatically on various box events.Vous pouvez spécifier ici des actions à exécuter automatiquement lors de divers évènements.
-
+ Hide ProcessesMasquage des processus
-
+ Add ProcessAjouter un processus
-
+ Hide host processes from processes running in the sandbox.Masquer les processus de l'hôte des processus s'exécutant dans le bac à sable.
-
+ Don't allow sandboxed processes to see processes running in other boxesNe pas permettre aux processus en bac à sable de voir les processus en cours d'exécution dans d'autres bacs
-
+ UsersUtilisateurs
-
+ Restrict Resource Access monitor to administrators onlyRestreindre le moniteur d'accès aux ressources aux administrateurs uniquement
-
+ Add UserAjouter un utilisateur
@@ -8666,7 +8666,7 @@ Le niveau de correspondance du processus a une priorité plus élevée que la sp
Supprimer l'utilisateur
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8675,7 +8675,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Remarque : Les paramètres Programmes forcés et Dossiers forcés d'un bac à sable ne s'appliquent pas aux comptes utilisateurs qui ne peuvent pas utiliser le bac.
-
+ TracingTraçage
@@ -8685,22 +8685,22 @@ Remarque : Les paramètres Programmes forcés et Dossiers forcés d'un bac
Tracer les appels API (nécessite que LogAPI soit installé dans le répertoire de Sandboxie)
-
+ Pipe TraceTracer les Pipes
-
+ Log all SetError's to Trace log (creates a lot of output)Enregistrer toutes les SetError dans le journal de traçage (crée beaucoup de sorties)
-
+ Log Debug Output to the Trace LogEnregistrer la sortie de débogage dans le journal de traçage
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8723,42 +8723,42 @@ au lieu de « * ».
Tracer les appels système Ntdll (crée beaucoup de sorties)
-
+ File TraceTracer les fichiers
-
+ Disable Resource Access MonitorDésactiver le moniteur d'accès aux ressources
-
+ IPC TraceTracer IPC
-
+ GUI TraceTracer l'interface graphique
-
+ Resource Access MonitorMoniteur d'accès aux ressources
-
+ Access TracingTraçage des accès
-
+ COM Class TraceTracer les classes COM
-
+ Key TraceTracer les clés
@@ -8791,102 +8791,97 @@ au lieu de « * ».
-
+ Network FirewallPare-feu réseau
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.Ces commandes s'exécutent EN DEHORS DU BAC après que tous les processus dans le bac à sable se soient arrêtés.
-
+ API call Trace (traces all SBIE hooks)Tracer les appels API (trace tous les crochets SBIE)
-
+ DebugDébogage
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!ATTENTION, ces options peuvent désactiver les garanties de sécurité de base et briser la sécurité du bac à sable !!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Ces options sont destinées à déboguer les problèmes de compatibilité, veuillez ne pas les utiliser en production.
-
+ App TemplatesModèles d'applications
@@ -8895,22 +8890,22 @@ au lieu de « * ».
Modèles de compatibilité
-
+ Filter CategoriesFiltre de catégorie :
-
+ Text FilterFiltre de texte :
-
+ Add TemplateAjouter un modèle
-
+ This list contains a large amount of sandbox compatibility enhancing templatesCette liste contient un grand nombre de modèles améliorant la compatibilité du bac à sable.
@@ -8919,17 +8914,17 @@ au lieu de « * ».
Supprimer le modèle
-
+ CategoryCatégorie
-
+ Template FoldersDossiers des modèles
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8938,23 +8933,23 @@ Please note that this values are currently user specific and saved globally for
Veuillez noter que ces valeurs sont actuellement spécifiques à l'utilisateur et enregistrées globalement pour tous les bacs.
-
-
+
+ ValueValeur
-
+ AccessibilityAccessibilité
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Pour compenser la perte de protection, veuillez consulter la page d'Abandon des droits dans le groupe de paramètres Restrictions.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessLecteurs d'écran : JAWS, NVDA, Window-Eyes, System Access
@@ -9046,40 +9041,40 @@ Veuillez noter que ces valeurs sont actuellement spécifiques à l'utilisat
Isolation d'accès
-
+ Image ProtectionProtection d'image
-
+ Issue message 1305 when a program tries to load a sandboxed dllÉmettre un message 1305 lorsqu'un programme essaye de charger une DLL dans un bac à sable
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxEmpêcher les programmes dans un bac à sable installé sur l'hôte de charger des DLL depuis le bac à sable
-
+ Dlls && ExtensionsDLL && extensions
-
+ DescriptionDescription
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Les règles d'accès aux ressources de Sandboxie discriminent souvent les binaires des programmes situés dans le bac à sable. OpenFilePath et OpenKeyPath fonctionnent uniquement pour les binaires des applications situées nativement sur l'hôte. Afin de définir une règle sans cette restriction, OpenPipePath et OpenConfPath doivent être utilisés. De même, toutes les directives Closed(File|Key|Ipc)Path qui sont définies par une négation (par exemple « ClosedFilePath=! iexplore.exe,C:Users* ») seront toujours fermées aux binaires situés dans un bac à sable. Les deux politiques de restriction peuvent être désactivées sur la page « Politiques d'accès ».
Ceci est fait pour empêcher les processus malveillants à l'intérieur du bac à sable de créer une copie renommée d'eux-mêmes et d'accéder aux ressources protégées. Un autre vecteur d'exploit est l'injection d'une bibliothèque dans un processus autorisé afin d'accéder à tout ce qu'il est autorisé d'accéder. En utilisant la Protection d'Image de l'Hôte, cela peut être empêché en bloquant les applications (installées sur l'hôte) lancées dans un bac à sable de charger des bibliothèques depuis le bac à sable lui-même.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Les fonctions de Sandboxie peuvent être améliorées en utilisant des DLL optionnels qui peuvent être chargés dans chaque processus dans un bac à sable lors de leur démarrage par SbieDll.dll. Le gestionnaire de modules dans les paramètres généraux offre quelques extensions utiles ; une fois installées, celles-ci peuvent être activées ici pour le bac à sable actuel.
@@ -9100,57 +9095,57 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Configure quels processus peuvent accéder aux objets de bureau tels que les fenêtres et similaires.
-
+ Other OptionsAutres options
-
+ Port BlockingBlocage des ports
-
+ Block common SAMBA portsBloquer les ports SAMBA habituels
-
+ Block DNS, UDP port 53Bloquer le DNS (UDP port 53)
-
+ Quick RecoveryRécupération rapide
-
+ Immediate RecoveryRécupération immédiate
-
+ Various OptionsOptions diverses
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Appliquer le palliatif ElevateCreateProcess (ancien comportement)
-
+ Use desktop object workaround for all processesUtiliser le palliatif d'objet de bureau pour tous les processus
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.Lorsque le raccourci général est utilisé 3 fois rapidement et successivement, cette exception sera ignorée.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Empêcher ce bac à sable d'être arrêté lorsque « Arrêter tous les processus » est invoqué.
@@ -9159,33 +9154,33 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Cette commande s'exécute après que tous les processus dans le bac à sable se soient arrêtés.
-
+ On Box TerminateLors de l'arrêt du bac
-
+ This command will be run before the box content will be deletedCette commande sera exécutée avant que le contenu du bac ne soit supprimé.
-
+ On File RecoveryLors de la récupération de fichiers
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedCette commande sera exécutée avant qu'un fichier ne soit récupéré et le chemin du fichier sera transmis en tant que premier argument ; si cette commande retourne autre chose que « 0 », la récupération sera bloquée.
-
+ Run File CheckerExécuter la vérification de fichiers
-
+ On Delete ContentLors de la suppression de contenu
@@ -9196,7 +9191,7 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
-
+ ProcessProcessus
@@ -9205,63 +9200,63 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
Bloquer également l'accès en lecture des processus de ce bac à sable
-
+ Add OptionAjouter une option
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Ici vous pouvez configurer des options en fonction des processus, pour améliorer la compatibilité et/ou personnaliser le comportement de mise en bac à sable.
-
+ OptionOption
-
+ DNS Request LoggingDns Request LoggingEnregistrer les requêtes DNS dans le journal
-
+ Syscall Trace (creates a lot of output)Tracer les appels système (crée beaucoup de sorties)
-
+ TemplatesModèles
-
+ Open TemplateOuvrir le modèle
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Les paramètres suivants permettent l'utilisation de Sandboxie en combinaison avec un logiciel d'accessibilité. Veuillez noter que certaines mesures de protection de Sandboxie sont nécessairement perdues lorsque ces paramètres sont en vigueur.
-
+ Edit ini SectionÉdition de la section ini
-
+ Edit iniÉditer l'ini
-
+ CancelAnnuler
-
+ SaveEnregistrer
diff --git a/SandboxiePlus/SandMan/sandman_hu.ts b/SandboxiePlus/SandMan/sandman_hu.ts
index 949552d3..a72f66a1 100644
--- a/SandboxiePlus/SandMan/sandman_hu.ts
+++ b/SandboxiePlus/SandMan/sandman_hu.ts
@@ -1611,11 +1611,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All ProgramsMinden program
@@ -1626,9 +1626,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1Csoport: %1
@@ -1663,7 +1663,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.A sablonértékek nem szerkeszthetők.
@@ -2082,82 +2082,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ AnyBármilyen
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessHozzáférés engedélyezése
-
+ Block using Windows Filtering PlatformLetiltás a Windows szűrőplatform használatával
-
+ Block by denying access to Network devicesLetiltás a hálózati eszközökhöz való hozzáférés megtagadásával
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowEngedélyezés
-
+ Block (WFP)Letiltás (WFP)
-
+ Block (NDev)Letiltás (NDev)
-
+ A non empty program name is required.
-
+ BlockLetiltás
@@ -6831,7 +6831,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Protect the system from sandboxed processesA rendszer védelme a homokozóban futó folyamatoktól
@@ -6968,12 +6968,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Nyomtatási korlátozások
-
+ Network restrictionsHálózati korlátozások
-
+ Block network files and folders, unless specifically opened.Hálózati fájlok és mappák blokkolása, hacsak nincs külön megnyitva.
@@ -6996,11 +6996,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameNév
@@ -7030,15 +7030,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveEltávolítás
@@ -7104,11 +7104,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Show TemplatesSablonok megjelenítése
@@ -7183,7 +7183,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Nyissa meg a Windows hitelesítő adatok áruházát (felhasználói mód)
-
+ Prevent change to network and firewall parameters (user mode)A hálózati és tűzfalparaméterek módosításának megakadályozása (felhasználói mód)
@@ -7394,13 +7394,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Move UpMozgatás felfelé
-
+ Move DownMozgatás lefelé
@@ -7446,134 +7446,129 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image Protection
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7810,9 +7805,9 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
-
-
-
+
+
+ ProgramProgram
@@ -7820,20 +7815,20 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
-
+ ActionMűvelet
-
+ PortPort
-
-
+
+ IPIP
@@ -7843,7 +7838,7 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
Protokoll
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.FIGYELEM: A Windows szűrőplatform nincs engedélyezve az illesztőprogrammal, ezért ezeket a szabályokat csak felhasználói módban kell alkalmazni, és nem lehet érvényesíteni !!! Ez azt jelenti, hogy a rosszindulatú alkalmazások megkerülhetik őket.
@@ -7921,57 +7916,57 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
Alkalmazza a Bezárás...=!<program>,... szabályokat a homokozóban található összes bináris fájlra is.
-
+ File RecoveryFájl helyreállítás
-
+ Quick RecoveryGyors helyreállítás
-
+ Add FolderMappa hozzáadása
-
+ Immediate RecoveryAzonnali helyreállítás
-
+ Ignore ExtensionKiterjesztés kihagyása
-
+ Ignore FolderMappa kihagyása
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Azonnali helyreállítási kérés engedélyezése, hogy a fájlokat a létrehozásuk után azonnal helyreállíthassa.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Az "Azonnali helyreállításból" kizárhat mappákat és fájltípusokat (vagy fájlkiterjesztéseket).
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. A "Gyors helyreállítás" funkció meghívása után a következő mappákat ellenőrzik a homokozós tartalom szempontjából.
-
+ Advanced OptionsFejlett beállítások
-
+ MiscellaneousEgyebek
@@ -7992,7 +7987,7 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
-
+ Protect the sandbox integrity itselfA homokozó integritásának védelme
@@ -8013,7 +8008,7 @@ A folyamat megadásához használja a '$:program.exe-t' útvonalként.
Védje meg az izolált SYSTEM folyamatokat a nem privilegizált folyamatoktól
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Egyéni dummy manifest fájlok használatának kikényszerítése (örökölt viselkedés)
@@ -8065,8 +8060,8 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
Csak a privilegizált folyamatok számára engedélyezze a szolgáltatásvezérlő menedzser (Service Control Manager) elérését
-
-
+
+ CompatibilityKompatibilitás
@@ -8076,7 +8071,7 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
Sandbox-folyamatok hozzáadása munkaobjektumokhoz (ajánlott)
-
+ Emulate sandboxed window station for all processesA homokozós ablakállomás emulálása minden folyamathoz
@@ -8110,7 +8105,7 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
A nem homokozós folyamatok memóriájának olvasásának engedélyezése (nem ajánlott)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Alapértelmezés szerint tiltsa le az "RpcMgmtSetComTimeout" használatát (ez megoldhatja a kompatibilitási problémákat)
@@ -8135,81 +8130,81 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
Az alábbi lehetőségek biztonságosan használhatók, ha nem ad rendszergazdai jogokat.
-
+ TriggersIndítók
-
+ EventEsemény
-
-
-
-
+
+
+
+ Run CommandParancs futtatása
-
+ Start ServiceSzolgáltatás indítása
-
+ These events are executed each time a box is startedEzek az események minden alkalommal végrehajtódnak, amikor egy homokozó elindul
-
+ On Box StartHomokozó indításakor
-
-
+
+ These commands are run UNBOXED just before the box content is deletedEzek a parancsok NEM IZOLÁLTAN futnak le közvetlenül a homokozó tartalmának törlése előtt
-
+ Allow use of nested job objects (works on Windows 8 and later)Beágyazott munkaobjektumok használatának engedélyezése (Windows 8 és újabb rendszeren működik)
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Ezek a parancsok csak akkor hajtódnak végre, ha egy homokozó inicializálva van. Az újrafuttatáshoz a homokozó tartalmát törölni kell.
-
+ On Box InitHomokozó inicializálásakor
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Here you can specify actions to be executed automatically on various box events.Itt adhatja meg a különféle homokozó eseményeken automatikusan végrehajtandó műveleteket.
-
+ Hide ProcessesFolyamatok elrejtése
-
+ Add ProcessFolyamat hozzáadása
-
+ Hide host processes from processes running in the sandbox.Gazdafolyamatok elrejtése a homokozóban futó folyamatok elől.
@@ -8219,48 +8214,48 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
Korlátozások
-
+ Various OptionsKülönféle lehetőségek
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Az "ElevateCreateProcess" megoldás alkalmazása (örökölt viselkedés)
-
+ Use desktop object workaround for all processes
-
+ This command will be run before the box content will be deletedEz a parancs a homokozó tartalmának törlése előtt fut le
-
+ On File RecoveryFájl helyreállításkor
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedEz a parancs a fájl helyreállítása előtt fut le, és a fájl elérési útja lesz átadva első argumentumként. Ha ez a parancs a 0-tól eltérő értéket ad vissza, a helyreállítás blokkolva lesz
-
+ Run File CheckerFájlellenőrző futtatása
-
+ On Delete ContentTartalom törlésekor
-
+ Don't allow sandboxed processes to see processes running in other boxesNe engedje, hogy a homokozós folyamatok más homokozóban futó folyamatokat lássák
@@ -8271,7 +8266,7 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
-
+ ProcessFolyamat
@@ -8280,45 +8275,45 @@ A folyamategyezési szint magasabb prioritású, mint a specifikusság, és leí
A folyamatokhoz való olvasási hozzáférés letiltása ebben a sandboxban
-
+ UsersFelhasználó
-
+ Restrict Resource Access monitor to administrators onlyAz erőforrás-hozzáférés figyelőjét csak a rendszergazdákra korlátozhatja
-
+ Add UserFelhasználó hozzáadása
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.Adjon hozzá felhasználói fiókokat és felhasználói csoportokat az alábbi listához, hogy a homokozó használatát csak azokra a fiókokra korlátozza. Ha a lista üres, akkor a homokozót minden felhasználói fiók használhatja.
-
+ Add OptionOpció hozzáadása
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Itt konfigurálhat speciális folyamatonkénti beállításokat a kompatibilitás javítása és/vagy a homokozó viselkedésének testreszabása érdekében.
-
+ OptionOpció
-
+ TracingNyomkövetés
@@ -8327,22 +8322,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
API-hívás nyomkövetése (a LogAPI-t telepíteni kell az Sbie-könyvtárba)
-
+ Pipe TracePipe nyomkövetés
-
+ Log all SetError's to Trace log (creates a lot of output)Minden SetError rögzítése a nyomkövetési naplóban (sok kimeneti adatot generál)
-
+ Log Debug Output to the Trace LogNapló hibakeresési kimenete a nyomkövetési naplóba
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8365,113 +8360,113 @@ A naplózást az ini használatával testreszabhatja, ha megadja:
Ntdll rendszerhívások nyomon követése (sok kimenetet hoz létre)
-
+ File TraceFájl nyomkövetés
-
+ Disable Resource Access MonitorErőforrás-hozzáférés figyelő letiltása
-
+ IPC TraceIPC nyomok
-
+ GUI TraceGUI nyomkövetés
-
+ Resource Access MonitorErőforrás-hozzáférés figyelő
-
+ Access TracingHozzáférés nyomon követése
-
+ COM Class TraceCOM Class nyom
-
+ Key TraceKulcskövetés
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Az elveszett védelem kompenzálásához tekintse meg a 'Drop Rights' beállítási oldalát a 'Korlátozások beállításai' csoportban.
-
+ Network FirewallHálózati tűzfal
-
+ API call Trace (traces all SBIE hooks)
-
+ DebugHibakeresés
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!FIGYELEM, ezek az opciók letilthatják az alapvető biztonsági garanciákat és megszakíthatják a homokozó biztonságát!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Ezeket az opciókat a kompatibilitási problémák hibakeresésére tervezték. Kérjük, csak tesztelési célra használja.
-
+ App TemplatesProgram sablonok
-
+ Filter CategoriesSzűrő kategóriák
-
+ Text FilterSzöveg szűrő
-
+ Add TemplateSablon hozzáadása
-
+ This list contains a large amount of sandbox compatibility enhancing templatesEz a lista nagy mennyiségű homokozó kompatibilitást javító sablont tartalmaz
-
+ CategoryKategória
-
+ Template FoldersSablon mappák
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8480,68 +8475,68 @@ Please note that this values are currently user specific and saved globally for
Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak és globálisan vannak mentve az összes homokozóhoz.
-
-
+
+ ValueÉrték
-
+ On Box Terminate
-
+ DNS Request Logging
-
+ Syscall Trace (creates a lot of output)
-
+ TemplatesSablonok
-
+ Open Template
-
+ AccessibilityHozzáférhetőség
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessKépernyőolvasók: JAWS, NVDA, Window-Eyes, System Acces
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.A következő beállítások lehetővé teszik a Sandboxie használatát akadálymentes szoftverrel kombinálva. Felhívjuk figyelmét, hogy a Sandboxie bizonyos mértékű védelme szükségszerűen elvész, amikor ezek a beállítások érvénybe lépnek.
-
+ Edit ini SectionKonfiguráció szerkesztése
-
+ Edit iniINI szerkesztése
-
+ CancelMégse
-
+ SaveMentés
diff --git a/SandboxiePlus/SandMan/sandman_it.ts b/SandboxiePlus/SandMan/sandman_it.ts
index 2983e33d..4b21cf91 100644
--- a/SandboxiePlus/SandMan/sandman_it.ts
+++ b/SandboxiePlus/SandMan/sandman_it.ts
@@ -1933,9 +1933,9 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
-
-
+
+
+ Group: %1Gruppo: %1
@@ -2133,11 +2133,11 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
-
-
-
-
+
+
+
+
+ All ProgramsTutti i programmi
@@ -2172,7 +2172,7 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
+ Template values can not be edited.I valori predefiniti non possono essere modificati.
@@ -2283,82 +2283,82 @@ Please select a folder which contains this file.
-
+ AnyQualsiasi
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessConsenti accesso
-
+ Block using Windows Filtering PlatformImposta blocco mediante la piattaforma di filtraggio di Windows
-
+ Block by denying access to Network devicesBlocca accesso ai dispositivi di rete
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowConsenti
-
+ Block (WFP)Blocca (WFP)
-
+ Block (NDev)Blocca (NDev)
-
+ A non empty program name is required.È richiesto un nome di programma non vuoto.
-
+ BlockBlocca
@@ -6905,7 +6905,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
+ Protect the system from sandboxed processesProteggi il sistema dai processi avviati nell'area virtuale
@@ -6915,7 +6915,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Restrizioni di elevazione
-
+ Block network files and folders, unless specifically opened.Blocca i file e le cartelle di rete, a meno che non siano aperti individualmente.
@@ -6925,7 +6925,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Fai credere alle applicazioni di avviarsi con privilegi elevati (esegue gli installer in modo sicuro)
-
+ Network restrictionsRestrizioni di rete
@@ -7065,11 +7065,11 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
-
-
-
-
+
+
+
+
+ NameNome
@@ -7099,15 +7099,15 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveRimuovi
@@ -7173,11 +7173,11 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
-
-
-
-
+
+
+
+
+ Show TemplatesMostra modelli
@@ -7232,7 +7232,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Apri il servizio di gestione credenziali di Windows (user mode)
-
+ Prevent change to network and firewall parameters (user mode)Blocca la modifica dei parametri di rete e firewall (user mode)
@@ -7392,9 +7392,9 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
-
-
+
+
+ ProgramProgramma
@@ -7434,47 +7434,47 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Aggiungi percorso IPC
-
+ File RecoveryRecupero file
-
+ Add FolderAggiungi cartella
-
+ Ignore ExtensionIgnora estensione
-
+ Ignore FolderIgnora cartella
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Attiva notifica di Recupero immediato dei file, non appena questi vengono creati.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.È possibile escludere estensioni di file e cartelle dal Recupero immediato.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Una volta richiamata la funzione di Recupero veloce, verrà analizzato il contenuto delle seguenti cartelle nell'area virtuale.
-
+ Advanced OptionsOpzioni avanzate
-
+ MiscellaneousOpzioni varie
@@ -7485,7 +7485,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
+ Protect the sandbox integrity itselfProteggi l'integrità dell'area virtuale
@@ -7495,13 +7495,13 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Non avviare servizi nell'area virtuale tramite token di sistema (raccomandato)
-
-
+
+ CompatibilityCompatibilità
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Forza l'utilizzo dei file manifest fittizi (legacy)
@@ -7527,7 +7527,7 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Avvisa l'utente durante la copia dei file
-
+ Emulate sandboxed window station for all processesEmula window station per tutti i processi nell'area virtuale
@@ -7656,13 +7656,13 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
-
+ Move UpSposta in alto
-
+ Move DownSposta in basso
@@ -7692,47 +7692,47 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
Isolamento degli accessi
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image ProtectionProtezione immagine
-
+ Issue message 1305 when a program tries to load a sandboxed dllMostra messaggio 1305 quando un programma tenta di caricare un file DLL nell'area virtuale
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxImpedisci ai programmi in esecuzione nell'area virtuale (installati sul sistema host) di caricare file DLL
@@ -7743,24 +7743,24 @@ Se si è già un Great Supporter su Patreon, Sandboxie può verificare la presen
La selezione parziale impedisce la rimozione dell'area virtuale, ma non la cancellazione del contenuto.
-
+ Dlls && ExtensionsDLL ed estensioni
-
+ DescriptionDescrizione
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Le regole di accesso alle risorse di Sandboxie spesso discriminano i programmi eseguibili all'interno dell'area virtuale. OpenFilePath e OpenKeyPath funzionano solo per gli eseguibili delle applicazioni situati sull'host in modo nativo. Per definire una regola senza questa restrizione, è necessario utilizzare OpenPipePath o OpenConfPath. Allo stesso modo, tutte le regole Closed(File|Key|Ipc)Path che sono definite per negazione, ad esempio ‘ClosedFilePath=!iexplore.exe,C:\Users*’ saranno sempre chiuse per gli eseguibili situati all'interno dell'area virtuale. Entrambi i criteri di restrizione possono essere disattivati dalla pagina “Criteri di accesso”.
In questo modo si impedisce che i processi dannosi all'interno dell'area virtuale creino una copia rinominata di se stessi e accedano alle risorse protette. Un altro vettore di exploit è l'iniezione di una libreria DLL in un processo autorizzato per ottenere l'accesso a tutto ciò a cui è consentito accedere. Utilizzando la protezione dell'immagine host, questo può essere evitato impedendo alle applicazioni (installate sull'host) in esecuzione nell'area virtuale di caricare le librerie DLL dalla stessa area virtuale.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Segnalare eventuali errori di inglese direttamente all'autore di Sandboxie Plus
@@ -7944,7 +7944,7 @@ Per specificare un processo, utilizza '$:program.exe' come percorso.
-
+ ActionAzione
@@ -7977,14 +7977,14 @@ Per specificare un processo, utilizza '$:program.exe' come percorso.
-
+ PortPorta
-
-
+
+ IPIP
@@ -7994,92 +7994,87 @@ Per specificare un processo, utilizza '$:program.exe' come percorso.
Protocollo
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.ATTENZIONE: La piattaforma di filtraggio di Windows non è attiva come impostazione predefinita. Qualora non venisse attivata manualmente, queste regole verranno applicate solo in user mode e le applicazioni dannose potrebbero bypassarle.
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Quick RecoveryRecupero veloce
-
+ Immediate RecoveryRecupero immediato
-
+ Various OptionsOpzioni varie
-
+ Allow use of nested job objects (works on Windows 8 and later)Consenti l'uso dei processi nidificati (per Windows 8 e versioni successive)
@@ -8157,7 +8152,7 @@ Il livello di corrispondenza del processo ha una priorità più alta della speci
Proteggi i processi di sistema nell'area virtuale dai processi senza privilegi
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Disattiva l'utilizzo di RpcMgmtSetComTimeout per impostazione predefinita (potrebbe risolvere problemi di compatibilità)
@@ -8191,47 +8186,47 @@ Il livello di corrispondenza del processo ha una priorità più alta della speci
Le opzioni sottostanti possono essere usate senza rischi quando non si concedono privilegi amministrativi.
-
+ Hide ProcessesNascondi processi
-
+ Add ProcessAggiungi processo
-
+ Hide host processes from processes running in the sandbox.Nascondi i processi di host dai processi in esecuzione nell'area virtuale.
-
+ Don't allow sandboxed processes to see processes running in other boxesNon consentire ai processi dell'area virtuale di vedere i processi avviati in altre aree virtuali
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ UsersUtenti
-
+ Restrict Resource Access monitor to administrators onlyLimita il log di accesso risorse ai soli amministratori
-
+ Add UserAggiungi utente
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8240,32 +8235,32 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: le impostazioni dei programmi e delle cartelle forzate nell'area virtuale non si applicano agli account utente non abilitati all'utilizzo dell'area virtuale.
-
+ TracingTracing
-
+ API call Trace (traces all SBIE hooks)
-
+ COM Class TraceTraccia classe COM
-
+ IPC TraceTraccia IPC
-
+ Key TraceTraccia chiavi di registro
-
+ GUI TraceTraccia GUI
@@ -8274,28 +8269,28 @@ Nota: le impostazioni dei programmi e delle cartelle forzate nell'area virt
Traccia chiamata API (richiede l'installazione di LogAPI nella cartella di Sandboxie Plus)
-
+ Log all SetError's to Trace log (creates a lot of output)Sostituibile con "log di traccia", tuttavia "log di accesso" mi sembra più adatto per i non espertiRegistra tutti i SetError nel log di accesso (genera molto output)
-
+ File TraceTraccia file
-
+ Pipe TraceTraccia pipe
-
+ Access TracingLog di accesso
-
+ Log Debug Output to the Trace LogSostituibile con "log di traccia", tuttavia "log di accesso" mi sembra più adatto per i non espertiRegistra output di debug nel log di accesso
@@ -8336,63 +8331,63 @@ Nota: le impostazioni dei programmi e delle cartelle forzate nell'area virt
Mostra messaggio 2111 quando è negato l'accesso a un processo
-
+ TriggersAttivazioni
-
+ EventEvento
-
-
-
-
+
+
+
+ Run CommandAvvia comando
-
+ Start ServiceAvvia servizio
-
+ These events are executed each time a box is startedQuesti eventi vengono eseguiti a ogni avvio di un'area virtuale
-
+ On Box StartQui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaAll'avvio<br />dell'area virtuale
-
-
+
+ These commands are run UNBOXED just before the box content is deletedQuesti comandi vengono eseguiti FUORI dall'area virtuale poco prima dell'eliminazione del contenuto
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Questi comandi vengono eseguiti solamente all'inizializzazione di un'area virtuale. Per eseguirli nuovamente, il contenuto dell'area virtuale dovrà essere rimosso.
-
+ On Box InitQui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaAll'inizializzazione<br />dell'area virtuale
-
+ Here you can specify actions to be executed automatically on various box events.È possibile specificare una lista di azioni che verranno eseguite automaticamente in base agli eventi dell'area virtuale.
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8414,73 +8409,73 @@ Queste opzioni impostano la maschera degli eventi a "*" - tutti gli ev
Traccia chiamata di sistema Ntdll (genera molto output)
-
+ Disable Resource Access MonitorDisattiva monitor di accesso risorse per quest'area virtuale
-
+ Resource Access MonitorMonitor accesso risorse
-
+ Network FirewallFirewall di rete
-
+ DebugDebug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!ATTENZIONE! Queste opzioni possono disattivare le misure di sicurezza e compromettere la sicurezza dell'area virtuale!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Queste opzioni sono destinate al debug dei problemi di compatibilità, si prega di utilizzarle solo per scopi di test.
-
+ App TemplatesModelli applicazioni
-
+ Filter CategoriesFiltra categorie
-
+ Text FilterCerca
-
+ Add TemplateAggiungi modello
-
+ CategoryCategoria
-
+ This list contains a large amount of sandbox compatibility enhancing templatesQuesto elenco contiene un gran numero di modelli di compatibilità software
-
+ Template FoldersPercorsi modelli
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8489,23 +8484,23 @@ Please note that this values are currently user specific and saved globally for
I seguenti valori sono specifici per l'utente e salvati a livello globale per tutte le aree virtuali.
-
-
+
+ ValueValore
-
+ AccessibilityAccessibilità
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Per compensare alla disabilitazione delle misure di protezione, consultare la pagina Limitazione dei diritti, nel gruppo Restrizioni.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessScreen reader: JAWS, NVDA, Window-Eyes, System Access
@@ -8515,37 +8510,37 @@ I seguenti valori sono specifici per l'utente e salvati a livello globale p
Restrizioni
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Applica il workaround ElevateCreateProcess (legacy)
-
+ Use desktop object workaround for all processesUsa il workaround dell'oggetto desktop per tutti i processi
-
+ This command will be run before the box content will be deletedQuesto comando verrà eseguito prima che il contenuto dell'area virtuale venga eliminato
-
+ On File RecoveryAl recupero dei file
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedQuesto comando verrà eseguito prima del recupero di un file e il percorso del file passato come primo argomento. Se questo comando restituisce qualcosa di diverso da 0, il recupero viene bloccato
-
+ Run File CheckerAvvia controllo dei file
-
+ On Delete ContentAlla rimozione del<br />contenuto
@@ -8556,7 +8551,7 @@ I seguenti valori sono specifici per l'utente e salvati a livello globale p
-
+ ProcessProcesso
@@ -8565,69 +8560,69 @@ I seguenti valori sono specifici per l'utente e salvati a livello globale p
Blocca anche l'accesso in lettura ai processi in questa area virtuale
-
+ Add OptionAggiungi opzione
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Qui è possibile configurare opzioni avanzate per processo al fine di migliorare la compatibilità e/o personalizzare il comportamento dell'area virtuale.
-
+ OptionOpzione
-
+ On Box Terminate
-
+ DNS Request Logging
-
+ Syscall Trace (creates a lot of output)
-
+ TemplatesModelli
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Le seguenti impostazioni consentono di usare Sandboxie in combinazione con i programmi per l'accesso facilitato. Tuttavia, alcune misure di protezione di Sandboxie vengono disabilitate quando queste impostazioni sono attive.
-
+ Edit ini SectionQui ho forzato di proposito un ritorno a capoModifica configurazione
area virtuale
-
+ Edit iniModifica Sandboxie.ini
-
+ CancelAnnulla
-
+ SaveSalva
diff --git a/SandboxiePlus/SandMan/sandman_ja.ts b/SandboxiePlus/SandMan/sandman_ja.ts
index 03c423f1..c2a31433 100644
--- a/SandboxiePlus/SandMan/sandman_ja.ts
+++ b/SandboxiePlus/SandMan/sandman_ja.ts
@@ -1405,9 +1405,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1
@@ -1419,11 +1419,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All Programs
@@ -1609,7 +1609,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.
@@ -1749,8 +1749,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+ Allow
@@ -2019,75 +2019,75 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Any
-
+ TCP
-
+ UDP
-
+ ICMP
-
+ Allow access
-
+ Block using Windows Filtering Platform
-
+ Block by denying access to Network devices
-
+ Block (WFP)
-
+ Block (NDev)
-
+ A non empty program name is required.
-
+ Block
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
@@ -6661,11 +6661,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
+
+
+
+
+ Show Templates
@@ -6673,7 +6673,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Action
@@ -6685,9 +6685,9 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
+
+
+ Program
@@ -6737,7 +6737,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Prevent change to network and firewall parameters (user mode)
@@ -6757,7 +6757,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Block network files and folders, unless specifically opened.
@@ -6781,7 +6781,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Protect the system from sandboxed processes
@@ -6796,7 +6796,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Network restrictions
@@ -6821,15 +6821,15 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Remove
@@ -6847,11 +6847,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
+
+
+
+
+ Name名前
@@ -6862,13 +6862,13 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Move Up上に移動
-
+ Move Down下に移動
@@ -6994,7 +6994,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Protect the sandbox integrity itself
@@ -7036,7 +7036,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Process
@@ -7501,7 +7501,7 @@ The process match level has a higher priority than the specificity and describes
-
+ Network Firewall
@@ -7537,14 +7537,14 @@ The process match level has a higher priority than the specificity and describes
-
+ Port
-
-
+
+ IP
@@ -7554,340 +7554,335 @@ The process match level has a higher priority than the specificity and describes
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ File Recovery
-
+ Quick Recovery
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content.
-
+ Add Folderフォルダを追加
-
+ Immediate Recovery直接リカバリ
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.
-
+ Ignore Extension
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.
-
+ Ignore Folder
-
+ Various Options
-
-
+
+ Compatibility
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)
-
+ Emulate sandboxed window station for all processes
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)
-
+ Force usage of custom dummy Manifest files (legacy behaviour)
-
+ Use desktop object workaround for all processes
-
+ Allow use of nested job objects (works on Windows 8 and later)
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Dlls && Extensions
-
+ Image Protection
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.
-
+ Advanced Options
-
+ Miscellaneous
-
+ Add Option
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.
-
+ Option
-
-
+
+ Value
-
+ Triggers
-
+ On Box Terminate
-
+ This command will be run before the box content will be deleted
-
-
-
-
+
+
+
+ Run Command
-
+ Event
-
-
+
+ These commands are run UNBOXED just before the box content is deleted
-
+ On File Recovery
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blocked
-
+ Run File Checker
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.
-
+ On Box Init
-
+ Here you can specify actions to be executed automatically on various box events.
-
+ These events are executed each time a box is started
-
+ On Box Start
-
+ Start Service
-
+ On Delete Content
@@ -7914,94 +7909,94 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
-
+ Hide Processes
-
+ Add Process
-
+ Don't allow sandboxed processes to see processes running in other boxes
-
+ Hide host processes from processes running in the sandbox.
-
+ Users
-
+ Restrict Resource Access monitor to administrators only
-
+ Add User
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
-
+ Tracing
-
+ API call Trace (traces all SBIE hooks)
-
+ Key Trace
-
+ DNS Request Logging
-
+ GUI Trace
-
+ Log Debug Output to the Trace Log
-
+ Log all SetError's to Trace log (creates a lot of output)
-
+ Access Tracing
-
+ Syscall Trace (creates a lot of output)
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8013,144 +8008,144 @@ instead of "*".
-
+ Resource Access Monitor
-
+ COM Class Trace
-
+ Pipe Trace
-
+ File Trace
-
+ Disable Resource Access Monitor
-
+ IPC Trace
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Debug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use.
-
+ App Templatesアプリテンプレート
-
+ Templates
-
+ This list contains a large amount of sandbox compatibility enhancing templates
-
+ Text Filter
-
+ Add Template
-
+ Filter Categories
-
+ Category
-
+ Open Template
-
+ Template Folders
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
-
+ Accessibility
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System Access
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.
-
+ Edit ini Sectionini 編集セクション
-
+ Edit iniini を編集
-
+ Cancelキャンセル
-
+ Save保存
diff --git a/SandboxiePlus/SandMan/sandman_ko.ts b/SandboxiePlus/SandMan/sandman_ko.ts
index cdf826de..f2be2c34 100644
--- a/SandboxiePlus/SandMan/sandman_ko.ts
+++ b/SandboxiePlus/SandMan/sandman_ko.ts
@@ -1746,11 +1746,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All Programs모든 프로그램
@@ -1761,9 +1761,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1그룹: %1
@@ -1798,7 +1798,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.템플릿 값은 편집할 수 없습니다.
@@ -2221,82 +2221,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Any모두
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow access액세스 허용
-
+ Block using Windows Filtering PlatformWindows 필터링 플랫폼을 사용하여 차단
-
+ Block by denying access to Network devices네트워크 장치에 대한 액세스를 거부하여 차단
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ Allow허용
-
+ Block (WFP)차단 (WFP)
-
+ Block (NDev)차단 (NDev)
-
+ A non empty program name is required.비어 있지 않은 프로그램 이름이 필요합니다.
-
+ Block차단
@@ -7168,7 +7168,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Protect the system from sandboxed processes샌드박스 프로세스로부터 시스템 보호
@@ -7178,13 +7178,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Move Up위로 이동
-
+ Move Down아래로 이동
@@ -7329,12 +7329,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
인쇄 제한
-
+ Network restrictions네트워크 제한
-
+ Block network files and folders, unless specifically opened.특별히 열지 않는 한 네트워크 파일 및 폴더를 차단합니다.
@@ -7357,11 +7357,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Name이름
@@ -7391,15 +7391,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Remove제거
@@ -7465,11 +7465,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Show Templates템플릿 표시
@@ -7519,7 +7519,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Windows 자격 증명 저장소 열기 (사용자 모드)
-
+ Prevent change to network and firewall parameters (user mode)네트워크 및 방화벽 매개 변수 (사용자 모드) 변경 방지
@@ -7707,9 +7707,9 @@ If leader processes are defined, all others are treated as lingering processes.<
-
-
-
+
+
+ Program프로그램
@@ -7717,20 +7717,20 @@ If leader processes are defined, all others are treated as lingering processes.<
-
+ Action동작
-
+ Port포트
-
-
+
+ IPIP
@@ -7740,7 +7740,7 @@ If leader processes are defined, all others are treated as lingering processes.<
프로토콜
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.주의: Windows 필터링 플랫폼이 드라이버에서 사용할 수 없으므로 이 규칙은 사용자 모드에서만 적용되며 강제 적용할 수 없습니다!!! 즉, 악성 프로그램이 이를 무시할 수 있습니다.
@@ -7791,47 +7791,47 @@ You can use 'Open for All' instead to make it apply to all programs, o
COM 개체 추가
-
+ File Recovery파일 복구
-
+ Add Folder폴더 추가
-
+ Ignore Extension확장자 무시
-
+ Ignore Folder폴더 무시
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.파일이 생성되는 즉시 복구할 수 있도록 즉시 복구 프롬프트를 실행합니다.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.즉시 복구에서 폴더 및 파일 유형 (또는 파일 확장자)을 제외할 수 있습니다.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. 빠른 복구 기능이 호출되면 샌드박스 내용에 대해 다음 폴더가 확인됩니다.
-
+ Advanced Options고급 옵션
-
+ Miscellaneous기타
@@ -7852,7 +7852,7 @@ You can use 'Open for All' instead to make it apply to all programs, o
-
+ Protect the sandbox integrity itself샌드박스 무결성 자체 보호
@@ -7877,7 +7877,7 @@ You can use 'Open for All' instead to make it apply to all programs, o
샌드박스 격리
-
+ Force usage of custom dummy Manifest files (legacy behaviour)사용자 지정 더미 매니페스트 파일 강제 사용 (레거시 동작)
@@ -7941,8 +7941,8 @@ The process match level has a higher priority than the specificity and describes
권한 있는 프로세스만 서비스 제어 관리자에 액세스할 수 있도록 허용
-
-
+
+ Compatibility호환성
@@ -7956,12 +7956,12 @@ The process match level has a higher priority than the specificity and describes
작업 개체에 샌드박스 프로세스 추가 (권장)
-
+ Emulate sandboxed window station for all processes모든 프로세스에 대해 샌드박스 창 스테이션 에뮬레이트
-
+ Allow use of nested job objects (works on Windows 8 and later)중첩된 작업 개체 사용 허용 (Windows 8 이상에서 작동)
@@ -8031,7 +8031,7 @@ The process match level has a higher priority than the specificity and describes
COM/RPC
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)기본적으로 RpcMgmtSetComTimeout 사용 안 함 (호환성 문제가 해결될 수 있음)
@@ -8060,41 +8060,41 @@ The process match level has a higher priority than the specificity and describes
액세스 격리
-
+ Triggers트리거
-
+ Event이벤트
-
-
-
-
+
+
+
+ Run Command명령 실행
-
+ Start Service서비스 시작
-
+ These events are executed each time a box is started이 이벤트는 박스가 시작될 때마다 실행됩니다
-
+ On Box Start박스 시작 시
-
-
+
+ These commands are run UNBOXED just before the box content is deleted이 명령은 박스 내용이 삭제되기 직전에 UNBOXED로 실행됩니다
@@ -8103,32 +8103,32 @@ The process match level has a higher priority than the specificity and describes
박스 삭제 시
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.이러한 명령은 박스가 초기화될 때만 실행됩니다. 다시 실행하려면 박스 내용을 삭제해야 합니다.
-
+ On Box Init박스 초기화 시
-
+ Here you can specify actions to be executed automatically on various box events.여기서 다양한 박스 이벤트에 대해 자동으로 실행할 동작을 지정할 수 있습니다.
-
+ Hide Processes프로세스 숨기기
-
+ Add Process프로세스 추가
-
+ Hide host processes from processes running in the sandbox.샌드박스에서 실행 중인 프로세스에서 호스트 프로세스를 숨깁니다.
@@ -8177,40 +8177,40 @@ The process match level has a higher priority than the specificity and describes
액세스 격리
-
+ Image Protection이미지 보호
-
+ Issue message 1305 when a program tries to load a sandboxed dll프로그램이 샌드박스된 dll을 로드하려고 할 때 1305 메시지 발생
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox호스트에 설치된 샌드박스 프로그램이 샌드박스에서 DLL을 로드하지 못하도록 방지
-
+ Dlls && ExtensionsDll 및 확장자
-
+ Description설명
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.샌드박스의 리소스 액세스 규칙은 샌드박스 내부에 있는 프로그램 이진 파일을 차별하는 경우가 많습니다. OpenFilePath 및 OpenKeyPath는 호스트에 기본적으로 있는 응용 프로그램 이진 파일에만 작동합니다. 이 제한이 없는 규칙을 정의하려면 OpenPipePath 또는 OpenConfPath를 사용해야 합니다. 마찬가지로 모두 닫힘 (파일|키|Ipc)예를 들어 ‘ClosedFilePath=! iexplore.exe,C:Users*'는 샌드박스 내에 있는 이진 파일의 경우 항상 닫혀 있습니다. 두 제한 정책 모두 "액세스 정책" 페이지에서 사용 불가능으로 설정할 수 있습니다.
이 작업은 샌드박스 내부의 악성 프로세스가 자신의 이름이 변경된 복사본을 생성하여 보호된 리소스에 액세스하는 것을 방지하기 위해 수행됩니다. 또 다른 공격 벡터는 라이브러리가 액세스할 수 있는 모든 항목에 액세스하기 위해 승인된 프로세스에 라이브러리를 주입하는 것입니다. 호스트 이미지 보호를 사용하면 샌드박스 내부에서 실행 중인 응용 프로그램 (호스트에 설치)이 샌드박스 자체에서 라이브러리를 로드하지 못하도록 차단하여 이러한 문제를 방지할 수 있습니다.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Sandboxies 기능은 SbieDll.dll에 의해 시작할 때 각 샌드박스 프로세스에 로드될 수 있는 옵션 DLL을 사용하여 향상될 수 있습니다. 전역 설정의 애드온 관리자는 몇 가지 유용한 확장 기능을 제공합니다. 일단 설치되면 현재 박스에 대해 활성화할 수 있습니다.
@@ -8498,57 +8498,57 @@ To specify a process use '$:program.exe' as path.
네트워크 옵션
-
+ Other Options기타 옵션
-
+ Port Blocking포트 차단
-
+ Block common SAMBA ports공통 SAMBA 포트 차단
-
+ Block DNS, UDP port 53DNS, UDP 포트 53 차단
-
+ Quick Recovery빠른 복구
-
+ Immediate Recovery즉시 복구
-
+ Various Options다양한 옵션
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)ElevateCreateProcess 해결 방법 적용 (레거시 동작)
-
+ Use desktop object workaround for all processes모든 프로세스에 대해 데스크톱 개체 해결 방법 사용
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.전역 단축키를 짧게 3번 누르면 이 예외가 무시됩니다.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked."모든 프로세스 종료"가 호출될 때 이 샌드박스가 종료되지 않도록 제외합니다.
@@ -8557,38 +8557,38 @@ To specify a process use '$:program.exe' as path.
이 명령은 샌드박스의 모든 프로세스가 완료된 후에 실행됩니다.
-
+ On Box Terminate박스 종료 시
-
+ This command will be run before the box content will be deleted박스 내용이 삭제되기 전에 이 명령이 실행됩니다
-
+ On File Recovery파일 복구 시
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked이 명령은 파일을 복구하기 전에 실행되며 파일 경로가 첫 번째 인수로 전달됩니다. 이 명령이 0이 아닌 다른 것을 반환하는 경우 복구가 차단됩니다
-
+ Run File Checker파일 검사 실행
-
+ On Delete Content콘텐츠 삭제 시
-
+ Don't allow sandboxed processes to see processes running in other boxes샌드박스 프로세스에서 다른 박스에서 실행 중인 프로세스 보기 허용 안 함
@@ -8599,7 +8599,7 @@ To specify a process use '$:program.exe' as path.
-
+ Process프로세스
@@ -8608,22 +8608,22 @@ To specify a process use '$:program.exe' as path.
이 샌드박스의 프로세스에 대한 읽기 액세스도 차단
-
+ Users사용자
-
+ Restrict Resource Access monitor to administrators only리소스 액세스 모니터를 관리자로만 제한
-
+ Add User사용자 추가
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8632,23 +8632,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
참고: 샌드박스에 대한 강제 프로그램 및 강제 폴더 설정은 샌드박스를 사용할 수 없는 사용자 계정에는 적용되지 않습니다.
-
+ Add Option옵션 추가
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.여기서 호환성 향상 및/또는 샌드박스 동작을 사용자 정의하도록 고급 프로세스별 옵션을 구성할 수 있습니다.
-
+ Option옵션
-
+ Tracing추적
@@ -8658,22 +8658,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
API 호출 추적 (Sbie 디렉터리에 LogAPI를 설치해야 함)
-
+ Pipe Trace파이프 추적
-
+ Log all SetError's to Trace log (creates a lot of output)모든 SetError를 추적 로그에 기록 (많은 출력을 생성)
-
+ Log Debug Output to the Trace Log추적 로그에 디버그 출력 기록
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8696,78 +8696,78 @@ instead of "*".Ntdll syscall 추적 (많은 출력을 생성합니다)
-
+ File Trace파일 추적
-
+ Disable Resource Access Monitor리소스 액세스 모니터 사용 안 함
-
+ IPC TraceIPC 추적
-
+ GUI TraceGUI 추적
-
+ Resource Access Monitor리소스 액세스 모니터
-
+ Access Tracing액세스 추적
-
+ COM Class TraceCOM 클래스 추적
-
+ Key Trace키 추적
-
+ Network Firewall네트워크 방화벽
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.이러한 명령은 샌드박스의 모든 프로세스가 완료된 후 언박스 상태로 실행됩니다.
-
+ API call Trace (traces all SBIE hooks)API 호출 추적 (모든 SBIE 후크 추적)
-
+ Debug디버그
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!경고, 이러한 옵션은 핵심 보안 보장을 비활성화하고 샌드박스 보안을 파괴할 수 있습니다!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. 이러한 옵션은 호환성 문제를 디버깅하기 위한 것이므로 프로덕션에서 사용하지 마십시오.
-
+ App Templates앱 템플릿
@@ -8776,22 +8776,22 @@ instead of "*".
템플릿 호환성
-
+ Filter Categories필터 범주
-
+ Text Filter텍스트 필터
-
+ Add Template템플릿 추가
-
+ This list contains a large amount of sandbox compatibility enhancing templates이 목록에는 많은 양의 샌드박스 호환성 향상 템플릿이 포함되어 있습니다
@@ -8800,17 +8800,17 @@ instead of "*".
템플릿 제거
-
+ Category범주
-
+ Template Folders템플릿 폴더
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8819,134 +8819,129 @@ Please note that this values are currently user specific and saved globally for
이 값은 현재 사용자마다 다르며 모든 박스에 대해 전역으로 저장됩니다.
-
-
+
+ Value값
-
+ Accessibility접근성
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.손실된 보호를 보상하려면 제한 설정 그룹의 삭제 권한 설정 페이지를 참조하십시오.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System Access화면 판독기: JAWS, NVDA, Window-Eyes, 시스템 액세스
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ DNS Request LoggingDns Request LoggingDNS 요청 로깅
-
+ Syscall Trace (creates a lot of output)Syscall 추적 (출력이 많이 생성됨)
-
+ Templates템플릿
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.다음 설정은 내게 필요한 옵션 소프트웨어와 함께 Sandboxie를 사용할 수 있도록 합니다. 이러한 설정이 적용되면 일부 Sandboxie 보호 기능이 손실됩니다.
-
+ Edit ini Section이 섹션 편집
-
+ Edit iniini 편집
-
+ Cancel취소
-
+ Save저장
diff --git a/SandboxiePlus/SandMan/sandman_nl.ts b/SandboxiePlus/SandMan/sandman_nl.ts
index 14fde007..a3475a46 100644
--- a/SandboxiePlus/SandMan/sandman_nl.ts
+++ b/SandboxiePlus/SandMan/sandman_nl.ts
@@ -1638,11 +1638,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All ProgramsAlle programma's
@@ -1653,9 +1653,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1Groep: %1
@@ -1690,7 +1690,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.Sjabloonwaarden kunnen niet worden bewerkt.
@@ -2109,82 +2109,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ AnyElke
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessToegang toestaan
-
+ Block using Windows Filtering PlatformBlokkeren met Windows Filtering Platform
-
+ Block by denying access to Network devicesBlokkeren door toegang tot netwerkapparaten te weigeren
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowToestaan
-
+ Block (WFP)Blokkeren (WFP)
-
+ Block (NDev)Blokkeren (NDev)
-
+ A non empty program name is required.
-
+ BlockBlokkeren
@@ -6975,7 +6975,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Protect the system from sandboxed processesHet systeem beschermen tegen gesandboxte processen
@@ -7120,12 +7120,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Afdrukbeperkingen
-
+ Network restrictionsNetwerkbeperkingen
-
+ Block network files and folders, unless specifically opened.Netwerkbestanden en -mappen blokkeren, tenzij ze specifiek worden geopend.
@@ -7148,11 +7148,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameNaam
@@ -7182,15 +7182,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveVerwijderen
@@ -7265,11 +7265,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Show TemplatesSjablonen weergeven
@@ -7323,7 +7323,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Windows Credentials Store openen (gebruikersmodus)
-
+ Prevent change to network and firewall parameters (user mode)Wijziging aan netwerk- en firewall-parameters voorkomen (gebruikersmodus)
@@ -7526,13 +7526,13 @@ Als leidende processen gedefinieerd zijn, worden alle andere als achterblijvende
-
+ Move UpOmhoog verplaatsen
-
+ Move DownOmlaag verplaatsen
@@ -7603,49 +7603,49 @@ Als leidende processen gedefinieerd zijn, worden alle andere als achterblijvende
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image Protection
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7879,9 +7879,9 @@ To specify a process use '$:program.exe' as path.
-
-
-
+
+
+ ProgramProgramma
@@ -7889,20 +7889,20 @@ To specify a process use '$:program.exe' as path.
-
+ ActionActie
-
+ PortPoort
-
-
+
+ IPIP
@@ -7912,7 +7912,7 @@ To specify a process use '$:program.exe' as path.
Protocol
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.WAARSCHUWING: Windows Filtering Platform is niet ingeschakeld met de driver. Daardoor zullen deze regels alleen toegepast worden in gebruikersmodus en kunnen ze niet geforceerd worden! Dit betekent dat kwaadaardige toepassingen ze kunnen omzeilen.
@@ -7959,57 +7959,57 @@ U kunt in plaats daarvan 'open voor iedereen' gebruiken om het op alle
COM-object toevoegen
-
+ File RecoveryBestandsherstel
-
+ Quick Recovery
-
+ Add FolderMap toevoegen
-
+ Immediate Recovery
-
+ Ignore ExtensionExtensie negeren
-
+ Ignore FolderMap negeren
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Inschakelen dat onmiddellijk herstel bestanden kan herstellen van zodra ze aangemaakt worden.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.U kunt mappen en bestandstypes (of bestandextensies) uitsluiten van onmiddellijk herstel.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Wanneer de snel-herstel-functie ingeroepen wordt, worden de volgende mappen gecontroleerd op gesandboxte inhoud.
-
+ Advanced OptionsGeavanceerde opties
-
+ MiscellaneousDiverse
@@ -8030,7 +8030,7 @@ U kunt in plaats daarvan 'open voor iedereen' gebruiken om het op alle
-
+ Protect the sandbox integrity itselfIntegriteit van de sandbox zelf beschermen
@@ -8055,7 +8055,7 @@ U kunt in plaats daarvan 'open voor iedereen' gebruiken om het op alle
Sandbox-isolatie
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Gebruik van aangepaste dummy-manifest-bestanden forceren (oud gedrag)
@@ -8119,8 +8119,8 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Alleen processen met rechten toegang geven tot de Service Control Manager
-
-
+
+ CompatibilityCompatibiliteit
@@ -8134,12 +8134,12 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Gesandboxte processen aan job-objecten toevoegen (aanbevolen)
-
+ Emulate sandboxed window station for all processesGesandboxt venster station emuleren voor alle processen
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Gebruik van geneste job-objecten toestaan (experimenteel, wekt op Windows 8 en later)
@@ -8206,7 +8206,7 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
COM/RPC
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Het gebruik van RpcMgmtSetComTimeout standaard uitschakelen (dit kan compatibiliteitsproblemen oplossen)
@@ -8235,41 +8235,41 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Toegangsisolatie
-
+ TriggersTriggers
-
+ EventGebeurtenis
-
-
-
-
+
+
+
+ Run CommandOpdracht uitvoeren
-
+ Start ServiceService starten
-
+ These events are executed each time a box is startedDeze gebeurtenissen worden uitgevoerd telkens wanneer een box wordt gestart
-
+ On Box StartBij starten van box
-
-
+
+ These commands are run UNBOXED just before the box content is deletedDeze opdrachten worden NIET-GEBOXT uitgevoerd vlak voordat de inhoud van de box verwijderd wordt
@@ -8278,52 +8278,52 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Bij verwijderen van box
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Deze opdrachten worden alleen uitgevoerd wanneer een box geïnitialiseerd wordt. Om ze opnieuw te laten uitvoeren, moet de inhoud van de box verwijderd worden.
-
+ On Box InitBij initialisatie van de box
-
+ Here you can specify actions to be executed automatically on various box events.Hier kunt u aangeven welke acties automatisch moeten worden uitgevoerd bij diverse boxgebeurtenissen.
-
+ Hide ProcessesProcessen verbergen
-
+ Add ProcessProcessen toevoegen
-
+ Hide host processes from processes running in the sandbox.Host-processen verbergen van processen die in de sandbox worden uitgevoerd.
-
+ Don't allow sandboxed processes to see processes running in other boxesGesandboxte processen niet toestaan om processen te zien die in andere boxen worden uitgevoerd
-
+ UsersGebruikers
-
+ Restrict Resource Access monitor to administrators onlyBrontoegang-monitor beperken tot alleen administrators
-
+ Add UserGebruiker toevoegen
@@ -8332,7 +8332,7 @@ Het proces-overeenstemmingsniveau heeft een hogere prioriteit dan de specificite
Gebruiker verwijderen
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8341,23 +8341,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Opmerking: Instellingen voor geforceerde programma's en geforceerde mappen voor een zandbak zijn niet van toepassing op gebruikersaccounts die de zandbak niet kunnen gebruiken.
-
+ Add Option
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.
-
+ Option
-
+ TracingTraceren
@@ -8367,22 +8367,22 @@ Opmerking: Instellingen voor geforceerde programma's en geforceerde mappen
API call trace (logapi moet geïnstalleerd zijn in de sbie-map)
-
+ Pipe TracePipe-trace
-
+ Log all SetError's to Trace log (creates a lot of output)Alle SetErrors loggen naar trace-log (maakt veel uitvoer aan)
-
+ Log Debug Output to the Trace LogDebug-uitvoer naar de trace-log loggen
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8405,78 +8405,78 @@ in plaats van "*".
Ntdll syscall Trace (maakt veel uitvoer aan)
-
+ File TraceBestand-trace
-
+ Disable Resource Access MonitorBrontoegang-monitor uitschakelen
-
+ IPC TraceIPC-trace
-
+ GUI TraceGUI-trace
-
+ Resource Access MonitorBrontoegang-monitor
-
+ Access TracingToegang-tracing
-
+ COM Class TraceCOM Class trace
-
+ Key TraceKey-trace
-
+ Network FirewallNetwerk-firewall
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Syscall Trace (creates a lot of output)
-
+ DebugDebug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!WAARSCHUWING, deze opties kunnen kernbeveiligingsgaranties uitschakelen en sandbox-beveiliging breken!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Deze opties zijn bedoeld voor het debuggen van compatibiliteitsproblemen, gebruik ze niet in productiegebruik.
-
+ App TemplatesApp-sjablonen
@@ -8485,22 +8485,22 @@ in plaats van "*".
Compatibiliteit-sjablonen
-
+ Filter CategoriesFilter categorieën
-
+ Text FilterTekstfilter
-
+ Add TemplateSjabloon toevoegen
-
+ This list contains a large amount of sandbox compatibility enhancing templatesDeze lijst bevat een groot aantal sjablonen om sandbox-compatibiliteit te verbeteren
@@ -8509,17 +8509,17 @@ in plaats van "*".
Sjabloon verwijderen
-
+ CategoryCategorie
-
+ Template FoldersSjabloonmappen
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8528,23 +8528,23 @@ Please note that this values are currently user specific and saved globally for
Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden opgeslagen voor alle boxen.
-
-
+
+ ValueWaarde
-
+ AccessibilityToegankelijkheid
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Om te compenseren voor de verloren bescherming, raadpleeg de "rechten ontnemen"-instellingenpagina in de beperking-instellingen-groep.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessSchermlezers: JAWS, NVDA, Window-Eyes, System Access
@@ -8554,43 +8554,43 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+ Various Options
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)
-
+ Use desktop object workaround for all processes
-
+ This command will be run before the box content will be deleted
-
+ On File Recovery
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked
-
+ Run File Checker
-
+ On Delete Content
@@ -8628,142 +8628,137 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
-
+ ProcessProces
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Block DNS, UDP port 53
-
+ On Box Terminate
-
+ API call Trace (traces all SBIE hooks)
-
+ DNS Request Logging
-
+ Templates
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.De volgende instellingen schakelen het gebruik van Sandboxie in combinatie met toegankelijkheidssoftware in. Merk op dat sommige beschermingsmaatregelen van Sandboxie noodzakelijk verloren gaan wanneer deze instellingen van toepassing zijn.
-
+ Edit ini SectionIni-sectie bewerken
-
+ Edit iniIni bewerken
-
+ CancelAnnuleren
-
+ SaveOpslaan
diff --git a/SandboxiePlus/SandMan/sandman_pl.ts b/SandboxiePlus/SandMan/sandman_pl.ts
index 0fa50893..11ae69cc 100644
--- a/SandboxiePlus/SandMan/sandman_pl.ts
+++ b/SandboxiePlus/SandMan/sandman_pl.ts
@@ -1997,9 +1997,9 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
-
-
-
+
+
+ Group: %1Grupa: %1
@@ -2205,11 +2205,11 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
-
-
-
-
-
+
+
+
+
+ All ProgramsWszystkie programy
@@ -2244,7 +2244,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
-
+ Template values can not be edited.Wartości szablonów nie mogą być zmienione.
@@ -2373,82 +2373,82 @@ Wybierz folder, który zawiera ten plik.
-
+ Anykażdy
-
+ TCP
-
+ UDP
-
+ ICMP
-
+ Allow accessZezwól na dostęp
-
+ Block using Windows Filtering PlatformBlokuj przy użyciu platformy filtrowania systemu Windows
-
+ Block by denying access to Network devicesBlokuj, odmawiając dostępu do urządzeń sieciowych
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowPozwól
-
+ Block (WFP)Blokada (WFP)
-
+ Block (NDev)Blokada (NDev)
-
+ A non empty program name is required.Wymagana jest niepusta nazwa programu.
-
+ BlockBlokada
@@ -7206,7 +7206,7 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
+ Block network files and folders, unless specifically opened.Zablokuj dostęp do dysków sieciowych, chyba że specjalnie dopuszczone.
@@ -7235,7 +7235,7 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
+ Protect the system from sandboxed processesChroń system przed programami w piaskownicy
@@ -7268,11 +7268,11 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
-
-
-
-
+
+
+
+
+ NameNazwa
@@ -7302,15 +7302,15 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveUsuń
@@ -7367,7 +7367,7 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Spraw, by aplikacje uznały, że działają z podwyższonym poziomem uprawnień (umożliwia bezpieczne uruchamianie instalatorów)
-
+ Network restrictionsOgraniczenia sieciowe
@@ -7488,11 +7488,11 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
-
-
-
-
-
+
+
+
+
+ Show TemplatesPokaż szablony
@@ -7550,7 +7550,7 @@ Jeśli jesteś już Wielkim Wspierającym na Patreon, Sandboxie może sprawdzić
Otwórz Windows Credentials Store (tryb użytkownika)
-
+ Prevent change to network and firewall parameters (user mode)Zapobiegaj zmianom parametrów sieci i zapory (tryb użytkownika)
@@ -7661,9 +7661,9 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
-
-
-
+
+
+ ProgramProgram
@@ -7703,47 +7703,47 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Dodaj ścieżkę IPC
-
+ File RecoveryPrzywracanie plików
-
+ Add FolderDodaj folder
-
+ Ignore ExtensionIgnoruj rozszerzenie pliku
-
+ Ignore FolderIgnoruj folder
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Włącz monit Natychmiastowego Przywracania, aby móc odzyskać pliki zaraz po ich utworzeniu.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Możesz wykluczyć foldery i typy plików (lub rozszerzenia plików) z Natychmiastowego Odzyskiwania.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Po wywołaniu funkcji szybkiego odzyskiwania następujące foldery zostaną sprawdzone pod kątem zawartości w piaskownicy.
-
+ Advanced OptionsOpcje zaawansowane
-
+ MiscellaneousRóżne
@@ -7759,7 +7759,7 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
-
+ Protect the sandbox integrity itselfChroń integralność piaskownicy
@@ -7793,13 +7793,13 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Dodaj procesy w piaskownicy do obiektów zadań (zalecane)
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Wymuś użycie niestandardowych fałszywych plików manifestu (zachowanie starszego typu)
-
-
+
+ CompatibilityZgodność
@@ -7816,42 +7816,42 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Tutaj można określić listę poleceń do wykonania przy inicjalizacji pustej piaskownicy.
-
+ Hide ProcessesUkryj procesy
-
+ Add ProcessDodaj proces
-
+ Hide host processes from processes running in the sandbox.Ukryj procesy hosta piaskownicy przed procesami działającymi w piaskownicy.
-
+ Don't allow sandboxed processes to see processes running in other boxesNie zezwalaj procesom w trybie piaskownicy widzieć procesów działających w innych boksach
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ UsersUżytkownicy
-
+ Restrict Resource Access monitor to administrators onlyOgranicz dostęp do monitora dostępu do zasobów tylko dla administratorów
-
+ Add UserDodaj użytkownika
@@ -7860,7 +7860,7 @@ Jeśli zdefiniowane są procesy wiodące, wszystkie inne są traktowane jako pro
Usuń użytkownika
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -7869,47 +7869,47 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Uwaga: ustawienia Wymuszonych Programów i Wymuszania Folderów dla piaskownicy nie mają zastosowania do kont użytkowników, które nie mogą korzystać z piaskownicy.
-
+ TracingŚledzenie
-
+ GUI TraceŚledzenie GUI
-
+ IPC TraceŚledzenie IPC
-
+ Pipe TraceŚledzenie pipe
-
+ Access TracingŚledzenie dostępów
-
+ Log Debug Output to the Trace LogRejestruj dane wyjściowe debugowania w dzienniku śledzenia
-
+ File TraceŚledzenie plikow
-
+ Key TraceŚledzenie kluczy
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -7928,12 +7928,12 @@ Możesz dostosować rejestrowanie za pomocą ini, określając
zamiast "*".
-
+ COM Class TraceŚledzenie klas COM
-
+ Emulate sandboxed window station for all processesEmuluj piaskownicę dla wszystkich procesów
@@ -7946,38 +7946,38 @@ zamiast "*".
Izolacja dostępu
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Zastosuj obejście ElevateCreateProcess (starsze zachowanie)
-
+ Use desktop object workaround for all processesUżyj obejścia dla obiektów pulpitu dla wszystkich procesów
-
+ This command will be run before the box content will be deletedTo polecenie zostanie uruchomione zanim zawartość boksu zostanie usunięta
-
+ On File RecoveryO odzyskiwaniu plików
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedTo polecenie zostanie uruchomione przed odzyskaniem pliku i ścieżka do pliku zostanie przekazana jako pierwszy argument, jeśli to polecenie zwrócić coś innego niż 0 odzyskanie zostanie zablokowane
-
+ Run File CheckerUruchom sprawdzanie plików
-
+ On Delete ContentUruchom, Usuń zawartość
@@ -7988,7 +7988,7 @@ zamiast "*".
-
+ ProcessProces
@@ -7997,7 +7997,7 @@ zamiast "*".
Zablokuj również dostęp do odczytu procesów w tej piaskownicy
-
+ Add OptionDodaj opcję
@@ -8006,7 +8006,7 @@ zamiast "*".
Tutaj możesz skonfigurować zaawansowane opcje dla każdego procesu, aby poprawić kompatybilność i/lub dostosować zachowanie piaskownicy.
-
+ OptionOpcja
@@ -8016,7 +8016,7 @@ zamiast "*".
Śledzenie wywołań API (wymaga zainstalowania logapi w katalogu sbie)
-
+ Log all SetError's to Trace log (creates a lot of output)Rejestruj wszystkie błędy SetError do dziennika śledzenia (tworzy dużo danych wyjściowych)
@@ -8025,28 +8025,28 @@ zamiast "*".
Śledzenie Ntdll syscall (tworzy dużo danych wyjściowych)
-
+ DNS Request LoggingDns Request LoggingRejestrowanie żądań DNS
-
+ DebugDebug
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!UWAGA, te opcje mogą wyłączyć podstawowe gwarancje bezpieczeństwa i złamać zabezpieczenia sandboxa!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Te opcje są przeznaczone do debugowania problemów z kompatybilnością, proszę nie używać ich w zastosowaniach produkcyjnych.
-
+ App TemplatesDodaj szablony
@@ -8055,17 +8055,17 @@ zamiast "*".
Szablony zgodności
-
+ Filter CategoriesFiltruj kategorie
-
+ Text FilterFiltruj text
-
+ Add TemplateDodaj szablon
@@ -8074,12 +8074,12 @@ zamiast "*".
Usuń szablon
-
+ CategoryKategoria
-
+ This list contains a large amount of sandbox compatibility enhancing templatesTa lista zawiera dużą ilość szablonów poprawiających kompatybilność z piaskownicą
@@ -8158,33 +8158,33 @@ zamiast "*".
Izolacja dostępu
-
+ Image ProtectionOchrona obrazu
-
+ Issue message 1305 when a program tries to load a sandboxed dllProblem z komunikatem 1305, gdy program próbuje załadować bibliotekę DLL w trybie piaskownicy
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxZapobieganie ładowaniu dll'ów z piaskownicy przez programy zainstalowane na hoście
-
+ Dlls && ExtensionsDll-e && Rozszerzenia
-
+ DescriptionOpis
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Zasady dostępu do zasobów Sandboxa często dyskryminują binarki programów znajdujących się wewnątrz piaskownicy. OpenFilePath i OpenKeyPath działają tylko dla binarek aplikacji znajdujących się natywnie na hoście. Aby zdefiniować regułę bez tego ograniczenia, należy użyć OpenPipePath lub OpenConfPath. Podobnie, wszystkie dyrektywy Closed(File|Key|Ipc)Path, które są zdefiniowane przez negację np. 'ClosedFilePath=! iexplore.exe,C:Users*' będą zawsze zamknięte dla binariów znajdujących się wewnątrz sandboxa. Obie polityki ograniczeń mogą być wyłączone na stronie "Zasady dostępu".
@@ -8477,7 +8477,7 @@ Aby określić proces, użyj jako ścieżki '$:program.exe'.
-
+ ActionAkcja
@@ -8560,13 +8560,13 @@ Aby określić proces, użyj jako ścieżki '$:program.exe'.
-
+ Move UpPrzesuń w górę
-
+ Move DownPrzesuń w dół
@@ -8577,14 +8577,14 @@ Aby określić proces, użyj jako ścieżki '$:program.exe'.
-
+ PortPort
-
-
+
+ IPIP
@@ -8594,27 +8594,27 @@ Aby określić proces, użyj jako ścieżki '$:program.exe'.Protokół
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.UWAGA: Platforma filtrowania Windows nie jest włączona w sterowniku, dlatego te reguły będą stosowane tylko w trybie użytkownika i nie mogą być egzekwowane! Oznacza to, że złośliwe aplikacje mogą je ominąć.
-
+ Quick RecoverySzybkie odzyskiwanie
-
+ Immediate RecoveryNatychmiastowe Przywracanie
-
+ Various OptionsRóżne opcje
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Zezwalaj na używanie zagnieżdżonych obiektów zadań (eksperymentalne, działa od Windows 8 i w następnych)
@@ -8758,7 +8758,7 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
COM/RPC
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Wyłączenie domyślnego użycia RpcMgmtSetComTimeout (może rozwiązać problemy z kompatybilnością)
@@ -8796,41 +8796,41 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
Poniższe opcje mogą być bezpiecznie użyte, gdy nie nadano uprawnień administratora.
-
+ TriggersWyzwalacze
-
+ EventZdarzenie
-
-
-
-
+
+
+
+ Run CommandUruchom polecenie
-
+ Start ServiceUruchom usługę
-
+ These events are executed each time a box is startedZdarzenia te wykonywane są za każdym razem, gdy uruchamiany jest boks
-
+ On Box StartWłącz w start boksu
-
-
+
+ These commands are run UNBOXED just before the box content is deletedTe polecenia uruchamiane są tuż przed usunięciem zawartości boksu
@@ -8839,43 +8839,43 @@ Poziom dopasowania do procesu ma wyższy priorytet niż specyfika i opisuje spos
Przy usuwaniu boksu
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Polecenia te wykonywane są tylko wtedy, gdy boks jest inicjalizowany. Aby je ponownie uruchomić, należy usunąć zawartość boksu.
-
+ On Box InitWłącz w Init boksu
-
+ Here you can specify actions to be executed automatically on various box events.W tym miejscu można określić akcje, które mają być wykonywane automatycznie w przypadku różnych zdarzeń w boksie.
-
+ Disable Resource Access MonitorWyłącz monitor dostępu do zasobów
-
+ Resource Access MonitorMonitor dostępu do zasobów
-
+ Network FirewallZapora sieciowa
-
+ Template FoldersFoldery szablonów
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8884,179 +8884,174 @@ Please note that this values are currently user specific and saved globally for
Należy pamiętać, że te wartości są obecnie specyficzne dla użytkownika i zapisywane globalnie dla wszystkich boksów.
-
-
+
+ ValueWartość
-
+ AccessibilityDostępność
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Aby zrekompensować utratę ochrony, zapoznaj się ze stroną ustawień Usuwania Uprawnień w grupie ustawień Ograniczenia.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessCzytniki ekranu: JAWS, NVDA, Window-Eyes, System Access
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Block DNS, UDP port 53
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.Gdy globalny klawisz skrótu zostanie naciśnięty 3 razy w krótkim odstępie czasu, wyjątek ten zostanie zignorowany.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Wyklucza tę piaskownicę z zakończenia po wywołaniu opcji "Zakończ wszystkie procesy".
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Funkcjonalność Sandboxie można rozszerzyć za pomocą opcjonalnych bibliotek DLL, które mogą być ładowane do każdego procesu sandboxie podczas uruchamiania przez plik SbieDll.dll, menedżer dodatków w ustawieniach globalnych oferuje kilka przydatnych rozszerzeń, po zainstalowaniu można je tutaj włączyć dla bieżącej skrzynki.
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Tutaj można skonfigurować zaawansowane opcje dla poszczególnych procesów, aby poprawić zgodność i/lub dostosować zachowanie piaskownicy.
-
+ On Box Terminate
-
+ API call Trace (traces all SBIE hooks)
-
+ Syscall Trace (creates a lot of output)Syscall Trace (tworzy dużo danych wyjściowych)
-
+ TemplatesSzablony
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Poniższe ustawienia umożliwiają korzystanie z usługi Sandboxie w połączeniu z oprogramowaniem zapewniającym dostępność. Należy pamiętać, że niektóre środki ochrony Sandboxie są z konieczności tracone, gdy te ustawienia są aktywne.
-
+ Edit ini SectionEdytuj sekcję ini
-
+ Edit iniEdytuj ini
-
+ CancelAnuluj
-
+ SaveZapisz
diff --git a/SandboxiePlus/SandMan/sandman_pt_BR.ts b/SandboxiePlus/SandMan/sandman_pt_BR.ts
index e4fb06cd..377c23a7 100644
--- a/SandboxiePlus/SandMan/sandman_pt_BR.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_BR.ts
@@ -1688,11 +1688,11 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
-
-
-
-
+
+
+
+
+ All ProgramsTodos os Programas
@@ -1703,9 +1703,9 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
-
-
+
+
+ Group: %1Grupo: %1
@@ -1740,7 +1740,7 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
+ Template values can not be edited.Os valores de modelo não podem ser editados.
@@ -2183,82 +2183,82 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
+ AnyQualquer
-
+ TCP
-
+ UDP
-
+ ICMP
-
+ Allow accessPermitir acesso
-
+ Block using Windows Filtering PlatformBloquear usando a Plataforma de Filtragem do Windows
-
+ Block by denying access to Network devicesBloquear, negando acesso a Dispositivos de rede
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowPermitir
-
+ Block (WFP)Bloquear (WFP)
-
+ Block (NDev)Bloquear (NDev)
-
+ A non empty program name is required.É necessário um nome de programa não vazio.
-
+ BlockBloquear
@@ -7199,7 +7199,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Protect the system from sandboxed processesProteger o sistema de processos do sandbox
@@ -7388,12 +7388,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Restrições de Impressão
-
+ Network restrictionsRestrições de Rede
-
+ Block network files and folders, unless specifically opened.Bloquear arquivos e pastas de rede, a menos que especificamente abertos.
@@ -7420,11 +7420,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameNome
@@ -7454,15 +7454,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveRemover
@@ -7552,11 +7552,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Show TemplatesMostrar Modelos
@@ -7595,7 +7595,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Abrir Credencias de Armazenamento do Windows (modo de usuário)
-
+ Prevent change to network and firewall parameters (user mode)Impedir a alteração de parâmetros de rede e firewall (modo de usuário)
@@ -7811,9 +7811,9 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
-
-
-
+
+
+ ProgramPrograma
@@ -7900,40 +7900,40 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Isolamento de Acesso
-
+ Image ProtectionProteção de Imagem
-
+ Issue message 1305 when a program tries to load a sandboxed dllEmitir mensagem 1305 quando um programa tenta carregar uma dll na caixa de areia
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxImpedir que programas das caixas instalados no host carreguem dll's do sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.As regras de acesso a recursos do sandboxie geralmente discriminam os binários do programa localizados dentro do sandbox. OpenFilePath e OpenKeyPath funcionam apenas para binários de aplicativos localizados no host nativamente. Para definir uma regra sem essa restrição, deve-se usar OpenPipePath ou OpenConfPath. Da mesma forma, todas as diretivas Closed(File|Key|Ipc)Path que são definidas por negação, por exemplo 'ClosedFilePath =! iexplore.exe,C:Users*’ será sempre fechado para binários localizados dentro de uma caixa. Ambas as políticas de restrição podem ser desativadas na página “Políticas de Acesso”.
Isso é feito para evitar que processos invasores dentro do sandbox criem uma cópia renomeada de si mesmos e acessem recursos protegidos. Outro vetor de exploração é a injeção de uma biblioteca em um processo autorizado para obter acesso a tudo o que é permitido acessar.Usando a proteção de imagem do host, isso pode ser evitado bloqueando os aplicativos (instalados no host) executados dentro de uma caixa de carregar bibliotecas do próprio sandbox.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -8160,20 +8160,20 @@ Para especificar um processo, use '$:program.exe' como caminho.
-
+ ActionAção
-
+ PortPorta
-
-
+
+ IP
@@ -8183,7 +8183,7 @@ Para especificar um processo, use '$:program.exe' como caminho.Protocolo
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.CUIDADO: A Plataforma de Filtragem do Windows não está ativada com o driver, portanto, essas regras serão aplicadas apenas no modo de usuário e não podem ser impostas!!! Isso significa que as aplicações maliciosas podem contorná-las.
@@ -8216,7 +8216,7 @@ Você pode usar 'Abrir para Todos' em vez de fazê-lo aplicar a todos
-
+ Move DownMover para Baixo
@@ -8237,7 +8237,7 @@ Você pode usar 'Abrir para Todos' em vez de fazê-lo aplicar a todos
-
+ Move UpMover para Cima
@@ -8259,47 +8259,47 @@ Para acessar arquivos, você pode usar o 'Direto a Todos' em vez de fa
Aplicar e Fechar...=!<programa>,... diretivas também para todos os binários localizados na caixa de areia.
-
+ File RecoveryRecuperação de Arquivos
-
+ Add FolderAdicionar Pasta
-
+ Ignore ExtensionIgnorar Extensão
-
+ Ignore FolderIgnorar Pasta
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Ativar mensagem de recuperação imediata para poder recuperar arquivos assim que forem criados.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Você pode excluir pastas e tipos de arquivos (ou extensões de arquivos) da Recuperação Imediata.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Quando a função Recuperação Rápida for invocada, as seguintes pastas serão verificadas para obter conteúdo da caixa de areia.
-
+ Advanced OptionsOpções Avançadas
-
+ MiscellaneousDiversos
@@ -8320,7 +8320,7 @@ Para acessar arquivos, você pode usar o 'Direto a Todos' em vez de fa
-
+ Protect the sandbox integrity itselfProteger integridade da própria caixa de areia
@@ -8345,7 +8345,7 @@ Para acessar arquivos, você pode usar o 'Direto a Todos' em vez de fa
Isolamento da caixa de areia
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Forçar uso de arquivos de manifesto fictícios personalizados (comportamento legado)
@@ -8409,8 +8409,8 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Permitir apenas processos privilegiados para acessar o Gerenciador de Controle de Serviços
-
-
+
+ CompatibilityCompatibilidade
@@ -8424,12 +8424,12 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Adicionar processos de caixa de areia a objetos de trabalho (recomendado)
-
+ Emulate sandboxed window station for all processesEmular estação de janela da caixa de areia para todos os processos
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Permitir o uso de objetos de trabalho aninhados (experimental, funciona no Windows 8 e anteriores)
@@ -8472,7 +8472,7 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Controle de Programa
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Desativar o uso de RpcMgmtSetComTimeout por padrão (isso pode resolver problemas de compatibilidade)
@@ -8525,37 +8525,37 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Aqui você pode especificar uma lista de comandos que serão executados sempre que o sandbox for iniciado.
-
+ Hide ProcessesOcultar Processo
-
+ Add ProcessAdicionar Processo
-
+ Hide host processes from processes running in the sandbox.Ocultar processos do host de processos em execução no sandbox.
-
+ Don't allow sandboxed processes to see processes running in other boxesNão permitir que processos do sandbox vejam processos em execução de outras caixas
-
+ UsersUsuários
-
+ Restrict Resource Access monitor to administrators onlyRestringir o monitor de acesso a recursos apenas para administradores
-
+ Add UserAdicionar Usuário
@@ -8564,7 +8564,7 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Remover Usuário
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8573,7 +8573,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: As configurações de programas e pastas forçadas para uma caixa de areia não se aplicam a contas de usuários que não podem usar o sandbox.
-
+ TracingRastreamento
@@ -8583,22 +8583,22 @@ Nota: As configurações de programas e pastas forçadas para uma caixa de areia
Rastreamento de chamada de API (requer logapi instalado na pasta sbie)
-
+ Pipe TraceRastreamento de Pipe
-
+ Log all SetError's to Trace log (creates a lot of output)Log SetError's para todas os log de Rastreamento (cria muitas saídas)
-
+ Log Debug Output to the Trace LogRegistrar a saída de depuração no log de rastreamento
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8621,37 +8621,37 @@ ao invés de "*".
Rastreamento Ntdll syscall (cria muita saída)
-
+ File TraceRastreamento de Arquivo
-
+ Disable Resource Access MonitorDesativar Monitor de Acesso ao Recurso
-
+ IPC TraceRastreamento IPC
-
+ GUI TraceRastreamento de GUI
-
+ Resource Access MonitorMonitor de Acesso ao Recurso
-
+ Access TracingRastrear Acesso
-
+ COM Class TraceRastreamento de Classe COM
@@ -8660,41 +8660,41 @@ ao invés de "*".
<- para um desses acima não se aplica
-
+ TriggersGatilhos
-
+ EventEvento
-
-
-
-
+
+
+
+ Run CommandExecutar Comando
-
+ Start ServiceIniciar Serviço
-
+ These events are executed each time a box is startedEsses eventos são executados sempre que uma caixa é iniciada
-
+ On Box StartAo iniciar uma caixa
-
-
+
+ These commands are run UNBOXED just before the box content is deletedEsses comandos são executados FORA DA CAIXA logo antes do conteúdo da caixa ser excluído
@@ -8726,118 +8726,113 @@ ao invés de "*".
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Esses comandos são executados apenas quando uma caixa é inicializada. Para fazê-los funcionar novamente, o conteúdo da caixa deve ser excluído.
-
+ On Box InitAo criar uma caixa
-
+ Here you can specify actions to be executed automatically on various box events.Aqui você pode especificar ações a serem executadas automaticamente em vários eventos de caixa.
-
+ API call Trace (traces all SBIE hooks)
-
+ Key TraceRastreamento de Chave
-
+ Network FirewallFirewall de Rede
-
+ DebugDepurar
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!AVISO, essas opções podem desativar as garantias de segurança essenciais e interromper a segurança da sandbox!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Essas opções destinam-se a depurar problemas de compatibilidade, não as use em produção.
-
+ App TemplatesModelos de Aplicativos
@@ -8846,22 +8841,22 @@ ao invés de "*".
Modelos de Compatibilidade
-
+ Filter CategoriesCategorias de Filtro
-
+ Text FilterFiltro de Texto
-
+ Add TemplateAdicionar Modelo
-
+ This list contains a large amount of sandbox compatibility enhancing templatesEssa lista contém uma grande quantidade de modelos de compatibilidade de caixa de areia
@@ -8870,17 +8865,17 @@ ao invés de "*".
Remover Modelo
-
+ CategoryCategoria
-
+ Template FoldersPasta de Modelos
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8889,23 +8884,23 @@ Please note that this values are currently user specific and saved globally for
Por favor, note que esse valores são atualmente para o usuário específico e salvos globalmente para todas as caixas.
-
-
+
+ ValueValor
-
+ AccessibilityAcessibilidade
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Para compensar a proteção perdida, consulte a página de configurações de Liberar Direitos no grupo de configurações de Restrições.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessLeitores de tela: JAWS, NVDA, Window-Eyes, Acesso ao Sistema
@@ -8930,88 +8925,88 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ Quick RecoveryRecuperação Rápida
-
+ Immediate RecoveryRecuperação Imediata
-
+ Various OptionsVárias opções
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Aplicar ElevateCreateProcess solução alternativa (comportamento herdado)
-
+ Use desktop object workaround for all processesUsar solução alternativa de objeto da área de trabalho para todos os processos
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ On Box Terminate
-
+ This command will be run before the box content will be deletedEsse comando será executado antes que o conteúdo da caixa seja excluído
-
+ On File RecoveryAo recuperar arquivos
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedEsse comando será executado antes de um arquivo ser recuperado e o caminho do arquivo será passado como primeiro argumento. Se esse comando retornar algo diferente de 0, a recuperação será bloqueada
-
+ Run File CheckerExecutar Verificador de Arquivos
-
+ On Delete ContentAo Excluir Conteúdo
@@ -9022,7 +9017,7 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
-
+ ProcessProcesso
@@ -9031,68 +9026,68 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
Bloquear também o acesso de leitura aos processos nessa caixa
-
+ Add OptionAdicionar Opção
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Aqui você pode configurar opções avançadas por processo para melhorar a compatibilidade e/ou personalizar o comportamento do sandbox.
-
+ OptionOpção
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ DNS Request Logging
-
+ Syscall Trace (creates a lot of output)
-
+ TemplatesModelos
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.As configurações a seguir permitem usar o sandboxie em combinação com software de acessibilidade. Note que algumas medidas de proteção do sandboxie seram perdidas quando essas configurações estiverem em vigor.
-
+ Edit ini SectionEditar Seção ini
-
+ Edit iniEditar ini
-
+ CancelCancelar
-
+ SaveSalvar
diff --git a/SandboxiePlus/SandMan/sandman_pt_PT.ts b/SandboxiePlus/SandMan/sandman_pt_PT.ts
index c3adb49e..08cee2cb 100644
--- a/SandboxiePlus/SandMan/sandman_pt_PT.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_PT.ts
@@ -1688,11 +1688,11 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
-
-
-
-
+
+
+
+
+ All ProgramsTodos os Programas
@@ -1703,9 +1703,9 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
-
-
+
+
+ Group: %1Grupo: %1
@@ -1740,7 +1740,7 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
+ Template values can not be edited.Os valores do modelo não podem ser editados.
@@ -2183,82 +2183,82 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
+ AnyQualquer
-
+ TCP
-
+ UDP
-
+ ICMP
-
+ Allow accessPermitir acesso
-
+ Block using Windows Filtering PlatformBloquear usando a Plataforma de Filtragem do Windows
-
+ Block by denying access to Network devicesBloquear negando acesso a Dispositivos de rede
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowPermitir
-
+ Block (WFP)Bloquear (WFP)
-
+ Block (NDev)Bloquear (NDev)
-
+ A non empty program name is required.É necessário um nome de programa não vazio.
-
+ BlockBloquear
@@ -7203,7 +7203,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Protect the system from sandboxed processesProteger o sistema de processos do sandbox
@@ -7392,12 +7392,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Restrições de impressão
-
+ Network restrictionsRestrições de rede
-
+ Block network files and folders, unless specifically opened.Bloquear ficheiros e pastas de rede, a menos que especificamente abertos.
@@ -7424,11 +7424,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameNome
@@ -7458,15 +7458,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveRemover
@@ -7556,11 +7556,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Show TemplatesMostrar Modelos
@@ -7599,7 +7599,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Abrir Credencias de Armazenamento do Windows (modo de utilizador)
-
+ Prevent change to network and firewall parameters (user mode)Impedir a alteração de parâmetros de rede e firewall (modo de utilizador)
@@ -7815,9 +7815,9 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
-
-
-
+
+
+ ProgramPrograma
@@ -7900,40 +7900,40 @@ Se os processos líderes forem definidos, todos os outros serão tratados como p
Isolamento de Acesso
-
+ Image ProtectionProteção de Imagem
-
+ Issue message 1305 when a program tries to load a sandboxed dllEmitir mensagem 1305 quando um programa tenta carregar uma dll na caixa de areia
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxImpedir que programas das caixas instalados no host carreguem dll's do sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.As regras de acesso a recursos do sandboxie geralmente discriminam os binários do programa localizados dentro do sandbox. OpenFilePath e OpenKeyPath funcionam apenas para binários de aplicativos localizados no host nativamente. Para definir uma regra sem essa restrição, deve-se utilizar OpenPipePath ou OpenConfPath. Da mesma forma, todas as diretivas Closed(File|Key|Ipc)Path que são definidas por negação, por exemplo 'ClosedFilePath =! iexplore.exe,C:Users*’ será sempre fechado para binários localizados dentro de uma caixa. Ambas as políticas de restrição podem ser desativadas na página “Políticas de Acesso”.
Isso é feito para evitar que processos invasores dentro do sandbox criem uma cópia renomeada de si mesmos e acessem recursos protegidos. Outro vetor de exploração é a injeção de uma biblioteca em um processo autorizado para obter acesso a tudo o que é permitido acessar.Usando a proteção de imagem do host, isso pode ser evitado bloqueando os aplicativos (instalados no host) executados dentro de uma caixa de carregar bibliotecas do próprio sandbox.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -8160,20 +8160,20 @@ Para especificar um processo, use '$:program.exe' como localização.<
-
+ ActionAção
-
+ PortPorta
-
-
+
+ IP
@@ -8183,7 +8183,7 @@ Para especificar um processo, use '$:program.exe' como localização.<
Protocolo
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.CUIDADO: A Plataforma de Filtragem do Windows não está ativada com o controlador, portanto, essas regras serão aplicadas apenas no modo de utilizador e não podem ser impostas!!! Isso significa que as aplicações maliciosas podem contorná-las.
@@ -8216,7 +8216,7 @@ Você pode utilizar 'Abrir para Todos' em vez de fazê-lo aplicar a to
-
+ Move DownMover para Baixo
@@ -8237,7 +8237,7 @@ Você pode utilizar 'Abrir para Todos' em vez de fazê-lo aplicar a to
-
+ Move UpMover para Cima
@@ -8259,47 +8259,47 @@ Para aceder ficheiros, você pode utilizar o 'Direto a Todos' em vez d
Aplicar e Fechar...=!<programa>,... diretivas também para todos os binários localizados na caixa de areia.
-
+ File RecoveryRecuperação de Ficheiros
-
+ Add FolderAdicionar Pasta
-
+ Ignore ExtensionIgnorar Extensão
-
+ Ignore FolderIgnorar Pasta
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Activar mensagem de recuperação imediata para poder recuperar ficheiros assim que for criado.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Você pode apagar pastas e tipos de ficheiros (ou extensões de ficheiros) da Recuperação Imediata.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Quando a função Recuperação Rápida for invocada, as seguintes pastas serão verificadas para obter conteúdo da caixa de areia.
-
+ Advanced OptionsOpções Avançadas
-
+ MiscellaneousDiversos
@@ -8320,7 +8320,7 @@ Para aceder ficheiros, você pode utilizar o 'Direto a Todos' em vez d
-
+ Protect the sandbox integrity itselfProteger integridade da própria caixa de areia
@@ -8345,7 +8345,7 @@ Para aceder ficheiros, você pode utilizar o 'Direto a Todos' em vez d
Isolamento da caixa de areia
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Forçar uso de ficheiros de manifesto fictícios personalizados (comportamento legado)
@@ -8409,8 +8409,8 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Permitir apenas processos privilegiados para acessar o Gerenciador de Controlo de Serviços
-
-
+
+ CompatibilityCompatibilidade
@@ -8424,12 +8424,12 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Adicionar processos de caixa de areia a objetos de trabalho (recomendado)
-
+ Emulate sandboxed window station for all processesEmular estação de janela da caixa de areia para todos os processos
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)Permitir o uso de objetos de trabalho aninhados (experimental, funciona no Windows 8 e posterior)
@@ -8472,7 +8472,7 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Controlo de Programa
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Desactivar o uso do RpcMgmtSetComTimeout predefinido (isso pode resolver problemas de compatibilidade)
@@ -8525,37 +8525,37 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Aqui você pode especificar uma lista de comandos que serão executados sempre que o sandbox for iniciado.
-
+ Hide ProcessesEsconder Processo
-
+ Add ProcessAdicionar Processo
-
+ Hide host processes from processes running in the sandbox.Esconder processos do host de processos em execução na sandbox.
-
+ Don't allow sandboxed processes to see processes running in other boxesNão permitir que processos do sandbox vejam processos em execução de outras caixas
-
+ UsersUsuários
-
+ Restrict Resource Access monitor to administrators onlyRestringir o monitor de acesso a recursos apenas para administradores
-
+ Add UserAdicionar Utilizador
@@ -8564,7 +8564,7 @@ O nível de correspondência do processo tem uma prioridade maior do que a espec
Remover Utilizador
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8573,7 +8573,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Nota: As definições de programas e pastas forçadas para uma caixa de areia não se aplicam a contas de usuários que não podem utilizar o sandbox.
-
+ TracingRastreamento
@@ -8583,22 +8583,22 @@ Nota: As definições de programas e pastas forçadas para uma caixa de areia n
Rastreamento de chamada de API (requer logapi instalado na pasta sbie)
-
+ Pipe TraceRastreamento de Pipe
-
+ Log all SetError's to Trace log (creates a lot of output)Registro SetError's para todas os registro de Rastreamento (cria muitas saídas)
-
+ Log Debug Output to the Trace LogRegistrar a saída de depuração no registro de rastreamento
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8621,37 +8621,37 @@ ao invés de "*".
Rastreamento Ntdll syscall (cria muita saída)
-
+ File TraceRastreamento de Ficheiro
-
+ Disable Resource Access MonitorDesactivar Monitor de Acesso ao Recurso
-
+ IPC TraceRastreamento IPC
-
+ GUI TraceRastreamento de GUI
-
+ Resource Access MonitorMonitor de Acesso ao Recurso
-
+ Access TracingRastrear acesso
-
+ COM Class TraceRastreamento de Classe COM
@@ -8660,41 +8660,41 @@ ao invés de "*".
<- para um desses acima não se aplica
-
+ TriggersGatilhos
-
+ EventEvento
-
-
-
-
+
+
+
+ Run CommandRodar Comando
-
+ Start ServiceIniciar Serviço
-
+ These events are executed each time a box is startedEsses eventos são executados sempre que uma caixa é iniciada
-
+ On Box StartAo iniciar uma caixa
-
-
+
+ These commands are run UNBOXED just before the box content is deletedEsses comandos são executados FORA DA CAIXA logo antes do conteúdo da caixa ser excluído
@@ -8726,118 +8726,113 @@ ao invés de "*".
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Esses comandos são executados apenas quando uma caixa é inicializada. Para fazê-los funcionar novamente, o conteúdo da caixa deve ser excluído.
-
+ On Box InitAo criar uma caixa
-
+ Here you can specify actions to be executed automatically on various box events.Aqui você pode especificar acções a serem executadas automaticamente em vários eventos de caixa.
-
+ API call Trace (traces all SBIE hooks)
-
+ Key TraceRastreamento de Chave
-
+ Network FirewallFirewall de Rede
-
+ DebugDepurar
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!ADVERTÊNCIA, essas opções podem desactivar as garantias de segurança essenciais e interromper a segurança da sandbox!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Essas opções destinam-se a depurar problemas de compatibilidade, não as use em produção.
-
+ App TemplatesModelos de Aplicação
@@ -8846,22 +8841,22 @@ ao invés de "*".
Modelos de Compatibilidade
-
+ Filter CategoriesCategorias de Filtro
-
+ Text FilterFiltro de Texto
-
+ Add TemplateAdicionar Modelo
-
+ This list contains a large amount of sandbox compatibility enhancing templatesEsta lista contém uma grande quantidade de modelos de compatibilidade de caixa de areia
@@ -8870,17 +8865,17 @@ ao invés de "*".
Remover Modelo
-
+ CategoryCategoria
-
+ Template FoldersPasta de Modelos
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8889,23 +8884,23 @@ Please note that this values are currently user specific and saved globally for
Por favor, note que este valores são atualmente para o utilizador específico e salvo globalmente para todas as caixas.
-
-
+
+ ValueValor
-
+ AccessibilityAcessibilidade
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Para compensar a proteção perdida, consulte a página de definições de Liberar Direitos no grupo de definições de Restrições.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessLeitores de eclã: JAWS, NVDA, Window-Eyes, Acesso ao Sistema
@@ -8930,88 +8925,88 @@ Por favor, note que este valores são atualmente para o utilizador específico e
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ Quick RecoveryRecuperação Rápida
-
+ Immediate RecoveryRecuperação Imediata
-
+ Various OptionsVárias opções
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Aplicar ElevateCreateProcess solução alternativa (comportamento herdado)
-
+ Use desktop object workaround for all processes
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ On Box Terminate
-
+ This command will be run before the box content will be deletedEste comando será executado antes que o conteúdo da caixa seja excluído
-
+ On File RecoveryAo recuperar ficheiros
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedEste comando será executado antes de um ficheiro ser recuperado e o localização do ficheiro será passado como primeiro argumento. Se este comando retornar algo diferente de 0, a recuperação será bloqueada
-
+ Run File CheckerRodar Verificador de Ficheiros
-
+ On Delete ContentAo apagar conteúdo
@@ -9022,7 +9017,7 @@ Por favor, note que este valores são atualmente para o utilizador específico e
-
+ ProcessProcesso
@@ -9031,68 +9026,68 @@ Por favor, note que este valores são atualmente para o utilizador específico e
Bloquear também o acesso de leitura aos processos nesta caixa
-
+ Add OptionAdicionar Opção
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Aqui você pode configurar opções avançadas por processo para melhorar a compatibilidade e/ou personalizar o comportamento do sandbox.
-
+ OptionOpção
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ DNS Request Logging
-
+ Syscall Trace (creates a lot of output)
-
+ TemplatesModelos
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.As definições a seguir permitem utilizar o sandboxie em combinação com software de acessibilidade. Note que algumas medidas de proteção do sandboxie será perdida quando essas definições estão em vigor.
-
+ Edit ini SectionEditar Seção ini
-
+ Edit iniEditar ini
-
+ CancelCancelar
-
+ SaveSalvar
diff --git a/SandboxiePlus/SandMan/sandman_ru.ts b/SandboxiePlus/SandMan/sandman_ru.ts
index 1a170025..8268d87e 100644
--- a/SandboxiePlus/SandMan/sandman_ru.ts
+++ b/SandboxiePlus/SandMan/sandman_ru.ts
@@ -1547,11 +1547,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All ProgramsВсе программы
@@ -1562,9 +1562,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1Группа: %1
@@ -1599,7 +1599,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.Значения шаблона нельзя редактировать.
@@ -2002,82 +2002,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ AnyЛюбой
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessРазрешить доступ
-
+ Block using Windows Filtering PlatformБлокировать с помощью платформы фильтрации Windows
-
+ Block by denying access to Network devicesБлокировать путем запрета доступа к сетевым устройствам
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowРазрешить
-
+ Block (WFP)Block (WFP)
-
+ Block (NDev)Block (NDev)
-
+ A non empty program name is required.Требуется непустое имя программы.
-
+ BlockБлокировать
@@ -6602,7 +6602,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Protect the system from sandboxed processesЗащита системы от изолированных процессов
@@ -6739,12 +6739,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Ограничения печати
-
+ Network restrictionsСетевые ограничения
-
+ Block network files and folders, unless specifically opened.Блокировать сетевые файлы и папки, если они специально не открываются.
@@ -6767,11 +6767,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
+
+
+
+
+ NameИмя
@@ -6801,15 +6801,15 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveУдалить
@@ -6875,11 +6875,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
+
+
+
+
+ Show TemplatesПоказать шаблоны
@@ -7013,89 +7013,84 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Открыть хранилище учетных данных Windows (пользовательский режим)
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Other Options
-
+ Prevent change to network and firewall parameters (user mode)Запретить изменение параметров сети и брандмауэра (пользовательский режим)
-
+ Move UpСдвинуть вверх
-
+ Move DownСдвинуть вниз
@@ -7166,33 +7161,33 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Настроить, какие процессы могут получать доступ к объектам рабочего стола, таким как Windows и т.п.
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.При нажатии глобальной горячей клавиши 3 раза подряд это исключение будет проигнорировано.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Исключить завершение этой песочницы при вызове "Завершить все процессы".
-
+ Image ProtectionЗащита изображения
-
+ Issue message 1305 when a program tries to load a sandboxed dllВыдать сообщение 1305, когда программа пытается загрузить изолированную dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxЗапретить программам в песочнице, установленным на хосте, загружать dll из песочницы
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Правила доступа к ресурсам Sandboxie часто дискриминируют двоичные файлы программ, расположенные внутри песочницы. OpenFilePath и OpenKeyPath работают только для двоичных файлов приложений, изначально расположенных на хосте. Чтобы определить правило без этого ограничения, необходимо использовать OpenPipePath или OpenConfPath. Аналогично, все директивы Closed(File|Key|Ipc)Path, которые определены отрицанием, например. ‘ClosedFilePath=! iexplore.exe,C:Users*’ всегда будет закрыт для двоичных файлов, находящихся внутри песочницы. Обе политики ограничения можно отключить на странице "Политики доступа".
@@ -7350,17 +7345,17 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
Ограничения
-
+ Dlls && ExtensionsDLL и расширения
-
+ DescriptionОписание
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Функциональность Sandboxie можно расширить с помощью дополнительных dll, которые можно загружать в каждый изолированный процесс при запуске с помощью SbieDll.dll. Менеджер надстроек в глобальных настройках предлагает несколько полезных расширений, после установки их можно включить здесь для текущей песочницы.
@@ -7543,9 +7538,9 @@ To specify a process use '$:program.exe' as path.
-
-
-
+
+
+ ProgramПрограмма
@@ -7553,20 +7548,20 @@ To specify a process use '$:program.exe' as path.
-
+ ActionДействие
-
+ PortПорт
-
-
+
+ IPIP
@@ -7576,7 +7571,7 @@ To specify a process use '$:program.exe' as path.
Протокол
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.ВНИМАНИЕ: Платформа фильтрации Windows не включена с драйвером, поэтому эти правила будут применяться только в пользовательском режиме и не могут быть применены!!! Это означает, что вредоносные приложения могут их обойти.
@@ -7611,57 +7606,57 @@ To specify a process use '$:program.exe' as path.
Добавить COM объект
-
+ File RecoveryВосстановление файлов
-
+ Quick RecoveryБыстрое восстановление
-
+ Add FolderДобавить папку
-
+ Immediate RecoveryНемедленное восстановление
-
+ Ignore ExtensionИгнорировать расширение
-
+ Ignore FolderИгнорировать папку
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Включить запрос немедленного восстановления, чтобы иметь возможность восстанавливать файлы сразу после их создания.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Вы можете исключить папки и типы файлов (или расширения файлов) из немедленного восстановления.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. При вызове функции быстрого восстановления следующие папки будут проверяться на наличие изолированного содержимого.
-
+ Advanced OptionsРасширенные настройки
-
+ MiscellaneousРазное
@@ -7682,7 +7677,7 @@ To specify a process use '$:program.exe' as path.
-
+ Protect the sandbox integrity itselfЗащитить целостность самой песочницы
@@ -7703,7 +7698,7 @@ To specify a process use '$:program.exe' as path.
Защитить изолированные процессы SYSTEM от непривилегированных процессов
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Принудительное использование пользовательских фиктивных файлов манифеста (устаревшее поведение)
@@ -7755,8 +7750,8 @@ The process match level has a higher priority than the specificity and describes
Разрешить доступ к диспетчеру управления службами только привилегированным процессам
-
-
+
+ CompatibilityСовместимость
@@ -7766,12 +7761,12 @@ The process match level has a higher priority than the specificity and describes
Добавить изолированные процессы к объектам задания (рекомендуется)
-
+ Emulate sandboxed window station for all processesЭмуляция оконной станции в песочнице для всех процессов
-
+ Allow use of nested job objects (works on Windows 8 and later)Разрешить использование вложенных объектов заданий (работает в Windows 8 и новее)
@@ -7796,7 +7791,7 @@ The process match level has a higher priority than the specificity and describes
Открыть доступ к серверу проверки подлинности локальной системы безопасности
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Отключить использование RpcMgmtSetComTimeout по умолчанию (это может решить проблемы совместимости)
@@ -7821,27 +7816,27 @@ The process match level has a higher priority than the specificity and describes
Приведенные ниже параметры можно безопасно использовать, если вы не предоставляете прав администратора.
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.Эти команды запускаются ВНЕ ПЕСОЧНИЦЫ после завершения всех процессов в песочнице.
-
+ Hide ProcessesСкрыть процессы
-
+ Add ProcessДобавить процесс
-
+ Hide host processes from processes running in the sandbox.Скрыть хост-процессы от процессов, запущенных в песочнице.
-
+ Don't allow sandboxed processes to see processes running in other boxesНе позволять изолированным процессам видеть процессы, запущенные в других песочницах
@@ -7873,42 +7868,42 @@ The process match level has a higher priority than the specificity and describes
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ Block DNS, UDP port 53
-
+ On Box TerminateПри завершении песочницы
-
+ UsersПользователи
-
+ Restrict Resource Access monitor to administrators onlyОграничить мониторинг доступа к ресурсам только администраторам
-
+ Add UserДобавить пользователя
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -7917,27 +7912,27 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Примечание. Параметры принудительных программ и принудительных папок для песочницы не применяются к учетным записям пользователей, которые не могут использовать эту песочницу.
-
+ TracingТрассировка
-
+ Pipe TraceТрассировка pipe
-
+ API call Trace (traces all SBIE hooks)API-вызов Trace (отслеживает все хуки SBIE)
-
+ Log all SetError's to Trace log (creates a lot of output)Записывать все SetError в журнал трассировки (создает много выходных данных)
-
+ Log Debug Output to the Trace LogЗаписывать вывод отладки в журнал трассировки
@@ -7977,71 +7972,71 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Выдать сообщение 2111, когда доступ к процессу запрещен
-
+ TriggersТриггеры
-
+ EventСобытие
-
-
-
-
+
+
+
+ Run CommandВыполнить комманду
-
+ Start ServiceЗапустить службу
-
+ These events are executed each time a box is startedЭти события выполняются каждый раз при запуске песочницы
-
+ On Box StartПри запуске песочницы
-
-
+
+ These commands are run UNBOXED just before the box content is deletedЭти команды запускаются вне песочницы непосредственно перед удалением содержимого песочницы
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Применение обходного пути ElevateCreateProcess (устаревшее поведение)
-
+ Use desktop object workaround for all processesИспользовать обходной путь для объектов рабочего стола для всех процессов
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Эти команды выполняются только при инициализации песочницы. Чтобы они снова запустились, содержимое песочницы должно быть удалено.
-
+ On Box InitПри инициализации песочницы
-
+ Here you can specify actions to be executed automatically on various box events.Здесь вы можете указать действия, которые будут выполняться автоматически при различных событиях песочницы.
-
+ On Delete ContentПри удалении контента
@@ -8052,27 +8047,27 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
-
+ ProcessПроцесс
-
+ Add OptionДобавить опцию
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Здесь вы можете настроить расширенные параметры для каждого процесса, чтобы улучшить совместимость и/или настроить поведение песочницы.
-
+ OptionОпция
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8091,103 +8086,103 @@ instead of "*".
вместо "*".
-
+ File TraceТрассировка файлов
-
+ Disable Resource Access MonitorОтключить монитор доступа к ресурсам
-
+ IPC TraceТрассировка IPC
-
+ GUI TraceТрассировка GUI
-
+ Resource Access MonitorМонитор доступа к ресурсам
-
+ Access TracingОтслеживание доступа
-
+ COM Class TraceТрассировка COM класса
-
+ Key TraceТрассировка ключей
-
+ Network FirewallСетевой брандмауэр
-
+ DebugОтладка
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!ВНИМАНИЕ, эти параметры могут отключить основные гарантии безопасности и нарушить безопасность песочницы!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Эти параметры предназначены для устранения проблем совместимости, не используйте их в продакшен среде.
-
+ App TemplatesШаблоны приложений
-
+ Filter CategoriesКатегории фильтров
-
+ Text FilterТекстовый фильтр
-
+ Add TemplateДобавить шаблон
-
+ This list contains a large amount of sandbox compatibility enhancing templatesЭтот список содержит большое количество шаблонов для улучшения совместимости песочницы
-
+ CategoryКатегория
-
+ Template FoldersПапки шаблонов
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8196,93 +8191,93 @@ Please note that this values are currently user specific and saved globally for
Обратите внимание, что эти значения в настоящее время специфичны для пользователя и сохраняются глобально для всех песочниц.
-
-
+
+ ValueЗначение
-
+ AccessibilityДоступность
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Чтобы компенсировать потерю защиты, обратитесь к странице настроек Сброс прав в группе настроек Ограничения.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessЧтение экрана: JAWS, NVDA, Window-Eyes, System Access
-
+ Various OptionsРазличные опции
-
+ This command will be run before the box content will be deletedЭта команда будет запущена до того, как содержимое песочницы будет удалено
-
+ On File RecoveryПри восстановлении файлов
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedЭта команда будет запущена перед восстановлением файла, и путь к файлу будет передан в качестве первого аргумента. Если эта команда возвращает значение, отличное от 0, восстановление будет заблокировано
-
+ Run File CheckerЗапустить проверку файлов
-
+ DNS Request Logging
-
+ Syscall Trace (creates a lot of output)Трассировка системных вызовов (создает много выходных данных)
-
+ TemplatesШаблоны
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Следующие настройки позволяют использовать Sandboxie в сочетании с программным обеспечением специальных возможностей. Обратите внимание, что когда действуют эти настройки, определенная степень защиты Sandboxie обязательно теряется.
-
+ Edit ini SectionРедактировать раздел ini
-
+ Edit iniРедактировать ini
-
+ CancelОтмена
-
+ SaveСохранить
diff --git a/SandboxiePlus/SandMan/sandman_sv_SE.ts b/SandboxiePlus/SandMan/sandman_sv_SE.ts
index 6e611ebe..b40f5dfe 100644
--- a/SandboxiePlus/SandMan/sandman_sv_SE.ts
+++ b/SandboxiePlus/SandMan/sandman_sv_SE.ts
@@ -1696,9 +1696,9 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
-
-
+
+
+ Group: %1Grupp: %1
@@ -1861,11 +1861,11 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
-
-
-
-
+
+
+
+
+ All ProgramsAlla program
@@ -1900,7 +1900,7 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
+ Template values can not be edited.Mallvärden kan inte redigeras.
@@ -2323,82 +2323,82 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
+ AnyVarje
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessTillåt tillgång
-
+ Block using Windows Filtering PlatformBlockera användande av Windows Filtering Platform
-
+ Block by denying access to Network devicesBlockera genom att neka tillgång till nätverksenheter
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowTillåt
-
+ Block (WFP)Blockera (WFP)
-
+ Block (NDev)Blockera (NDev)
-
+ A non empty program name is required.Ett icke tomt programnamn krävs.
-
+ BlockBlockera
@@ -7386,7 +7386,7 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
-
+ Protect the system from sandboxed processesSkydda systemet från sandlådade processer
@@ -7463,7 +7463,7 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Utskriftsbegränsningar
-
+ Prevent change to network and firewall parameters (user mode)Förhindra ändring av nätverks- och brandväggsparametrar (användarläge)
@@ -7473,7 +7473,7 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Tillåt läsning av minne av osandlådade processer (inte rekommenderat)
-
+ Network restrictionsNätverksbegränsningar
@@ -7488,7 +7488,7 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
Tillåt Print Spooler att skriva ut till filer utanför sandlådan
-
+ Block network files and folders, unless specifically opened.Blockera nätverksfiler och mappar, förutom om specifikt öppnade.
@@ -7525,11 +7525,11 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
-
-
-
-
-
+
+
+
+
+ NameNamn
@@ -7591,15 +7591,15 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveTa bort
@@ -7688,11 +7688,11 @@ Om du redan är en Great Supporter on Patreon, kan Sandboxie söka på nätet f
-
-
-
-
-
+
+
+
+
+ Show TemplatesVisa mallar
@@ -7906,9 +7906,9 @@ Om ledarprocesser är definierade, behandlas alla andra som kvardröjande progra
-
-
-
+
+
+ ProgramProgram
@@ -7991,13 +7991,13 @@ Om ledarprocesser är definierade, behandlas alla andra som kvardröjande progra
-
+ Move UpFlytta upp
-
+ Move DownFlytta ner
@@ -8013,40 +8013,40 @@ Om ledarprocesser är definierade, behandlas alla andra som kvardröjande progra
Tillgångsisolering
-
+ Image ProtectionAvbildsskydd
-
+ Issue message 1305 when a program tries to load a sandboxed dllUtfärda meddelande 1305 när ett program försöker ladda en sandlådad dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandboxFörhindra sandlådade program installerade på värden från att ladda DLL:s från sandlådan
-
+ Dlls && ExtensionsDll:s && förlängningar
-
+ DescriptionBeskrivning
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Sandboxie:s resurstillgångsregler särskiljer ofta emot programbinärer lokaliserade inuti sandlådan. OpenFilePath och OpenKeyPath fungerar bara för app-binärer lokaliserade på värden ursprungligen. För att kunna definiera en regel utan denna begränsning, måste OpenPipePath eller OpenConPath användas. Likaså, alla stängda(File|Key|Ipc)sökvägsdirektiv vilka är definierade via negation e.x. ClosedFilePath=!iexplore.exe,CUsers* kommer alltid vara stängda för binärer lokaliserade inuti en sandlåda. Båda begränsningspolicyerna kan inaktiveras på sidan Tillgångspolicy.
Detta görs för att förhindra Rogue-processer inuti sandlådan från att skapa en namnändrad kopia av sig själva och tillgå skyddade resurser. En annan exploateringsvektor är injicerandet av ett bibliotek in i en auktoriserad process för att få tillgång till allting det ges tillgång till. Användande av Host Image Protection, kan detta förhindras genom att blockera applikationer (installerade på värden) körandes inuti en sandlåda från att ladda bibliotek från sandlådan självt.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Sandboxies funktionalitet kan utökas genom att använda valfria dll`s som kan laddas in i varje sandlådad process av SbieDll.dll vid starten, tilläggshanteraren i globala inställningar erbjuder ett antal användbara förlängningar, väl installerade kan de aktiveras här för nuvarande låda.
@@ -8258,20 +8258,20 @@ För att specificera en process, använd '$:program.exe' som sökväg.
-
+ ActionAktion
-
+ PortPort
-
-
+
+ IPIP
@@ -8281,7 +8281,7 @@ För att specificera en process, använd '$:program.exe' som sökväg.
Protokoll
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.BEAKTA: Windows Filtering Platform är inte aktiverad med drivrutinen, därför tillämpas dessa regler endast i användarläge och kan inte påtvingas!!! Detta betyder att skadliga applikationer kan passera dem.
@@ -8374,42 +8374,42 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Tillämpa fil- och nyckelöppnardirektiv endast till binärer lokaliserade utanför sandlådan.
-
+ File RecoveryFilåterställning
-
+ Add FolderAddera mapp
-
+ Ignore ExtensionIgnorera förlängning
-
+ Ignore FolderIgnorera mapp
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Aktivera meddelandet Omedelbart återställande för att kunna återställa filer så fort som de är skapade.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Du kan utesluta mappar och filtyper (eller filförlängningar) från omedelbart återställande.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. När funktionen Omedelbart återställande är åberopad, kommer följande mappar bli kontrollerade för sandlådat innehåll.
-
+ Immediate RecoveryOmedelbart återställande
@@ -8418,17 +8418,17 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Diverse alternativ
-
+ Advanced OptionsAvancerade alternativ
-
+ MiscellaneousÖvrigt
-
+ Emulate sandboxed window station for all processesEfterlikna sandlådad fönsterstation för alla processer
@@ -8462,7 +8462,7 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Tillåt endast priviligerade processer att tillgå Service Control Manager
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Tvinga användandet av anpassade modellmanifestfiler (legacy beteende)
@@ -8483,8 +8483,8 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Ändra inte fönsterklassnamn skapade av sandlådade program
-
-
+
+ CompatibilityKompatibilitet
@@ -8495,7 +8495,7 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
-
+ Protect the sandbox integrity itselfSkydda själva sandlådans integritet
@@ -8512,7 +8512,7 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Tillåt användande av kapslade jobbobjekt (experimentell, fungerar på Windows 8 och senare)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Inaktivera användandet av RpcMgmtSetComTimeout som standard (det kan lösa kompatibilitetsproblem)
@@ -8577,57 +8577,57 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Avancerad
-
+ Add OptionAddera alternativ
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Här kan du konfigurera avancerade per process alternativ för förbättrande av kompatibiliteten och/eller anpassa sandlådningsbeteende.
-
+ OptionAlternativ
-
+ TriggersUtlösare
-
+ EventHändelse
-
-
-
-
+
+
+
+ Run CommandKör kommandot
-
+ Start ServiceStarta tjänsten
-
+ These events are executed each time a box is startedDessa händelser verkställs varje gång en låda startas
-
+ On Box StartVid lådstart
-
-
+
+ These commands are run UNBOXED just before the box content is deletedDessa kommandon körs OLÅDADE precis innan lådinnehållet raderas
@@ -8636,57 +8636,57 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Vid lådraderande
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Dessa kommandon verkställs endast när en låda påbörjas. För att köra dem igen, måste lådinnehållet raderas.
-
+ On Box InitVid lådstart
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.Dessa kommandon körs OLÅDADE efter att alla processer i sandlådan har avslutats.
-
+ Here you can specify actions to be executed automatically on various box events.Här kan du specificera aktioner att verkställas automatiskt vid varierande lådhändelser.
-
+ Hide ProcessesDölj processer
-
+ Add ProcessAddera process
-
+ Hide host processes from processes running in the sandbox.Dölj värdprocesser från processer körandes i sandlådan.
-
+ Don't allow sandboxed processes to see processes running in other boxesTillåt inte sandlådade processer att se processer som körs i andra lådor
-
+ UsersAnvändare
-
+ Restrict Resource Access monitor to administrators onlyBegränsa resurstillgångsövervakning till administratörer endast
-
+ Add UserAddera användare
@@ -8695,7 +8695,7 @@ Processmatchningsnivån har en högre prioritet än säregenheten och beskriver
Ta bort användare
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8704,7 +8704,7 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Notera: Inställningarna Tvingade program och Tvinga mappar, för en sandlåda, gäller inte för användarkonton som inte kan använda sandlådan.
-
+ TracingSpårning
@@ -8714,22 +8714,22 @@ Notera: Inställningarna Tvingade program och Tvinga mappar, för en sandlåda,
API call spårning (kräver att LogAPI är installerat i sbie:s katalog)
-
+ Pipe TracePipe Trace
-
+ API call Trace (traces all SBIE hooks)API-anropspår (spårar alla SBIE hooks)
-
+ Log all SetError's to Trace log (creates a lot of output)Logga alla SetError's till spårloggen (skapar en massa utflöde)
-
+ Log Debug Output to the Trace LogLogga Debug Output till spårloggen
@@ -8760,78 +8760,78 @@ istället för "*".
Ntdll syscall-spår (skapar en massa utflöde)
-
+ File TraceFilspår
-
+ Disable Resource Access MonitorInaktivera resurstillgångsövervakning
-
+ IPC TraceIPC-spår
-
+ GUI TraceGUI-spår
-
+ Resource Access MonitorResurstillgångsövervakare
-
+ Access TracingTillgångsspårning
-
+ COM Class TraceCOM-class spår
-
+ Key TraceNyckelspår
-
+ Network FirewallNätverksbrandvägg
-
+ DNS Request LoggingLoggning av DNS-förfrågan
-
+ Syscall Trace (creates a lot of output)Syscall spår (skapar en logg av utdata)
-
+ DebugFelsök
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!VARNING, dessa alternativ kan inaktivera kärnsäkerhetsgarantier och bryta sandlådesäkerhet!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Dessa alternativ är avsedda för felsökning av kompatibilitetsproblem, vänligen använd dem inte vid produktionsanvändning.
-
+ App TemplatesAppmallar
@@ -8840,22 +8840,22 @@ istället för "*".
Kompatibilitetsmallar
-
+ Filter CategoriesFilterkategorier
-
+ Text FilterTextfilter
-
+ Add TemplateAddera mall
-
+ This list contains a large amount of sandbox compatibility enhancing templatesDenna lista innehåller en stor mängd av kompatibilitetsutökande sandlådemallar
@@ -8864,17 +8864,17 @@ istället för "*".
Ta bort mall
-
+ CategoryKategori
-
+ Template FoldersMallmappar
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8883,13 +8883,13 @@ Please note that this values are currently user specific and saved globally for
Vänligen notera att detta värde är för tillfället användarspecifikt och sparas globalt för alla lådor.
-
-
+
+ ValueVärde
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8921,22 +8921,22 @@ istället för "*".
Tillämpa Stäng...=!<programmet>,... regler även till alla binärer lokaliserade i sandlådan.
-
+ Allow use of nested job objects (works on Windows 8 and later)Tillåt användning av kapslade jobbobjekt (fungerar på Windows 8 och senare)
-
+ AccessibilityTillgänglighet
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.För att kompensera för det förlorade skyddet, vänligen konsultera inställningen Skippa rättigheter i Säkerhetsalternativ > Säkerhetshärdning > Förhöjningsbegränsningar.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessSkärmläsare: JAWS, NVDA, Window-Eyes, Systemtillgång
@@ -8956,148 +8956,143 @@ istället för "*".
Konfigurera vilka processer som kan tillgå skrivbordsobjekt såsom Windows och liknande.
-
+ Other OptionsAndra alternativ
-
+ Port BlockingPortblockering
-
+ Block common SAMBA portsBlockera vanliga SAMBA-portar
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Block DNS, UDP port 53Blockera DNS, UDP-port 53
-
+ Quick RecoveryOmedelbart återställande
-
+ Various OptionsOlika alternativ
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Tillämpa ElevateCreateProcess-lösningen (legacy beteende)
-
+ Use desktop object workaround for all processesAnvänd skrivbordsobjektlösningen för alla processer
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.När den globala snabbtangenten trycks 3 gånger i kort följd kommer detta undantag att ignoreras.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.Exkludera denna sandlåda från att bli avslutad när Avsluta alla processer är anropat.
-
+ On Box TerminateVid Låd Terminerande
-
+ This command will be run before the box content will be deletedDetta kommando kommer köras före det att lådinnehållet raderas
-
+ On File RecoveryVid filåterställande
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedDetta kommando kommer köras före det att en fil återställs och filsökvägen kommer att passeras som första argument. Om detta kommando returnerar något annat än 0, blockeras återställningen
-
+ Run File CheckerKör filkontrolleraren
-
+ On Delete ContentVid Radera innehåll
@@ -9108,7 +9103,7 @@ istället för "*".
-
+ ProcessProcess
@@ -9117,37 +9112,37 @@ istället för "*".
Blockera även lästillgång till processer i denna sandlåda
-
+ TemplatesMallar
-
+ Open TemplateÖppna mall
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Följande inställningar aktiverar användandet av Sandboxie i kombination med tillgänglighetsprogram. Vänligen notera att ett visst mått av Sandboxies skydd av nödvändighet förloras när dessa inställningar aktiveras.
-
+ Edit ini SectionRedigera ini-sektionen
-
+ Edit iniRedigera ini
-
+ CancelAvbryt
-
+ SaveSpara
diff --git a/SandboxiePlus/SandMan/sandman_tr.ts b/SandboxiePlus/SandMan/sandman_tr.ts
index 0d41bf42..38cfb866 100644
--- a/SandboxiePlus/SandMan/sandman_tr.ts
+++ b/SandboxiePlus/SandMan/sandman_tr.ts
@@ -1371,7 +1371,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
-
+ Template values can not be edited.Şablon değerleri düzenlenemez.
@@ -1447,9 +1447,9 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
-
-
-
+
+
+ Group: %1Grup: %1
@@ -1552,11 +1552,11 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
-
-
-
-
-
+
+
+
+
+ All ProgramsTüm Programlar
@@ -1846,82 +1846,82 @@ Lütfen bu dosyayı içeren bir klasör seçin.
-
+ AnyHerhangi
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessErişime izin ver
-
+ Block using Windows Filtering PlatformWindows Filtreleme Platformunu kullanarak engelle
-
+ Block by denying access to Network devicesAğ cihazlarına erişimi reddederek engelle
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ Allowİzin ver
-
+ Block (WFP)Engelle (WFP)
-
+ Block (NDev)Engelle (NDev)
-
+ A non empty program name is required.Boş olmayan bir program adı gereklidir.
-
+ BlockEngelle
@@ -6506,11 +6506,11 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
+
+
+
+
+ NameAd
@@ -6522,7 +6522,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Yol
-
+ SaveKaydet
@@ -6558,17 +6558,17 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Başlıktaki korumalı alan göstergesi:
-
+ DebugHata Ayıklama
-
+ UsersKullanıcılar
-
+ Block network files and folders, unless specifically opened.Özel olarak açılmadıkça ağ dosyalarını ve klasörlerini engelle.
@@ -6583,7 +6583,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Korumalı alandaki programlar tarafından oluşturulan pencere sınıfı adları değiştirilmesin
-
+ Log Debug Output to the Trace LogHata Ayıklama Çıktısını İzleme Günlüğüne Kaydet
@@ -6593,7 +6593,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Wnd Sınıfı Ekle
-
+ Access TracingErişim İzleme
@@ -6618,7 +6618,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Tüm programların bu alanda başlamasına izin ver.
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Dosyalar oluşturulur oluşturulmaz kurtarabilmek için Anında Kurtarma istemini etkinleştir.
@@ -6633,27 +6633,27 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Erişim
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Bu seçenekler uyumluluk sorunlarındaki hataları ayıklamaya yönelik tasarlanmıştır, lütfen bu ayarları üretim amaçlı kullanmayın.
-
+ TemplatesŞablonlar
-
+ Text FilterMetin Filtresi
-
+ Cancelİptal
-
+ Restrict Resource Access monitor to administrators onlyKaynak Erişimi İzleyicisini yalnızca yöneticilerle kısıtla
@@ -6664,12 +6664,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Protect the sandbox integrity itselfKorumalı alan bütünlüğünün kendisini koruyun
-
+ Add FolderKlasör Ekle
@@ -6679,7 +6679,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Kullanıcıya ablukadan muafiyete izin verip vermeyeceğini sor.
-
+ IPC TraceIPC İzleme
@@ -6699,15 +6699,15 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveKaldır
@@ -6722,8 +6722,8 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Bir programın internet erişimi reddedildiğinde 1307 mesajını yayınla
-
-
+
+ CompatibilityUyumluluk
@@ -6738,7 +6738,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Alan Seçenekleri
-
+ Don't allow sandboxed processes to see processes running in other boxesKorumalı alandaki işlemlerin diğer alanlarda çalışan işlemleri görmesine izin verilmesin
@@ -6758,7 +6758,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Seçili programların bu alanda başlamasını önle.
-
+ MiscellaneousÇeşitli
@@ -6768,7 +6768,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Dosya çok büyükse 2102 mesajını yayınla
-
+ File RecoveryDosya Kurtarma
@@ -6778,12 +6778,12 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Alan Silme Seçenekleri
-
+ Pipe TraceBoru İzleme
-
+ File TraceDosya İzleme
@@ -6795,14 +6795,14 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
-
-
+
+
+ ProgramProgram
-
+ Add Processİşlem Ekle
@@ -6816,7 +6816,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Program Ekle
-
+ Filter CategoriesKategorileri Filtrele
@@ -6835,7 +6835,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
-
+ Protect the system from sandboxed processesSistemi korumalı alandaki işlemlerden koru
@@ -6845,7 +6845,7 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
SandboxiePlus Ayarları
-
+ CategoryKategori
@@ -6860,17 +6860,17 @@ If you are a Great Supporter on Patreon already, Sandboxie can check online for
Kayıt Anahtarı Ekle
-
+ Hide Processesİşlemleri Gizle
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Hızlı Kurtarma işlevi çağrıldığında, aşağıdaki klasörler korumalı alan içeriği için denetlenecektir.
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -6894,7 +6894,7 @@ günlüğe kaydetme özelleştirilebilir.
px Genişliği
-
+ Add UserKullanıcı Ekle
@@ -6909,12 +6909,12 @@ günlüğe kaydetme özelleştirilebilir.
Program Zorla
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!UYARI, bu seçenekler temel güvenlik garantilerini devre dışı bırakabilir ve korumalı alan güvenliğini bozabilir!
-
+ Edit iniIni Düzenle
@@ -6933,31 +6933,31 @@ günlüğe kaydetme özelleştirilebilir.
-
-
-
-
-
+
+
+
+
+ Show TemplatesŞablonları Göster
-
+ Ignore FolderKlasörü Yok Say
-
+ GUI TraceGKA İzleme
-
+ Key TraceTuş İzleme
-
+ Tracingİzleme
@@ -6972,7 +6972,7 @@ günlüğe kaydetme özelleştirilebilir.
Korumalı alan işlemlerini iş nesnelerine ekle (Önerilir)
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Klasörleri ve dosya türlerini (veya dosya uzantılarını) Anında Kurtarma'nın dışında bırakabilirsiniz.
@@ -6982,12 +6982,12 @@ günlüğe kaydetme özelleştirilebilir.
Çalıştır Menüsü
-
+ App TemplatesUygulama Şablonları
-
+ Ignore ExtensionUzantıyı Yok Say
@@ -6997,7 +6997,7 @@ günlüğe kaydetme özelleştirilebilir.
Bu korumalı alanı silinmeye veya boşaltılmaya karşı koru
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -7011,7 +7011,7 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
* Not: Bu korumalı alana yüklenen programlar hiçbir şekilde başlatılamaz.
-
+ This list contains a large amount of sandbox compatibility enhancing templatesBu liste, korumalı alan uyumluluğunu geliştiren çok sayıda şablonlar içerir
@@ -7031,12 +7031,12 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Kaynak Erişimi
-
+ Advanced OptionsGelişmiş Seçenekler
-
+ Hide host processes from processes running in the sandbox.Korumalı alanda çalışan işlemlerden ana sistem işlemlerini gizler.
@@ -7067,17 +7067,17 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Başlatma Kısıtlamaları
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Özel sahte Manifest dosyalarının kullanımını zorla (Eski davranış)
-
+ Edit ini SectionIni Düzenleme Bölümü
-
+ COM Class TraceCOM Sınıf İzleme
@@ -7117,7 +7117,7 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Uygulamaların yetkilendirilmiş çalıştıklarını düşünmelerini sağla (Yükleyicileri güvenli bir şekilde çalıştırmanıza izin verir)
-
+ Network restrictionsAğ Kısıtlamaları
@@ -7297,13 +7297,13 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
-
+ Move UpYukarı Taşı
-
+ Move DownAşağı Taşı
@@ -7374,42 +7374,42 @@ Not: Bir korumalı alana ilişkin Zorunlu Programlar ve Zorunlu Klasörler ayarl
Hangi işlemlerin pencereler ve benzeri masaüstü nesnelerine erişebileceğini yapılandırın.
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.Genel kısayol tuşuna art arda 3 kez basıldığında bu istisna göz ardı edilecektir.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked."Tüm İşlemleri Sonlandır" çalıştırıldığında bu korumalı alanı sonlandırılma dışında tut.
-
+ Image ProtectionGörüntü Koruması
-
+ Issue message 1305 when a program tries to load a sandboxed dllBir program korumalı alandan bir DLL dosyası yüklemeye çalıştığında 1305 mesajını yayınla
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxSistemde yüklü korumalı alanda çalışan programların alan içinden DLL yüklemesini önle
-
+ Dlls && ExtensionsDLL'ler && Uzantılar
-
+ DescriptionAçıklama
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Sandboxie'nin kaynak erişim kuralları, genellikle korumalı alan içinde bulunan program ikili dosyalarına göre ayrım yapar. OpenFilePath ve OpenKeyPath yalnızca ana sistemde yerel olarak bulunan uygulama ikili dosyaları için çalışır.
@@ -7417,7 +7417,7 @@ Bu kısıtlama olmaksızın bir kural tanımlamak için OpenPipePath veya OpenCo
Bu, korumalı alan içindeki haydut işlemlerin kendilerinin yeniden adlandırılmış bir kopyasını oluşturmasını ve korunan kaynaklara erişmesini önlemek için yapılır. Başka bir istismar vektörü de bir kütüphanenin yetkili bir işleme yerleşerek ona izin verilen her şeye erişim hakkı elde etmesidir. Ana Sistem Görüntü Koruması kullanılarak, bir korumalı alanda çalışan uygulamaların (ana sistemde yüklü) korumalı alanda bulunan kütüphaneleri yüklemesi engellenerek bu durum önlenebilir.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxie'nin işlevselliği, korumalı alanda herhangi bir işlem başlatıldığında SbieDll.dll tarafından ona yüklenebilen, isteğe bağlı DLL'ler kullanılarak genişletilebilir. Genel ayarlardaki Eklenti Yöneticisinde bazı yararlı uzantılar sunulmaktadır. Bunlar kurulduktan sonra geçerli korumalı alan için buradan etkinleştirilebilirler.
@@ -7619,142 +7619,137 @@ Bir işlemi belirtmek için yol olarak '$:program.exe' kullanın.Ağ Seçenekleri
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Other OptionsDiğer Seçenekler
-
+ Port BlockingBağlantı Noktası Engelleme
-
+ Block common SAMBA portsYaygın SAMBA bağlantı noktalarını engelle
-
+ Block DNS, UDP port 53DNS, UDP bağlantı noktası 53'ü engelle
-
+ Quick RecoveryHızlı Kurtarma
-
+ Immediate RecoveryAnında Kurtarma
-
+ Various OptionsÇeşitli Seçenekler
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)ElevateCreateProcess geçici çözümünü uygula (Eski davranış)
-
+ Use desktop object workaround for all processesMasaüstü nesnesi geçici çözümünü tüm işlemler için kullan
-
+ On Box TerminateAlan Sonlandığında
-
+ This command will be run before the box content will be deletedBu komut, alan içeriği silinmeden önce çalıştırılacaktır
-
+ On File RecoveryDosya Kurtarmada
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedBu komut, bir dosya kurtarılmadan önce çalıştırılacak ve dosya yolu ilk bağımsız değişken olarak aktarılacaktır. Bu komut 0'dan başka bir değer döndürürse, kurtarma işlemi engellenecektir
-
+ Run File CheckerDosya Denetleyicisini Gir
-
+ On Delete Contentİçerik Silmede
@@ -7765,37 +7760,37 @@ Bir işlemi belirtmek için yol olarak '$:program.exe' kullanın.
-
+ Processİşlem
-
+ Add OptionSeçenek Ekle
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Burada, uyumluluğu artırmak veya korumalı alan davranışını özelleştirmek için işlem başına gelişmiş seçenekleri yapılandırabilirsiniz.
-
+ OptionSeçenek
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.Bu komutlar korumalı alandaki tüm işlemler sonlandıktan sonra ALAN DIŞINDAN çalıştırılır.
-
+ API call Trace (traces all SBIE hooks)API çağrısı İzleme (tüm SBIE kancalarını izler)
-
+ Log all SetError's to Trace log (creates a lot of output)Tüm SetError Mesajlarını İzleme Günlüğüne Kaydet (Çok fazla çıktı oluşturur)
@@ -7810,37 +7805,37 @@ Bir işlemi belirtmek için yol olarak '$:program.exe' kullanın.Panoya okuma erişimini engelle
-
+ Emulate sandboxed window station for all processesTüm işlemler için korumalı alan pencere istasyonunu taklit et
-
+ DNS Request Logging
-
+ Syscall Trace (creates a lot of output)Syscall İzleme (Çok fazla çıktı oluşturur)
-
+ Add TemplateŞablon Ekle
-
+ Open TemplateŞablonu Aç
-
+ Template FoldersŞablon Klasörleri
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -7849,28 +7844,28 @@ Please note that this values are currently user specific and saved globally for
Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için global olarak kaydedildiğini unutmayın.
-
-
+
+ ValueDeğer
-
+ AccessibilityErişilebilirlik
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Kaybedilen korumayı telafi etmek için lütfen Güvenlik Seçenekleri > Güvenlik Sıkılaştırması altındaki Yetkilendirme Kısıtlamaları bölümü Hak Bırakma ayarlarına bakın.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessEkran Okuyucuları: JAWS, NVDA, Window-Eyes, System Access
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Aşağıdaki ayarlar, Sandboxie'nin erişilebilirlik yazılımıyla birlikte kullanılmasını sağlar. Lütfen bu ayarlar etkin olduğunda Sandboxie korumasının bir kısmının ister istemez kaybedildiğini unutmayın.
@@ -7885,12 +7880,12 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
Windows Güvenlik Hesap Yöneticisine açık erişim
-
+ Disable Resource Access MonitorKaynak Erişim İzleyicisini Devre Dışı Bırak
-
+ Resource Access MonitorKaynak Erişim İzleyicisi
@@ -7983,20 +7978,20 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
-
+ ActionEylem
-
+ PortBağlantı Noktası
-
-
+
+ IPIP
@@ -8006,7 +8001,7 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
Protokol
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.DİKKAT: Windows Filtreleme Platformu sürücü ile etkinleştirilmemiştir, bu nedenle bu kurallar yalnızca kullanıcı modunda uygulanacaktır ve zorlanmaz! Bu, kötü amaçlı uygulamaların bunları atlayabileceği anlamına gelir.
@@ -8022,7 +8017,7 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
-
+ Network FirewallAğ Güvenlik Duvarı
@@ -8052,7 +8047,7 @@ Lütfen bu değerlerin kullanıcıya özel olduğunu ve tüm alanlar için globa
Windows Kimlik Bilgileri Deposunu aç (Kullanıcı modu)
-
+ Prevent change to network and firewall parameters (user mode)Ağ ve güvenlik duvarı parametrelerinde değişikliği engelle (Kullanıcı modu)
@@ -8150,61 +8145,61 @@ The process match level has a higher priority than the specificity and describes
İşlem eşleştirme düzeyi, özgüllükten daha yüksek bir önceliğe sahiptir ve bir kuralın belirli bir işleme nasıl uygulanacağını tanımlar. İşlem adına veya grubuna göre uygulanan kurallar en güçlü eşleştirme düzeyine sahiptir. Ardından olumsuzlama ile eşleştirme gelir, yani belirtilen işlem dışındaki tüm işlemlere uygulanan kurallara aittir; en düşük eşleştirme düzeyleri ise genel eşleştirmelere, yani herhangi bir işleme uygulanan kurallara aittir.
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Varsayılan olarak RpcMgmtSetComTimeout kullanımını devre dışı bırak (Uyumluluk sorunlarını çözebilir)
-
+ TriggersTetikleyiciler
-
+ EventOlay
-
-
-
-
+
+
+
+ Run CommandKomut Gir
-
+ Start ServiceHizmeti Gir
-
+ These events are executed each time a box is startedBu olaylar, bir alan her başlatıldığında yürütülür
-
+ On Box StartAlan Başlangıcında
-
-
+
+ These commands are run UNBOXED just before the box content is deletedBu komutlar alan içeriği silinmeden hemen önce ALAN DIŞINDAN çalıştırılır
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Bu komutlar yalnızca bir alan ilk kullanıma hazırlandığında yürütülür. Tekrar çalışması için alan içeriğinin silinmesi gerekir.
-
+ On Box InitAlan İlk Kullanımında
-
+ Here you can specify actions to be executed automatically on various box events.Burada, çeşitli alan olaylarında otomatik olarak yürütülecek eylemleri belirleyebilirsiniz.
@@ -8219,7 +8214,7 @@ The process match level has a higher priority than the specificity and describes
Bir işlem erişimi reddedildiğinde 2111 mesajını yayınla
-
+ Allow use of nested job objects (works on Windows 8 and later)İç içe iş nesnelerinin kullanımına izin ver (Windows 8 ve sonraki sürümlerde çalışır)
diff --git a/SandboxiePlus/SandMan/sandman_uk.ts b/SandboxiePlus/SandMan/sandman_uk.ts
index b722559e..7a6df68a 100644
--- a/SandboxiePlus/SandMan/sandman_uk.ts
+++ b/SandboxiePlus/SandMan/sandman_uk.ts
@@ -1632,11 +1632,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All ProgramsУсі програми
@@ -1647,9 +1647,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1Група: %1
@@ -1684,7 +1684,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.Шаблон не можна редагувати.
@@ -2103,82 +2103,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ AnyБудь-який
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessДозволити доступ
-
+ Block using Windows Filtering PlatformЗаборонити за допомогою Windows Filtering Platform
-
+ Block by denying access to Network devicesЗаборонити, заблокувавши доступ до пристроїв мережі
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowДозволити
-
+ Block (WFP)Заборонити (WFP)
-
+ Block (NDev)Заборонити (NDev)
-
+ A non empty program name is required.
-
+ BlockЗаборонити
@@ -6949,7 +6949,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Protect the system from sandboxed processesЗахистити систему від процесів у пісочниці
@@ -7094,12 +7094,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Обмеження друку
-
+ Network restrictionsОбмеження мережі
-
+ Block network files and folders, unless specifically opened.Блокувати файли та папки у мережі, якщо вони не відкриті.
@@ -7122,11 +7122,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameНазва
@@ -7156,15 +7156,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveПрибрати
@@ -7234,11 +7234,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Show TemplatesПоказати шаблони
@@ -7292,7 +7292,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Відкрити Сховище Windows Credentials (user mode)
-
+ Prevent change to network and firewall parameters (user mode)Заборонити змінювати налаштування мережі та файрволу (user mode)
@@ -7495,13 +7495,13 @@ If leader processes are defined, all others are treated as lingering processes.<
-
+ Move UpПеремістити вгору
-
+ Move DownПеремістити вниз
@@ -7572,49 +7572,49 @@ If leader processes are defined, all others are treated as lingering processes.<
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image Protection
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7857,9 +7857,9 @@ To specify a process use '$:program.exe' as path.
-
-
-
+
+
+ ProgramПрограма
@@ -7867,20 +7867,20 @@ To specify a process use '$:program.exe' as path.
-
+ ActionДія
-
+ PortПорт
-
-
+
+ IPIP
@@ -7890,7 +7890,7 @@ To specify a process use '$:program.exe' as path.
Протокол
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.УВАГА: Windows Filtering Platform не увімнений у драйвері, тому ці правила можуть працювати тільки в користувальницькому режимі та можуть бути не застосовані!!! Шкідливі програми можуть це обійти.
@@ -7937,57 +7937,57 @@ You can use 'Open for All' instead to make it apply to all programs, o
Додати об'єкт COM
-
+ File RecoveryВідновлення файлів
-
+ Quick Recovery
-
+ Add FolderДодати папку
-
+ Immediate RecoveryНегайне відновлення
-
+ Ignore ExtensionІгнорувати розширення
-
+ Ignore FolderІгнорувати папку
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Увімкнути термінове відновлення файлів, щоб швидко відновити файли після їх створення.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Ви можете виключити деякі папки та типи файлів (або розширення файлів) з термінового відновлення.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Коли швидке відновлення викликано, ці папки будуть перевірені в пісочниці.
-
+ Advanced OptionsДодаткові налаштування
-
+ MiscellaneousРізне
@@ -8008,7 +8008,7 @@ You can use 'Open for All' instead to make it apply to all programs, o
-
+ Protect the sandbox integrity itselfЗахистити цілісність пісочниці
@@ -8033,7 +8033,7 @@ You can use 'Open for All' instead to make it apply to all programs, o
Ізоляція пісочниці
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Примусове використання користувальницьких файлів маніфесту (застаріле)
@@ -8097,8 +8097,8 @@ The process match level has a higher priority than the specificity and describes
Дозволити доступ до Service Control Manager тільки привільованим процесам
-
-
+
+ CompatibilityСумістність
@@ -8112,12 +8112,12 @@ The process match level has a higher priority than the specificity and describes
Додати процеси у пісочниці до об'єктів завдань (рекомендовано)
-
+ Emulate sandboxed window station for all processesЕмулювати віконну станцію для всіх процесів у пісочниці
-
+ Allow use of nested job objects (works on Windows 8 and later)Дозволити використання вкладених об'єктів завдань (працює тільки в Windows 8 та вище)
@@ -8183,7 +8183,7 @@ The process match level has a higher priority than the specificity and describes
COM/RPC
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Вимкнути використання RpcMgmtSetComTimeout за замовчуванням (може визивати проблеми з сумісністю)
@@ -8212,41 +8212,41 @@ The process match level has a higher priority than the specificity and describes
Ізоляція доступу
-
+ TriggersТригери
-
+ EventПодія
-
-
-
-
+
+
+
+ Run CommandВиконати команду
-
+ Start ServiceЗапустити слубжу
-
+ These events are executed each time a box is startedЦі події виконуються щоразу, коли запускається контейнер
-
+ On Box StartПри запуску контейнера
-
-
+
+ These commands are run UNBOXED just before the box content is deletedЦі команди виконуються ПОЗА ПІСОЧНИЦЕЮ безпосередньо перед видаленням вмісту контейнера
@@ -8255,52 +8255,52 @@ The process match level has a higher priority than the specificity and describes
При видаленні контейнера
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Ці команди виконуються лише після ініціалізації контейнера. Щоб запустити їх знову, вміст контейнера потрібно видалити.
-
+ On Box InitПри ініціалізації контейнера
-
+ Here you can specify actions to be executed automatically on various box events.Тут ви можете вказати дії, які будуть виконуватися автоматично для різних подій контейнера.
-
+ Hide ProcessesСховати процеси
-
+ Add ProcessДодати процес
-
+ Hide host processes from processes running in the sandbox.Сховати процеси хоста від процесів, які виконуються в пісочниці.
-
+ Don't allow sandboxed processes to see processes running in other boxesНе дозволяти ізольованим процесам бачити процеси, що виконуються в інших контейнерах
-
+ UsersКористувачі
-
+ Restrict Resource Access monitor to administrators onlyОбмежити монітор доступу до ресурсів лише адміністраторам
-
+ Add UserДодати користувача
@@ -8309,7 +8309,7 @@ The process match level has a higher priority than the specificity and describes
Видалити користувача
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8318,23 +8318,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Примітка: Примусові налаштування програм і примусових папок для пісочниці не застосовуються до облікових записів користувачів, які не можуть використовувати пісочницю.
-
+ Add Option
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.
-
+ Option
-
+ TracingВідстежування
@@ -8344,22 +8344,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Відстежування викликів API (потрібен logapi, який повинен бути встановлений у папку sbie)
-
+ Pipe TraceТрасування pipe
-
+ Log all SetError's to Trace log (creates a lot of output)Записувати всі SetError у журналі трасування (створює багато вихідних даних)
-
+ Log Debug Output to the Trace LogЗаписувати дані відладки до журналу трасування
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8382,78 +8382,78 @@ instead of "*".Трасування системних викликів NTDLL (створює багато даних у виході)
-
+ File TraceТрасування файлів
-
+ Disable Resource Access MonitorВиключити монітор доступу до ресурсів
-
+ IPC TraceТрасування IPC
-
+ GUI TraceТрасування GUI
-
+ Resource Access MonitorМонітор доступу до ресурсів
-
+ Access TracingТрасування доступу
-
+ COM Class TraceТрасування COM Class
-
+ Key TraceТрасування Key Trace
-
+ Network FirewallМережевий брандмауер
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Syscall Trace (creates a lot of output)
-
+ DebugВідладка
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!УВАГА, ці налаштування можуть вимкнути захист ядра та зламати захист пісочниці!!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Ці параметри призначені для налагодження проблем із сумісністю, будь ласка, не використовуйте їх у виробництві.
-
+ App TemplatesШаблони для додатків
@@ -8462,22 +8462,22 @@ instead of "*".
Шаблони сумісності
-
+ Filter CategoriesКатегорії фільтрів
-
+ Text FilterТекстовий фільтр
-
+ Add TemplateДодати шаблон
-
+ This list contains a large amount of sandbox compatibility enhancing templatesЦей список має багату кількість шаблонів сумісності
@@ -8486,17 +8486,17 @@ instead of "*".
Прибрати
-
+ CategoryКатегорія
-
+ Template FoldersПапка з шаблонами
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8505,23 +8505,23 @@ Please note that this values are currently user specific and saved globally for
Зауважте, що наразі ці значення є специфічними для користувача та зберігаються глобально для всіх контейнерів.
-
-
+
+ ValueЗначення
-
+ AccessibilityДоступність
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Щоб компенсувати втрачений захист, зверніться до сторінки налаштувань Скинути права у групі налаштувань Обмежень.
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessЧитачі екрану: JAWS, NVDA, Window-Eyes, System Access
@@ -8531,43 +8531,43 @@ Please note that this values are currently user specific and saved globally for
-
+ Various Options
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)
-
+ Use desktop object workaround for all processes
-
+ This command will be run before the box content will be deleted
-
+ On File Recovery
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked
-
+ Run File Checker
-
+ On Delete Content
@@ -8605,142 +8605,137 @@ Please note that this values are currently user specific and saved globally for
-
+ ProcessПроцес
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Block DNS, UDP port 53
-
+ On Box Terminate
-
+ API call Trace (traces all SBIE hooks)
-
+ DNS Request Logging
-
+ Templates
-
+ Open Template
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Ці налаштування допомагають використовувати Sandboxie з програмний забезпеченням для спеціальних можливостей. Зауважте, що при використанні цих параметрів, деякі функції захисту можуть не діяти.
-
+ Edit ini SectionРедагувати розділ ini файлу
-
+ Edit iniРедагувати ini
-
+ CancelСкасувати
-
+ SaveЗберігти
diff --git a/SandboxiePlus/SandMan/sandman_vi.ts b/SandboxiePlus/SandMan/sandman_vi.ts
index 34c2f7f5..fdf138b1 100644
--- a/SandboxiePlus/SandMan/sandman_vi.ts
+++ b/SandboxiePlus/SandMan/sandman_vi.ts
@@ -1624,11 +1624,11 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
-
-
-
-
+
+
+
+
+ All ProgramsTất cả Chương Trình
@@ -1639,9 +1639,9 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
-
-
+
+
+ Group: %1Nhóm: %1
@@ -1676,7 +1676,7 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
+ Template values can not be edited.Không thể chỉnh sửa giá trị mẫu.
@@ -2095,82 +2095,82 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
+ AnyMọi Loại
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessCho phép truy cập
-
+ Block using Windows Filtering PlatformChặn bằng cách sử dụng Nền tảng lọc của Windows
-
+ Block by denying access to Network devicesChặn bằng cách từ chối quyền truy cập vào các thiết bị Mạng
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowCho phép
-
+ Block (WFP)Chặn (WFP)
-
+ Block (NDev)Chặn (NDev)
-
+ A non empty program name is required.
-
+ BlockChặn
@@ -6873,7 +6873,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Protect the system from sandboxed processesBảo vệ hệ thống khỏi các tiến trình Sandbox
@@ -7014,12 +7014,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Hạn chế in ấn
-
+ Network restrictionsHạn chế mạng
-
+ Block network files and folders, unless specifically opened.Chặn các tệp và thư mục mạng, trừ khi được mở cụ thể.
@@ -7042,11 +7042,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ NameTên
@@ -7076,15 +7076,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ RemoveLoại bỏ
@@ -7150,11 +7150,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Show TemplatesHiển thị Mẫu
@@ -7204,7 +7204,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Mở Windows Credentials Store (chế độ người dùng)
-
+ Prevent change to network and firewall parameters (user mode)Ngăn chặn sự thay đổi đối với các thông số mạng và tường lửa (chế độ người dùng)
@@ -7398,13 +7398,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Move UpĐi lên
-
+ Move DownĐi xuống
@@ -7486,49 +7486,49 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
-
+ Image Protection
-
+ Issue message 1305 when a program tries to load a sandboxed dll
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox
-
+ Dlls && Extensions
-
+ Description
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.
@@ -7738,9 +7738,9 @@ To specify a process use '$:program.exe' as path.
-
-
-
+
+
+ ProgramChương trình
@@ -7748,20 +7748,20 @@ To specify a process use '$:program.exe' as path.
-
+ ActionHoạt động
-
+ PortPort
-
-
+
+ IPIP
@@ -7771,7 +7771,7 @@ To specify a process use '$:program.exe' as path.
Giao thức
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.THẬN TRỌNG:Nền tảng lọc của Windows không được kích hoạt với trình điều khiển, do đó các quy tắc này sẽ chỉ được áp dụng trong chế độ người dùng và không thể được thực thi !!! Điều này có nghĩa là các ứng dụng độc hại có thể bỏ qua chúng.
@@ -7849,57 +7849,57 @@ To specify a process use '$:program.exe' as path.
Áp dụng Đóng...=!<chương trình>,... quy tắc cũng cho tất cả các tệp nhị phân nằm trong Sandbox.
-
+ File RecoveryPhục hồi tập tin
-
+ Quick RecoveryKhôi phục nhanh
-
+ Add FolderThêm thư mục
-
+ Immediate RecoveryPhục hồi ngay lập tức
-
+ Ignore ExtensionBỏ qua phần mở rộng
-
+ Ignore FolderBỏ qua thư mục
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.Bật lời nhắc Khôi phục ngay lập tức để có thể khôi phục tệp ngay sau khi chúng được tạo.
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.Bạn có thể loại trừ các thư mục và loại tệp (hoặc phần mở rộng tệp) khỏi Khôi phục ngay lập tức.
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. Khi chức năng Khôi phục nhanh được gọi, các thư mục sau sẽ được kiểm tra nội dung Sandbox.
-
+ Advanced OptionsTùy chọn nâng cao
-
+ MiscellaneousKhác
@@ -7920,7 +7920,7 @@ To specify a process use '$:program.exe' as path.
-
+ Protect the sandbox integrity itselfBảo vệ tính toàn vẹn của hộp cát
@@ -7941,7 +7941,7 @@ To specify a process use '$:program.exe' as path.
Bảo vệ các quy trình HỆ THỐNG hộp cát khỏi các quy trình không có đặc quyền
-
+ Force usage of custom dummy Manifest files (legacy behaviour)Buộc sử dụng các tệp Tệp kê khai giả tùy chỉnh (hành vi kế thừa)
@@ -7993,8 +7993,8 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Chỉ cho phép các quy trình đặc quyền truy cập Trình quản lý kiểm soát dịch vụ
-
-
+
+ CompatibilityKhả năng tương thích
@@ -8004,7 +8004,7 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Thêm các quy trình Sandbox vào các đối tượng công việc (được khuyến nghị)
-
+ Emulate sandboxed window station for all processesMô phỏng trạm cửa sổ Sandbox cho tất cả các quy trình
@@ -8038,7 +8038,7 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Cho phép đọc bộ nhớ của các quy trình không trong Sandbox (không được khuyến nghị)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)Vô hiệu hóa việc sử dụng RpcMgmtSetComTimeout theo mặc định (điều này có thể giải quyết các vấn đề tương thích)
@@ -8063,81 +8063,81 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Các tùy chọn dưới đây có thể được sử dụng một cách an toàn khi bạn không cấp quyền quản trị viên.
-
+ TriggersTriggers
-
+ EventEvent
-
-
-
-
+
+
+
+ Run CommandChạy lệnh
-
+ Start ServiceBắt đầu dịch vụ
-
+ These events are executed each time a box is startedCác sự kiện này được thực thi mỗi khi một Sandbox được khởi động
-
+ On Box StartKhi bắt đầu Sandbox
-
-
+
+ These commands are run UNBOXED just before the box content is deletedCác lệnh này được chạy ngoài Sandbox ngay trước khi nội dung Sandbox bị xóa
-
+ Allow use of nested job objects (works on Windows 8 and later)Cho phép sử dụng các đối tượng công việc lồng ghép nhau (hoạt động trên Windows 8 trở lên)
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.Các lệnh này chỉ được thực thi khi một Sandbox được khởi tạo. Để làm cho chúng chạy lại, nội dung Sandbox phải được xóa.
-
+ On Box InitKhi khởi động Sandbox
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.
-
+ Here you can specify actions to be executed automatically on various box events.Tại đây, bạn có thể chỉ định các hành động được thực thi tự động trên các sự kiện Sandbox khác nhau.
-
+ Hide ProcessesẨn các tiến trình
-
+ Add ProcessThêm tiến trình
-
+ Hide host processes from processes running in the sandbox.Ẩn các tiến trình máy chủ khỏi các tiến trình đang chạy trong Sandbox.
@@ -8147,48 +8147,48 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Những hạn chế
-
+ Various OptionsCác tùy chọn khác nhau
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)Áp dụng ElevateCreateProcess Workaround (hành vi cũ)
-
+ Use desktop object workaround for all processes
-
+ This command will be run before the box content will be deletedLệnh này sẽ được chạy trước khi nội dung Sandbox bị xóa
-
+ On File RecoveryKhi phục hồi tệp
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blockedLệnh này sẽ được chạy trước khi tệp được khôi phục và đường dẫn tệp sẽ được chuyển làm đối số đầu tiên. Nếu lệnh này trả về bất kỳ điều gì khác với 0, quá trình khôi phục sẽ bị chặn
-
+ Run File CheckerChạy trình kiểm tra tệp
-
+ On Delete ContentKhi xóa nội dung
-
+ Don't allow sandboxed processes to see processes running in other boxesKhông cho phép các tiến trình trong Sandbox cát xem các quy trình đang chạy trong các Sandbox khác
@@ -8199,7 +8199,7 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
-
+ ProcessTiến trình
@@ -8208,22 +8208,22 @@ Mức độ đối sánh tiến trình có mức độ ưu tiên cao hơn mức
Chặn cũng đọc quyền truy cập vào các tiến trình trong Sandbox này
-
+ UsersNgười dùng
-
+ Restrict Resource Access monitor to administrators onlyGiới hạn giám sát Quyền truy cập tài nguyên chỉ dành cho quản trị viên
-
+ Add UserThêm người dùng
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8232,23 +8232,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
Ghi chú: Cài đặt Buộc chương trình và Thư mục bắt buộc cho Sandbox không áp dụng cho các tài khoản người dùng không thể sử dụng Sandbox.
-
+ Add OptionThêm tùy chọn
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.Tại đây, bạn có thể định cấu hình các tùy chọn nâng cao cho mỗi quy trình để cải thiện khả năng tương thích và / hoặc tùy chỉnh hành vi Sandbox.
-
+ OptionTuỳ chọn
-
+ TracingTruy tìm
@@ -8257,22 +8257,22 @@ Ghi chú: Cài đặt Buộc chương trình và Thư mục bắt buộc cho Sa
Theo dõi cuộc gọi API (yêu cầu phải cài đặt LogAPI trong thư mục Sbie)
-
+ Pipe TracePipe Trace
-
+ Log all SetError's to Trace log (creates a lot of output)Ghi lại tất cả SetError' đến Nhật ký theo dõi (tạo ra nhiều đầu ra)
-
+ Log Debug Output to the Trace LogGhi đầu ra Gỡ lỗi vào Nhật ký theo dõi
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8295,113 +8295,113 @@ thay vì "*".
Ntdll syscall Trace (tạo ra nhiều đầu ra)
-
+ File TraceTheo dõi tệp
-
+ Disable Resource Access MonitorTắt tính năng giám sát quyền truy cập tài nguyên
-
+ IPC TraceTheo dõi IPC
-
+ GUI TraceTheo dõi giao diện người dùng
-
+ Resource Access MonitorGiám sát truy cập tài nguyên
-
+ Access TracingTruy cập theo dõi
-
+ COM Class TraceTheo dõi lớp COM
-
+ Key TraceTheo dõi khoá
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.Để bù đắp cho sự bảo vệ đã mất, vui lòng tham khảo trang cài đặt Quyền thả trong nhóm cài đặt Hạn chế.
-
+ Network FirewallTường lửa mạng
-
+ API call Trace (traces all SBIE hooks)
-
+ DebugGỡ lỗi
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!CẢNH BÁO, các tùy chọn này có thể vô hiệu hóa các đảm bảo bảo mật cốt lõi và phá vỡ bảo mật Sandbox !!!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. Các tùy chọn này nhằm gỡ lỗi các vấn đề tương thích, vui lòng không sử dụng chúng trong sản xuất.
-
+ App TemplatesMẫu ứng dụng
-
+ Filter CategoriesLọc danh mục
-
+ Text FilterBộ lọc văn bản
-
+ Add TemplateThêm mẫu
-
+ This list contains a large amount of sandbox compatibility enhancing templatesDanh sách này chứa một lượng lớn các mẫu nâng cao khả năng tương thích với Sandbox
-
+ CategoryLoại
-
+ Template FoldersThư mục Mẫu
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8410,8 +8410,8 @@ Please note that this values are currently user specific and saved globally for
Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dùng và được lưu trên toàn cầu cho tất cả các Sandbox.
-
-
+
+ ValueGiá trị
@@ -8443,147 +8443,142 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
-
+ Other Options
-
+ Port Blocking
-
+ Block common SAMBA ports
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Block DNS, UDP port 53
-
+ On Box Terminate
-
+ DNS Request Logging
-
+ Syscall Trace (creates a lot of output)
-
+ TemplatesMẫu
-
+ Open Template
-
+ AccessibilityKhả năng tiếp cận
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System AccessTrình đọc màn hình: JAWS, NVDA, Window-Eyes, System Access
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.Các cài đặt sau cho phép sử dụng Sandboxie kết hợp với phần mềm trợ năng. Xin lưu ý rằng một số biện pháp bảo vệ Sandboxie nhất thiết bị mất khi các cài đặt này có hiệu lực.
-
+ Edit ini SectionChỉnh sửa file .ini
-
+ Edit iniChỉnh sửa ini
-
+ CancelHủy bỏ
-
+ SaveLưu
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index ce862d57..238e1c38 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -2016,9 +2016,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1组: %1
@@ -2216,11 +2216,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All Programs所有程序
@@ -2255,7 +2255,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.模板值不能被编辑
@@ -2370,82 +2370,82 @@ Please select a folder which contains this file.
-
+ Any任意
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow access允许访问
-
+ Block using Windows Filtering Platform阻止访问 - 使用 Windows 筛选平台 (WFP)
-
+ Block by denying access to Network devices阻止访问 - 通过禁止访问网络设备
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ Allow允许
-
+ Block (WFP)阻止 (WFP)
-
+ Block (NDev)阻止 (网络设备)
-
+ A non empty program name is required.程序名不得为空
-
+ Block阻止
@@ -6999,7 +6999,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Protect the system from sandboxed processes保护系统免受沙盒内进程的影响
@@ -7009,7 +7009,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
提权限制
-
+ Block network files and folders, unless specifically opened.拦截对网络文件和文件夹的访问,除非专门开放访问权限
@@ -7019,7 +7019,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
使应用程序认为自己已被提权运行(允许安全地运行安装程序)
-
+ Network restrictions网络限制
@@ -7169,11 +7169,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Name名称
@@ -7203,15 +7203,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Remove移除
@@ -7277,11 +7277,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Show Templates显示模板
@@ -7316,7 +7316,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
开放 Windows 凭据存储访问权限 (用户态)
-
+ Prevent change to network and firewall parameters (user mode)拦截对网络及防火墙参数的更改 (用户态)
@@ -7423,9 +7423,9 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
+
+
+ Program程序
@@ -7465,47 +7465,47 @@ If you are a great patreaon supporter already, sandboxie can check online for an
添加 IPC 路径
-
+ File Recovery文件恢复
-
+ Add Folder添加文件夹
-
+ Ignore Extension忽略扩展名
-
+ Ignore Folder忽略文件夹
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.启用快速恢复提示,以便快速恢复创建的文件
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.可以在此处从快速恢复中排除特定目录和文件类型(扩展名)
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. 当快速恢复功能被调用时,检查沙盒内的下列文件夹
-
+ Advanced Options高级选项
-
+ Miscellaneous杂项
@@ -7526,13 +7526,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Protect the sandbox integrity itself沙盒完整性保护
-
-
+
+ Compatibility兼容性
@@ -7542,7 +7542,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
添加沙盒化进程到作业对象 (推荐)
-
+ Force usage of custom dummy Manifest files (legacy behaviour)强制使用自定义虚拟 Manifest 文件 (传统行为)
@@ -7552,7 +7552,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
仅允许特权进程访问“服务控制管理器”
-
+ Emulate sandboxed window station for all processes为所有进程模拟沙盒化的窗口状况
@@ -7563,47 +7563,47 @@ If you are a great patreaon supporter already, sandboxie can check online for an
开放 Windows 安全帐户管理器 (SAM) 的访问权限
-
+ Hide Processes隐藏进程
-
+ Add Process添加进程
-
+ Hide host processes from processes running in the sandbox.对沙盒内运行的进程隐藏宿主的进程
-
+ Don't allow sandboxed processes to see processes running in other boxes不允许沙盒内的进程查看其它沙盒里运行的进程
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.沙盒中的所有进程结束后,这些命令将在无沙盒的环境下运行。
-
+ Users用户
-
+ Restrict Resource Access monitor to administrators only仅允许管理员访问“资源访问监视器”
-
+ Add User添加用户
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -7612,32 +7612,32 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
注意:沙盒的必沙程序及文件夹设置不适用于不能运行沙盒的系统用户
-
+ Tracing跟踪
-
+ API call Trace (traces all SBIE hooks)API 调用跟踪 (跟踪所有 SBIE 钩子)
-
+ COM Class TraceCOM 类跟踪
-
+ IPC TraceIPC 跟踪
-
+ Key Trace键值跟踪
-
+ GUI TraceGUI 跟踪
@@ -7682,13 +7682,13 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
-
+ Move Up上移
-
+ Move Down下移
@@ -7718,33 +7718,33 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
访问隔离
-
+ Image Protection映像保护
-
+ Issue message 1305 when a program tries to load a sandboxed dll当一个程序试图加载一个沙盒内部的动态链接库(.dll)文件时,提示问题代码 1305
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox阻止安装在宿主上的沙盒程序从沙盒内部加载DLL(动态链接库)文件
-
+ Dlls && ExtensionsDll && 扩展
-
+ Description说明
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Sandboxie 的资源访问规则通常对位于沙盒内的二进制程序具有歧视性
@@ -7763,7 +7763,7 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
使用主机映像保护,可以通过阻止在沙盒内运行的应用程序(安装在宿主上的)加载来自沙盒的动态链接库来防止此类现象
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.沙盒功能可以使用可选的.dll文件来获得增强,这些.dll文件可以在SbieDll.dll启动时加载到每个沙盒进程中。全局设置中的插件管理器提供了一些有用的扩展。安装后,就可以在这里为当前的沙盒启用。
@@ -7987,20 +7987,20 @@ To specify a process use '$:program.exe' as path.
-
+ Action动作
-
+ Port端口
-
-
+
+ IPIP
@@ -8010,7 +8010,7 @@ To specify a process use '$:program.exe' as path.
协议
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.警告:未在此驱动程序启用 Windows 筛选平台,因此以下规则只能在用户模式下生效,无法被强制执行!!!恶意程序可能会绕过这些规则的限制
@@ -8057,7 +8057,7 @@ The process match level has a higher priority than the specificity and describes
以系统进程启动沙盒服务 RpcSs (不推荐)
-
+ Allow use of nested job objects (works on Windows 8 and later)Allow use of nested job objects (experimental, works on Windows 8 and later)允许使用嵌套作业对象(job object) (仅适用于 Windows 8 及更高版本)
@@ -8104,7 +8104,7 @@ The process match level has a higher priority than the specificity and describes
进程被拒绝访问非沙盒进程内存时,提示问题代码 2111
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)默认禁用 RpcMgmtSetComTimeout (或许可以解决兼容性问题)
@@ -8133,56 +8133,56 @@ The process match level has a higher priority than the specificity and describes
以下选项可以在你未授予管理员权限时安全的使用
-
+ Triggers触发器
-
+ Event事件
-
-
-
-
+
+
+
+ Run Command执行命令
-
+ Start Service启动服务
-
+ These events are executed each time a box is started这些事件当沙盒每次启动时都会被执行
-
+ On Box Start沙盒启动阶段
-
-
+
+ These commands are run UNBOXED just before the box content is deleted这些命令将在删除沙盒的内容之前,以非沙盒化的方式被执行
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.这些命令只在沙盒被初始化时执行,要使它们再次运行,必须删除沙盒内容
-
+ On Box Init沙盒初始阶段
-
+ Here you can specify actions to be executed automatically on various box events.在此处可以配置各种沙盒事件中自动执行特定的动作
@@ -8192,32 +8192,32 @@ The process match level has a higher priority than the specificity and describes
API 调用跟踪 (需要安装 LogAPI 模块到沙盒目录)
-
+ Log all SetError's to Trace log (creates a lot of output)记录所有 SetError 到跟踪日志 (将产生大量输出)
-
+ File Trace文件跟踪
-
+ Pipe Trace管道跟踪
-
+ Access Tracing访问跟踪
-
+ Log Debug Output to the Trace Log调试日志输出到跟踪日志
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8240,73 +8240,73 @@ instead of "*".Ntdll 系统调用跟踪 (将产生大量输出)
-
+ Disable Resource Access Monitor禁用资源访问监控器
-
+ Resource Access Monitor资源访问监控
-
+ Network Firewall网络防火墙
-
+ Debug调试
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!警告,这些选项可使核心安全保障失效并且破坏沙盒安全!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. 这些选项是为调试兼容性问题提供的,日常使用者勿碰。
-
+ App Templates应用模板
-
+ Filter Categories类别筛选
-
+ Text Filter文本筛选
-
+ Add Template添加模板
-
+ This list contains a large amount of sandbox compatibility enhancing templates此列表含有大量的沙盒兼容性增强模板
-
+ Category类别
-
+ Template Folders目录模板
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8315,23 +8315,23 @@ Please note that this values are currently user specific and saved globally for
请注意,这些值对当前用户的所有沙盒保存
-
-
+
+ Value值
-
+ Accessibility无障碍功能
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.要弥补失去的保护,请参考“限制”设置组中的降低权限部分
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System Access屏幕阅读器:JAWS、NVDA、Window-Eyes、系统无障碍接口
@@ -8535,122 +8535,117 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
配置那些进程可以访问桌面组件(例如窗口等)
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Other Options其它选项
-
+ Port Blocking阻止端口
-
+ Block common SAMBA ports阻止常见 SAMBA 端口
-
+ Block DNS, UDP port 53阻止 DNS、UDP 端口 53
-
+ Quick Recovery快速恢复
-
+ Immediate Recovery即时恢复
-
+ Various Options其它杂项
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)应用 ElevateCreateProcess 解决方案 (传统行为)
-
+ Use desktop object workaround for all processes对所有进程应用桌面对象解决方案
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.当短时间连续按下全局热键3次时,此异常将被忽略。
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.当调用“终止所有进程”时,排除终止此沙盒的进程。
@@ -8659,33 +8654,33 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
此命令在沙盒中的所有进程终止后运行。
-
+ On Box Terminate在沙盒所有进程终止时
-
+ This command will be run before the box content will be deleted该命令将在删除沙盒内容之前运行
-
+ On File Recovery文件恢复阶段
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked该命令将在文件恢复前运行,文件路径将作为最先被传递的参数,如果该命令的返回值不为 0,恢复动作将被终止
-
+ Run File Checker运行文件检查
-
+ On Delete Content内容删除阶段
@@ -8696,7 +8691,7 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
-
+ Process进程
@@ -8705,63 +8700,63 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
阻止对位于该沙盒中的进程的读取访问
-
+ Add Option添加选项
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.在此处可以配置各个进程的高级选项,以提高兼容性或自定义沙盒的某些行为
-
+ Option选项
-
+ DNS Request LoggingDNS 请求日志
-
+ Syscall Trace (creates a lot of output)系统调用追踪(产生大量输出)
-
+ Templates模板
-
+ Open Template打开模板
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.以下设置允许 Sandboxie 与辅助功能软件结合,请注意:当这些设置生效时,会使 Sandboxie 的部分保护措施失效
-
+ Edit ini Section配置文本
-
+ Edit ini编辑配置
-
+ Cancel取消
-
+ Save保存
diff --git a/SandboxiePlus/SandMan/sandman_zh_TW.ts b/SandboxiePlus/SandMan/sandman_zh_TW.ts
index 8e40d03a..9619ad29 100644
--- a/SandboxiePlus/SandMan/sandman_zh_TW.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_TW.ts
@@ -1719,11 +1719,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All Programs所有程式
@@ -1734,9 +1734,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1群組: %1
@@ -1771,7 +1771,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.範本值無法編輯。
@@ -2191,82 +2191,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Any任何
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow access允許存取
-
+ Block using Windows Filtering Platform阻止存取 - 使用 Windows 篩選平台 (WFP)
-
+ Block by denying access to Network devices阻止存取 - 透過拒絕對區域網路裝置的存取
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ Allow允許
-
+ Block (WFP)阻止 (WFP)
-
+ Block (NDev)阻止 (區域網路裝置)
-
+ A non empty program name is required.程式名稱不得為空。
-
+ Block阻止
@@ -6967,7 +6967,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Protect the system from sandboxed processes保護系統免受來自沙箱化處理程序的存取
@@ -7104,12 +7104,12 @@ If you are a great patreaon supporter already, sandboxie can check online for an
列印限制
-
+ Network restrictions區域網路限制
-
+ Block network files and folders, unless specifically opened.阻止區域網路檔案和資料夾的存取,除非額外開啟。
@@ -7132,11 +7132,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Name名稱
@@ -7166,15 +7166,15 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Remove移除
@@ -7240,11 +7240,11 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
-
-
-
-
+
+
+
+
+ Show Templates顯示範本
@@ -7319,7 +7319,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
開放 Windows 憑證儲存存取權限 (使用者模式)
-
+ Prevent change to network and firewall parameters (user mode)防止對區域網路及防火牆參數的變更 (使用者模式)
@@ -7556,13 +7556,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
-
+ Move Up向上移
-
+ Move Down向下移
@@ -7582,40 +7582,40 @@ If you are a great patreaon supporter already, sandboxie can check online for an
存取隔離
-
+ Image Protection映像保護
-
+ Issue message 1305 when a program tries to load a sandboxed dll當一個程式試圖載入一個沙箱內部的應用程式擴充 (DLL) 檔案時,提示錯誤代碼 1305
-
+ Prevent sandboxed programs installed on the host from loading DLLs from the sandboxPrevent sandboxes programs installed on host from loading dll's from the sandbox防止主機上安裝的沙箱化程式從沙箱載入應用程式擴充 (DLL) 檔案
-
+ Dlls && ExtensionsDll && 擴充功能
-
+ Description說明
-
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.Sandboxie 的資源存取規則通常對位於沙箱內的二進位程式具有歧視性。OpenFilePath 和 OpenKeyPath 只對主機上的原生程式 (安裝在主機上的) 有效。為了定義沒有此類限制的規則,則必須使用 OpenPipePath 和 OpenConfPath。同樣的,透過否定來定義所有的 Closed(File|Key|Ipc)Path 指令例如:'ClosedFilePath=! iexplore.exe,C:Users*' 將限制沙箱內的程式存取相應資源。這兩種限制原則都可以透過「存取原則」頁面來停用。
這樣做是為了防止沙箱內的流氓處理程序建立自己的重新命名複本並存取受保護的資源。另一個漏洞載體是將一個動態連結程式庫注入到一個被授權處理程序中,以取得對被授權處理程序所允許存取的一切資源的存取權。使用主機映像保護,可以透過阻止在沙箱內執行的應用程式 (安裝在主機上的) 載入來自沙箱的動態連結程式庫來防止此類現象。
-
+ Sandboxie's functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.Sandboxies functionality can be enhanced using optional dll’s which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.Sandboxie 的功能可以透過使用可選 DLL 加以增強,這些 DLL 可在啟動時透過 SbieDll.dll 檔案載入到每個沙箱執行緒中,全域設定中的附加元件管理員提供了一些實用擴充套件,安裝後可以在此處對目前沙箱啟用。
@@ -7824,9 +7824,9 @@ To specify a process use '$:program.exe' as path.
-
-
-
+
+
+ Program程式
@@ -7834,20 +7834,20 @@ To specify a process use '$:program.exe' as path.
-
+ Action動作
-
+ Port連接埠
-
-
+
+ IPIP
@@ -7857,7 +7857,7 @@ To specify a process use '$:program.exe' as path.
協定
-
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.警告: 未在驅動程式中啟動 Windows 篩選平台,因此以下規則只能在使用者模式下生效,無法被強制執行!!!惡意程式可能會繞過這些規則的限制。
@@ -7952,142 +7952,137 @@ To specify a process use '$:program.exe' as path.
將 Close...=!<program>,... 規則,套用到位於沙箱內的所有相關二進位檔。
-
+ DNS Filter
-
+ Add Filter
-
+ With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Domain
-
+ Internet Proxy
-
+ Add Proxy
-
+ Test Proxy
-
+ Auth
-
+ Login
-
+ Password
-
+ Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
- Encrypt Passwords
-
-
-
-
+ Resolve hostnames via proxy
-
+ Other Options其他選項
-
+ Port Blocking封鎖連接埠
-
+ Block common SAMBA ports封鎖常見 SAMBA 連接埠
-
+ Block DNS, UDP port 53封鎖 DNS UDP 連接埠 53
-
+ File Recovery檔案復原
-
+ Quick Recovery快速復原
-
+ Add Folder加入資料夾
-
+ Immediate Recovery即時復原
-
+ Ignore Extension忽略副檔名
-
+ Ignore Folder忽略資料夾
-
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.啟用快速復原提示,以便快速復原建立的檔案。
-
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.您可以從快速復原中排除特定目錄和檔案類型 (副檔名)。
-
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content. 當快速復原功能被執行時,下列資料夾將為沙箱化內容被檢查。
-
+ Advanced Options進階選項
-
+ Miscellaneous雜項
@@ -8108,7 +8103,7 @@ To specify a process use '$:program.exe' as path.
-
+ Protect the sandbox integrity itself保護沙箱本身的完整性
@@ -8129,7 +8124,7 @@ To specify a process use '$:program.exe' as path.
保護沙箱中的系統處理程序免受非特權處理程序的影響
-
+ Force usage of custom dummy Manifest files (legacy behaviour)強制使用自訂虛擬 Manifest 檔案 (遺留行為)
@@ -8181,8 +8176,8 @@ The process match level has a higher priority than the specificity and describes
僅允許已有特權的處理程序存取服務控制管理員
-
-
+
+ Compatibility相容性
@@ -8192,7 +8187,7 @@ The process match level has a higher priority than the specificity and describes
加入沙箱化處理程序至作業物件 (推薦)
-
+ Emulate sandboxed window station for all processes為所有處理程序模擬沙箱化視窗站台
@@ -8226,7 +8221,7 @@ The process match level has a higher priority than the specificity and describes
允許讀取非沙箱處理程序的記憶體 (不推薦)
-
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)預設情況下停用 RpcMgmtSetComTimeout (這可能會解決相容性問題)
@@ -8251,56 +8246,56 @@ The process match level has a higher priority than the specificity and describes
以下選項可以在您未授予管理員許可時安全的使用。
-
+ Triggers觸發器
-
+ Event事件
-
-
-
-
+
+
+
+ Run Command執行命令
-
+ Start Service啟動服務
-
+ These events are executed each time a box is started這些事件當沙箱每次啟動時都會被執行
-
+ On Box Start沙箱啟動階段
-
-
+
+ These commands are run UNBOXED just before the box content is deleted這些命令將在刪除沙箱的內容之前,以非沙箱化的方式被執行
-
+ Allow use of nested job objects (works on Windows 8 and later)允許使用嵌套作業物件 (job object) (適用於 Windows 8 及更高版本)
-
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.這些命令只在沙箱被初始化時執行。要使它們再次執行,必須刪除沙箱內容。
-
+ On Box Init沙箱初始化階段
@@ -8309,27 +8304,27 @@ The process match level has a higher priority than the specificity and describes
此命令在沙箱中所有執行緒完成後執行。
-
+ On Box Terminate沙箱終止階段
-
+ Here you can specify actions to be executed automatically on various box events.在這裡,您可以設定各種沙箱事件中自動執行特定的動作。
-
+ Hide Processes隱藏處理程序
-
+ Add Process加入處理程序
-
+ Hide host processes from processes running in the sandbox.面向沙箱內執行的處理程序隱藏的主機處理程序。
@@ -8344,63 +8339,63 @@ The process match level has a higher priority than the specificity and describes
限制
-
+ Various Options差異性選項
-
+ Apply ElevateCreateProcess Workaround (legacy behaviour)套用 ElevateCreateProcess 因應措施 (遺留行為)
-
+ Use desktop object workaround for all processes對所有處理程序使用桌面物件因應措施
-
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.當全域性快速鍵在短時間連續按下 3 次時,此異常將被忽略。
-
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.當呼叫「終止所有執行緒」時,排除此沙箱。
-
+ These commands are run UNBOXED after all processes in the sandbox have finished.這些指令將在沙箱內全部執行緒完成後以「未沙箱化」狀態執行。
-
+ This command will be run before the box content will be deleted該命令將在刪除沙箱內容之前執行
-
+ On File Recovery檔案復原階段
-
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blockedThis command will be run before a file is being recoverd and the file path will be passed as the first argument, if this command return something other than 0 the recovery will be blocked該命令將在檔案復原前執行,檔案路徑將作為第一個參數被傳遞,如果該命令的返回值不是 0,則復原將被阻止
-
+ Run File Checker執行檔案檢查程式
-
+ On Delete Content內容刪除階段
-
+ Don't allow sandboxed processes to see processes running in other boxes不允許沙箱內的處理程序檢視其他沙箱內執行的處理程序
@@ -8411,7 +8406,7 @@ The process match level has a higher priority than the specificity and describes
-
+ Process處理程序
@@ -8420,22 +8415,22 @@ The process match level has a higher priority than the specificity and describes
阻止對位於該沙箱中的處理程序的讀取
-
+ Users使用者
-
+ Restrict Resource Access monitor to administrators only僅允許管理員存取資源存取監控
-
+ Add User加入使用者
-
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
@@ -8444,23 +8439,23 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
注意: 沙箱的強制沙箱程式及資料夾設定不適用於不能使用沙箱的帳戶。
-
+ Add Option加入選項
-
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.Here you can configure advanced per process options to improve compatibility and/or customize sand boxing behavior.在此處可以設定各個處理程序的進階選項,以提高相容性或自訂沙箱的某些行為。
-
+ Option選項
-
+ Tracing追蹤
@@ -8469,22 +8464,22 @@ Note: Forced Programs and Force Folders settings for a sandbox do not apply to
API 呼叫追蹤 (需要在沙箱資料夾中安裝 LogAPI)
-
+ Pipe TracePipe 追蹤
-
+ Log all SetError's to Trace log (creates a lot of output)記錄所有 SetError 至追蹤日誌 (產生大量輸出)
-
+ Log Debug Output to the Trace Log紀錄偵錯輸出至追蹤日誌
-
+ Log all access events as seen by the driver to the resource access log.
This options set the event mask to "*" - All access events
@@ -8507,113 +8502,113 @@ instead of "*".Ntdll 系統呼叫追蹤 (將產生大量輸出)
-
+ File Trace檔案追蹤
-
+ Disable Resource Access Monitor停用資源存取監控
-
+ IPC TraceIPC 追蹤
-
+ GUI TraceGUI 追蹤
-
+ Resource Access Monitor資源存取監控
-
+ Access Tracing存取追蹤
-
+ COM Class TraceCOM 類別追蹤
-
+ Key Trace機碼追蹤
-
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.為了彌補失去的保護,請參考「限制」設定組中的「廢棄許可」部分。
-
+ Network Firewall區域網路防火牆
-
+ API call Trace (traces all SBIE hooks)API 呼叫追蹤 (追蹤全部 SBIE 勾點)
-
+ Debug偵錯
-
+ WARNING, these options can disable core security guarantees and break sandbox security!!!警告,這些選項可使核心安全性保障失效並且破壞沙箱安全性!
-
+ These options are intended for debugging compatibility issues, please do not use them in production use. 這些選項是為偵錯相容性問題設計的,請勿用於生產力用途。
-
+ App Templates軟體範本
-
+ Filter Categories篩選類別
-
+ Text Filter篩選文字
-
+ Add Template加入範本
-
+ This list contains a large amount of sandbox compatibility enhancing templates此清單含有大量的相容性增強範本
-
+ Category類別
-
+ Template Folders範本資料夾
-
+ Configure the folder locations used by your other applications.
Please note that this values are currently user specific and saved globally for all boxes.
@@ -8622,63 +8617,63 @@ Please note that this values are currently user specific and saved globally for
請注意,這些值為目前使用者針對所有沙箱儲存。
-
-
+
+ Value值
-
+ DNS Request LoggingDNS 請求日誌紀錄
-
+ Syscall Trace (creates a lot of output)Syscall 追蹤 (建立大量輸出)
-
+ Templates範本
-
+ Open Template開啟範本
-
+ Accessibility協助工具
-
+ Screen Readers: JAWS, NVDA, Window-Eyes, System Access螢幕閱讀器: JAWS、NVDA、Window-Eyes、系統協助工具
-
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.以下設定允許 Sandboxie 與協助工具軟體結合。請注意當這些設定生效時,必然會失去部分 Sandboxie 保護措施。
-
+ Edit ini Section編輯 ini 區段
-
+ Edit ini編輯 ini
-
+ Cancel取消
-
+ Save儲存
From 6f954a61633743a2d8e151afcec9890b409a3b4e Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 12 May 2024 01:33:40 +0000
Subject: [PATCH 092/122] Update SBIE language reports (RunReport)
---
Sandboxie/msgs/report/Report-SimpChinese.txt | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/Sandboxie/msgs/report/Report-SimpChinese.txt b/Sandboxie/msgs/report/Report-SimpChinese.txt
index 889bf747..de112d23 100644
--- a/Sandboxie/msgs/report/Report-SimpChinese.txt
+++ b/Sandboxie/msgs/report/Report-SimpChinese.txt
@@ -2,7 +2,5 @@
* Missing Messages in Text-SimpChinese-2052.txt
*==========
-2360;pop;err;01
-SBIE2360 Failed to inject SOCKS5 proxy: %2
-.
+There are no missing messages.
From e0dd40c5fb0c0423447ce078472f4fbbbe35420c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=88=B1=E7=BC=96=E7=A8=8B=E7=9A=84=E5=8F=B6=E4=B8=80?=
=?UTF-8?q?=E7=AC=91?=
<92030377+love-code-yeyixiao@users.noreply.github.com>
Date: Sun, 12 May 2024 11:11:33 +0800
Subject: [PATCH 093/122] Update sandman_zh_CN.ts
---
SandboxiePlus/SandMan/sandman_zh_CN.ts | 148 +++++++++++++------------
1 file changed, 76 insertions(+), 72 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index 238e1c38..44c7589c 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -2410,17 +2410,17 @@ Please select a folder which contains this file.
Please enter a domain to be filtered
-
+ 请输入一个过滤域名Please enter IP and Port.
-
+ 请输入IP地址与端口。 entry: IP or Port cannot be empty
-
+ 进入:IP或端口号不能为空
@@ -6475,7 +6475,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Sandboxie-Plus - Test Proxy
-
+ Sandboxie-Plus - 测试代理
@@ -6486,38 +6486,38 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Testing...
-
+ 测试中...This test cannot be disabled.
-
+ 这个测试不能被禁用。[%1] Starting Test 1: Connection to the Proxy Server
-
+ [%1] 启动测试 1: 连接到代理服务器[%1] IP Address: %2
-
+ [%1] IP地址: %2[%1] Connection established.
-
+ [%1] 连接已建立。[%1] Test passed.
-
+ [%1] 测试通过。[%1] Connection to proxy server failed: %2.
-
+ [%1] 连接到代理服务器失败: %2。
@@ -6525,27 +6525,27 @@ If you are a great patreaon supporter already, sandboxie can check online for an
[%1] Test failed.
-
+ [%1] 测试失败。[%1] Starting Test 2: Connection through the Proxy Server
-
+ [%1] 启动测试2: 通过代理服务器连接[%1] Authentication was successful.
-
+ [%1] 认证成功。[%1] Connection to %2 established through the proxy server.
-
+ [%1] 通过代理服务器连接到 %2 并已确立信道。[%1] Loading a web page to test the proxy server.
-
+ [%1] 加载一个互联网页面以测试代理服务器。
@@ -6555,58 +6555,58 @@ If you are a great patreaon supporter already, sandboxie can check online for an
[%1] Connection through proxy server failed: %2.
-
+ [%1] 通过代理服务器连接失败: %2[%1] Web page loaded successfully.
-
+ [%1] 互联网页面加载成功。Timeout
-
+ 超时[%1] Failed to load web page: %2.
-
+ [%1] 加载互联网页面失败: %2。[%1] Starting Test 3: Proxy Server latency
-
+ [%1] 启动测试 3: 代理服务器延迟[%1] Latency through proxy server: %2ms.
-
+ [%1] 通过代理服务器的延迟: %2毫秒。[%1] Failed to get proxy server latency: Request timeout.
-
+ [%1] 获取代理服务器延迟失败: 请求超时。[%1] Failed to get proxy server latency.
-
+ [%1] 获取代理服务器延迟失败。[%1] Test Finished.
-
+ [%1] 测试结束。Stopped
-
+ 停止的Stop
-
+ 停止
@@ -6615,42 +6615,46 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Address: %2
Protocol: %3
Authentication: %4%5
-
+ [%1] 测试开始...
+ 代理服务器
+ 地址: %2
+ 协议: %3
+ 认证: %4%5Retry
-
+ 重试Test Passed
-
+ 测试通过Test Failed
-
+ 测试失败Invalid Timeout value. Please enter a value between 1 and 60.
-
+ 无效的超时等待值。请输入一个1到60范围内的数值。Invalid Port value. Please enter a value between 1 and 65535.
-
+ 无效的端口值。请输入一个1到65535范围内的数值。Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
-
+ 无效的主机值。请输入一个不包含 'http[s]://' 的有效主机名。Invalid Ping Count value. Please enter a value between 1 and 10.
-
+ 无效的Ping次数值。请输入一个在1到10之间的数值。
@@ -8537,62 +8541,62 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
DNS Filter
-
+ DNS 过滤器Add Filter
-
+ 添加过滤器With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ 使用 DNS 过滤器可以根据每个进程禁用单个域(域名)。保留 IP 列为空以阻止域名解析或输入 IP 以重定向域名解析。Domain
-
+ 域Internet Proxy
-
+ 互联网代理Add Proxy
-
+ 添加代理Test Proxy
-
+ 测试代理Auth
-
+ 认证Login
-
+ 登陆Password
-
+ 密码Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
+ 沙盒化进程可以被强制使用一个预设的套接字5代理。Resolve hostnames via proxy
-
+ 通过代理解析主机名
@@ -9951,129 +9955,129 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Test Proxy
-
+ 测试代理Test Settings...
-
+ 测试设置中...Testing...
-
+ 测试中...Proxy Server
-
+ 代理服务器Address:
-
+ 地址:127.0.0.1:80
-
+ 127.0.0.1:80Protocol:
- 协议:
+ 协议:SOCKS 5
-
+ 套接字 5Authentication:
-
+ 认证:NO
-
+ NOLogin:
-
+ 登陆:username
-
+ 用户名Timeout (secs):
-
+ 超时值 (以秒为单位):5
-
+ 5Test 1: Connection to the Proxy Server
-
+ 测试 1:连接到代理服务器Enable this test
-
+ 启用这个测试Test 2: Connection through the Proxy Server
-
+ 测试2: 通过代理服务器连接Target host:
-
+ 目标主机:www.google.com
-
+ www.google.comPort:
- 端口:
+ 端口:80
-
+ 80Load a default web page from the host. (There must be a web server running on the host)
-
+ 从主机加载一个默认互联网页面。(必须有一个Web服务器运行在主机上)Test 3: Proxy Server latency
-
+ 测试 3 :代理服务器延迟Ping count:
-
+ Ping 数:Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
-
+ 增加 ping 计数以提高平均延迟计算的准确性。更多 ping 有助于确保平均值代表典型的网络条件。
From 8942e4fea098dbaf69eba5a60066a7b617deb2dd Mon Sep 17 00:00:00 2001
From: Sebastian G
Date: Sun, 12 May 2024 08:33:40 +0200
Subject: [PATCH 094/122] Update Text-German-1031.txt
New strings
---
Sandboxie/msgs/Text-German-1031.txt | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Sandboxie/msgs/Text-German-1031.txt b/Sandboxie/msgs/Text-German-1031.txt
index a4bb6538..a7613df5 100644
--- a/Sandboxie/msgs/Text-German-1031.txt
+++ b/Sandboxie/msgs/Text-German-1031.txt
@@ -702,6 +702,10 @@ SBIE2337 Konnte Programm nicht starten: %2
SBIE2338 Nicht unterstützte Architektur in Prozess %2 vorgefunden
.
+2360;pop;err;01
+SBIE2360 Fehler beim Injizieren des SOCKS5-Proxy: %2
+.
+
#----------------------------------------------------------------------------
# SbieSvc
#----------------------------------------------------------------------------
From d5adb5e2d274d5a77763f1498fba5a58e5aba04b Mon Sep 17 00:00:00 2001
From: love-code-yeyixiao <188240888@qq.com>
Date: Sun, 12 May 2024 15:03:32 +0800
Subject: [PATCH 095/122] Fix
---
SandboxiePlus/SandMan/SandMan.cpp | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp
index e5271323..48e66502 100644
--- a/SandboxiePlus/SandMan/SandMan.cpp
+++ b/SandboxiePlus/SandMan/SandMan.cpp
@@ -2306,15 +2306,15 @@ void CSandMan::OnBoxClosed(const CSandBoxPtr& pBox)
}
}
- QStringList *bDel=new QStringList(),list= pBox->GetTextList("Template", FALSE);
- foreach(const QString& Value, list) {
- if (tr("Template_Temp_").compare(Value.left(14)) == 0)
+ QStringList bDel=new QStringList(),list= pBox->GetTextList("Template", FALSE);
+ foreach(const QString& Value2, list) {
+ if (tr("Template_Temp_").compare(Value2.left(14)) == 0)
{
- bDel->append(Value);
+ bDel.append(Value2);
}
}
- foreach(const QString& Value, bDel) {
- list.removeAt(list.indexOf(Value));
+ foreach(const QString& Value3, bDel) {
+ list.removeAt(list.indexOf(Value3));
}
pBox->UpdateTextList("Template", list,FALSE);
From 60e40e78494c1e6f6af670a4008dc8eff935705d Mon Sep 17 00:00:00 2001
From: love-code-yeyixiao <188240888@qq.com>
Date: Sun, 12 May 2024 15:13:21 +0800
Subject: [PATCH 096/122] Fix
---
SandboxiePlus/SandMan/SandMan.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp
index 48e66502..e1ba2cc7 100644
--- a/SandboxiePlus/SandMan/SandMan.cpp
+++ b/SandboxiePlus/SandMan/SandMan.cpp
@@ -2306,14 +2306,14 @@ void CSandMan::OnBoxClosed(const CSandBoxPtr& pBox)
}
}
- QStringList bDel=new QStringList(),list= pBox->GetTextList("Template", FALSE);
+ QStringList *bDel=new QStringList(),list= pBox->GetTextList("Template", FALSE);
foreach(const QString& Value2, list) {
if (tr("Template_Temp_").compare(Value2.left(14)) == 0)
{
- bDel.append(Value2);
+ bDel->append(Value2);
}
}
- foreach(const QString& Value3, bDel) {
+ foreach(const QString& Value3, *bDel) {
list.removeAt(list.indexOf(Value3));
}
pBox->UpdateTextList("Template", list,FALSE);
From beb729cb37a0fe1641150dd43b60cd8b19fe091d Mon Sep 17 00:00:00 2001
From: Sebastian G
Date: Sun, 12 May 2024 09:20:42 +0200
Subject: [PATCH 097/122] Update sandman_de.ts
---
SandboxiePlus/SandMan/sandman_de.ts | 154 ++++++++++++++--------------
1 file changed, 79 insertions(+), 75 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts
index ae86c2cf..449346e2 100644
--- a/SandboxiePlus/SandMan/sandman_de.ts
+++ b/SandboxiePlus/SandMan/sandman_de.ts
@@ -2187,17 +2187,17 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
Please enter a domain to be filtered
-
+ Bitte geben Sie eine Domäne zum Filtern einPlease enter IP and Port.
-
+ Bitte geben Sie IP und Port ein. entry: IP or Port cannot be empty
-
+ Eintrag: IP oder Port dürfen nicht leer sein
@@ -6085,49 +6085,49 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Sandboxie-Plus - Test Proxy
-
+ Sandboxie-Plus - ProxytestN/A
-
+ N/ATesting...
-
+ Teste...This test cannot be disabled.
-
+ Dieser Test kann nicht deaktiviert werden.[%1] Starting Test 1: Connection to the Proxy Server
-
+ [%1] Starte Test 1: Verbindung zum Proxyserver[%1] IP Address: %2
-
+ [%1] IP Adresse: %2[%1] Connection established.
-
+ [%1] Verbindung hergestellt.[%1] Test passed.
-
+ [%1] Test bestanden.[%1] Connection to proxy server failed: %2.
-
+ [%1] Verbindung zum Proxyserver fehlgeschlagen: %2.
@@ -6135,88 +6135,88 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
[%1] Test failed.
-
+ [%1] Test fehlgeschlagen.[%1] Starting Test 2: Connection through the Proxy Server
-
+ [%1] Starte Test 2: Verbindung durch den Proxyserver[%1] Authentication was successful.
-
+ [%1] Authentifizierung war erfolgreich.[%1] Connection to %2 established through the proxy server.
-
+ [%1] Verbindung zu %2 durch den Proxyserver hergestellt.[%1] Loading a web page to test the proxy server.
-
+ [%1] Lade eine Internetseite zum Testen des Proxyservers.[%1] %2.
-
+ [%1] %2.[%1] Connection through proxy server failed: %2.
-
+ [%1] Verbindung durch den Proxyserver fehlgeschlagen: %2.[%1] Web page loaded successfully.
-
+ [%1] Internetseite erfolgreich geladen.Timeout
-
+ Zeitüberschreitung[%1] Failed to load web page: %2.
-
+ [%1] Fehler beim Laden der Internetseite: %2.[%1] Starting Test 3: Proxy Server latency
-
+ [%1] Starte Test 3: Proxyserverlatenz[%1] Latency through proxy server: %2ms.
-
+ [%1] Latenz durch den Proxyserver: %2ms.[%1] Failed to get proxy server latency: Request timeout.
-
+ [%1] Fehler beim Ermitteln der Proxyserverlatenz: Zeitüberschreitung der Anfrage.[%1] Failed to get proxy server latency.
-
+ [%1] Fehler beim Ermitteln der Proxyserverlatenz.[%1] Test Finished.
-
+ [%1] Test abgeschlossen.Stopped
-
+ GestopptStop
-
+ Stopp
@@ -6225,42 +6225,46 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Address: %2
Protocol: %3
Authentication: %4%5
-
+ [%1] Tests gestartet...
+ Proxyserver
+ Adresse: %2
+ Protokoll: %3
+ Authentifizierung: %4%5Retry
-
+ Erneut versuchenTest Passed
-
+ Test bestandenTest Failed
-
+ Test fehlgeschlagenInvalid Timeout value. Please enter a value between 1 and 60.
-
+ Ungültiger Zeitüberschreitungswert. Bitte geben Sie einen Wert zwischen 1 und 60 ein.Invalid Port value. Please enter a value between 1 and 65535.
-
+ Ungültiger Portwert. Bitte geben Sie eine Wert zwischen 1 und 65535 ein.Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
-
+ Ungültiger Hostwert. Bitte geben Sie einen gültigen Hostnamen ein, ohne 'http[s]://'.Invalid Ping Count value. Please enter a value between 1 and 10.
-
+ Ungültiger Pingzählerwert. Bitte geben Sie einen Wert zwischen 1 und 10 ein.
@@ -7185,62 +7189,62 @@ an Stelle von "*".
DNS Filter
-
+ DNS-FilterAdd Filter
-
+ Filter hinzufügenWith the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Mit dem DNS-Filter können individuelle Domänen, je Prozess blockiert werden. Lassen Sie die IP-Spalte leer zum Blockieren oder geben Sie eine IP ein zum Umleiten.Domain
-
+ DommäneInternet Proxy
-
+ InternetproxyAdd Proxy
-
+ Füge Proxy hinzuTest Proxy
-
+ Proxy testenAuth
-
+ AuthentifizierungLogin
-
+ LoginPassword
-
+ PasswortSandboxed programs can be forced to use a preset SOCKS5 proxy.
-
+ Sandgeboxte Programme können dazu gezwungen werden eine vorgegebenen SOCKS5-Proxy zu verwenden.Resolve hostnames via proxy
-
+ Hostnamen durch den Proxy auflösen
@@ -7275,7 +7279,7 @@ an Stelle von "*".
DNS Request Logging
-
+ DNS-Anfragenprotokollierung
@@ -9366,129 +9370,129 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
Test Proxy
-
+ Proxy TestTest Settings...
-
+ Test Einstellungen...Testing...
-
+ Teste...Proxy Server
-
+ ProxyserverAddress:
-
+ Adresse:127.0.0.1:80
-
+ 127.0.0.1:80Protocol:
- Protokoll:
+ Protokoll:SOCKS 5
-
+ SOCKS 5Authentication:
-
+ Authentifizierung:NO
-
+ NEINLogin:
-
+ Login:username
-
+ NutzernameTimeout (secs):
-
+ Zeitüberschreitung (Sek.):5
-
+ 5Test 1: Connection to the Proxy Server
-
+ Test 1: Verbindung zum ProxyserverEnable this test
-
+ Aktiviere diesen TestTest 2: Connection through the Proxy Server
-
+ Test 2: Verbindung durch den ProxyserverTarget host:
-
+ Zielhostwww.google.com
-
+ www.google.comPort:
- Port:
+ Port:80
-
+ 80Load a default web page from the host. (There must be a web server running on the host)
-
+ Lade eine übliche internetseite vom Host. (Auf dem Host muss ein Internetserver laufen)Test 3: Proxy Server latency
-
+ Test 3: ProxyserverlatenzPing count:
-
+ Pingzähler:Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
-
+ Erhöhen Sie den Pingzähler um die Genauigkeit der durchschnittlichen Berechnung zu verbessern. Mehr Pinganfragen helfen sicher zu stellen, dass der Durchschnitt repräsentativ für typische Netzwerkbedingungen ist.
From c408a62bbc31e036448fec6215520d211588ade6 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 12 May 2024 11:37:04 +0200
Subject: [PATCH 098/122] Update SandMan.cpp
---
SandboxiePlus/SandMan/SandMan.cpp | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp
index e1ba2cc7..778cf4e3 100644
--- a/SandboxiePlus/SandMan/SandMan.cpp
+++ b/SandboxiePlus/SandMan/SandMan.cpp
@@ -2306,17 +2306,17 @@ void CSandMan::OnBoxClosed(const CSandBoxPtr& pBox)
}
}
- QStringList *bDel=new QStringList(),list= pBox->GetTextList("Template", FALSE);
- foreach(const QString& Value2, list) {
- if (tr("Template_Temp_").compare(Value2.left(14)) == 0)
- {
- bDel->append(Value2);
- }
+ QStringList to_delete;
+ QStringList list = pBox->GetTextList("Template", FALSE);
+ foreach(const QString& Value, list) {
+ if (tr("Template_Temp_").compare(Value.left(14)) == 0)
+ to_delete.append(Value);
}
- foreach(const QString& Value3, *bDel) {
- list.removeAt(list.indexOf(Value3));
+ if (!to_delete.isEmpty()) {
+ foreach(const QString & Value, to_delete)
+ list.removeAt(list.indexOf(Value));
+ pBox->UpdateTextList("Template", list, FALSE);
}
- pBox->UpdateTextList("Template", list,FALSE);
if (!pBox->GetBool("NeverDelete", false))
{
From 7a2ca3e867d4a313760a945a705043efae4e6af8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=88=B1=E7=BC=96=E7=A8=8B=E7=9A=84=E5=8F=B6=E4=B8=80?=
=?UTF-8?q?=E7=AC=91?=
<92030377+love-code-yeyixiao@users.noreply.github.com>
Date: Sun, 12 May 2024 17:49:33 +0800
Subject: [PATCH 099/122] [skipci]
---
CHANGELOG.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 14bb7834..c89c56c9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,13 +10,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Add option to limit the memory of sandboxed process and the number of process in single sandbox through job object. (thanks Yeyixiao)
+ -Use "TotalMemoryLimit"(Number,limit whole sandbox) and "ProcessMemoryLimit"(Number,limit single process) to set.
- Add ability to modified sandboxed process logic speed (reduced fixed latency, modified single-player speed, etc.) (thanks Yeyixiao)
+ -Use "UseChangeSpeed=y" to open this feature,use "AddTickSpeed"/"AddSleepSpeed"/"AddTimerSpeed"/"LowTickSpeed"/"LowSleepSpeed"/"LowTimerSpeed"(Number) to set.
+ -When set "AddSleepSpeed=0",all Sleep funcation call will be skip.
- Added /fcp /force_children commandline option to start.exe it allows to start a program unsandboxed but have all its children sandboxed
- added ability to fore sandboxed processes to use a pre defined socks 5 proxy
- added ability to intercept DNS queries such that thay can be log and/or redirected
- added support for SOCKS5 proxy authentication based on RFC1928 (thanks Deezzir)
- added Test Dialog UI for SOCKS5 proxy (thanks Deezzir)
+- added ability to automatically removes template references that begin with “Template_Temp_” in the sandbox.
### Changed
- validated compatybility with windows build 26212 and updated dyn data
From a74f1307dae5a369cdd5cde037eaa9d235bea9c0 Mon Sep 17 00:00:00 2001
From: Michael <33252157+APMichael@users.noreply.github.com>
Date: Sun, 12 May 2024 13:52:07 +0200
Subject: [PATCH 100/122] Update sandman_de.ts
- Fixed minor typos.
---
SandboxiePlus/SandMan/sandman_de.ts | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts
index 449346e2..2bebebcb 100644
--- a/SandboxiePlus/SandMan/sandman_de.ts
+++ b/SandboxiePlus/SandMan/sandman_de.ts
@@ -6254,7 +6254,7 @@ Wenn Sie bereits ein Great Supporter auf Patreon sind, kann Sandboxie online nac
Invalid Port value. Please enter a value between 1 and 65535.
- Ungültiger Portwert. Bitte geben Sie eine Wert zwischen 1 und 65535 ein.
+ Ungültiger Portwert. Bitte geben Sie einen Wert zwischen 1 und 65535 ein.
@@ -7204,7 +7204,7 @@ an Stelle von "*".
Domain
- Dommäne
+ Domäne
@@ -7239,7 +7239,7 @@ an Stelle von "*".
Sandboxed programs can be forced to use a preset SOCKS5 proxy.
- Sandgeboxte Programme können dazu gezwungen werden eine vorgegebenen SOCKS5-Proxy zu verwenden.
+ Sandgeboxte Programme können dazu gezwungen werden einen vorgegebenen SOCKS5-Proxy zu verwenden.
@@ -9477,7 +9477,7 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
Load a default web page from the host. (There must be a web server running on the host)
- Lade eine übliche internetseite vom Host. (Auf dem Host muss ein Internetserver laufen)
+ Lade eine übliche Internetseite vom Host. (Auf dem Host muss ein Internetserver laufen)
@@ -9492,7 +9492,7 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
- Erhöhen Sie den Pingzähler um die Genauigkeit der durchschnittlichen Berechnung zu verbessern. Mehr Pinganfragen helfen sicher zu stellen, dass der Durchschnitt repräsentativ für typische Netzwerkbedingungen ist.
+ Erhöhen Sie den Pingzähler um die Genauigkeit der Berechnung der durchschnittlichen Latenz zu verbessern. Mehr Pinganfragen helfen sicher zu stellen, dass der Durchschnitt repräsentativ für typische Netzwerkbedingungen ist.
From 0c965e16601ba0e0f34cd3172947c283b38f6896 Mon Sep 17 00:00:00 2001
From: offhub <6871698+offhub@users.noreply.github.com>
Date: Sun, 12 May 2024 15:45:04 +0300
Subject: [PATCH 101/122] Update SandMan.cpp
fix Temp template
---
SandboxiePlus/SandMan/SandMan.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp
index 778cf4e3..a421e0e6 100644
--- a/SandboxiePlus/SandMan/SandMan.cpp
+++ b/SandboxiePlus/SandMan/SandMan.cpp
@@ -2306,10 +2306,11 @@ void CSandMan::OnBoxClosed(const CSandBoxPtr& pBox)
}
}
+ QString tempValPrefix = "Temp_";
QStringList to_delete;
QStringList list = pBox->GetTextList("Template", FALSE);
foreach(const QString& Value, list) {
- if (tr("Template_Temp_").compare(Value.left(14)) == 0)
+ if (tempValPrefix.compare(Value.left(5)) == 0)
to_delete.append(Value);
}
if (!to_delete.isEmpty()) {
From 9c58f9338f637c9079cfaf9091d71c79163ccc69 Mon Sep 17 00:00:00 2001
From: Lumito
Date: Sun, 12 May 2024 14:51:57 +0200
Subject: [PATCH 102/122] Update sandman_es.ts
---
SandboxiePlus/SandMan/sandman_es.ts | 232 ++++++++++++++--------------
1 file changed, 118 insertions(+), 114 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_es.ts b/SandboxiePlus/SandMan/sandman_es.ts
index 479ce0d0..bb9aa46a 100644
--- a/SandboxiePlus/SandMan/sandman_es.ts
+++ b/SandboxiePlus/SandMan/sandman_es.ts
@@ -183,7 +183,7 @@
Drop rights from Administrators and Power Users groups
- Rebajar permisos de grupos Administradores y Usuarios Avanzados
+ Rebajar permisos de grupos Administradores y Usuarios Avanzados
@@ -2394,17 +2394,17 @@ Por favor, selecciona una carpeta que contenga este archivo.
Please enter a domain to be filtered
-
+ Introduzca un dominio para ser filtradoPlease enter IP and Port.
-
+ Introduzca IP y Puerto. entry: IP or Port cannot be empty
-
+ entrada: IP o Puerto no pueden estar vacíos
@@ -3773,22 +3773,22 @@ Error: %1
<h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ <h3>Acerca de Sandboxie-Plus</h3><p>Versión %1</p><p>This copy of Sandboxie-Plus is certified for: %1
-
+ Esta copia de Sandboxie-Plus está certificada para: %1Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus es gratis para uso personal y no comercial.Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
-
+ Sandboxie-Plus es una continuación de código abierto de Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para más información.<br /><br />%2<br /><br />Características: %3<br /><br />Instalación: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Iconos de <a href="https://icons8.com">icons8.com</a><h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2024 by DavidXanatos</p>
@@ -4031,7 +4031,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Please check if there is an update for sandboxie.
Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.
- Su versión de Windows %1 supera las capacidades de soporte actuales de su versión de Sandboxie, lo que resulta en la desactivación del aislamiento de seguridad basado en tokens. Como consecuencia, todas las aplicaciones operarán en modo de compartimento de aplicación sin aislamiento seguro.
+ Su versión de Windows %1 supera las capacidades de soporte actuales de su versión de Sandboxie, lo que resulta en la desactivación del aislamiento de seguridad basado en tokens. Como consecuencia, todas las aplicaciones operarán en modo de compartimento de aplicación sin aislamiento seguro.
Por favor, verifique si hay una actualización para Sandboxie.
@@ -4125,7 +4125,7 @@ Este archivo es parte de Sandboxie y todos los cambios realizados en él serán
Failed to remove old box data files
- Fallo al remover archivos de datos antiguos
+ Error al eliminar archivos de caja antigua
@@ -4485,32 +4485,32 @@ NO seleccionará: %2
This Snapshot operation can not be performed while processes are still running in the box.
- Esta operación de Instantanea no puede ser realizada mientras procesos estan aun ejecutandose en la sandbox.
+ Esta operación de Instantánea no se puede realizar mientras se estén ejecutando procesos en la sandbox.Failed to create directory for new snapshot
- Fallo al crear el directorio para la nueva instantanea
+ Error al crear directorio para la nueva instantáneaSnapshot not found
- Instantanea no fue encontrada
+ Instantánea no encontradaError merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.
- Error uniendo directorios de instantaneas '%1' with '%2', la instantanea no ha sido completamente unida.
+ Error al unir directorios de instantáneas '%1' con '%2', la instantánea no se ha unido completamente.Failed to remove old snapshot directory '%1'
- Fallo al remover viejo directorio de instantenea '%1'
+ Error al eliminar directorio antiguo de instantáneas '%1'Can't remove a snapshot that is shared by multiple later snapshots
- No es posible remover una instantanea que es compartida por multiples instantaneas posteriores
+ No se puede eliminar una instantánea que es compartida por múltiples instantáneas posterioresFailed to remove old RegHive
@@ -4529,7 +4529,7 @@ NO seleccionará: %2
Can not create snapshot of an empty sandbox
- No es posible crear instantanea de una sandbox vacia
+ No es posible crear instantánea de una sandbox vacía
@@ -5544,7 +5544,7 @@ NO seleccionará: %2
Also delete all Snapshots
- Borrar también todas las Instantaneas
+ Borrar también todas las Instantáneas
@@ -5883,7 +5883,7 @@ NO seleccionará: %2
This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ Esto no parece un número de serie de Sandboxie-Plus.<br />Si ha intentado introducir el UpdateKey o Signature de un certificado, no es correcto, por favor introduzca, en cambio, el certificado completo en el área de texto superior.
@@ -6670,49 +6670,49 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Sandboxie-Plus - Test Proxy
-
+ Sandboxie-Plus - Probar ProxyN/A
-
+ N/DTesting...
-
+ Probando...This test cannot be disabled.
-
+ Esta prueba no se puede deshabilitar.[%1] Starting Test 1: Connection to the Proxy Server
-
+ [%1] Iniciando Prueba 1: Conexión al Servidor Proxy[%1] IP Address: %2
-
+ [%1] Dirección IP: %2[%1] Connection established.
-
+ [%1] Conexión establecida.[%1] Test passed.
-
+ [%1] Prueba superada.[%1] Connection to proxy server failed: %2.
-
+ [%1] Falló la conexión al servidor proxy: %2.
@@ -6720,88 +6720,88 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
[%1] Test failed.
-
+ [%1] Prueba fallida.[%1] Starting Test 2: Connection through the Proxy Server
-
+ [%1] Iniciando Prueba 2: Conexión mediante el Servidor Proxy[%1] Authentication was successful.
-
+ [%1] La autenticación fue exitosa.[%1] Connection to %2 established through the proxy server.
-
+ [%1] Conexión a %2 establecida mediante el servidor proxy.[%1] Loading a web page to test the proxy server.
-
+ [%1] Cargando una página web para probar el servidor proxy.[%1] %2.
-
+ [%1] %2.[%1] Connection through proxy server failed: %2.
-
+ [%1] Falló la conexión mediante el servidor proxy: %2.[%1] Web page loaded successfully.
-
+ [%1] Página web cargada con éxito.Timeout
-
+ Conexión expirada[%1] Failed to load web page: %2.
-
+ [%1] Error al cargar la página web: %2.[%1] Starting Test 3: Proxy Server latency
-
+ [%1] Inciciando Prueba 3: Latencia del Servidor Proxy[%1] Latency through proxy server: %2ms.
-
+ [%1] Latencia mediante el servidor proxy: %2ms.[%1] Failed to get proxy server latency: Request timeout.
-
+ [%1] Error al obtener la latencia del servidor proxy: Conexión expirada.[%1] Failed to get proxy server latency.
-
+ [%1] Error al obtener la latencia del servidor proxy.[%1] Test Finished.
-
+ [%1] Prueba Finalizada.Stopped
-
+ ParadoStop
-
+ Parar
@@ -6810,42 +6810,46 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Address: %2
Protocol: %3
Authentication: %4%5
-
+ [%1] Comprobación iniciada...
+ Servidor Proxy
+ Dirección: %2
+ Protocolo: %3
+ Autenticación: %4%5Retry
-
+ ReintentarTest Passed
-
+ Prueba SuperadaTest Failed
-
+ Prueba FallidaInvalid Timeout value. Please enter a value between 1 and 60.
-
+ Valor de tiempo de espera inválido. Introduzca un valor entre 1 y 60.Invalid Port value. Please enter a value between 1 and 65535.
-
+ Valor de Puerto inválido. Introduzca un valor entre 1 y 65535.Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
-
+ Valor de Host inválido. Introduzca un nombre de host válido excluyendo 'http[s]://'.Invalid Ping Count value. Please enter a value between 1 and 10.
-
+ Valor de Número de Pings inválido. Introduzca un valor entre 1 y 10.
@@ -7313,7 +7317,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Auto delete content changes when last sandboxed process terminatesAuto delete content when last sandboxed process terminates
- Auto eliminar contenido cuando el ultimo proceso en la sandbox termina
+ Eliminar contenido automáticamente cuando finalice el último proceso aislado
@@ -7328,7 +7332,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Protect this sandbox from deletion or emptying
- Protejer esta sandbox de la eliminación o vaciado
+ Proteger esta sandbox de la eliminación o vaciadoRaw Disk access
@@ -7367,7 +7371,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Remove spooler restriction, printers can be installed outside the sandbox
- Remover restricción de spooler, las impresoras pueden ser instaladas fuera de la sandbox
+ Eliminar restricción de spooler, las impresoras pueden ser instaladas fuera de la sandbox
@@ -7469,7 +7473,7 @@ Si ya eres un Gran Patrocinador en Patreon, Sandboxie puede comprobar online por
Remove
- Remover
+ EliminarAuto Start
@@ -7773,7 +7777,7 @@ Para acceso a archivos Ud. puede usar 'Directo Todo' en vez de hacerlo
You can exclude folders and file types (or file extensions) from Immediate Recovery.
- Ud. puede excluir carpetas y tipos de archivos (o extensiones de archivos) de la Recuperación Instantanea.
+ Puede excluir carpetas y tipos de archivos (o extensiones de archivos) de la Recuperación Instantánea.
@@ -8564,29 +8568,29 @@ Para especificar un proceso, utiliza '$:program.exe' como ruta.
Prevent sandboxed processes from interfering with power operations (Experimental)
-
+ Impedir que los procesos aislados interfieran con las operaciones en energía (Experimental)Prevent move mouse, bring in front, and similar operations, this is likely to cause issues with games.Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
-
+ Impedir operaciones como movimiento de ratón o mover al frente, al poder causar problemas con los juegos.Prevent interference with the user interface (Experimental)
-
+ Impedir interferencia con la interfaz de usuario (Experimental)This feature does not block all means of obtaining a screen capture, only some common ones.This feature does not block all means of optaining a screen capture only some common once.
-
+ Esta característica no bloquea todos los medios de obtener una captura de pantalla, únicamente los comunes.Prevent sandboxed processes from capturing window images (Experimental, may cause UI glitches)
-
+ Impedir que los procesos aislados capturen imágenes de ventanas (Experimental, puede causar fallos en la IU)
@@ -8985,62 +8989,62 @@ Por favor note que estos valores son especificos para usuario y guardados global
DNS Filter
-
+ Filtro DNSAdd Filter
-
+ Añadir FiltroWith the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ Con el filtro DNS se pueden bloquear dominios individuales, por proceso. Deje la columna de IP vacía para bloquear o introduzca una IP a redireccionar.Domain
-
+ DominioInternet Proxy
-
+ Proxy de InternetAdd Proxy
-
+ Añadir ProxyTest Proxy
-
+ Probar ProxyAuth
-
+ AutenticaciónLogin
-
+ UsuarioPassword
-
+ ContraseñaSandboxed programs can be forced to use a preset SOCKS5 proxy.
-
+ Los programas aislados pueden ser forzados a que usen un proxy SOCKS5 preestablecido.Resolve hostnames via proxy
-
+ Resolver nombres de host vía proxy
@@ -9076,7 +9080,7 @@ Por favor note que estos valores son especificos para usuario y guardados global
Open Template
-
+ Abrir Plantilla
@@ -9379,7 +9383,7 @@ Por favor note que estos valores son especificos para usuario y guardados global
Hotkey for suspending all processes:Hotkey for suspending all process
- Atajo para suspender todos los procesos
+ Atajo para suspender todos los procesos:
@@ -9509,7 +9513,7 @@ Por favor note que estos valores son especificos para usuario y guardados global
Hide SandMan windows from screen capture (UI restart required)
-
+ Esconder ventana de SandMan para las capturas de pantalla (reinicio de IU requerido)
@@ -9621,7 +9625,7 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Open Template
-
+ Abrir Plantilla
@@ -10225,7 +10229,7 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Remove Program
- Remover Programa
+ Eliminar Programa
@@ -10283,12 +10287,12 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
SandboxiePlus - SnapshotsSandboxie-Plus - Snapshots
- SandboxiePlus - Instantanea
+ Sandboxie-Plus - InstantáneasSelected Snapshot Details
- Detalles de Instantaneas seleccionadas
+ Detalles de las Instantáneas seleccionadas
@@ -10298,37 +10302,37 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Description:
- Descripcion:
+ Descripción:When deleting a snapshot content, it will be returned to this snapshot instead of none.
- Cuando se elimina el contenido de las instantaneas, volveran a esta instantanea en vez de ninguna.
+ Al eliminar el contenido de una instantánea, esta se restaurará en vez de ninguna.Default snapshot
- Instantanea por defecto
+ Instantánea por defectoSnapshot Actions
- Acciones de Instantaneas
+ Acciones de InstantáneasRemove Snapshot
- Remover Instantaneas
+ Eliminar InstantáneasGo to Snapshot
- Ir a Instantaneas
+ Ir a InstantáneaTake Snapshot
- Tomar una Instantanea
+ Tomar una Instantánea
@@ -10336,129 +10340,129 @@ A diferencia del canal de vista previa, no incluye cambios no probados, potencia
Test Proxy
-
+ Probar ProxyTest Settings...
-
+ Probando configuraciones...Testing...
-
+ Probando...Proxy Server
-
+ Servidor ProxyAddress:
-
+ Dirección:127.0.0.1:80
-
+ 127.0.0.1:80Protocol:
- Protocolo:
+ Protocolo:SOCKS 5
-
+ SOCKS 5Authentication:
-
+ Autenticación:NO
-
+ NOLogin:
-
+ Usuario:username
-
+ usuarioTimeout (secs):
-
+ Tiempo de espera (segundos):5
-
+ 5Test 1: Connection to the Proxy Server
-
+ Prueba 1: Conexión al Servidor ProxyEnable this test
-
+ Habilitar esta pruebaTest 2: Connection through the Proxy Server
-
+ Prueba 2: Conexión mediante el Servidor ProxyTarget host:
-
+ Host de destino:www.google.com
-
+ www.google.comPort:
- Puerto:
+ Puerto:80
-
+ 80Load a default web page from the host. (There must be a web server running on the host)
-
+ Cargar una página web por defecto del host (Ha de haber un servidor web corriendo en él)Test 3: Proxy Server latency
-
+ Prueba 3: Latencia del Servidor ProxyPing count:
-
+ Número de pings:Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
-
+ Incremente el número de pings para mejorar la precisión del cálculo de latencia media. Más pings ayudan a asegurar que la media es representativa de las condiciones de red típicas.
From 4cca2a4c0f3ed357f54c182a31b3ccc9a93a62ae Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 12 May 2024 15:39:15 +0200
Subject: [PATCH 103/122] 1.14.0
---
Sandboxie/core/drv/process_force.c | 13 +++++++++++--
Sandboxie/core/svc/sbieiniserver.cpp | 12 ++++++++++++
2 files changed, 23 insertions(+), 2 deletions(-)
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index 936d53e0..15f7c9d4 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -161,6 +161,7 @@ _FX BOX *Process_GetForcedStartBox(
ULONG alert;
BOOLEAN check_force;
BOOLEAN is_start_exe;
+ BOOLEAN image_sbie;
BOOLEAN force_alert;
BOOLEAN dfp_already_added;
BOOLEAN same_image_name;
@@ -248,7 +249,7 @@ _FX BOX *Process_GetForcedStartBox(
// when the process is start.exe we ignore the CurDir and DocArg
//
- Process_IsSbieImage(ImagePath, NULL, &is_start_exe);
+ Process_IsSbieImage(ImagePath, &image_sbie, &is_start_exe);
if ((! box) && CurDir && !is_start_exe)
box = Process_CheckBoxPath(&boxes, CurDir);
@@ -284,7 +285,15 @@ _FX BOX *Process_GetForcedStartBox(
Process_DfpInsert(PROCESS_TERMINATED, ProcessId);
}
- if (!box) {
+ //
+ // Check if the parent process has its children forced to be sandboxes
+ // exempt sandboxie components from this as start.exe can be used to
+ // open selected processes in other boxes or set Dfp when desired.
+ //
+ // we also must Excempt conhost.exe for console applications
+ //
+
+ if (!box && !image_sbie && _wcsicmp(ImageName, L"conhost.exe") != 0) {
WCHAR boxname[BOXNAME_COUNT];
diff --git a/Sandboxie/core/svc/sbieiniserver.cpp b/Sandboxie/core/svc/sbieiniserver.cpp
index bdaae16d..89ab9104 100644
--- a/Sandboxie/core/svc/sbieiniserver.cpp
+++ b/Sandboxie/core/svc/sbieiniserver.cpp
@@ -2409,6 +2409,18 @@ MSG_HEADER *SbieIniServer::RunSbieCtrl(MSG_HEADER *msg, HANDLE idProcess, bool i
MSG_HEADER *SbieIniServer::RC4Crypt(MSG_HEADER *msg, HANDLE idProcess, bool isSandboxed)
{
+ //
+ // The purpose of this function is to provide a simple machien bound obfuscation
+ // for example to store passwords which are required in plain text.
+ // To this end we use a Random 64 bit key which is generated once and stored in the registry
+ // as well as the rc4 algorythm for the encryption, applying the same transformation twice
+ // yealds the original plaintext, hence only one function is sufficient.
+ //
+ // Please note that neider the mechanism nor the use rc4 algorythm can be considdered
+ // cryptographically secure by any means.
+ // This mechanism is only good for simple obfuscation of non critical data.
+ //
+
SBIE_INI_RC4_CRYPT_REQ *req = (SBIE_INI_RC4_CRYPT_REQ *)msg;
if (req->h.length < sizeof(SBIE_INI_RC4_CRYPT_REQ))
return SHORT_REPLY(STATUS_INVALID_PARAMETER);
From 77cd2c924918bdfa479d21de54f6f45a007a8d01 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 12 May 2024 16:25:53 +0200
Subject: [PATCH 104/122] 1.14.0
---
Sandboxie/core/dll/dns_filter.c | 11 +++++++++++
Sandboxie/core/dll/net.c | 11 +++++++++++
Sandboxie/core/drv/verify.h | 1 +
SandboxiePlus/SandMan/SandMan.cpp | 16 ++++++++++++----
SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp | 7 +++++++
SandboxiePlus/SandMan/Windows/OptionsWindow.cpp | 5 +++++
SandboxiePlus/SandMan/Windows/OptionsWindow.h | 1 +
7 files changed, 48 insertions(+), 4 deletions(-)
diff --git a/Sandboxie/core/dll/dns_filter.c b/Sandboxie/core/dll/dns_filter.c
index 303c0d0c..a7817159 100644
--- a/Sandboxie/core/dll/dns_filter.c
+++ b/Sandboxie/core/dll/dns_filter.c
@@ -31,6 +31,8 @@
#include "wsa_defs.h"
#include "common/pattern.h"
#include "common/str_util.h"
+#include "core/drv/api_defs.h"
+#include "core/drv/verify.h"
//---------------------------------------------------------------------------
@@ -192,6 +194,15 @@ _FX BOOLEAN WSA_InitNetDnsFilter(HMODULE module)
map_init(&WSA_LookupMap, Dll_Pool);
}
+ SCertInfo CertInfo = { 0 };
+ if (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_ADVANCED(CertInfo)) {
+
+ const WCHAR* strings[] = { L"NetworkDnsFilter" , NULL };
+ SbieApi_LogMsgExt(-1, 6009, strings);
+
+ WSA_FilterEnabled = FALSE;
+ }
+
//
// Setup DNS hooks
//
diff --git a/Sandboxie/core/dll/net.c b/Sandboxie/core/dll/net.c
index 3333981b..e4a20ac9 100644
--- a/Sandboxie/core/dll/net.c
+++ b/Sandboxie/core/dll/net.c
@@ -33,6 +33,8 @@
#include "wsa_defs.h"
#include "core/svc/sbieiniwire.h"
#include "common/base64.c"
+#include "core/drv/api_defs.h"
+#include "core/drv/verify.h"
//---------------------------------------------------------------------------
@@ -1324,6 +1326,15 @@ _FX BOOLEAN WSA_InitNetProxy()
return FALSE;
}
+ SCertInfo CertInfo = { 0 };
+ if (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_ADVANCED(CertInfo)) {
+
+ const WCHAR* strings[] = { L"NetworkUseProxy" , NULL };
+ SbieApi_LogMsgExt(-1, 6009, strings);
+
+ return FALSE;
+ }
+
return TRUE;
}
diff --git a/Sandboxie/core/drv/verify.h b/Sandboxie/core/drv/verify.h
index 4e0f0ca6..f10ea8e3 100644
--- a/Sandboxie/core/drv/verify.h
+++ b/Sandboxie/core/drv/verify.h
@@ -86,6 +86,7 @@ enum ECertLevel {
#define CERT_IS_TYPE(cert,t) ((cert.type & 0b11100) == (unsigned long)(t))
#define CERT_IS_SUBSCRIPTION(cert) (CERT_IS_TYPE(cert, eCertBusiness) || CERT_IS_TYPE(cert, eCertHome) || cert.type == eCertEntryPatreon || CERT_IS_TYPE(cert, eCertEvaluation))
#define CERT_IS_INSIDER(cert) (CERT_IS_TYPE(cert, eCertEternal) || cert.type == eCertGreatPatreon)
+#define CERT_IS_ADVANCED(cert) (CERT_IS_TYPE(cert, eCertEternal) || (CERT_IS_LEVEL(cert, eCertAdvanced) && cert.type != eCertPatreon))
#define CERT_IS_LEVEL(cert,l) (cert.active && cert.level >= (unsigned long)(l))
#ifdef KERNEL_MODE
diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp
index a421e0e6..35f9350f 100644
--- a/SandboxiePlus/SandMan/SandMan.cpp
+++ b/SandboxiePlus/SandMan/SandMan.cpp
@@ -2968,13 +2968,21 @@ void CSandMan::SaveMessageLog(QIODevice* pFile)
bool CSandMan::CheckCertificate(QWidget* pWidget, int iType)
{
QString Message;
- if (iType == 1)
+ if (iType == 1 || iType == 2)
{
- if (CERT_IS_LEVEL(g_CertInfo, eCertAdvanced))
- return true;
+ if (iType == 1) {
+ if (CERT_IS_LEVEL(g_CertInfo, eCertAdvanced))
+ return true;
+ }
+ else {
+ if (CERT_IS_ADVANCED(g_CertInfo))
+ return true;
+ }
Message = tr("The selected feature requires an advanced supporter certificate.");
- if(g_CertInfo.active)
+ if (iType == 2 && CERT_IS_TYPE(g_CertInfo, eCertPatreon))
+ Message.append(tr(" you need to be on the Great Patreon level or higher to unlock this feature."));
+ else if (g_CertInfo.active)
Message.append(tr(" Upgrade your Certificate to unlock advanced features."));
else
Message.append(tr(" Become a project supporter, and receive a supporter certificate"));
diff --git a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
index 10fe5eaf..153c9e43 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
@@ -60,6 +60,13 @@ void COptionsWindow::CreateNetwork()
connect(ui.chkBlockDns, SIGNAL(clicked(bool)), this, SLOT(OnBlockDns()));
connect(ui.chkBlockSamba, SIGNAL(clicked(bool)), this, SLOT(OnBlockSamba()));
+ connect(ui.tabsInternet, SIGNAL(currentChanged(int)), this, SLOT(OnInternetTab()));
+
+ if (!CERT_IS_ADVANCED(g_CertInfo)) {
+ ui.tabDNS->setEnabled(false);
+ ui.tabNetProxy->setEnabled(false);
+ }
+
ui.chkProxyResolveHostnames->setVisible(false);
}
diff --git a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
index 861fb962..d81b32be 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
@@ -1206,6 +1206,11 @@ void COptionsWindow::UpdateCurrentTab()
{
LoadBlockINet();
}
+ else if (m_pCurrentTab == ui.tabDNS || m_pCurrentTab == ui.tabNetProxy)
+ {
+ if (!m_pCurrentTab->isEnabled())
+ theGUI->CheckCertificate(this, 2);
+ }
else if (m_pCurrentTab == ui.tabCOM) {
CheckOpenCOM();
}
diff --git a/SandboxiePlus/SandMan/Windows/OptionsWindow.h b/SandboxiePlus/SandMan/Windows/OptionsWindow.h
index 4223caff..c38e70e3 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsWindow.h
+++ b/SandboxiePlus/SandMan/Windows/OptionsWindow.h
@@ -238,6 +238,7 @@ private slots:
void OnTab() { OnTab(ui.tabs->currentWidget()); }
void OnAccessTab() { OnTab(ui.tabsAccess->currentWidget()); }
+ void OnInternetTab() { OnTab(ui.tabsInternet->currentWidget()); }
void OnGeneralChanged();
void OnPSTChanged();
From fe0c8c795256f858e047d5ca0cc6f68f92bfc67c Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 12 May 2024 17:55:06 +0200
Subject: [PATCH 105/122] 1.14.0
---
CHANGELOG.md | 6 +++---
Sandboxie/core/dll/dns_filter.c | 12 ++++++------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c89c56c9..10fa92bc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,10 +10,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Add option to limit the memory of sandboxed process and the number of process in single sandbox through job object. (thanks Yeyixiao)
- -Use "TotalMemoryLimit"(Number,limit whole sandbox) and "ProcessMemoryLimit"(Number,limit single process) to set.
+ - Use "TotalMemoryLimit"(Number,limit whole sandbox) and "ProcessMemoryLimit"(Number,limit single process) to set.
- Add ability to modified sandboxed process logic speed (reduced fixed latency, modified single-player speed, etc.) (thanks Yeyixiao)
- -Use "UseChangeSpeed=y" to open this feature,use "AddTickSpeed"/"AddSleepSpeed"/"AddTimerSpeed"/"LowTickSpeed"/"LowSleepSpeed"/"LowTimerSpeed"(Number) to set.
- -When set "AddSleepSpeed=0",all Sleep funcation call will be skip.
+ - Use "UseChangeSpeed=y" to open this feature,use "AddTickSpeed"/"AddSleepSpeed"/"AddTimerSpeed"/"LowTickSpeed"/"LowSleepSpeed"/"LowTimerSpeed"(Number) to set.
+ - When set "AddSleepSpeed=0",all Sleep funcation call will be skip.
- Added /fcp /force_children commandline option to start.exe it allows to start a program unsandboxed but have all its children sandboxed
- added ability to fore sandboxed processes to use a pre defined socks 5 proxy
diff --git a/Sandboxie/core/dll/dns_filter.c b/Sandboxie/core/dll/dns_filter.c
index a7817159..a8e96c27 100644
--- a/Sandboxie/core/dll/dns_filter.c
+++ b/Sandboxie/core/dll/dns_filter.c
@@ -192,15 +192,15 @@ _FX BOOLEAN WSA_InitNetDnsFilter(HMODULE module)
WSA_FilterEnabled = TRUE;
map_init(&WSA_LookupMap, Dll_Pool);
- }
- SCertInfo CertInfo = { 0 };
- if (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_ADVANCED(CertInfo)) {
+ SCertInfo CertInfo = { 0 };
+ if (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_ADVANCED(CertInfo)) {
- const WCHAR* strings[] = { L"NetworkDnsFilter" , NULL };
- SbieApi_LogMsgExt(-1, 6009, strings);
+ const WCHAR* strings[] = { L"NetworkDnsFilter" , NULL };
+ SbieApi_LogMsgExt(-1, 6009, strings);
- WSA_FilterEnabled = FALSE;
+ WSA_FilterEnabled = FALSE;
+ }
}
//
From ae144b45815854643ead2dafc7c2be3515da1d93 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 12 May 2024 18:56:33 +0200
Subject: [PATCH 106/122] Update api.c
---
Sandboxie/core/drv/api.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/Sandboxie/core/drv/api.c b/Sandboxie/core/drv/api.c
index 81279c21..bdb04431 100644
--- a/Sandboxie/core/drv/api.c
+++ b/Sandboxie/core/drv/api.c
@@ -1301,11 +1301,6 @@ _FX NTSTATUS Api_QueryDriverInfo(PROCESS* proc, ULONG64* parms)
{
NTSTATUS status = STATUS_SUCCESS;
API_QUERY_DRIVER_INFO_ARGS *args = (API_QUERY_DRIVER_INFO_ARGS *)parms;
-
- if (proc) {
- status = STATUS_NOT_IMPLEMENTED;
- goto finish;
- }
__try {
@@ -1385,7 +1380,6 @@ _FX NTSTATUS Api_QueryDriverInfo(PROCESS* proc, ULONG64* parms)
status = GetExceptionCode();
}
-finish:
return status;
}
From 607b5651b96ee74d0af9d7752a20f00e4cec0476 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 12 May 2024 18:58:50 +0200
Subject: [PATCH 107/122] Update process_force.c
---
Sandboxie/core/drv/process_force.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Sandboxie/core/drv/process_force.c b/Sandboxie/core/drv/process_force.c
index 15f7c9d4..e8bcc6f5 100644
--- a/Sandboxie/core/drv/process_force.c
+++ b/Sandboxie/core/drv/process_force.c
@@ -290,7 +290,7 @@ _FX BOX *Process_GetForcedStartBox(
// exempt sandboxie components from this as start.exe can be used to
// open selected processes in other boxes or set Dfp when desired.
//
- // we also must Excempt conhost.exe for console applications
+ // we also must excempt conhost.exe for console applications
//
if (!box && !image_sbie && _wcsicmp(ImageName, L"conhost.exe") != 0) {
From b095bc2bce9f8ea7769d8b3eabcb8174e094bb9a Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Sun, 12 May 2024 21:27:17 +0200
Subject: [PATCH 108/122] fix
---
Sandboxie/core/dll/guimisc.c | 5 +++--
Sandboxie/core/dll/kernel.c | 6 ++++--
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/Sandboxie/core/dll/guimisc.c b/Sandboxie/core/dll/guimisc.c
index cbed0807..7ef60407 100644
--- a/Sandboxie/core/dll/guimisc.c
+++ b/Sandboxie/core/dll/guimisc.c
@@ -293,8 +293,9 @@ _FX BOOLEAN Gui_InitMisc(HMODULE module)
if (SbieApi_QueryConfBool(NULL, L"UseChangeSpeed", FALSE)) {
P_SetTimer SetTimer = Ldr_GetProcAddrNew(DllName_user32, "SetTimer", "SetTimer");
- if (SetTimer)
- SBIEDLL_HOOK(Gui_, SetTimer);
+ if (SetTimer) {
+ SBIEDLL_HOOK(Gui_, SetTimer);
+ }
}
return TRUE;
diff --git a/Sandboxie/core/dll/kernel.c b/Sandboxie/core/dll/kernel.c
index 40319055..76bc7fae 100644
--- a/Sandboxie/core/dll/kernel.c
+++ b/Sandboxie/core/dll/kernel.c
@@ -97,11 +97,13 @@ _FX BOOLEAN Kernel_Init()
SBIEDLL_HOOK(Kernel_, GetTickCount);
P_GetTickCount64 GetTickCount64 = Ldr_GetProcAddrNew(Dll_Kernel32, L"GetTickCount64", "GetTickCount64");
- if (GetTickCount64)
+ if (GetTickCount64) {
SBIEDLL_HOOK(Kernel_, GetTickCount64);
+ }
P_QueryUnbiasedInterruptTime QueryUnbiasedInterruptTime = Ldr_GetProcAddrNew(Dll_Kernel32, L"QueryUnbiasedInterruptTime", "QueryUnbiasedInterruptTime");
- if (QueryUnbiasedInterruptTime)
+ if (QueryUnbiasedInterruptTime) {
SBIEDLL_HOOK(Kernel_, QueryUnbiasedInterruptTime);
+ }
SBIEDLL_HOOK(Kernel_, QueryPerformanceCounter);
//SBIEDLL_HOOK(Kernel_, Sleep);
SBIEDLL_HOOK(Kernel_, SleepEx);
From 24156d61c1e9837d822c83a5159192dafdd4c1b9 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 13 May 2024 01:29:18 +0000
Subject: [PATCH 109/122] Sync SBIE Plus language files (lupdate)
---
SandboxiePlus/SandMan/sandman_de.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_en.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_es.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_fr.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_hu.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_it.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_ja.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_ko.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_nl.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_pl.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_pt_BR.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_pt_PT.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_ru.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_sv_SE.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_tr.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_uk.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_vi.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_zh_CN.ts | 357 +++++++++++++------------
SandboxiePlus/SandMan/sandman_zh_TW.ts | 357 +++++++++++++------------
19 files changed, 3439 insertions(+), 3344 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts
index 2bebebcb..e0174716 100644
--- a/SandboxiePlus/SandMan/sandman_de.ts
+++ b/SandboxiePlus/SandMan/sandman_de.ts
@@ -1791,9 +1791,9 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
-
-
-
+
+
+ Group: %1Gruppe: %1
@@ -2077,11 +2077,11 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
-
-
-
-
-
+
+
+
+
+ All ProgramsAlle Programme
@@ -2106,7 +2106,7 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
-
+ Template values can not be edited.Vorlagenwerte können nicht bearbeitet werden.
@@ -2147,82 +2147,82 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
-
+ AnyAlle
-
+ TCPTCP
-
+ UDPUPD
-
+ ICMPICMP
-
+ Allow accessErlaube Zugriff
-
+ Block using Windows Filtering PlatformBlockieren durch Verwendung der Windows Filtering Platform
-
+ Block by denying access to Network devicesBlockieren durch Zugriffsverweigerung auf Netzwerkgeräte
-
+ Please enter a domain to be filteredBitte geben Sie eine Domäne zum Filtern ein
-
+ Please enter IP and Port.Bitte geben Sie IP und Port ein.
-
+ entry: IP or Port cannot be empty Eintrag: IP oder Port dürfen nicht leer sein
-
-
+
+ AllowErlauben
-
+ Block (WFP)Blockieren (WFP)
-
+ Block (NDev)Blockieren (NDev)
-
+ A non empty program name is required.Ein nicht leerer Programmname wird benötigt.
-
+ BlockBlockieren
@@ -2705,22 +2705,22 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
CSandBox
-
+ Waiting for folder: %1Warte auf Ordner: %1
-
+ Deleting folder: %1Lösche Ordner: %1
-
+ Merging folders: %1 >> %2Führe Ordner zusammen: %1 >> %2
-
+ Finishing Snapshot Merge...Beende Schnappschuss Zusammenführung...
@@ -2798,27 +2798,27 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
-
+ Reset ColumnsSpalten zurücksetzen
-
+ Copy CellZelle kopieren
-
+ Copy RowSpalte kopieren
-
+ Copy PanelTafel kopieren
@@ -3177,7 +3177,7 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
-
+ Sandboxie-Plus Insider [%1]Sandboxie-Plus Insider [%1]
@@ -3285,7 +3285,7 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
Führe 'Beim Box Beenden' aus: %1
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3294,218 +3294,223 @@ Ja wählt: %1
Nein wählt: %2
-
+ Default sandbox not found; creating: %1Standard Sandbox nicht gefunden; erstelle: %1
-
+ Failed to configure hotkey %1, error: %2Konnte Hotkey %1 nicht einrichten, Fehler: %2
-
-
-
+
+
+ (%1) (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.Die Box %1 ist konfiguriert Funktionen zu nutzen, welche exklusiv für Projektunterstützer verfügbar sind.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.Die Box %1 ist konfiguriert Funktionen zu nutzen, welche ein <b>erweitertes</b> Unterstützerzertifikat erfordern.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgraden Sie Ihr Zertifikat</a> um alle erweiterten Funktionen freizuschalten.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.Diese Funktion erfordert ein <b>erweitertes</b> Unterstützerzertifikat.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Die ausgewählte(n) Funktion(en) ist/sind nur für Projektunterstützer verfügbar.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Werden Sie ein Projektunterstützer</a>, und erhalten Sie ein <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Unterstützerzertifikat</a>
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Die ausgewählte(n) Funktion(en) ist/sind nur für Projektunterstützer verfügbar. Prozesse, die in einer Box mit diesen Funktionen ohne Unterstützerzertifikat gestartet werden, werden nach 5 Minuten beendet.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Werden Sie ein Projektunterstützer</a>, und erhalten Sie ein <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Unterstützerzertifikat</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Das Zertifikat, das Sie zu verwenden versuchen, wurde gesperrt, was bedeutet, dass es aus gutem Grund für ungültig erklärt wurde. Jeder Versuch es zu verwenden, stellt einen Verstoß gegen die Nutzungsbedingungen dar!
-
+ The Certificate Signature is invalid!Die Zertifikatssignatur ist ungültig!
-
+ The Certificate is not suitable for this product.Das Zertifikat ist für dieses Produkt nicht geeignet.
-
+ The Certificate is node locked.Das Zertifikat ist an ein anderes Gerät gebunden (node-locked).
-
+ The support certificate is not valid.
Error: %1Das Unterstützerzertifikat ist nicht gültig.
Fehler: %1
-
-
+
+ Don't ask in futureZukünftig nicht mehr fragen
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Möchten Sie alle Prozesse in verschlüsselten Sandboxen beenden und diese aushängen?
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.ACHTUNG: Ein anderer Agent (vermutlich SbieCtrl.exe) verwaltet diese Sandboxiesitzung bereits, bitte schließen Sie diesen zuerst und verbinden sich erneut, um zu übernehmen.
-
+ Error Status: 0x%1 (%2)Fehlerstatus: 0x%1 (%2)
-
+ UnknownUnbekannt
-
+ All processes in a sandbox must be stopped before it can be renamed.Alle Prozesse in einer Sandbox müssen beendet werden, bevor diese umbenannt werden kann.
-
+ Failed to move box image '%1' to '%2'Konnte Boxabbild '%1' nicht nach '%2' verschieben
-
+ The config password must not be longer than 64 charactersDas Konfigurationspasswort darf nicht länger als 64 Zeichen sein
-
+ The content of an unmounted sandbox can not be deletedDer Inhalt einer nicht angeschlossenen Sandbox kann nicht gelöscht werden
-
+ %1%1
-
+ Unknown Error Status: 0x%1Unbekannter Fehlerstatus: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?Möchten Sie %1 in einem sandgeboxten oder nicht sandgeboxten Browser öffnen?
-
+ SandboxedSandgeboxt
-
+ UnsandboxedNicht sandgeboxt
-
+ Case SensitiveGroß-/Kleinschreibung beachten
-
+ RegExpRegulärer Ausdruck (RegExp)
-
+ HighlightHervorheben
-
+ CloseSchließen
-
+ &Find ...&Suchen ...
-
+ All columnsAlle Spalten
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p><h3>Über Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1Diese Kopie von Sandboxie-Plus ist zertifiziert für: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.Sandboxie-Plus ist gratis für persönliche und nicht-kommerzielle Nutzung.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Sandboxie-Plus ist eine Open-Source Fortsetzung von Sandboxie.<br />Besuchen Sie <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> für mehr Informationen.<br /><br />%2<br /><br />Funktionen: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons von <a href="https://icons8.com">icons8.com</a>
-
+ The supporter certificate is not valid for this build, please get an updated certificateDas Unterstützerzertifikat ist für diese Version nicht gültig, bitte holen Sie sich ein aktuelles Zertifikat
-
+ The supporter certificate has expired%1, please get an updated certificateDas Unterstützerzertifikat ist abgelaufen%1, bitte holen Sie sich ein aktuelles Zertifikat
-
+ , but it remains valid for the current build, aber es bleibt für die aktuelle Version gültig
-
+ The supporter certificate will expire in %1 days, please get an updated certificateDas Unterstützerzertifikat wird in %1 Tagen ablaufen, bitte holen Sie sich ein aktuelles Zertifikat
@@ -3578,7 +3583,7 @@ Fehler: %1
-
+ About Sandboxie-PlusÜber Sandboxie-Plus
@@ -3632,17 +3637,17 @@ Möchten Sie die Bereinigung durchführen?
Automatisches Löschen des %1 Inhalts
-
+ Auto deleting content of %1Automatisches Löschen des Inhalts von %1
-
+ Failed to stop all Sandboxie componentsKonnte nicht alle Sandboxiekomponenten stoppen
-
+ Failed to start required Sandboxie componentsKonnte nicht alle benötigten Sandboxiekomponenten starten
@@ -3657,7 +3662,7 @@ Möchten Sie die Bereinigung durchführen?
Entfernte Vorlagen aufgeräumt...
-
+ - NOT connected - NICHT verbunden
@@ -3707,112 +3712,112 @@ Möchten Sie die Bereinigung durchführen?
-
+ Do you want to terminate all processes in all sandboxes?Möchten Sie alle Prozesse in allen Sandboxen beenden?
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus wurde im portablen Modus gestartet, nun müssen die benötigten Dienste erzeugt werden, was Adminrechte benötigt.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Möchten Sie auch die ausgeblendeten Mitteilungsboxen zurücksetzen (Ja) oder nur alle Protokollnachrichten (Nein)?
-
+ The changes will be applied automatically whenever the file gets saved.Die Änderungen werden automatisch angewendet, sobald die Datei gespeichert wird.
-
+ The changes will be applied automatically as soon as the editor is closed.Die Änderungen werden automatisch angewendet, sobald der Editor geschlossen wird.
-
+ Can not create snapshot of an empty sandboxKann keinen Schnappschuss von einer leeren Box erstellen
-
+ A sandbox with that name already existsEs existiert bereits eine Sandbox mit diesem Namen
-
+ Failed to execute: %1Fehler beim Ausführen von: %1
-
+ Failed to communicate with Sandboxie Service: %1Fehler beim Kommunizieren mit Sandbox-Dienst: %1
-
+ Failed to copy configuration from sandbox %1: %2Fehler beim Kopieren der Konfiguration von Sandbox %1: %2
-
+ A sandbox of the name %1 already existsEs existiert bereits eine Sandbox mit dem Namen %1
-
+ Failed to delete sandbox %1: %2Fehler beim Löschen der Sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.Der Name der Sandbox darf nicht länger als 32 Zeichen sein.
-
+ The sandbox name can not be a device name.Der Name der Sandbox darf kein reservierter Gerätename (device name) sein.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Der Name der Sandbox darf nur Buchstaben, Zahlen und Unterstriche, welche als Leerstellen angezeigt werden, enthalten.
-
+ Failed to terminate all processesKonnte nicht alle Prozesse beenden
-
+ Delete protection is enabled for the sandboxLöschschutz ist für diese Sandbox aktiviert
-
+ Error deleting sandbox folder: %1Fehler beim Löschen von Sandbox-Ordner: %1
-
+ A sandbox must be emptied before it can be deleted.Eine Sandbox muss geleert werden, bevor sie umbenannt werden kann.
-
+ Failed to move directory '%1' to '%2'Konnte Ordner '%1' nicht nach '%2' verschieben
-
+ This Snapshot operation can not be performed while processes are still running in the box.Der Schnappschuss kann nicht erstellt werden, während Prozesse in dieser Box laufen.
-
+ Failed to create directory for new snapshotKonnte den Ordner für den neuen Schnappschuss (Snapshot) nicht erstellen
@@ -3852,111 +3857,111 @@ Möchten Sie die Bereinigung durchführen?
Verknüpfung hinzugefügt zu: %1
-
+ Auto removing sandbox %1Automatisches Entfernen von Sandbox %1
-
+ %1 Directory: %2%1 Ordner: %2
-
+ ApplicationApplikation
-
+ InstallationInstallation
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus Version: %1 (%2)
-
+ Current Config: %1Aktuelle Konfiguration: %1
-
+ for Personal use für persönliche Nutzung
-
+ - for Non-Commercial use ONLY - NUR für nicht-kommerzielle Nutzung
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Ihre Windowsversion %1 übersteigt die aktuell bekannten Unterstützungsmöglichkeiten Ihrer Sandboxieversion, daraus resultiert die Deaktivierung der tokenbasierten Sicherheitsisolation. Folglich werden alle Applikationen ohne Sicherheitsisolation im Applikationsunterteilungsmodus laufen.
Bitte überprüfen Sie, ob es ein Update für Sandboxie gibt.
-
+ Don't show this message again for the current build.Diese Nachricht für die aktuelle Windowsversion nicht mehr anzeigen.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.Ihre Windowsversion %1 übersteigt die aktuell bekannten Unterstützungsmöglichkeiten Ihrer Sandboxieversion, Sandboxie wird versuchen die zuletzt bekannten Versätze (Offsets) zu verwenden, was möglicherweise Systeminstabilität verursachen kann.
-
+ Do you want the setup wizard to be omitted?Möchten Sie den Einrichtungsassistenten auslassen?
-
+ The evaluation period has expired!!!Die Evaluierungsphase ist abgelaufen!!!
-
+ Snapshot not foundSchnappschuss (Snapshot) nicht gefunden
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Fehler beim Zusammenführen der Schnappschuss Ordner: '%1' mit '%2', der Schnappschuss wurde nicht vollständig zusammengeführt.
-
+ Failed to remove old snapshot directory '%1'Konnte alten Schnappschuss-Ordner '%1' nicht entfernen
-
+ You are not authorized to update configuration in section '%1'Sie sind nicht berechtigt die Konfiguration in Sektion '%1' zu aktualisieren
-
+ Failed to set configuration setting %1 in section %2: %3Fehler beim Setzen der Konfigurationsoption %1 in Sektion %2: %3
-
-
-
-
+
+
+
+ Don't show this message again.Diese Nachricht nicht mehr anzeigen.
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Fehler
@@ -3983,25 +3988,25 @@ Bitte überprüfen Sie, ob es ein Update für Sandboxie gibt.
Aufräumen
-
+ Data Directory: %1Datenordner: %1
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.Das Programm %1 gestartet in Box %2 wird in 5 Minuten beendet, weil diese Box so konfiguriert ist Funktionen zu verwenden die exklusiv für Projektunterstützer sind.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.Die Box %1 ist so konfiguriert, dass sie exklusive Funktionen nutzt, die nur für Projektunterstützer verfügbar sind, diese Vorgaben werden ignoriert.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Werden Sie ein Projektunterstützer</a>, und erhalten Sie ein <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Unterstützerzertifikat</a>
@@ -4011,154 +4016,154 @@ Bitte überprüfen Sie, ob es ein Update für Sandboxie gibt.
Stelle Datei %1 zu %2 wieder her
-
+ Only Administrators can change the config.Nur Administratoren können die Konfiguration editieren.
-
+ Please enter the configuration password.Bitte Konfigurationspasswort eingeben.
-
+ Login Failed: %1Login fehlgeschlagen: %1
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Bitte geben Sie die Dauer, in Sekunden, ein, zum Pausieren der erzwungenen Programmregeln.
-
+ No RecoveryKeine Wiederherstellung
-
+ No MessagesKeine Nachrichten
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERROR:</b> Der Sandboxie-Plus Manager (SandMan.exe) verfügt nicht über eine gültige Signatur (SandMan.exe.sig). Bitte laden Sie eine vertrauenswürdige Version von der <a href="https://sandboxie-plus.com/go.php?to=sbie-get">offiziellen Downloadseite</a>.
-
+ Maintenance operation failed (%1)Wartungsvorgang fehlgeschlagen (%1)
-
+ Maintenance operation completedWartungsvorgang abgeschlossen
-
+ Executing maintenance operation, please wait...Führe Wartungsvorgang aus, bitte warten...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Im Plus-UI wurde diese Funktionalität in die Hauptlistenansicht der Sandboxen integriert.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Mit dem Box-/Gruppenkontextmenü können Sie Boxen und Gruppen zu anderen Gruppen bewegen. Sie können die Elemente auch per Ziehen und Loslassen bewegen. Alternativ können Sie die Pfeiltasten nutzen, während Sie ALT gedrückt halten, um die Elemente innerhalb ihrer Gruppe rauf und runter zu bewegen.<br />Sie können neue Boxen und Gruppen aus dem Sandboxmenü erstellen.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.Sie sind im Begriff die Templates.ini zu bearbeiten, was grundsätzlich nicht empfohlen wird.
Diese Datei ist Teil von Sandboxie und alle vorgenommenen Änderungen an der Datei werden zurückgesetzt, wenn Sandboxie aktualisiert wird.
-
+ Sandboxie config has been reloadedSandboxiekonfiguration wurde neu geladen
-
+ Administrator rights are required for this operation.Für diesen Vorgang werden Adminrechte benötigt.
-
+ Failed to connect to the driverFehler beim Verbinden mit dem Treiber
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Eine inkompatible Version von Sandboxie %1 wurde gefunden. Kompatible Versionen: %2
-
+ Can't find Sandboxie installation path.Kann Installationspfad von Sandboxie nicht finden.
-
+ All sandbox processes must be stopped before the box content can be deletedAlle Sandboxprozesse müssen beendet sein, bevor der Boxinhalt gelöscht werden kann
-
+ Failed to copy box data filesFehlschlag beim Kopieren der Boxdateien
-
+ Can't remove a snapshot that is shared by multiple later snapshotsEs kann kein Schnappschuss gelöscht werden der von mehreren späteren Schnappschüssen geteilt wird
-
+ Failed to remove old box data filesFehlschlag beim Entfernen der alten Boxdateien
-
+ The operation was canceled by the userDer Vorgang wurde durch den Nutzer abgebrochen
-
+ Import/Export not available, 7z.dll could not be loadedImport/Export nicht verfügbar, 7z.dll konnte nicht geladen werden
-
+ Failed to create the box archiveKonnte Boxarchiv nicht erzeugen
-
+ Failed to open the 7z archiveKonnte das 7z-Archiv nicht öffnen
-
+ Failed to unpack the box archiveKonnte das Boxarchiv nicht entpacken
-
+ The selected 7z file is NOT a box archiveDie ausgewählte 7z-Datei ist KEIN Boxarchiv
-
+ Operation failed for %1 item(s).Vorgang für %1 Element(e) fehlgeschlagen.
-
+ Remember choice for later.Die Auswahl für später merken.
@@ -8269,27 +8274,27 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
QPlatformTheme
-
+ OKOK
-
+ ApplyAnwenden
-
+ CancelAbbrechen
-
+ &Yes&Ja
-
+ &No&Nein
diff --git a/SandboxiePlus/SandMan/sandman_en.ts b/SandboxiePlus/SandMan/sandman_en.ts
index e2f17b07..66c58f60 100644
--- a/SandboxiePlus/SandMan/sandman_en.ts
+++ b/SandboxiePlus/SandMan/sandman_en.ts
@@ -1532,11 +1532,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All Programs
@@ -1547,9 +1547,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1
@@ -1584,7 +1584,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.
@@ -1991,82 +1991,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Any
-
+ TCP
-
+ UDP
-
+ ICMP
-
+ Allow access
-
+ Block using Windows Filtering Platform
-
+ Block by denying access to Network devices
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ Allow
-
+ Block (WFP)
-
+ Block (NDev)
-
+ A non empty program name is required.
-
+ Block
@@ -2707,22 +2707,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1
-
+ Deleting folder: %1
-
+ Merging folders: %1 >> %2
-
+ Finishing Snapshot Merge...
@@ -2799,27 +2799,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1
-
+ Reset Columns
-
+ Copy Cell
-
+ Copy Row
-
+ Copy Panel
@@ -3082,7 +3082,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-Plus
@@ -3165,10 +3165,10 @@ Do you want to do the clean up?
-
-
-
-
+
+
+
+ Don't show this message again.
@@ -3228,49 +3228,49 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
-
+ Auto deleting content of %1
-
+ %1 Directory: %2
-
+ Application
-
+ Installation
-
+ Current Config: %1
-
+ Do you want the setup wizard to be omitted?
-
-
-
+
+
+ Sandboxie-Plus - Error
-
+ Failed to stop all Sandboxie components
-
+ Failed to start required Sandboxie components
@@ -3290,24 +3290,24 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
-
+ Default sandbox not found; creating: %1
-
+ - NOT connected
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
@@ -3362,132 +3362,132 @@ No will choose: %2
-
+ Only Administrators can change the config.
-
+ Please enter the configuration password.
-
+ Login Failed: %1
-
+ Do you want to terminate all processes in all sandboxes?
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.
-
+ Executing maintenance operation, please wait...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?
-
+ The changes will be applied automatically whenever the file gets saved.
-
+ The changes will be applied automatically as soon as the editor is closed.
-
+ Error Status: 0x%1 (%2)
-
+ Unknown
-
+ A sandbox must be emptied before it can be deleted.
-
+ Failed to copy box data files
-
+ Failed to remove old box data files
-
+ Unknown Error Status: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ Close
-
+ &Find ...
-
+ All columns
-
+ Administrator rights are required for this operation.
@@ -3526,7 +3526,7 @@ No will choose: %2
-
+ Sandboxie-Plus Insider [%1]
@@ -3680,32 +3680,32 @@ No will choose: %2
-
+ Auto removing sandbox %1
-
+ Sandboxie-Plus Version: %1 (%2)
-
+ Data Directory: %1
-
+ for Personal use
-
+ - for Non-Commercial use ONLY
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3713,37 +3713,37 @@ Please check if there is an update for sandboxie.
-
+ Don't show this message again for the current build.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.
-
-
-
+
+
+ (%1)
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
@@ -3786,121 +3786,126 @@ Please check if there is an update for sandboxie.
-
+ Failed to configure hotkey %1, error: %2
-
+ The box %1 is configured to use features exclusively available to project supporters.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!
-
-
+
+ Don't ask in future
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.
-
+ No Recovery
-
+ No Messages
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
+ Maintenance operation failed (%1)
-
+ Maintenance operation completed
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3908,245 +3913,245 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Sandboxie config has been reloaded
-
+ Failed to execute: %1
-
+ Failed to connect to the driver
-
+ Failed to communicate with Sandboxie Service: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2
-
+ Can't find Sandboxie installation path.
-
+ Failed to copy configuration from sandbox %1: %2
-
+ A sandbox of the name %1 already exists
-
+ Failed to delete sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.
-
+ The sandbox name can not be a device name.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.
-
+ Failed to terminate all processes
-
+ Delete protection is enabled for the sandbox
-
+ All sandbox processes must be stopped before the box content can be deleted
-
+ Error deleting sandbox folder: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move directory '%1' to '%2'
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.
-
+ Failed to create directory for new snapshot
-
+ Snapshot not found
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.
-
+ Failed to remove old snapshot directory '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshots
-
+ You are not authorized to update configuration in section '%1'
-
+ Failed to set configuration setting %1 in section %2: %3
-
+ Can not create snapshot of an empty sandbox
-
+ A sandbox with that name already exists
-
+ The config password must not be longer than 64 characters
-
+ The operation was canceled by the user
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1
-
+ Import/Export not available, 7z.dll could not be loaded
-
+ Failed to create the box archive
-
+ Failed to open the 7z archive
-
+ Failed to unpack the box archive
-
+ The selected 7z file is NOT a box archive
-
+ Operation failed for %1 item(s).
-
+ Remember choice for later.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
-
+ The supporter certificate is not valid for this build, please get an updated certificate
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificate
-
+ , but it remains valid for the current build
-
+ The supporter certificate will expire in %1 days, please get an updated certificate
@@ -8269,27 +8274,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK
-
+ Apply
-
+ Cancel
-
+ &Yes
-
+ &No
diff --git a/SandboxiePlus/SandMan/sandman_es.ts b/SandboxiePlus/SandMan/sandman_es.ts
index bb9aa46a..0a6c9e76 100644
--- a/SandboxiePlus/SandMan/sandman_es.ts
+++ b/SandboxiePlus/SandMan/sandman_es.ts
@@ -1966,9 +1966,9 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
-
-
-
+
+
+ Group: %1Grupo: %1
@@ -2186,11 +2186,11 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
-
-
-
-
-
+
+
+
+
+ All ProgramsTodos los programas
@@ -2225,7 +2225,7 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
-
+ Template values can not be edited.Los valores de plantilla no se pueden editar.
@@ -2354,82 +2354,82 @@ Por favor, selecciona una carpeta que contenga este archivo.
-
+ AnyCualquiera
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessPermitir acceso
-
+ Block using Windows Filtering PlatformBloquear usando plataforma de filtrado de Windows
-
+ Block by denying access to Network devicesBloquear denegando acceso a dispositivos de red
-
+ Please enter a domain to be filteredIntroduzca un dominio para ser filtrado
-
+ Please enter IP and Port.Introduzca IP y Puerto.
-
+ entry: IP or Port cannot be empty entrada: IP o Puerto no pueden estar vacíos
-
-
+
+ AllowPermitir
-
+ Block (WFP)Bloquear (WFP)
-
+ Block (NDev)Bloquear (NDev)
-
+ A non empty program name is required.Un nombre de programa no vacío es requerido.
-
+ BlockBloquear
@@ -2956,22 +2956,22 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
CSandBox
-
+ Waiting for folder: %1Esperando a carpeta: %1
-
+ Deleting folder: %1Borrando carpeta: %1
-
+ Merging folders: %1 >> %2Fusionando carpetas: %1 >> %2
-
+ Finishing Snapshot Merge...Terminando fusionado de instantánea...
@@ -3060,7 +3060,7 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
@@ -3090,42 +3090,42 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
Acceso directo añadido a: %1
-
+ Auto removing sandbox %1Auto eliminando sandbox %1
-
+ %1 Directory: %2Directorio %1: %2
-
+ ApplicationAplicación
-
+ InstallationInstalación
-
+ Reset ColumnsReestablecer Columnas
-
+ Copy CellCopiar Celda
-
+ Copy RowCopiar Fila
-
+ Copy PanelCopiar Panel
@@ -3410,7 +3410,7 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
-
+ About Sandboxie-PlusSobre Sandboxie-Plus
@@ -3439,7 +3439,7 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
-
+ Sandboxie-Plus Insider [%1]Sandboxie-Plus Interno [%1]
@@ -3623,170 +3623,175 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
Ejecutando OnBoxTerminate: %1
-
+ Failed to configure hotkey %1, error: %2Error al configurar tecla rápida %1, error: %2
-
-
-
+
+
+ (%1) (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.La caja %1 está configurada para usar funciones exclusivas disponibles para patrociandores del proyecto.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.La caja %1 está configurada para usar funciones que requieren un certificado de patrocinador <b>avanzado</b>.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Actualice su certificado</a> para desbloquear funciones avanzadas.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.La función seleccionada requiere un certificado de patrocinador <b>avanzado</b>.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>El conjunto de características seleccionado solo está disponible para los patrocinadores del proyecto.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Conviértete en un patrocinador del proyecto</a> y recibe un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de patrocinador</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!El certificado que está intentando usar ha sido bloqueado, lo que significa que ha sido invalidado por alguna causa. ¡Cualquier intento de usarlo constituye una violación de sus términos de uso!
-
+ The Certificate Signature is invalid!¡La firma del certificado es inválida!
-
+ The Certificate is not suitable for this product.El certificado no es apto para este producto.
-
+ The Certificate is node locked.El certificado está bloqueado en el nodo.
-
+ The support certificate is not valid.
Error: %1El certificado de patrocinador es inválido.
Error: %1
-
-
+
+ Don't ask in futureNo preguntar en el futuro
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?¿Desea realmente finalizar todos los procesos en sandboxes encriptadas, y desmontarlos?
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERROR:</b> El Administrador de Sandboxie-Plus (SandMan.exe) no tiene una firma válida (SandMan.exe.sig). Por favor, descargue una versión de confianza de la <a href="https://sandboxie-plus.com/go.php?to=sbie-get">página oficial de Descargas</a>.
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.Todos los procesos en una sandbox deben ser parados antes de que se pueda renombrar.
-
+ Failed to move box image '%1' to '%2'Error al mover imagen de caja '%1' a '%2'
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deletedLos contenidos de una sandbox desmontada no se pueden borrar
-
+ %1%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?¿Desea abrir %1 en un navegador web aislado o no aislado?
-
+ SandboxedAislado
-
+ UnsandboxedNo aislado
-
+ Case SensitiveSensible a mayúsculas y minúsculas
-
+ RegExpRegExp
-
+ HighlightResaltar
-
+ CloseCerrar
-
+ &Find ...&Buscar ...
-
+ All columnsTodas las columnas
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p><h3>Acerca de Sandboxie-Plus</h3><p>Versión %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1Esta copia de Sandboxie-Plus está certificada para: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.Sandboxie-Plus es gratis para uso personal y no comercial.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Sandboxie-Plus es una continuación de código abierto de Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para más información.<br /><br />%2<br /><br />Características: %3<br /><br />Instalación: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Iconos de <a href="https://icons8.com">icons8.com</a>
@@ -3859,10 +3864,10 @@ Desea hacer la limpieza?
-
-
-
-
+
+
+
+ Don't show this message again.No motrar este mensaje nuevamente.
@@ -3922,7 +3927,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Auto Borrando Contenido de %1
-
+ Auto deleting content of %1Auto eliminando contenido de %1
@@ -3931,19 +3936,19 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Auto eliminando %1 contenido
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Error
-
+ Failed to stop all Sandboxie componentsFallo al intentar detener todos los componentes de Sandboxie
-
+ Failed to start required Sandboxie componentsFallo al intentar iniciar los componentes requerido por Sandboxie
@@ -3956,22 +3961,22 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Operación de mantenimiento Satisfactoria
-
+ The supporter certificate is not valid for this build, please get an updated certificateEl certificado de patrocinador no es valido para esta version, por favor obtenga una actualización de certificado
-
+ The supporter certificate has expired%1, please get an updated certificateEl certificado de patrocinador ha expirado%1, por favor obtenga una actualización de certificado
-
+ , but it remains valid for the current build, pero permanece valido para la actual version
-
+ The supporter certificate will expire in %1 days, please get an updated certificateEl certificado de patrocinador expirará en %1 días, por favor obtenga una actualización de certificado
@@ -3988,7 +3993,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
No hay ninguna actualización de certificado.
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>La característica seleccionadad esta solo disponible a los patrocinadores del proyecto. Procesos comenzados en esta caja con esta característica habilitada sin un certificado de patrocinador serí terminada luego de 5 minutos.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Conviertase en un patrocinador del proyecto</a>, y obtenga un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de patrocinador</a>
@@ -4001,32 +4006,32 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Directorio de instalación: %1
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus Version: %1 (%2)
-
+ Current Config: %1Configuración actual: %1
-
+ Data Directory: %1Directorio de datos: %1
-
+ for Personal use para uso Personal
-
+ - for Non-Commercial use ONLY - SOLO para uso No-Comercial
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -4035,130 +4040,130 @@ Please check if there is an update for sandboxie.
Por favor, verifique si hay una actualización para Sandboxie.
-
+ Don't show this message again for the current build.No mostrar este mensaje de nuevo para la versión actual.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.Su versión de Windows %1 supera las capacidades de soporte actuales conocidas de su versión de Sandboxie, Sandboxie intentará utilizar los últimos desplazamientos conocidos, lo cual podría causar inestabilidad en el sistema.
-
+ Do you want the setup wizard to be omitted?¿Desea omitir el asistente de instalación?
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!¡El periodo de evaluación ha expirado!
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Por favor ingrese la duración, en segundos, para deshabilitar las reglas de programas forzados.
-
+ No RecoverySin Recuperación
-
+ No MessagesSin Mensajes
-
+ Maintenance operation failed (%1)Operación de mantenimiento falló (%1)
-
+ Maintenance operation completedOperación de mantenimiento completada
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.En la IU Plus, esta funcionalidad se ha integrado en el listado principal del sandbox.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Usando el menú contextual de caja/grupo, puedes mover cajas y grupos a otros grupos. También puedes usar arrastrar y soltar para mover los elementos. Además, puedes usar las teclas de flecha mientras mantienes presionada la tecla ALT para mover elementos hacia arriba y hacia abajo dentro de su grupo.<br />Puedes crear nuevas cajas y grupos desde el menú Sandbox.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.Estás a punto de editar el archivo Templates.ini, esto generalmente no se recomienda.
Este archivo es parte de Sandboxie y todos los cambios realizados en él serán revertidos la próxima vez que se actualice Sandboxie.
-
+ Sandboxie config has been reloadedLa configuración de Sandboxie se ha recargado
-
+ Error Status: 0x%1 (%2)Error de estado: 0x%1 (%2)
-
+ UnknownDesconocido
-
+ All sandbox processes must be stopped before the box content can be deletedTodos los procesos de la sandbox deben ser detenidos antes de que el contenido pueda ser eliminado
-
+ Failed to copy box data filesFallo al copiar archivos de datos
-
+ Failed to remove old box data filesError al eliminar archivos de caja antigua
-
+ The operation was canceled by the userLa operación fue cancelada por el usuario
-
+ Import/Export not available, 7z.dll could not be loadedImportar/Exportar no disponible, 7z.dll no se pudo cargar
-
+ Failed to create the box archiveError al crear el archivador de la caja
-
+ Failed to open the 7z archiveError al abrir el archivador 7z
-
+ Failed to unpack the box archiveError al desempaquetar el archivador de la caja
-
+ The selected 7z file is NOT a box archiveEl archivo 7z seleccionado NO es un archivo de caja
-
+ Unknown Error Status: 0x%1Esatdo de error desconocido: 0x%1
@@ -4183,7 +4188,7 @@ Este archivo es parte de Sandboxie y todos los cambios realizados en él serán
Seleccione sandbox:
-
+ Default sandbox not found; creating: %1Sandbox por defecto no encontrada, creando: %1
@@ -4240,7 +4245,7 @@ Este archivo es parte de Sandboxie y todos los cambios realizados en él serán
Sandboxie-Plus fue iniciado en modo portable, deseas poner el directorio de Sandbox dentro de su directorio padre?
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -4249,25 +4254,25 @@ SI seleccionará: %1
NO seleccionará: %2
-
+ - NOT connected - NO conectado
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.El programa%1 iniciado en la caja%2 será terminado en 5 minutos, la caja fue configurada para uso de características disponibles sólo para patrocinadores del proyecto.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.La caja %1 está configurado para usar características disponibles exclusivamente a los patrocinadores del proyecto, estos ajustes se ignorarán.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Conviértase en patrocinador</a>, y obtenga un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de patrocinador</a>
@@ -4332,22 +4337,22 @@ NO seleccionará: %2
-
+ Only Administrators can change the config.Solo Administradores pueden cambiar la configuracion.
-
+ Please enter the configuration password.Por favor ingrese la contraseña de configuracion.
-
+ Login Failed: %1Login incorrecto: %1
-
+ Do you want to terminate all processes in all sandboxes?Desea terminar todos los procesos en todas las sandboxes?
@@ -4360,32 +4365,32 @@ NO seleccionará: %2
Por favor ingrese la duración para deshabilitar los programas forzados.
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus fue iniciado en modo portable y necesita crear los servicios requeridos. Esto pedira permisos administrativos.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.PELIGRO: otro agente (probablemente SbieCtrl.exe) ya está administrando esta sesión de sandbox, por favor cierrela primero y reconectese para tomar el control.
-
+ Executing maintenance operation, please wait...Ejecutando operación de mantenimiento, por favor espere...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Desea tambien reestablecer los mensajes ocultos (si), o solo todos los mensajes del log (no)?
-
+ The changes will be applied automatically whenever the file gets saved.Los cambios serán aplicados automaticamente cuando el archivo sea guardado.
-
+ The changes will be applied automatically as soon as the editor is closed.Los cambios seran aplicados automaticamente cuando cierre el editor.
@@ -4394,77 +4399,77 @@ NO seleccionará: %2
Status Error: %1
-
+ Administrator rights are required for this operation.Permisos administrativos son necesarios para esta operacion.
-
+ Failed to execute: %1Fallo al ejecutar: %1
-
+ Failed to connect to the driverFallo al conectar al controlador
-
+ Failed to communicate with Sandboxie Service: %1Fallo al comunicarse con el Servicio Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Una Sandboxie %1 incompatible fue encontrada. Versiones compatibles: %2
-
+ Can't find Sandboxie installation path.No se puede encontrar la ruta de instalación de Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Fallo al copiar la configuracin de la sandbox %1: %2
-
+ A sandbox of the name %1 already existsUna sandbox con el nombre %1 ya existe
-
+ Failed to delete sandbox %1: %2Fallo al eliminar la sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.El nombre de la sandbox no puede ser mas largo que 32 caracteres.
-
+ The sandbox name can not be a device name.El nombre de la sandbox no puede ser el nombre de un dispositivo.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.El nombre de la sandbox puede contener solo letras, digitos y guion bajo (se veran como espacios).
-
+ Failed to terminate all processesFallo al terminar todos los procesos
-
+ Delete protection is enabled for the sandboxProtección de eliminación esta habilitado para esta sandbox
-
+ Error deleting sandbox folder: %1Error borrando la carpeta sandbox: %1
@@ -4473,42 +4478,42 @@ NO seleccionará: %2
Una sandbox debe ser vaciada antes de que pueda ser renombrada.
-
+ A sandbox must be emptied before it can be deleted.Una sandbox debe ser vaciada antes de que pueda ser eliminada.
-
+ Failed to move directory '%1' to '%2'Fallo al mover el directorio '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Esta operación de Instantánea no se puede realizar mientras se estén ejecutando procesos en la sandbox.
-
+ Failed to create directory for new snapshotError al crear directorio para la nueva instantánea
-
+ Snapshot not foundInstantánea no encontrada
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Error al unir directorios de instantáneas '%1' con '%2', la instantánea no se ha unido completamente.
-
+ Failed to remove old snapshot directory '%1'Error al eliminar directorio antiguo de instantáneas '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsNo se puede eliminar una instantánea que es compartida por múltiples instantáneas posteriores
@@ -4517,27 +4522,27 @@ NO seleccionará: %2
Fallo al remover viejo RegHive
-
+ You are not authorized to update configuration in section '%1'No estas autorizado a actualizar la configuración en la sección '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Fallo al setear configuración %1 en sección %2: %3
-
+ Can not create snapshot of an empty sandboxNo es posible crear instantánea de una sandbox vacía
-
+ A sandbox with that name already existsLa sandbox con ese nombre ya existe
-
+ The config password must not be longer than 64 charactersLa clave de configuración no debe ser mayor de 64 caracteres
@@ -4546,7 +4551,7 @@ NO seleccionará: %2
Estado de Error Desconocido: %1
-
+ Operation failed for %1 item(s).La operación fallo para %1 item(s).
@@ -4555,7 +4560,7 @@ NO seleccionará: %2
Desea abrir %1 en sandbox (si) o fuera de sandbox (no) navegador Web?
-
+ Remember choice for later.Recordar selección para mas tarde.
@@ -9136,27 +9141,27 @@ Por favor note que estos valores son especificos para usuario y guardados global
QPlatformTheme
-
+ OKOK
-
+ ApplyAplicar
-
+ CancelCancelar
-
+ &Yes&Si
-
+ &No&No
diff --git a/SandboxiePlus/SandMan/sandman_fr.ts b/SandboxiePlus/SandMan/sandman_fr.ts
index b3ae4639..d4d7c744 100644
--- a/SandboxiePlus/SandMan/sandman_fr.ts
+++ b/SandboxiePlus/SandMan/sandman_fr.ts
@@ -1744,11 +1744,11 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
-
-
-
-
+
+
+
+
+ All ProgramsTous les programmes
@@ -1759,9 +1759,9 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
-
-
+
+
+ Group: %1Groupe : %1
@@ -1796,7 +1796,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
+ Template values can not be edited.Les valeurs des modèles ne peuvent pas être modifiées.
@@ -2240,82 +2240,82 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
+ AnyTous
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessAutoriser l'accès
-
+ Block using Windows Filtering PlatformBloquer à l'aide de la plateforme de filtrage Windows
-
+ Block by denying access to Network devicesBloquer en refusant l'accès aux périphériques réseaux
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowAutoriser
-
+ Block (WFP)Bloquer (WFP)
-
+ Block (NDev)Bloquer (NDev)
-
+ A non empty program name is required.Un nom de programme non vide est nécessaire.
-
+ BlockBloquer
@@ -2991,22 +2991,22 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
CSandBox
-
+ Waiting for folder: %1Dossier en attente : %1
-
+ Deleting folder: %1Suppression du dossier : %1
-
+ Merging folders: %1 >> %2Fusion des dossiers : %1 >> %2
-
+ Finishing Snapshot Merge...Finalisation de la fusion des instantanés...
@@ -3095,7 +3095,7 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
@@ -3138,37 +3138,37 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
Exécution d'OnBoxTerminate: %1
-
+ Auto removing sandbox %1Suppression auto. du bac à sable %1
-
+ %1 Directory: %2Répertoire d'%1 : %2
-
+ Applicationapplication
-
+ Installationinstallation
-
+ for Personal use pour un usage personnel
-
+ - for Non-Commercial use ONLY - pour un usage non commercial UNIQUEMENT
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3177,27 +3177,27 @@ Please check if there is an update for sandboxie.
Veuillez vérifier s'il y a une mise à jour pour Sandboxie.
-
+ Don't show this message again for the current build.Ne plus afficher ce message pour la version actuelle.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.Votre version de Windows %1 excède les capacités de prise en charge actuellement connues de votre version de Sandboxie. Par conséquent, Sandboxie essaiera d'utiliser les derniers offsets connus, ce qui peut entrainer une instabilité du système.
-
+ Do you want the setup wizard to be omitted?Voulez-vous ignorer l'assistant d'installation ?
-
+ Failed to configure hotkey %1, error: %2Échec de configuration du raccourci %1 ; erreur : %2
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!La période d'évaluation a expiré !!!
@@ -3220,17 +3220,17 @@ Veuillez vérifier s'il y a une mise à jour pour Sandboxie.
Importation : %1
-
+ No RecoveryPas de récupération
-
+ No MessagesPas de message
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3239,47 +3239,47 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera annulée la prochaine fois que Sandboxie sera mis à jour.
-
+ Import/Export not available, 7z.dll could not be loadedImportation/Exportation non disponible ; 7z.dll n'a pas pu être chargé
-
+ Failed to create the box archiveÉchec de création de l'archive du bac
-
+ Failed to open the 7z archiveÉchec d'ouverture de l'archive 7z
-
+ Failed to unpack the box archiveÉchec de décompression de l'archive du bac
-
+ The selected 7z file is NOT a box archiveLe fichier 7z choisi n'est PAS une archive de bac
-
+ Reset ColumnsRéinitialiser les colonnes
-
+ Copy CellCopier la cellule
-
+ Copy RowCopier la rangée
-
+ Copy PanelCopier le tableau
@@ -3556,7 +3556,7 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
-
+ Sandboxie-Plus Insider [%1]Initié Sandboxie-Plus [%1]
@@ -3587,7 +3587,7 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
-
+ About Sandboxie-PlusÀ propos de Sandboxie-Plus
@@ -3774,22 +3774,27 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
Bac à sable USB introuvable ; création : %1
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p><h3>À propos de Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1Cette copie de Sandboxie-Plus est attestée pour : %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.Sandboxie-Plus est gratuit pour une utilisation personnelle et non commerciale.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Sandboxie-Plus est la poursuite en code source ouvert de Sandboxie.<br />Visitez <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> pour plus d'informations.<br /><br />%2<br /><br />Fonctions : %3<br /><br />Installation : %1<br />SbieDrv.sys : %4<br /> SbieSvc.exe : %5<br /> SbieDll.dll : %6<br /><br />Icônes provenant de <a href="https://icons8.com">icons8.com</a>
@@ -3804,145 +3809,145 @@ Veuillez vérifier s'il y a une mise à jour pour Sandboxie.
Votre version de Windows excède les capacités de prise en charge de votre version de Sandboxie. Par conséquent, Sandboxie essaiera d'utiliser les derniers offsets connus, ce qui peut entrainer une instabilité du système.
-
-
-
+
+
+ (%1) (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.Le bac %1 est configuré pour utiliser des fonctions disponibles exclusivement aux adhérents au projet.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.Le bac %1 est configuré pour utiliser des fonctions qui nécessitent un certificat d'adhérent <b>avancé</b>.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Mettez à jour votre certificat</a> afin de débloquer les fonctions avancées.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.La fonction choisie nécessite un certificat d'adhérent <b>avancé</b>.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>La fonction choisie est uniquement disponible aux adhérents au projet.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Devenez un adhérent au projet</a>, et recevez un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificat d'adhérent</a>.
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Le certificat que vous essayez d'utiliser a été bloqué, ce qui veut dire qu'il a été invalidé pour une bonne raison. Toute tentative de l'utiliser constitue une violation de ses conditions d'utilisation !
-
+ The Certificate Signature is invalid!La signature du certificat est invalide !
-
+ The Certificate is not suitable for this product.Le certificat ne convient pas à ce produit.
-
+ The Certificate is node locked.Le certificat est verrouillé par nœud.
-
+ The support certificate is not valid.
Error: %1Le certificat d'adhérent est invalide.
Erreur : %1
-
-
+
+ Don't ask in futureNe plus demander
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Voulez-vous arrêter tous les processus dans les bacs à sable chiffrés, puis démonter ces derniers ?
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERREUR :</b> Le gestionnaire de Sandboxie-Plus (SandMan.exe) n'a pas une signature valide (SandMan.exe.sig). Veuillez télécharger une version fiable depuis la <a href="https://sandboxie-plus.com/go.php?to=sbie-get">page de téléchargement officielle</a>.
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.Tous les processus du bac à sable doivent être arrêtés avant qu'il puisse être renommé.
-
+ Failed to move box image '%1' to '%2'Échec du déplacement de l'image du bac « %1 » vers « %2 »
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deletedLe contenu d'un bac à sable non monté ne peut pas être supprimé
-
+ %1%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?Voulez-vous ouvrir %1 dans un navigateur web dans un bac à sable ou en dehors ?
-
+ SandboxedDans un bac à sable
-
+ UnsandboxedEn dehors d'un bac à sable
-
+ Case SensitiveSensible à la casse
-
+ RegExpRegex
-
+ HighlightSurligner
-
+ CloseFermer
-
+ &Find ...&Rechercher...
-
+ All columnsToutes les colonnes
@@ -4008,10 +4013,10 @@ Voulez-vous faire la purge ?
-
-
-
-
+
+
+
+ Don't show this message again.Ne plus afficher ce message
@@ -4071,7 +4076,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Suppression automatisée du contenu de %1
-
+ Auto deleting content of %1Suppression automatisée du contenu de %1
@@ -4080,19 +4085,19 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Supression automatisée du contenu de %1
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Erreur
-
+ Failed to stop all Sandboxie componentsÉchec de l'arrêt de tous les composants de Sandboxie
-
+ Failed to start required Sandboxie componentsImpossible de démarrer les composants requis de Sandboxie
@@ -4154,7 +4159,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Configuration chargée : %1
-
+ Data Directory: %1Dossier des données : %1
@@ -4163,7 +4168,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
- Portable
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -4172,27 +4177,27 @@ No will choose: %2
« Non » choisira : %2
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Veuillez saisir la durée (en secondes) de suspension du forçage des programmes.
-
+ The supporter certificate is not valid for this build, please get an updated certificateLe certificat d'adhérent n'est pas valide pour cette version, veuillez obtenir un certificat à jour
-
+ The supporter certificate has expired%1, please get an updated certificateCe certificat d'adhérent a expiré%1, veuillez obtenir un certificat à jour
-
+ , but it remains valid for the current build, mais il reste valide pour la version actuelle
-
+ The supporter certificate will expire in %1 days, please get an updated certificateLe certificat d'adhérent expirera dans %1 jour(s), veuillez obtenir un certificat mis à jour
@@ -4213,30 +4218,30 @@ No will choose: %2
Le certificat d'adhérent est expiré
-
+ Default sandbox not found; creating: %1Bac à sable par défaut non trouvé ; création : %1
-
+ - NOT connected - NON connecté
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.Le programme %1 lancé dans le bac %2 sera arrêté dans 5 minutes car le bac a été configuré pour utiliser des fonctions uniquement disponibles aux adhérents du projet.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.Le bac %1 est configuré pour utiliser des fonctions uniquement disponibles aux adhérents du projet ; ces réglages seront donc ignorés.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Devenez un adhérent du projet</a>, et recevez un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificat d'adhérent</a>.
@@ -4253,7 +4258,7 @@ No will choose: %2
%1 (%2) :
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>La fonction sélectionnée n'est disponible qu'aux adhérents au projet. Les processus lancés dans un bac à sable avec cette fonction activée sans certificat d'adhérent seront arrêtés après 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Devenez un adhérent du projet</a>, et recevez un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificat d'adhérent</a>.
@@ -4316,22 +4321,22 @@ No will choose: %2
-
+ Only Administrators can change the config.Seuls les administrateurs peuvent modifier la configuration.
-
+ Please enter the configuration password.Veuillez saisir le mot de passe de la configuration.
-
+ Login Failed: %1Échec de la connexion : %1
-
+ Do you want to terminate all processes in all sandboxes?Voulez-vous arrêter tous les processus dans tous les bacs à sable ?
@@ -4344,92 +4349,92 @@ No will choose: %2
Veuillez saisir la durée de désactivation du forçage des programmes.
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus a été démarré en mode portable et doit maintenant créer les services nécessaires. Cela demandera des privilèges d'administrateur.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.ATTENTION : Un autre agent (probablement SbieCtrl.exe) gère déjà cette session de Sandboxie, veuillez le fermer d'abord et vous reconnecter pour prendre le contrôle.
-
+ Maintenance operation failed (%1)Échec de l'opération de maintenance (%1)
-
+ Maintenance operation completedOpération de maintenance terminée
-
+ Executing maintenance operation, please wait...Exécution de l'opération de maintenance, veuillez patienter...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Dans l'interface utilisateur de la version Plus, cette fonction a été intégrée à l'affichage principal de la liste des bacs à sable.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.En utilisant le menu contextuel Bac/Groupe, vous pouvez déplacer les bacs et les groupes vers d'autres groupes. Vous pouvez également utiliser le glisser-déposer pour déplacer les éléments. Alternativement, vous pouvez aussi utiliser les touches fléchées tout en maintenant ALT enfoncée pour déplacer les éléments vers le haut ou le bas au sein de leur groupe.<br />Vous pouvez créer de nouveaux bacs et groupes depuis le menu du bac à sable.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Voulez-vous également réinitialiser les messages masqués des bacs (oui), ou seulement tous les messages du journal (non) ?
-
+ The changes will be applied automatically whenever the file gets saved.Les changements seront appliqués automatiquement à chaque fois que le fichier sera enregistré.
-
+ The changes will be applied automatically as soon as the editor is closed.Les changements seront appliqués automatiquement dès que l'éditeur sera fermé.
-
+ Sandboxie config has been reloadedLa configuration de Sandboxie a été rechargée
-
+ Error Status: 0x%1 (%2)Statut de l'erreur : 0x%1 (%2)
-
+ UnknownInconnu
-
+ All sandbox processes must be stopped before the box content can be deletedTous les processus du bac à sable doivent être arrêtés pour que le contenu du bac puisse être supprimé
-
+ Failed to copy box data filesÉchec de la copie des fichiers de données du bac
-
+ Failed to remove old box data filesÉchec de la suppression des fichiers de données de l'ancien bac
-
+ The operation was canceled by the userL'opération a été annulée par l'utilisateur
-
+ Unknown Error Status: 0x%1Code erreur inconnu : 0x%1
@@ -4467,77 +4472,77 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Statut d'erreur : %1
-
+ Administrator rights are required for this operation.Les droits d'administrateur sont nécessaires pour cette opération.
-
+ Failed to execute: %1Échec de l'exécution : %1
-
+ Failed to connect to the driverÉchec de la connexion au pilote
-
+ Failed to communicate with Sandboxie Service: %1Échec de la communication avec le service Sandboxie : %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Un bac à sable incompatible %1 a été trouvé. Versions compatibles : %2
-
+ Can't find Sandboxie installation path.Impossible de trouver le chemin d'installation de Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Échec de la copie de la configuration du bac à sable %1 : %2
-
+ A sandbox of the name %1 already existsUn bac à sable du nom de %1 existe déjà
-
+ Failed to delete sandbox %1: %2Échec de la suppression du bac à sable %1 : %2
-
+ The sandbox name can not be longer than 32 characters.Le nom du bac à sable ne peut pas comporter plus de 32 caractères.
-
+ The sandbox name can not be a device name.Le nom du bac à sable ne peut pas être un nom de périphérique.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Le nom du bac à sable ne peut contenir que des lettres, des chiffres et des traits de soulignement qui seront affichés comme des espaces.
-
+ Failed to terminate all processesÉchec de l'arrêt de tous les processus.
-
+ Delete protection is enabled for the sandboxLa protection contre la suppression est activée pour ce bac à sable.
-
+ Error deleting sandbox folder: %1Erreur lors de la suppression du dossier du bac à sable : %1
@@ -4546,22 +4551,22 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Un bac à sable doit être vidé avant de pouvoir être renommé.
-
+ A sandbox must be emptied before it can be deleted.Un bac à sable doit être vidé avant de pouvoir être supprimé.
-
+ Failed to move directory '%1' to '%2'Impossible de déplacer le dossier « %1 » vers « %2 »
-
+ This Snapshot operation can not be performed while processes are still running in the box.Cette opération d’instantané ne peut pas être effectuée lorsque des processus sont encore en cours dans le bac.
-
+ Failed to create directory for new snapshotImpossible de créer un répertoire pour le nouvel instantané
@@ -4574,32 +4579,32 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Dossier d'installation : %1
-
+ Sandboxie-Plus Version: %1 (%2)Version de Sandboxie-Plus : %1 (%2)
-
+ Current Config: %1Configuration actuelle : %1
-
+ Snapshot not foundInstantané introuvable
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Erreur de fusion des répertoires de l'instantané « %1 » avec « %2 », l'instantané n'a pas été entièrement fusionné.
-
+ Failed to remove old snapshot directory '%1'Impossible de supprimer l'ancien répertoire de l'instantané « %1 »
-
+ Can't remove a snapshot that is shared by multiple later snapshotsImpossible de supprimer un instantané qui est partagé par plusieurs autres instantanés
@@ -4608,27 +4613,27 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Impossible de supprimer l'ancienne base de données
-
+ You are not authorized to update configuration in section '%1'Vous n'êtes pas autorisé à mettre à jour la configuration dans la section « %1 »
-
+ Failed to set configuration setting %1 in section %2: %3Échec de la définition du paramètre de configuration %1 dans la section %2 : %3
-
+ Can not create snapshot of an empty sandboxImpossible de créer un instantané d'un bac à sable vide.
-
+ A sandbox with that name already existsUn bac à sable portant ce nom existe déjà
-
+ The config password must not be longer than 64 charactersLe mot de passe de la configuration ne doit pas comporter plus de 64 caractères
@@ -4637,7 +4642,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Statut d'erreur inconnu : %1
-
+ Operation failed for %1 item(s).L'opération a échoué pour %1 objet.
@@ -4646,7 +4651,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Voulez-vous ouvrir %1 dans un navigateur web dans le bac à sable (oui) ou en dehors (non) ?
-
+ Remember choice for later.Mémoriser ce choix pour plus tard.
@@ -9288,27 +9293,27 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
QPlatformTheme
-
+ OKOK
-
+ ApplyAppliquer
-
+ CancelAnnuler
-
+ &Yes&Oui
-
+ &No&Non
diff --git a/SandboxiePlus/SandMan/sandman_hu.ts b/SandboxiePlus/SandMan/sandman_hu.ts
index a72f66a1..eecdd864 100644
--- a/SandboxiePlus/SandMan/sandman_hu.ts
+++ b/SandboxiePlus/SandMan/sandman_hu.ts
@@ -1611,11 +1611,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All ProgramsMinden program
@@ -1626,9 +1626,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1Csoport: %1
@@ -1663,7 +1663,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.A sablonértékek nem szerkeszthetők.
@@ -2082,82 +2082,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ AnyBármilyen
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessHozzáférés engedélyezése
-
+ Block using Windows Filtering PlatformLetiltás a Windows szűrőplatform használatával
-
+ Block by denying access to Network devicesLetiltás a hálózati eszközökhöz való hozzáférés megtagadásával
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowEngedélyezés
-
+ Block (WFP)Letiltás (WFP)
-
+ Block (NDev)Letiltás (NDev)
-
+ A non empty program name is required.
-
+ BlockLetiltás
@@ -2806,22 +2806,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Várakozás a mappára: %1
-
+ Deleting folder: %1Mappa törlése: %1
-
+ Merging folders: %1 >> %2Mappák egyesítése: %1 >> %2
-
+ Finishing Snapshot Merge...Pillanatkép-egyesítés befejezése...
@@ -2902,27 +2902,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
-
+ Reset ColumnsOszlopok visszaállítása
-
+ Copy CellCella másolása
-
+ Copy RowSor másolása
-
+ Copy PanelPanel másolása
@@ -3185,7 +3185,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusSandboxie-Plus névjegye
@@ -3270,10 +3270,10 @@ Elvégzi a takarítást?
-
-
-
-
+
+
+
+ Don't show this message again.Ne jelenjen meg többet ez az üzenet.
@@ -3333,32 +3333,32 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
%1 tartalom automatikus törlése
-
+ Auto deleting content of %1%1 tartlmának automatikus törlése
-
+ %1 Directory: %2%1 könyvtár: %2
-
+ ApplicationAlkalmazás
-
+ InstallationTelepítés
-
+ Current Config: %1Jelenlegi konfiguráció: %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3366,60 +3366,60 @@ Please check if there is an update for sandboxie.
-
+ Don't show this message again for the current build.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.
-
+ Do you want the setup wizard to be omitted?
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
-
+
+ Don't ask in futureA jövőben ne kérdezzen
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Hiba
-
+ Failed to stop all Sandboxie componentsNem sikerült leállítani minden Sandboxie komponenst
-
+ Failed to start required Sandboxie componentsA szükséges Sandboxie komponensek elindítása sikertelen
@@ -3439,7 +3439,7 @@ Please check if there is an update for sandboxie.
Eltávolított sablonok törlése...
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3448,12 +3448,12 @@ Igen választás: %1
Nem választás: %2
-
+ Default sandbox not found; creating: %1Az alapértelmezett homokozó nem található; létrehozás: %1
-
+ - NOT connected - NINCS Kapcsolat
@@ -3466,7 +3466,7 @@ Nem választás: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>A kiválasztott funkciókészlet csak a projekt támogatói számára érhető el. A támogatói tanúsítvány nélkül engedélyezett funkciókészlettel elindított folyamatok 5 perc múlva leállnak.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Legyen támogatónk</a>, és kap egy <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">támogatói tanúsítványt</a>
@@ -3525,22 +3525,22 @@ Nem választás: %2
Néhány fájlt nem sikerült helyreállítani:
-
+ Only Administrators can change the config.Csak a rendszergazda módosíthatja a konfigurációt.
-
+ Please enter the configuration password.Kérjük, adja meg a konfigurációs jelszót.
-
+ Login Failed: %1Belépés sikertelen: %1
-
+ Do you want to terminate all processes in all sandboxes?Leállít minden folyamatot az összes homokozóban?
@@ -3549,107 +3549,107 @@ Nem választás: %2
Leállít mindent kérés nélkül
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.A Sandboxie-Plus hordozható módban indult, és létre kell hoznia a szükséges szolgáltatásokat. Ez adminisztrátori jogosultságokat kér.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.VIGYÁZAT: Egy másik ügynök (valószínűleg SbieCtrl.exe) már kezeli ezt a Sandboxie-munkamenetet. Kérjük, előbb zárja be, majd csatlakozzon újra, hogy átvegye az irányítást.
-
+ Executing maintenance operation, please wait...Karbantartási művelet van folyamatban. Kérjük, várjon...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Visszaállítja a rejtett üzenet mezőket (Igen) vagy csak az összes naplóüzenetet (Nem)?
-
+ The changes will be applied automatically whenever the file gets saved.A változtatások automatikusan érvénybe lépnek, amikor a fájl mentésre kerül.
-
+ The changes will be applied automatically as soon as the editor is closed.A módosítások automatikusan érvénybe lépnek, amikor a szerkesztő bezárul.
-
+ Error Status: 0x%1 (%2)Állapot hiba: 0x%1 (%2)
-
+ UnknownIsmeretlen
-
+ A sandbox must be emptied before it can be deleted.A homokozót a törlés előtt ki kell üríteni.
-
+ Failed to copy box data filesA homokó adatfájljainak másolása sikertelen
-
+ Failed to remove old box data filesA régi homokozó adatfájljainak eltávolítása sikertelen
-
+ Unknown Error Status: 0x%1Ismeretlen hiba állapot: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseBezárás
-
+ &Find ...
-
+ All columns
@@ -3671,7 +3671,7 @@ Nem választás: %2
SandboxiePlus a nyilt forráskodú Sandboxie folytatása. <br />Keresse fel a <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> weblapot több információért. <br /><br />%3<br /><br />Driver verzió: %1<br />Funkciók: %2<br /><br />Ikonok: <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.Ehhez a művelethez rendszergazdai jogosultság szükséges.
@@ -3710,7 +3710,7 @@ Nem választás: %2
-
+ Sandboxie-Plus Insider [%1]
@@ -3902,119 +3902,124 @@ Nem választás: %2
-
+ Auto removing sandbox %1%1 homokozó automatikus eltávolítása
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus verzió: %1 (%2)
-
+ Data Directory: %1Adatkönyvtár: %1
-
+ for Personal use személyes használatra
-
+ - for Non-Commercial use ONLY – CSAK nem kereskedelmi használatra
-
+ Failed to configure hotkey %1, error: %2
-
-
-
+
+
+ (%1) (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.%1 program, amely %2 homokozóban indult, 5 percen belül leáll, mert a homokozó úgy lett beállítva, hogy kizárólag a projekttámogatók számára elérhető szolgáltatásokat használja.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.%1 homokozó úgy van beállítva, hogy kizárólag a projekt támogatói számára elérhető szolgáltatásokat használja, ezeket az előre beállított értékeket figyelmen kívül hagyja.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Legyen támogatónk</a>, és kap egy <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">támogatói anúsítványt</a>
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!A próbaidőszak időszak lejárt!!!
@@ -4037,47 +4042,47 @@ Error: %1
Importálás: %1
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Kérjük, adja meg a "Kényszerített programok" szabályainak letiltásához szükséges időtartamot másodpercben.
-
+ No RecoveryNind hrlyreállítás
-
+ No MessagesNincsenek üzenetek
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
+ Maintenance operation failed (%1)Karbantartási művelet sikertelen (%1)
-
+ Maintenance operation completedA karbantartási művelet befejeződött
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.A Plus felhasználói felületen ez a funkció a fő sandbox listanézetbe integrálva lett.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.A homokozó/csoport helyi menü használatával áthelyezhet homokozókat és csoportokat más csoportokba. A fogd és vidd módszerrel is mozgathatja az elemeket. Alternatív megoldásként használhatja a nyílbillentyűket, miközben lenyomva tartja az ALT billentyűt, hogy fel-le mozgassa az elemeket a csoporton belül.<br />Új homokozókat és csoportokat hozhat létre a Sandbox menüből.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4086,199 +4091,199 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza lesz állítva a Sandboxie következő frissítésekor.
-
+ Sandboxie config has been reloadedA Sandboxie konfigurációja újratöltve
-
+ Failed to execute: %1Végrehajtás sikertelen: %1
-
+ Failed to connect to the driverKapcsolódás a driverhez sikertelen
-
+ Failed to communicate with Sandboxie Service: %1Kommunikáció a homokozó szolgáltatással sikertelen: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2%1 nem-kompatibilis Sandboxie verzió található. Kompatibilis verziók: %2
-
+ Can't find Sandboxie installation path.Sandboxie telepítési útvonala nem található.
-
+ Failed to copy configuration from sandbox %1: %2Nem sikerült másolni a konfigurációt a %1 homokozóból: %2
-
+ A sandbox of the name %1 already exists%1 néven már létezik egy homokozó
-
+ Failed to delete sandbox %1: %2ínem sikerült törölni %1 homokozót: %2
-
+ The sandbox name can not be longer than 32 characters.A homokozó neve nem lehet hosszabb 32 karakternél.
-
+ The sandbox name can not be a device name.A homokozó neve nem lehet egy eszköz neve.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.A homokozó neve csak betűket, számokat és aláhúzásokat tartalmazhat, amelyek szóközként jelennek meg.
-
+ Failed to terminate all processesNem sikerült minden folyamatot leállítani
-
+ Delete protection is enabled for the sandboxA törlésvédelem engedélyezve van a homokozóban
-
+ All sandbox processes must be stopped before the box content can be deletedMinden homokozói folyamatot le kell állítani a homokozó tartalmának törlése előtt
-
+ Error deleting sandbox folder: %1Hiba történt a homokozó mappa törlésekor: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move directory '%1' to '%2''%1' könyvtár átmozgatása sikertelen ide: '%2'
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Ez a pillanatkép nem hajtható végre, amíg a folyamat még fut a homokozóban.
-
+ Failed to create directory for new snapshotKönyvtár létrehozása az új pillanatkép részére sikertelen
-
+ Snapshot not foundPillanatkép nem található
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Hiba történt a pillanatkép könyvtárak egyesítésekor: '%1' ezzel: '%2', a pillanatkép nincs teljesen összevonva.
-
+ Failed to remove old snapshot directory '%1'A régi '%1' pillanatkép könyvtár eltávolítása sikertelen
-
+ Can't remove a snapshot that is shared by multiple later snapshotsNem lehet eltávolítani azt a pillanatképet, amelyet több későbbi pillanatkép is megoszt
-
+ You are not authorized to update configuration in section '%1'Nem jogosult a konfiguráció frissítésére '%1' szakaszban
-
+ Failed to set configuration setting %1 in section %2: %3%1 konfigurációs beállítások beállítása sikertelen %2 szakaszban: %3
-
+ Can not create snapshot of an empty sandboxNem lehet pillanatképet készíteni egy üres homokozóról
-
+ A sandbox with that name already existsMár létezik ilyen nevű homokozó
-
+ The config password must not be longer than 64 charactersA konfigurációs jelszó nem lehet 64 karakternél hosszabb
-
+ The operation was canceled by the userA műveletet a felhasználó törölte
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedAz importálás/exportálás nem érhető el, a 7z.dll nem tölthető be
-
+ Failed to create the box archiveNem sikerült létrehozni a homokozó archívumot
-
+ Failed to open the 7z archiveNem sikerült megnyitni a 7z archívumot
-
+ Failed to unpack the box archiveNem sikerült kicsomagolni a homokozó archívumot
-
+ The selected 7z file is NOT a box archiveA kiválasztott 7z fájl NEM egy homokozó archívum
-
+ Operation failed for %1 item(s).%1 elemre vonatkozó művelet sikertelen.
@@ -4287,28 +4292,28 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Megnyitja a %1 weblapot egy homokozóban (Igen) vagy azon kívül (Nem)?
-
+ Remember choice for later.A választás megjegyzése.
-
+ The supporter certificate is not valid for this build, please get an updated certificateA támogatói tanúsítvány nem érvényes ehhez a buildhez, kérjük, szerezzen be frissített tanúsítványt
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificateA támogatói tanúsítvány %1 napja lejárt, kérjük, szerezzen be frissített tanúsítványt
-
+ , but it remains valid for the current build, de érvényes marad a jelenlegi buildre
-
+ The supporter certificate will expire in %1 days, please get an updated certificateA támogatói tanúsítvány %1 nap múlva lejár. Kérjük, hosszabítsa meg
@@ -8568,27 +8573,27 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
QPlatformTheme
-
+ OKOK
-
+ ApplyAlkalmazás
-
+ CancelMégse
-
+ &Yes&Igen
-
+ &No&Nem
diff --git a/SandboxiePlus/SandMan/sandman_it.ts b/SandboxiePlus/SandMan/sandman_it.ts
index 4b21cf91..348f3692 100644
--- a/SandboxiePlus/SandMan/sandman_it.ts
+++ b/SandboxiePlus/SandMan/sandman_it.ts
@@ -1933,9 +1933,9 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
-
-
+
+
+ Group: %1Gruppo: %1
@@ -2133,11 +2133,11 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
-
-
-
-
+
+
+
+
+ All ProgramsTutti i programmi
@@ -2172,7 +2172,7 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
+ Template values can not be edited.I valori predefiniti non possono essere modificati.
@@ -2283,82 +2283,82 @@ Please select a folder which contains this file.
-
+ AnyQualsiasi
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessConsenti accesso
-
+ Block using Windows Filtering PlatformImposta blocco mediante la piattaforma di filtraggio di Windows
-
+ Block by denying access to Network devicesBlocca accesso ai dispositivi di rete
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowConsenti
-
+ Block (WFP)Blocca (WFP)
-
+ Block (NDev)Blocca (NDev)
-
+ A non empty program name is required.È richiesto un nome di programma non vuoto.
-
+ BlockBlocca
@@ -2854,22 +2854,22 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
CSandBox
-
+ Waiting for folder: %1In attesa della cartella: %1
-
+ Deleting folder: %1Eliminazione della cartella: %1
-
+ Merging folders: %1 >> %2Unione cartelle: %1 >> %2
-
+ Finishing Snapshot Merge...Completamento unione istantanea...
@@ -2950,7 +2950,7 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie Plus v%1
@@ -2965,22 +2965,22 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
<a href="sbie://update/apply" style="color: red;">Un nuovo aggiornamento %1 di Sandboxie Plus è pronto da installare</a>
-
+ Reset ColumnsReimposta colonne
-
+ Copy CellCopia cella
-
+ Copy RowCopia riga
-
+ Copy PanelCopia riquadro
@@ -3235,7 +3235,7 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
-
+ Sandboxie-Plus Insider [%1]Sandboxie Plus Insider [%1]
@@ -3266,7 +3266,7 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
-
+ About Sandboxie-PlusInformazioni su Sandboxie Plus
@@ -3476,10 +3476,10 @@ Effettuare la pulizia?
-
-
-
-
+
+
+
+ Don't show this message again.Non mostrare più questo messaggio.
@@ -3509,24 +3509,24 @@ Effettuare la pulizia?
Eliminazione automatica del contenuto %1
-
+ Current Config: %1Configurazione corrente: %1
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie Plus - Errore
-
+ Failed to stop all Sandboxie componentsImpossibile fermare tutti i componenti di Sandboxie
-
+ Failed to start required Sandboxie componentsImpossibile avviare i componenti di Sandboxie richiesti
@@ -3554,45 +3554,45 @@ Effettuare la pulizia?
<a href="sbie://update/check" style="color: red;">Un nuovo aggiornamento di Sandboxie Plus v%1 è disponibile</a>
-
+ Sandboxie-Plus Version: %1 (%2)Versione di Sandboxie Plus: %1 (%2)
-
+ for Personal use per uso personale
-
+ - for Non-Commercial use ONLY - SOLO per uso non commerciale
-
+ Default sandbox not found; creating: %1Area virtuale predefinita non trovata; in fase di creazione: %1
-
+ Do you want the setup wizard to be omitted?Si desidera saltare la configurazione guidata?
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.Il programma %1 avviato nell'area virtuale %2 verrà terminato tra 5 minuti poichè l'area virtuale utilizza funzioni disponibili esclusivamente ai sostenitori del progetto.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.L'area virtuale %1 utilizza funzioni disponibili esclusivamente ai sostenitori del progetto, pertanto le seguenti impostazioni verranno ignorate.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Diventa un sostenitore di Sandboxie Plus</a> per ricevere un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificato di supporto</a>
@@ -3602,7 +3602,7 @@ Effettuare la pulizia?
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3610,133 +3610,138 @@ Please check if there is an update for sandboxie.
-
+ Don't show this message again for the current build.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.
-
+ Failed to configure hotkey %1, error: %2
-
+ The box %1 is configured to use features exclusively available to project supporters.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!La firma del certificato non è valida!
-
+ The Certificate is not suitable for this product.Il certificato non è adatto a questo prodotto.
-
+ The Certificate is node locked.node-locked = hardware-lockedIl certificato è associato a un altro dispositivo.
-
+ The support certificate is not valid.
Error: %1Il certificato di supporto non è valido.
Errore: %1
-
+ The evaluation period has expired!!!Il periodo di valutazione è scaduto!
-
-
+
+ Don't ask in futureNon chiedere in futuro
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Qui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaImmettere l'intervallo in secondi per la disattivazione<br />delle regole dei programmi ad avvio forzato.
-
+ Error Status: 0x%1 (%2)Stato di errore: 0x%1 (%2)
-
+ UnknownSconosciuto
-
+ Failed to copy box data filesImpossibile copiare i dati dell'area virtuale
-
+ Failed to remove old box data filesImpossibile rimuovere i dati obsoleti dell'area virtuale
-
+ Unknown Error Status: 0x%1Stato di errore sconosciuto: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
@@ -3837,40 +3842,40 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Collegamento aggiunto in: %1
-
+ Auto deleting content of %1Eliminazione automatica del contenuto di %1
-
+ Auto removing sandbox %1Autoeliminazione area virtuale %1
-
+ %1 Directory: %2La posizione di %1 è intenzionale.Directory %1: %2
-
+ ApplicationL'iniziale minuscola è intenzionaleapplicazione
-
+ InstallationL'iniziale minuscola è intenzionaledi installazione
-
+ Data Directory: %1Directory dei dati: %1
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3879,14 +3884,14 @@ Scegliere Sì per selezionare: %1
Scegliere No per selezionare: %2
-
+ - NOT connected - NON connesso
-
-
-
+
+
+ (%1) (%1)
@@ -3899,7 +3904,7 @@ Scegliere No per selezionare: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Qui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaLa funzionalità selezionata è disponibile solo ai sostenitori del progetto.<br />I processi avviati nell'area virtuale con questa funzione senza un valido certificato di supporto verranno terminati dopo 5 minuti.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Diventa un sostenitore di Sandboxie Plus</a>, e ricevi un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificato di supporto</a>
@@ -3957,17 +3962,17 @@ Scegliere No per selezionare: %2
-
+ Only Administrators can change the config.Solo gli amministratori possono cambiare la configurazione.
-
+ Please enter the configuration password.Immettere la password di configurazione.
-
+ Login Failed: %1Login non riuscito: %1
@@ -3988,7 +3993,7 @@ Scegliere No per selezionare: %2
Importazione: %1
-
+ Do you want to terminate all processes in all sandboxes?Chiudere tutti i processi in tutte le aree virtuali?
@@ -3997,301 +4002,301 @@ Scegliere No per selezionare: %2
Terminali tutti senza chiedere
-
+ No RecoverySospensione recupero file in corso
-
+ No MessagesSospensione messaggi popup in corso
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie Plus è stato avviato in modalità portatile e deve creare i servizi necessari. Questa operazione richiederà privilegi amministrativi.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.ATTENZIONE: Un altro processo (probabilmente SbieCtrl.exe) sta attualmente gestendo questa sessione Sandboxie, si prega di chiuderla e di riconnettersi.
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERRORE:</b> Sandboxie Plus Manager (SandMan.exe) non ha una firma digitale valida (SandMan.exe.sig). Si prega di scaricare una versione attendibile dalla <a href="https://sandboxie-plus.com/go.php?to=sbie-get">pagina ufficiale di download</a>.
-
+ Maintenance operation failed (%1)Operazione di manutenzione non riuscita (%1)
-
+ Maintenance operation completedOperazione di manutenzione completata
-
+ Executing maintenance operation, please wait...Operazione di manutenzione in esecuzione, attendere...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Nell'interfaccia utente Plus, questa funzionalità è stata integrata nell'elenco principale delle aree virtuali.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Utilizzando il menu contestuale dell'area virtuale/gruppo, è possibile spostare aree virtuali e gruppi in altri gruppi. È inoltre prevista la possibilità di utilizzare il trascinamento per spostare gli elementi. In alternativa, è possibile utilizzare i tasti freccia tenendo premuto ALT per spostare gli elementi in alto e in basso all'interno del gruppo.<br />È possibile creare nuove aree virtuali e gruppi dal menu Area virtuale.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Vuoi reimpostare i messaggi nascosti (sì), o soltanto i log dei messaggi (no)?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.Si sta per modificare il file Templates.ini, operazione generalmente sconsigliata.
Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno annullate al prossimo aggiornamento di Sandboxie.
-
+ The changes will be applied automatically whenever the file gets saved.Le modifiche verranno applicate automaticamente ogni volta che il file viene salvato.
-
+ The changes will be applied automatically as soon as the editor is closed.Le modifiche verranno applicate automaticamente non appena l'editor viene chiuso.
-
+ Sandboxie config has been reloadedLa configurazione di Sandboxie è stata aggiornata
-
+ Administrator rights are required for this operation.Questa operazione richiede privilegi amministrativi.
-
+ Failed to execute: %1Impossibile eseguire: %1
-
+ Failed to connect to the driverImpossibile collegarsi al driver
-
+ Failed to communicate with Sandboxie Service: %1Impossibile comunicare con Sandboxie Service: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2La versione di Sandboxie %1 risulta incompatibile. Versioni compatibili: %2
-
+ Can't find Sandboxie installation path.Impossibile trovare il percorso di installazione di Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Impossibile copiare la configurazione dall'area virtuale %1: %2
-
+ A sandbox of the name %1 already existsUn'area virtuale %1 è già presente
-
+ Failed to delete sandbox %1: %2Impossibile cancellare area virtuale %1: %2
-
+ The sandbox name can not be longer than 32 characters.Il nome dell'area virtuale non può superare i 32 caratteri.
-
+ The sandbox name can not be a device name.Il nome dell'area virtuale non può essere quello di un dispositivo.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Il nome dell'area virtuale può contenere solo lettere, cifre e trattini bassi che vengono visualizzati come spazi.
-
+ Failed to terminate all processesImpossibile terminare tutti i processi
-
+ Delete protection is enabled for the sandboxBlocco di eliminazione attivo per quest'area virtuale
-
+ All sandbox processes must be stopped before the box content can be deletedTutti i processi dell'area virtuale devono essere interrotti prima che il contenuto possa essere eliminato
-
+ Error deleting sandbox folder: %1Errore durante l'eliminazione della cartella: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.Tutti i processi dell'area virtuale devono essere interrotti prima che possa essere rinominata.
-
+ A sandbox must be emptied before it can be deleted.Occorre svuotare il contenuto dell'area virtuale prima di poterla rimuovere.
-
+ Failed to move directory '%1' to '%2'Impossibile spostare directory '%1' in '%2'
-
+ Failed to move box image '%1' to '%2'Impossibile spostare l'immagine dell'area virtuale '%1' in '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Questa istantanea non può essere eseguita mentre i processi sono ancora in esecuzione nell'area virtuale.
-
+ Failed to create directory for new snapshotImpossibile creare directory su nuova istantanea
-
+ Snapshot not foundIstantanea non trovata
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Errore durante l'unione delle directory '%1' con '%2': unione delle istantanee non riuscita.
-
+ Failed to remove old snapshot directory '%1'Impossibile rimuovere directory di istantanea '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsImpossibile rimuovere un'istantanea condivisa da istantanee successive
-
+ You are not authorized to update configuration in section '%1'Non sei autorizzato ad aggiornare la configurazione nel punto '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Salvataggio dell'impostazione di configurazione %1 fallito nel punto %2: %3
-
+ Can not create snapshot of an empty sandboxImpossibile creare istantanea di un'area virtuale vuota
-
+ A sandbox with that name already existsUn'area virtuale con quel nome è già presente
-
+ The config password must not be longer than 64 charactersLa password non può superare i 64 caratteri
-
+ The operation was canceled by the userOperazione annullata dall'utente
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deletedIl contenuto di un'area virtuale non montata non può essere eliminato
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedImportazione/esportazione non disponibile, 7z.dll non può essere caricato
-
+ Failed to create the box archiveImpossibile creare l'archivio dell'area virtuale
-
+ Failed to open the 7z archiveImpossibile aprire l'archivio 7z
-
+ Failed to unpack the box archiveImpossibile estrarre l'archivio dell'area virtuale
-
+ The selected 7z file is NOT a box archiveIl file 7z selezionato NON è un archivio relativo a un'area virtuale
-
+ Operation failed for %1 item(s).Operazione fallita per %1 elemento(i).
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4300,37 +4305,37 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Aprire %1 nel browser dell'area virtuale (sì) o all'esterno (no)?
-
+ Remember choice for later.Ricorda la scelta per dopo.
-
+ Case Sensitive&Maiuscole/minuscole
-
+ RegExpEspressione regolare
-
+ HighlightEvidenzia
-
+ CloseChiudi
-
+ &Find ...&Trova ...
-
+ All columnsTutte le colonne
@@ -4347,22 +4352,22 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Sandboxie Plus è la continuazione open source di Sandboxie.<br />Visita <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> per informazioni.<br /><br />%3<br /><br />Versione driver: %1<br />Funzioni attive: %2<br /><br />Icone by <a href="https://icons8.com">icons8.com</a><br /><br />Traduzione italiana a cura di <a href="https://eng2ita.altervista.org">Eng2ita</a><br />
-
+ The supporter certificate is not valid for this build, please get an updated certificateIl certificato non è valido per questa build, si prega di ottenere un certificato aggiornato
-
+ The supporter certificate has expired%1, please get an updated certificateIl certificato è scaduto%1, si prega di ottenere un certificato aggiornato
-
+ , but it remains valid for the current build, ma resta valido per la build corrente
-
+ The supporter certificate will expire in %1 days, please get an updated certificateIl certificato scadrà fra %1 giorni, si prega di ottenere un certificato aggiornato
@@ -8654,27 +8659,27 @@ area virtuale
QPlatformTheme
-
+ OKOK
-
+ ApplyApplica
-
+ CancelAnnulla
-
+ &Yes&Sì
-
+ &No&No
diff --git a/SandboxiePlus/SandMan/sandman_ja.ts b/SandboxiePlus/SandMan/sandman_ja.ts
index c2a31433..56282dbd 100644
--- a/SandboxiePlus/SandMan/sandman_ja.ts
+++ b/SandboxiePlus/SandMan/sandman_ja.ts
@@ -1405,9 +1405,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1
@@ -1419,11 +1419,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All Programs
@@ -1609,7 +1609,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.
@@ -1749,8 +1749,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+ Allow
@@ -2019,75 +2019,75 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Any
-
+ TCP
-
+ UDP
-
+ ICMP
-
+ Allow access
-
+ Block using Windows Filtering Platform
-
+ Block by denying access to Network devices
-
+ Block (WFP)
-
+ Block (NDev)
-
+ A non empty program name is required.
-
+ Block
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
@@ -2658,22 +2658,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1
-
+ Deleting folder: %1
-
+ Merging folders: %1 >> %2
-
+ Finishing Snapshot Merge...
@@ -2755,13 +2755,13 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Sandboxie-Plus Insider [%1]
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
@@ -2902,7 +2902,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusSandboxie-Plus について
@@ -3286,10 +3286,10 @@ Do you want to do the clean up?
-
-
-
-
+
+
+
+ Don't show this message again.
@@ -3374,69 +3374,69 @@ Do you want to do the clean up?
-
+ Auto deleting content of %1
-
+ Auto removing sandbox %1
-
+ %1 Directory: %2
-
+ Application
-
+ Installation
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus Version: %1 (%2)
-
+ Current Config: %1
-
+ Data Directory: %1
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
-
+ for Personal use
-
+ - for Non-Commercial use ONLY
-
+ Default sandbox not found; creating: %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3444,578 +3444,583 @@ Please check if there is an update for sandboxie.
-
+ Don't show this message again for the current build.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.
-
+ Do you want the setup wizard to be omitted?
-
+ - NOT connected
-
+ Failed to configure hotkey %1, error: %2
-
-
-
+
+
+ (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!
-
+ The supporter certificate is not valid for this build, please get an updated certificate
-
+ The supporter certificate has expired%1, please get an updated certificate
-
+ , but it remains valid for the current build
-
+ The supporter certificate will expire in %1 days, please get an updated certificate
-
+ Only Administrators can change the config.
-
+ Please enter the configuration password.
-
+ Login Failed: %1
-
+ Do you want to terminate all processes in all sandboxes?
-
-
+
+ Don't ask in future
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Forced Programs ルールを一時的に無効化する時間を秒単位で入力してください。
-
+ No Recovery
-
+ No Messages
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
-
-
+
+
+ Sandboxie-Plus - Error
-
+ Failed to stop all Sandboxie components
-
+ Failed to start required Sandboxie components
-
+ Maintenance operation failed (%1)
-
+ Maintenance operation completed
-
+ Executing maintenance operation, please wait...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.
-
+ The changes will be applied automatically whenever the file gets saved.
-
+ The changes will be applied automatically as soon as the editor is closed.
-
+ Sandboxie config has been reloadedSandboxie 構成は再読み込みされました
-
+ Error Status: 0x%1 (%2)
-
+ Unknown
-
+ Administrator rights are required for this operation.この操作には管理者権限が必要です。
-
+ Failed to execute: %1
-
+ Failed to connect to the driver
-
+ Failed to communicate with Sandboxie Service: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2
-
+ Can't find Sandboxie installation path.
-
+ Failed to copy configuration from sandbox %1: %2
-
+ A sandbox of the name %1 already exists
-
+ Failed to delete sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.
-
+ The sandbox name can not be a device name.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.
-
+ Failed to terminate all processes
-
+ Delete protection is enabled for the sandbox
-
+ All sandbox processes must be stopped before the box content can be deleted
-
+ Error deleting sandbox folder: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.
-
+ A sandbox must be emptied before it can be deleted.
-
+ Failed to move directory '%1' to '%2'
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.
-
+ Failed to create directory for new snapshot
-
+ Failed to copy box data files
-
+ Snapshot not found
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.
-
+ Failed to remove old snapshot directory '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshots
-
+ Failed to remove old box data files
-
+ You are not authorized to update configuration in section '%1'
-
+ Failed to set configuration setting %1 in section %2: %3
-
+ Can not create snapshot of an empty sandbox
-
+ A sandbox with that name already exists
-
+ The config password must not be longer than 64 characters
-
+ The operation was canceled by the user
-
+ The content of an unmounted sandbox can not be deleted
-
+ %1
-
+ Import/Export not available, 7z.dll could not be loaded
-
+ Failed to create the box archive
-
+ Failed to open the 7z archive
-
+ Failed to unpack the box archive
-
+ The selected 7z file is NOT a box archive
-
+ Unknown Error Status: 0x%1
-
+ Operation failed for %1 item(s).
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?%1 をサンドボックス化した、または、していないブラウザで開きますか?
-
+ Remember choice for later.
-
+ Sandboxed
-
+ Unsandboxed
-
+ Reset Columns列をリセット
-
+ Copy Cell
-
+ Copy Row
-
+ Copy Panel
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ Close閉じる
-
+ &Find ...
-
+ All columns
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -8177,27 +8182,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK
-
+ Apply
-
+ Cancelキャンセル
-
+ &Yes
-
+ &No
diff --git a/SandboxiePlus/SandMan/sandman_ko.ts b/SandboxiePlus/SandMan/sandman_ko.ts
index f2be2c34..5cb4cf14 100644
--- a/SandboxiePlus/SandMan/sandman_ko.ts
+++ b/SandboxiePlus/SandMan/sandman_ko.ts
@@ -1746,11 +1746,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All Programs모든 프로그램
@@ -1761,9 +1761,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1그룹: %1
@@ -1798,7 +1798,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.템플릿 값은 편집할 수 없습니다.
@@ -2221,82 +2221,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Any모두
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow access액세스 허용
-
+ Block using Windows Filtering PlatformWindows 필터링 플랫폼을 사용하여 차단
-
+ Block by denying access to Network devices네트워크 장치에 대한 액세스를 거부하여 차단
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ Allow허용
-
+ Block (WFP)차단 (WFP)
-
+ Block (NDev)차단 (NDev)
-
+ A non empty program name is required.비어 있지 않은 프로그램 이름이 필요합니다.
-
+ Block차단
@@ -2970,22 +2970,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1폴더 대기 중: %1
-
+ Deleting folder: %1폴더 삭제 중: %1
-
+ Merging folders: %1 >> %2폴더 병합: %1 >> %2
-
+ Finishing Snapshot Merge...스냅샷 병합을 완료하는 중...
@@ -3066,27 +3066,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
-
+ Reset Columns열 초기화
-
+ Copy Cell셀 복사
-
+ Copy Row행 복사
-
+ Copy Panel패널 복사
@@ -3362,7 +3362,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusSandboxie-Plus 정보
@@ -3448,10 +3448,10 @@ Do you want to do the clean up?
-
-
-
-
+
+
+
+ Don't show this message again.이 메시지를 다시 표시하지 않습니다.
@@ -3511,32 +3511,32 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
%1 내용 자동 삭제
-
+ Auto deleting content of %1%1의 내용을 자동 삭제하는 중
-
+ %1 Directory: %2%1 디렉터리: %2
-
+ Application응용프로그램
-
+ Installation설치
-
+ Current Config: %1현재 구성: %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3545,55 +3545,60 @@ Please check if there is an update for sandboxie.
Sandboxie에 대한 업데이트가 있는지 확인 부탁드립니다.
-
+ Don't show this message again for the current build.현재 빌드에 대해 이 메시지를 다시 표시하지 않습니다.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.Windows 빌드 %1이 현재 알려진 Sandboxie 버전의 지원 기능을 초과합니다. Sandboxie는 시스템 불안정을 유발할 수 있는 마지막으로 알려진 오프셋을 사용하려고 합니다.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.선택한 기능에는 <b>고급</b> 지원자 인증서가 필요합니다.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>선택한 기능 세트는 프로젝트 후원자만 사용할 수 있습니다.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">프로젝트 후원자 되기</a>, 및 <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">후원자 인증서 받기</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!사용하려는 인증서가 차단되었습니다. 이는 해당 인증서가 원인으로 인해 무효화되었음을 의미합니다. 이 인증서를 사용하려는 시도는 사용 약관 위반에 해당합니다!
-
-
+
+ Don't ask in future앞으로 묻지 않기
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?암호화된 샌드박스의 모든 프로세스를 종료하고 마운트 해제하시겠습니까?
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - 오류
-
+ Failed to stop all Sandboxie components모든 Sandboxie 구성 요소를 중지하지 못했습니다
-
+ Failed to start required Sandboxie components필수 Sandboxie 구성 요소를 시작하지 못했습니다
@@ -3652,7 +3657,7 @@ Sandboxie에 대한 업데이트가 있는지 확인 부탁드립니다.제거된 템플릿을 정리했습니다...
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3661,7 +3666,7 @@ No will choose: %2
아니요 선택: %2
-
+ Default sandbox not found; creating: %1기본 샌드박스를 찾을 수 없습니다. 생성: %1
@@ -3670,7 +3675,7 @@ No will choose: %2
설치 마법사를 생략하시겠습니까?
-
+ - NOT connected - 연결되지 않음
@@ -3683,7 +3688,7 @@ No will choose: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>선택한 기능 세트는 프로젝트 후원자만 사용할 수 있습니다. 후원자 인증서 없이 이 기능 세트가 활성화된 박스에서 시작된 프로세스는 5분 후에 종료됩니다.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">프로젝트 후원자가 되어</a>, <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">후원 인증서</a>를 받습니다
@@ -3743,22 +3748,22 @@ No will choose: %2
-
+ Only Administrators can change the config.관리자만 구성을 변경할 수 있습니다.
-
+ Please enter the configuration password.구성 암호를 입력하십시오.
-
+ Login Failed: %1로그인 실패: %1
-
+ Do you want to terminate all processes in all sandboxes?모든 sandboxes의 모든 프로세스를 종료하시겠습니까?
@@ -3767,107 +3772,107 @@ No will choose: %2
묻지 않고 모두 종료
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus는 휴대용 모드로 시작되었으며 필요한 서비스를 만들어야 합니다. 관리 권한을 묻는 메시지가 나타납니다.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.주의: 다른 에이전트 (아마도 SbieCtrl.exe)가 이미 이 Sandboxie 세션을 관리하고 있습니다. 먼저 이 세션을 닫은 후 다시 연결하여 작업을 수행하십시오.
-
+ Executing maintenance operation, please wait...유지 보수 작업을 실행하는 중입니다. 잠시 기다려 주십시오...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?숨겨진 메시지 박스 (예)를 재설정하시겠습니까, 아니면 모든 로그 메시지 (아니오)만 재설정하시겠습니까?
-
+ The changes will be applied automatically whenever the file gets saved.파일이 저장될 때마다 변경 내용이 자동으로 적용됩니다.
-
+ The changes will be applied automatically as soon as the editor is closed.편집기가 닫히는 즉시 변경 내용이 자동으로 적용됩니다.
-
+ Error Status: 0x%1 (%2)오류 상태: 0x%1(%2)
-
+ Unknown알 수 없음
-
+ A sandbox must be emptied before it can be deleted.샌드박스를 삭제하려면 먼저 비워야 합니다.
-
+ Failed to copy box data files박스 데이터 파일을 복사하지 못했습니다
-
+ Failed to remove old box data files이전 박스 데이터 파일을 제거하지 못했습니다
-
+ Unknown Error Status: 0x%1알 수 없는 오류 상태: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?샌드박스한 웹 브라우저 또는 샌드박스 안 한 웹 브라우저에서 %1을(를) 여시겠습니까?
-
+ Sandboxed샌드박스함
-
+ Unsandboxed샌드박스 안 함
-
+ Case Sensitive대소문자 구분
-
+ RegExp정규식
-
+ Highlight강조
-
+ Close닫기
-
+ &Find ...찾기(&F)...
-
+ All columns모든 열
@@ -3889,7 +3894,7 @@ No will choose: %2
Sandboxie-Plus는 Sandboxie의 오픈 소스 연속입니다.<br />더 많은 정보는 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a>를 방문하세요.<br /><br />%3<br /><br />드라이버 버전: %1<br />기능: %2<br /><br />아이콘 제공은 <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.이 작업을 수행하려면 관리자 권한이 필요합니다.
@@ -3928,7 +3933,7 @@ No will choose: %2
-
+ Sandboxie-Plus Insider [%1]Sandboxie-Plus 내부자 [%1]
@@ -4108,105 +4113,105 @@ No will choose: %2
OnBoxTerminate 실행 중: %1
-
+ Auto removing sandbox %1샌드박스 %1 자동 제거 중
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus 버전: %1 (%2)
-
+ Data Directory: %1데이터 디렉터리: %1
-
+ for Personal use 개인 사용
-
+ - for Non-Commercial use ONLY - 비상업적 용도로만 사용
-
+ Do you want the setup wizard to be omitted?설치 마법사를 생략하시겠습니까?
-
+ Failed to configure hotkey %1, error: %2단축키 %1을(를) 구성하지 못했습니다. 오류: %2
-
-
-
+
+
+ (%1) (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.%1 박스는 프로젝트 후원자들만 사용할 수 있는 기능을 사용하도록 구성되어 있습니다.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.%1 박스는 <b>고급</b> 지원자 인증서가 필요한 기능을 사용하도록 구성되어 있습니다.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">인증서를 업그레이드</a> 하여 고급 기능의 잠금을 해제합니다.
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.%2 박스에서 시작한 프로그램 %1은 프로젝트 후원자가 독점적으로 사용할 수 있는 기능을 사용하도록 구성되었기 때문에 5분 후에 종료됩니다.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.%1 박스는 프로젝트 후원자가 독점적으로 사용할 수 있는 기능을 사용하도록 구성되었으며, 이러한 사전 설정은 무시됩니다.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">프로젝트 후원자가 되어</a>, <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">후원자 인증서</a>를 받습니다
-
+ The Certificate Signature is invalid!인증서 서명이 잘못되었습니다!
-
+ The Certificate is not suitable for this product.인증서가 이 제품에 적합하지 않습니다.
-
+ The Certificate is node locked.인증서가 노드 잠금 상태입니다.
-
+ The support certificate is not valid.
Error: %1지원 인증서가 잘못되었습니다.
오류: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!평가 기간이 만료되었습니다!!!
@@ -4229,47 +4234,47 @@ Error: %1
가져오기: %1
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.강제 프로그램 규칙을 비활성화하는 기간을 초로 입력하십시오.
-
+ No Recovery복구 안 함
-
+ No Messages메시지 없음
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>오류:</b> Sandboxie-Plus Manager(SandMan.exe)에 유효한 서명(SandMan.exe.sig)이 없습니다. <a href="https://sandboxie-plus.com/go.php?to=sbie-get">공식 다운로드 페이지</a>에서 신뢰할 수 있는 릴리스를 다운로드하십시오.
-
+ Maintenance operation failed (%1)유지 관리 작업에 실패했습니다 (%1)
-
+ Maintenance operation completed유지 보수 작업이 완료되었습니다
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Plus UI에서 이 기능은 기본 샌드박스 목록 보기에 통합되었습니다.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.박스/그룹의 상황에 맞는 메뉴를 사용하여 박스와 그룹을 다른 그룹으로 이동할 수 있습니다. 끌어서 놓기를 사용하여 항목을 이동할 수도 있습니다. 또는 ALT를 누른 상태에서 화살표 키를 사용하여 그룹 내에서 항목을 위아래로 이동할 수도 있습니다.<br />.샌드박스 메뉴에서 새 박스 및 그룹을 생성할 수 있습니다.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4278,219 +4283,219 @@ This file is part of Sandboxie and all changed done to it will be reverted next
이 파일은 Sandboxie의 일부이며 다음에 Sandboxie가 업데이트될 때 변경된 모든 내용이 되돌아갑니다.
-
+ Sandboxie config has been reloadedSandboxie 구성을 다시 불러왔습니다
-
+ Failed to execute: %1실행하지 못했습니다: %1
-
+ Failed to connect to the driver드라이버에 연결하지 못했습니다
-
+ Failed to communicate with Sandboxie Service: %1Sandboxie Service와 통신하지 못했습니다: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2호환되지 않는 Sandboxie %1이(가) 발견되었습니다. 호환 버전: %2
-
+ Can't find Sandboxie installation path.Sandboxie 설치 경로를 찾을 수 없습니다.
-
+ Failed to copy configuration from sandbox %1: %2%1에서 구성을 복사하지 못했습니다: %2
-
+ A sandbox of the name %1 already exists%1 이름의 샌드박스가 이미 있습니다
-
+ Failed to delete sandbox %1: %2샌드박스 %1을(를) 삭제하지 못했습니다: %2
-
+ The sandbox name can not be longer than 32 characters.샌드박스 이름은 32자를 초과할 수 없습니다.
-
+ The sandbox name can not be a device name.샌드박스 이름은 장치 이름이 될 수 없습니다.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.샌드박스 이름에는 공백으로 표시되는 문자, 숫자 및 밑줄만 포함될 수 있습니다.
-
+ Failed to terminate all processes모든 프로세스를 종료하지 못했습니다
-
+ Delete protection is enabled for the sandbox샌드박스에 대해 삭제 보호가 활성화되었습니다
-
+ All sandbox processes must be stopped before the box content can be deleted박스 내용을 삭제하려면 먼저 모든 샌드박스 프로세스를 중지해야 합니다
-
+ Error deleting sandbox folder: %1샌드박스 폴더 삭제 중 오류 발생: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.샌드박스의 모든 프로세스를 중지해야 이름을 바꿀 수 있습니다.
-
+ Failed to move directory '%1' to '%2''%1' 디렉터리를 '%2'로 이동하지 못했습니다
-
+ Failed to move box image '%1' to '%2'박스 이미지 '%1'을(를) '%2'(으)로 이동하지 못했습니다
-
+ This Snapshot operation can not be performed while processes are still running in the box.프로세스가 박스에서 실행 중인 동안에는 이 스냅샷 작업을 수행할 수 없습니다.
-
+ Failed to create directory for new snapshot새 스냅샷에 대한 디렉터리를 생성하지 못했습니다
-
+ Snapshot not found스냅샷을 찾을 수 없음
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.'%1' 스냅샷 디렉터리를 '%2'과(와) 병합하는 동안 오류가 발생했습니다. 스냅샷이 완전히 병합되지 않았습니다.
-
+ Failed to remove old snapshot directory '%1'이전 스냅샷 디렉터리 '%1'을(를) 제거하지 못했습니다
-
+ Can't remove a snapshot that is shared by multiple later snapshots이후 여러 스냅샷이 공유하는 스냅샷을 제거할 수 없습니다
-
+ You are not authorized to update configuration in section '%1''%1' 섹션의 구성을 업데이트할 수 있는 권한이 없습니다
-
+ Failed to set configuration setting %1 in section %2: %3%2 섹션에서 구성 설정 %1을 설정하지 못했습니다: %3
-
+ Can not create snapshot of an empty sandbox빈 샌드박스의 스냅샷을 생성할 수 없습니다
-
+ A sandbox with that name already exists같은 이름의 샌드박스가 이미 있습니다
-
+ The config password must not be longer than 64 characters구성 암호는 64자를 초과할 수 없습니다
-
+ The operation was canceled by the user사용자가 작업을 취소했습니다
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted마운트 해제된 샌드박스의 내용을 삭제할 수 없습니다
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded가져오기/내보내기 기능을 사용할 수 없습니다, 7z.dll을 불러올 수 없습니다
-
+ Failed to create the box archive박스 압축파일을 만들지 못했습니다
-
+ Failed to open the 7z archive7z 압축파일을 열지 못했습니다
-
+ Failed to unpack the box archive박스 압축파일의 압축을 풀지 못했습니다
-
+ The selected 7z file is NOT a box archive선택한 7z 파일이 박스 압축파일이 아닙니다
-
+ Operation failed for %1 item(s).%1 항목에 대한 작업에 실패했습니다.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4499,28 +4504,28 @@ This file is part of Sandboxie and all changed done to it will be reverted next
샌드박스에서 (예) 또는 샌드박스가 없는 (아니오) 웹 브라우저에서 %1을 여시겠습니까?
-
+ Remember choice for later.나중을 위해 선택을 기억합니다.
-
+ The supporter certificate is not valid for this build, please get an updated certificate후원자 인증서가 이 빌드에 유효하지 않습니다. 업데이트된 인증서를 받으십시오
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificate후원자 인증서가 %1일 전에 만료되었습니다. 업데이트된 인증서를 받으십시오
-
+ , but it remains valid for the current build, 하지만 현재 빌드에 대해서는 유효합니다
-
+ The supporter certificate will expire in %1 days, please get an updated certificate후원자 인증서가 %1일 후에 만료됩니다. 업데이트된 인증서를 받으십시오
@@ -8973,27 +8978,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK확인
-
+ Apply적용
-
+ Cancel취소
-
+ &Yes예(&Y)
-
+ &No아니오(&N)
diff --git a/SandboxiePlus/SandMan/sandman_nl.ts b/SandboxiePlus/SandMan/sandman_nl.ts
index a3475a46..3604b77a 100644
--- a/SandboxiePlus/SandMan/sandman_nl.ts
+++ b/SandboxiePlus/SandMan/sandman_nl.ts
@@ -1638,11 +1638,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All ProgramsAlle programma's
@@ -1653,9 +1653,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1Groep: %1
@@ -1690,7 +1690,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.Sjabloonwaarden kunnen niet worden bewerkt.
@@ -2109,82 +2109,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ AnyElke
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessToegang toestaan
-
+ Block using Windows Filtering PlatformBlokkeren met Windows Filtering Platform
-
+ Block by denying access to Network devicesBlokkeren door toegang tot netwerkapparaten te weigeren
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowToestaan
-
+ Block (WFP)Blokkeren (WFP)
-
+ Block (NDev)Blokkeren (NDev)
-
+ A non empty program name is required.
-
+ BlockBlokkeren
@@ -2845,22 +2845,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Wachten op map: %1
-
+ Deleting folder: %1Map verwijderen: %1
-
+ Merging folders: %1 >> %2Mappen samenvoegen: %1 >> %2
-
+ Finishing Snapshot Merge...Samenvoegen van snapshot afwerken...
@@ -2945,7 +2945,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
@@ -2975,27 +2975,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Auto removing sandbox %1
-
+ %1 Directory: %2
-
+ Application
-
+ Installation
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3003,37 +3003,37 @@ Please check if there is an update for sandboxie.
-
+ Don't show this message again for the current build.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.
-
+ Do you want the setup wizard to be omitted?
-
+ Reset ColumnsKolommen herstellen
-
+ Copy CellCel kopiëren
-
+ Copy RowRij kopiëren
-
+ Copy PanelDeelvenster kopiëren
@@ -3328,7 +3328,7 @@ Please check if there is an update for sandboxie.
-
+ About Sandboxie-PlusOver Sandboxie-Plus
@@ -3357,7 +3357,7 @@ Please check if there is an update for sandboxie.
-
+ Sandboxie-Plus Insider [%1]
@@ -3566,10 +3566,10 @@ Wilt u het opruimen uitvoeren?
-
-
-
-
+
+
+
+ Don't show this message again.Dit bericht niet meer weergeven
@@ -3631,7 +3631,7 @@ Deze box verhindert de toegang tot alle gegevenslocaties van gebruikers, behalve
-
+ Auto deleting content of %1Inhoud van %1 automatisch verwijderen
@@ -3640,19 +3640,19 @@ Deze box verhindert de toegang tot alle gegevenslocaties van gebruikers, behalve
Inhoud van %1 automatisch verwijderen
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Fout
-
+ Failed to stop all Sandboxie componentsStoppen van alle Sadboxie-onderdelen mislukt
-
+ Failed to start required Sandboxie componentsStarten van vereiste Sandboxie-onderdelen mislukt
@@ -3683,7 +3683,7 @@ Deze box verhindert de toegang tot alle gegevenslocaties van gebruikers, behalve
- Portable
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3692,12 +3692,12 @@ Ja zal %1 kiezen
Nee zal %2 kiezen
-
+ Default sandbox not found; creating: %1Standaard sandbox niet gevonden; aanmaken: %1
-
+ - NOT connected - NIET verbonden
@@ -3710,7 +3710,7 @@ Nee zal %2 kiezen
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>De geselecteerde functieset is alleen beschikbaar voor projectondersteuners. Processen die gestart zijn in een box met deze functieset ingeschakeld zonder ondersteunerscertificaat worden na 5 minuten beëindigd.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Word een projectondersteuner</a> en ontvang een <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">ondersteunerscertificaat</a>
@@ -3766,22 +3766,22 @@ Nee zal %2 kiezen
-
+ Only Administrators can change the config.Alleen administrators kunnen de config wijzigen.
-
+ Please enter the configuration password.Voer het configuratiewachtwoord in
-
+ Login Failed: %1Aanmelden mislukt: %1
-
+ Do you want to terminate all processes in all sandboxes?Wilt u alle processen in alle sandboxen beëindigen?
@@ -3790,107 +3790,107 @@ Nee zal %2 kiezen
Alles beëindigen zonder vragen
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus is gestart in portable modus en moet de nodige services aanmaken. Dit zal om administratieve rechten vragen.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.LET OP: een andere agent (waarschijnlijk SbieCtrl.exe) beheert deze Sandboxie-sessie al. Sluit deze eerst en maak opnieuw verbinding om over te nemen.
-
+ Executing maintenance operation, please wait...Onderhoudsbewerking uitvoeren. Even geduld...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Wilt u ook de verborgen berichtvensters herstellen (ja) of alleen alle logberichten (nee)?
-
+ The changes will be applied automatically whenever the file gets saved.De wijzigingen worden automatisch toegepast wanneer het bestand opgeslagen wordt.
-
+ The changes will be applied automatically as soon as the editor is closed.De wijzigingen worden automatisch toegepast van zodra de editor gesloten wordt.
-
+ Error Status: 0x%1 (%2)Foutstatus: 0x%1 (%2)
-
+ UnknownOnbekend
-
+ A sandbox must be emptied before it can be deleted.Een sandbox moet leeggemaakt worden voordat hij kan verwijderd worden.
-
+ Failed to copy box data filesKopiëren van gegevensbestanden van box mislukt
-
+ Failed to remove old box data filesVerwijderen van oude gegevensbestanden van box mislukt
-
+ Unknown Error Status: 0x%1Onbekende foutstatus: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseSluiten
-
+ &Find ...
-
+ All columns
@@ -3912,7 +3912,7 @@ Nee zal %2 kiezen
Sandboxie-Plus is een open source verderzetting van Sandboxie.<br />Bezoek <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> voor meer informatie.<br /><br />%3<br /><br />Driver-versie: %1<br />Functies: %2<br /><br />Pictogrammen van <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.Administratorrechten zijn nodig voor deze bewerking
@@ -3925,52 +3925,52 @@ Nee zal %2 kiezen
Installatiemap: %1
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus versie %1 (%2)
-
+ Current Config: %1
-
+ Data Directory: %1Gegevensmap: %1
-
+ for Personal use
-
+ - for Non-Commercial use ONLY
-
-
-
+
+
+ (%1) (%1)
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.Het programma %1 gestart in box %2 wordt over 5 minuten beëindigd omdat de box geconfigureerd was om functies te gebruiken die alleen beschikbaar zijn voor projectondersteuners.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.Box %1 is geconfigureerd om functies te gebruiken die uitsluitend beschikbaar zijn voor projectondersteuners. Deze voorinstellingen zullen worden genegeerd.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Word projectondersteuner</a> en ontvang een <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">ondersteunerscertificaat</a>
@@ -4013,121 +4013,126 @@ Nee zal %2 kiezen
-
+ Failed to configure hotkey %1, error: %2
-
+ The box %1 is configured to use features exclusively available to project supporters.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!
-
-
+
+ Don't ask in future
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Geef de duur op, in seconden, voor het uitschakelen van regels voor geforceerde programma's.
-
+ No Recovery
-
+ No Messages
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
+ Maintenance operation failed (%1)Onderhoudsbewerking mislukt (%1)
-
+ Maintenance operation completed
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4135,219 +4140,219 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Sandboxie config has been reloaded
-
+ Failed to execute: %1Uitvoeren mislukt: %1
-
+ Failed to connect to the driverVerbinden met de driver mislukt
-
+ Failed to communicate with Sandboxie Service: %1Communiceren met Sandboxie-service mislukt: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Er is een incompatibele Sandboxie %1 gevonden. Compatibele versies: %2
-
+ Can't find Sandboxie installation path.Kan het Sandboxie-installatiepad niet vinden
-
+ Failed to copy configuration from sandbox %1: %2Configuratie kopiëren uit sandbox %1 mislukt: %2
-
+ A sandbox of the name %1 already existsEr bestaat al een sandbox met de naam %1
-
+ Failed to delete sandbox %1: %2Verwijderen van sandbox %1 mislukt: %2
-
+ The sandbox name can not be longer than 32 characters.De sandbox-naam mag niet langer zijn dan 32 tekens.
-
+ The sandbox name can not be a device name.De sandbox-naam mag geen apparaatnaam zijn.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.De sandbox-naam mag alleen letters, cijfers en underscores bevatten. Underscores worden als spaties weergegeven.
-
+ Failed to terminate all processesBeëindigen van alle processen mislukt
-
+ Delete protection is enabled for the sandboxBeveiliging tegen verwijdering is ingeschakeld voor de sandbox
-
+ All sandbox processes must be stopped before the box content can be deletedAlle sandbox-processen moeten worden gestopt voordat de inhoud van de box kan worden verwijderd
-
+ Error deleting sandbox folder: %1Fout bij het verwijderen van de sandbox-map: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move directory '%1' to '%2'Verplaatsen van map '%1' naar '%2' mislukt
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Deze snapshot-bewerking kan niet uitgevoerd worden terwijl processen actief zijn in de box.
-
+ Failed to create directory for new snapshotAanmaken van map voor nieuwe snapshot mislukt
-
+ Snapshot not foundSnapshot niet gevonden
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Fout bij samenvoegen van snapshot-map '%1' met '%2'. De snapshot is niet volledig samengevoegd.
-
+ Failed to remove old snapshot directory '%1'Verwijderen van oude snapshot-map '%1' mislukt
-
+ Can't remove a snapshot that is shared by multiple later snapshotsKan geen snapshot verwijderen die gedeeld is door meerdere latere snapshots
-
+ You are not authorized to update configuration in section '%1'U hebt geen toestemming om de configuratie bij te werken in sectie '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Instellen van configuratie-instelling %1 in sectie %2 mislukt: %3
-
+ Can not create snapshot of an empty sandboxKan geen snapshot aanmaken van een lege sandbox
-
+ A sandbox with that name already existsEr bestaat al een sandbox met die naam
-
+ The config password must not be longer than 64 charactersHet configuratiewachtwoord mag niet langer zijn dan 64 tekens
-
+ The operation was canceled by the userDe bewerking is geannuleerd door de gebruiker
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded
-
+ Failed to create the box archive
-
+ Failed to open the 7z archive
-
+ Failed to unpack the box archive
-
+ The selected 7z file is NOT a box archive
-
+ Operation failed for %1 item(s).Bewerking mislukt voor %1 item(s).
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4356,7 +4361,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Wilt u %1 openen in een gesandboxte (ja) of niet-gesandboxte (nee) webbrowser?
-
+ Remember choice for later.Keuze onthouden voor later.
@@ -4413,23 +4418,23 @@ This file is part of Sandboxie and all changed done to it will be reverted next
<p>De nieuwe Sandboxie-Plus is naar de volgende locatie gedownload:</p><p><a href="%2">%1</a></p><p>Wilt u de installatie starten? Als er gesandboxte programma's draaien, worden die beëindigd.</p>
-
+ The supporter certificate is not valid for this build, please get an updated certificateHet ondersteunerscertificaat is niet geldig voor deze build. Haal een bijgewerkt certificaat op
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificateHet ondersteunerscertificaat is vervallen%1. Haal een bijgewerkt certificaat op.
-
+ , but it remains valid for the current build, maar het blijft geldig voor de huidige build
-
+ The supporter certificate will expire in %1 days, please get an updated certificateHet ondersteunerscertificaat vervalt over %1 dagen. Haal een bijgewerkt certificaat op.
@@ -8790,27 +8795,27 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
QPlatformTheme
-
+ OKOk
-
+ ApplyToepassen
-
+ CancelAnnuleren
-
+ &YesJa
-
+ &NoNee
diff --git a/SandboxiePlus/SandMan/sandman_pl.ts b/SandboxiePlus/SandMan/sandman_pl.ts
index 11ae69cc..a98bab80 100644
--- a/SandboxiePlus/SandMan/sandman_pl.ts
+++ b/SandboxiePlus/SandMan/sandman_pl.ts
@@ -1997,9 +1997,9 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
-
-
-
+
+
+ Group: %1Grupa: %1
@@ -2205,11 +2205,11 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
-
-
-
-
-
+
+
+
+
+ All ProgramsWszystkie programy
@@ -2244,7 +2244,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
-
+ Template values can not be edited.Wartości szablonów nie mogą być zmienione.
@@ -2373,82 +2373,82 @@ Wybierz folder, który zawiera ten plik.
-
+ Anykażdy
-
+ TCP
-
+ UDP
-
+ ICMP
-
+ Allow accessZezwól na dostęp
-
+ Block using Windows Filtering PlatformBlokuj przy użyciu platformy filtrowania systemu Windows
-
+ Block by denying access to Network devicesBlokuj, odmawiając dostępu do urządzeń sieciowych
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowPozwól
-
+ Block (WFP)Blokada (WFP)
-
+ Block (NDev)Blokada (NDev)
-
+ A non empty program name is required.Wymagana jest niepusta nazwa programu.
-
+ BlockBlokada
@@ -2949,22 +2949,22 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
CSandBox
-
+ Waiting for folder: %1Oczekiwanie na folder: %1
-
+ Deleting folder: %1Usuwanie folderu: %1
-
+ Merging folders: %1 >> %2Scalanie folderów: %1 >> %2
-
+ Finishing Snapshot Merge...Kończenie scalania migawek...
@@ -3049,7 +3049,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
@@ -3089,42 +3089,42 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
<a href="sbie://update/check" style="color: red;">Dostępna jest nowa aktualizacja Sandboxie-Plus v%1</a>
-
+ Do you want the setup wizard to be omitted?Czy chcesz pominąć kreatora konfiguracji?
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?Czy chcesz otworzyć %1 w przeglądarce WWW w piaskownicy lub bez piaskownicy?
-
+ SandboxedW piaskownicy
-
+ UnsandboxedBez piaskownicy
-
+ Reset ColumnsZresetuj kolumny
-
+ Copy CellSkopiuj komórkę
-
+ Copy RowSkopiuj linijkę
-
+ Copy PanelSkopiuj wszystko
@@ -3297,7 +3297,7 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
-
+ Sandboxie-Plus Insider [%1]Tester Sandboxie-Plus [%1]
@@ -3581,42 +3581,42 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Automatyczne Usuwanie %1 Zawartości
-
+ Current Config: %1Bieżąca konfiguracja: %1
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Wybrany zestaw funkcji jest dostępny tylko dla sponsorów projektu. Procesy rozpoczęte w boksie z włączonym zestawem funkcji bez certyfikatu wsparcia zostaną zakończone po 5 minutach.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get- cert">Zostań sponsorem</a> i otrzymaj <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certyfikat wsparcia</a>
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Proszę wpisać czas (w sekundach) wyłączenia reguł Programów wymuszonych.
-
+ Error Status: 0x%1 (%2)Kod błędu: 0x%1 (%2)
-
+ UnknownNieznane
-
+ Failed to copy box data filesBłąd przy kopiowaniu plików danych boksu
-
+ Failed to remove old box data filesBłąd przy usuwaniu starych plików danych boksu
-
+ Unknown Error Status: 0x%1Nieznany kod błędu: 0x%1
@@ -3732,7 +3732,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
-
+ About Sandboxie-PlusO Sandboxie-Plus
@@ -3771,10 +3771,10 @@ Do you want to do the clean up?
-
-
-
-
+
+
+
+ Don't show this message again.Nie pokazuj ponownie tej wiadomości.
@@ -3819,37 +3819,37 @@ Do you want to do the clean up?
-
+ Auto removing sandbox %1Automatyczne usuwanie piaskownicy %1
-
+ %1 Directory: %2%1 Katalog: %2
-
+ ApplicationAplikacja
-
+ InstallationInstalacja
-
+ for Personal use do użytku osobistego
-
+ - for Non-Commercial use ONLY - TYLKO do użytku niekomercyjnego
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3857,111 +3857,116 @@ Please check if there is an update for sandboxie.
-
+ Don't show this message again for the current build.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.
-
+ Failed to configure hotkey %1, error: %2
-
-
-
+
+
+ (%1) (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.Skrzynka %1 jest skonfigurowana do korzystania z funkcji dostępnych wyłącznie dla osób wspierających projekt.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.Skrzynka %1 jest skonfigurowana do korzystania z funkcji, które wymagają <b>zaawansowanego</b> certyfikatu wsparcia.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Uaktualnij swój certyfikat</a>, aby odblokować zaawansowane funkcje.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.Wybrana funkcja wymaga <b>zaawansowanego</b> certyfikatu wsparcia.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Wybrany zestaw funkcji jest dostępny tylko dla osób wspierających projekt.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Zostań osobą wspierającą projekt</a > i otrzymaj <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certyfikat wsparcia</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Certyfikat, którego próbujesz użyć, został zablokowany, co oznacza, że został unieważniony z jakiegoś powodu. Każda próba jego użycia stanowi naruszenie warunków użytkowania!
-
+ The Certificate Signature is invalid!The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.Certyfikat nie jest odpowiedni dla tego produktu.
-
+ The Certificate is node locked.Certyfikat jest zablokowany w węźle.
-
+ The support certificate is not valid.
Error: %1Certyfikat wsparcia jest nieważny.
Błąd: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!Upłynął okres oceny!
-
-
+
+ Don't ask in futureNie pytaj w przyszłości
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Czy chcesz zakończyć wszystkie procesy w zaszyfrowanych piaskownicach i odmontować je?
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Błąd
-
+ Failed to stop all Sandboxie componentsBłąd przy zatrzymywaniu komponentów Sandboxie
-
+ Failed to start required Sandboxie componentsBłąd w inicjacji komponentów Sandboxie
@@ -3978,17 +3983,17 @@ Błąd: %1
Katalog instalacji: %1
-
+ Sandboxie-Plus Version: %1 (%2)Wersja Sandboxie-Plus: %1 (%2)
-
+ Data Directory: %1Katalog danych: %1
-
+ Default sandbox not found; creating: %1Domyślna piaskownica nie znaleziona, więc zostanie odtworzona: %1
@@ -4018,7 +4023,7 @@ Błąd: %1
Wykonywanie przy usuwaniu boksu: %1
-
+ Auto deleting content of %1Automatyczne usuwanie zawartości %1
@@ -4035,7 +4040,7 @@ Błąd: %1
- przenośna
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -4044,25 +4049,25 @@ Tak, wybierze: %1
Nie, wybierze: %2
-
+ - NOT connected - NIE połączone
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.Program %1 uruchomiony w boksie %2 zostanie zakończony za 5 minut, ponieważ boks został skonfigurowanya do korzystania z funkcji dostępnych wyłącznie dla sponsorów projektu.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.Boks %1 jest skonfigurowany do używania funkcji dostępnych wyłącznie dla sponsorów projektu, te wstępne ustawienia będą ignorowane.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Zostań sponsorem projektu</a>, i otrzymaj <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certyfikat wsparcia</a>
@@ -4133,17 +4138,17 @@ Nie, wybierze: %2
-
+ Only Administrators can change the config.Tylko administratorzy mogą zmieniać ustawienia piaskownicy.
-
+ Please enter the configuration password.Proszę wpisać hasło konfiguracji.
-
+ Login Failed: %1Nieudane logowanie: %1
@@ -4165,7 +4170,7 @@ Nie, wybierze: %2
Importowanie: %1
-
+ Do you want to terminate all processes in all sandboxes?Czy chcesz zakończyć wszystkie procesy ww wszystkich piaskowniach?
@@ -4174,62 +4179,62 @@ Nie, wybierze: %2
W przyszłości zakańczaj bez pytania
-
+ No RecoveryBrak odzyskiwania
-
+ No MessagesBrak wiadomości
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus został uruchomiony w trybie przenośnym i musi utworzyć niezbędne usługi. Spowoduje to wyświetlenie pytania o uprawnienia administracyjne.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.UWAGA: Inny agent (prawdopodobnie SbieCtrl.exe) już zarządza tą sesją Sandboxie, proszę go najpierw zamknąć i połączyć się ponownie, aby przejąć kontrolę.
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>BŁĄD:</b> Menedżer Sandboxie-Plus (SandMan.exe) nie ma prawidłowego podpisu (SandMan.exe.sig). Pobierz zaufaną wersję z <a href="https://sandboxie-plus.com/go.php?to=sbie-get">oficjalnej strony pobierania</a>.
-
+ Maintenance operation failed (%1)Operacja konserwacji nie powiodła się (%1)
-
+ Maintenance operation completedZakończono operację konserwacji
-
+ Executing maintenance operation, please wait...Wykonywanie operacji zarzadzania, proszę czekać…
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.W interfejsie SB+, funkcjonalność ta została zintegrowana z głównym widokiem listy piaskownicy.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Korzystając z menu kontekstowego boksu/grupy, możesz przenosić boksy i grupy do innych grup. Możesz także użyć przeciągania i upuszczania, aby przenosić elementy. Możesz także użyć klawiszy strzałek, przytrzymując klawisz ALT, aby przenosić elementy w górę iw dół w ramach ich grupy.<br />Możesz tworzyć nowe boksy i grupy z menu piaskownicy.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Czy chcesz również zresetować ukrywany komunikat boksów (tak) czy tylko wszystkie komunikaty dziennika (nie)?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4238,239 +4243,239 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ten plik jest częścią Sandboxie i wszystkie zmiany w nim dokonane zostaną cofnięte przy następnej aktualizacji Sandboxie.
-
+ The changes will be applied automatically whenever the file gets saved.Zmiany będą zastosowane automatycznie jak tylko plik zostanie zapisany.
-
+ The changes will be applied automatically as soon as the editor is closed.Zmiany będą zastosowane automatycznie jak tylko edytor zostanie zakończony.
-
+ Sandboxie config has been reloadedKonfiguracja piaskownicy została ponownie załadowana
-
+ Administrator rights are required for this operation.Ta operacja wymaga uprawnień administratora.
-
+ Failed to execute: %1Błąd przy wykonywaniu: %1
-
+ Failed to connect to the driverBłąd przy połączeniu ze sterownikiem
-
+ Failed to communicate with Sandboxie Service: %1Błąd przy komunikacji z usługą: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Znaleziono niekompatybilną piaskownicę %1. Kompatybilne wersje: %2
-
+ Can't find Sandboxie installation path.Nie można znaleźć ścieżki instalacji Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Błąd przy kopiowaniu konfiguracji piaskownicy %1: %2
-
+ A sandbox of the name %1 already existsPiaskownica o nazwie %1 już istnieje
-
+ Failed to delete sandbox %1: %2Błąd przy usuwaniu piaskownicy %1: %2
-
+ The sandbox name can not be longer than 32 characters.Nazwy piaskownicy nie mogą być dłuższe niż 32 znaki.
-
+ The sandbox name can not be a device name.Nazwy piaskownicy nie mogą być nazwami urządzeń.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Nazwa piaskownicy może zawierać tylko litery, cyfry i podkreślenia, które są wyświetlane jako spacje.
-
+ Failed to terminate all processesBłąd przy zakańczaniu wszystkich procesów
-
+ Delete protection is enabled for the sandboxOchrona przed usunięciem jest aktywna dla tej piaskownicy
-
+ All sandbox processes must be stopped before the box content can be deletedPrzed usunięciem zawartości skrzynki wszystkie procesy piaskownicy muszą zostać zatrzymane
-
+ Error deleting sandbox folder: %1Błąd usuwania foldera piaskownicy: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.Wszystkie procesy w piaskownicy muszą zostać zatrzymane przed zmianą jej nazwy.
-
+ A sandbox must be emptied before it can be deleted.Przed usunięciem piaskownicy należy ją opróżnić.
-
+ Failed to move directory '%1' to '%2'Błąd przy przenoszeniu foldera %1 do %2
-
+ Failed to move box image '%1' to '%2'Nie udało się przenieść obrazu skrzynki '%1' do '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Tej operacji migawki nie można wykonać, gdy procesy są nadal uruchomione w boksie.
-
+ Failed to create directory for new snapshotBłąd przy tworzeniu foldera dla nowej migawki
-
+ Snapshot not foundNie znaleziono migawki
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Błąd podczas łączenia katalogów migawek „%1” z „%2”, migawka nie została w pełni scalona.
-
+ Failed to remove old snapshot directory '%1'Błąd przy usuwaniu starego foldera migawki '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsNie można usunąć migawki, która jest używana przez inne migawki
-
+ You are not authorized to update configuration in section '%1'Brak autoryzacji do zmian konfiguracji w tej sekcji '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Błąd przy zmianie ustawienia %1 w sekcji %2: %3
-
+ Can not create snapshot of an empty sandboxNie można utworzyć migawki pustej piaskownicy
-
+ A sandbox with that name already existsPiaskownica o tej nazwie już istnieje
-
+ The config password must not be longer than 64 charactersHasło konfiguracyjne nie może być dłuższe niż 64 znaki
-
+ The operation was canceled by the userOperacja została anulowana przez użytkownika
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deletedZawartość niezamontowanej piaskownicy nie może zostać usunięta
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedImport/Export nie jest dostępny, 7z.dll nie może być załadowany
-
+ Failed to create the box archiveNie udało się utworzyć archiwum boksu
-
+ Failed to open the 7z archiveNie udało się otworzyć archiwum 7z
-
+ Failed to unpack the box archiveNie udało się rozpakować archiwum boksu
-
+ The selected 7z file is NOT a box archiveWybrany plik 7z NIE jest archiwum boksu
-
+ Operation failed for %1 item(s).Błąd przy wykonywaniu %1 operacji.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4479,38 +4484,38 @@ Ten plik jest częścią Sandboxie i wszystkie zmiany w nim dokonane zostaną co
Czy przeglądarka WWW z %1 ma być otwarta w piaskownicy (tak), czy poza piaskownicą (nie)?
-
+ Remember choice for later.Zapamiętaj wybór na później.
-
+ Case SensitiveI don't know what it's for
-
+ RegExp
-
+ HighlightPodkreśl
-
+ CloseZamknij
-
+ &Find ...&Znajdź...
-
+ All columnsWszystkie kolumny
@@ -4575,22 +4580,22 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
<p>Nowa wersja Sandboxie-Plus zostanie pobrana z:</p><p><a href="%2">%1</a></p><p>Czy chcesz rozpocząć instalację? Jeśli jakieś programy działają w trybie piaskownicy, zostaną zakończone.</p>
-
+ The supporter certificate is not valid for this build, please get an updated certificateCertyfikat wsparcia jest nieważny dla tej kompilacji, proszę o zaktualizowanie certyfikatu
-
+ The supporter certificate has expired%1, please get an updated certificate%1Wygasł certyfikat wsparcia, proszę o zaktualizowanie certyfikatu
-
+ , but it remains valid for the current build, ale zachowuje ważność dla obecnej kompilacji
-
+ The supporter certificate will expire in %1 days, please get an updated certificateCertyfikat wsparcia wygaśnie za %1 dni, proszę o zaktualizowanie certyfikatu
@@ -9083,27 +9088,27 @@ Należy pamiętać, że te wartości są obecnie specyficzne dla użytkownika i
QPlatformTheme
-
+ OKOK
-
+ ApplyZastosuj
-
+ CancelAnuluj
-
+ &Yes&Tak
-
+ &No&Nie
diff --git a/SandboxiePlus/SandMan/sandman_pt_BR.ts b/SandboxiePlus/SandMan/sandman_pt_BR.ts
index 377c23a7..d24839bf 100644
--- a/SandboxiePlus/SandMan/sandman_pt_BR.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_BR.ts
@@ -1688,11 +1688,11 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
-
-
-
-
+
+
+
+
+ All ProgramsTodos os Programas
@@ -1703,9 +1703,9 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
-
-
+
+
+ Group: %1Grupo: %1
@@ -1740,7 +1740,7 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
+ Template values can not be edited.Os valores de modelo não podem ser editados.
@@ -2183,82 +2183,82 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
+ AnyQualquer
-
+ TCP
-
+ UDP
-
+ ICMP
-
+ Allow accessPermitir acesso
-
+ Block using Windows Filtering PlatformBloquear usando a Plataforma de Filtragem do Windows
-
+ Block by denying access to Network devicesBloquear, negando acesso a Dispositivos de rede
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowPermitir
-
+ Block (WFP)Bloquear (WFP)
-
+ Block (NDev)Bloquear (NDev)
-
+ A non empty program name is required.É necessário um nome de programa não vazio.
-
+ BlockBloquear
@@ -2926,17 +2926,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Aguardando pela pasta: %1
-
+ Deleting folder: %1Excluíndo pasta: %1
-
+ Merging folders: %1 >> %2Mesclando pastas: %1 >> %2
@@ -2945,7 +2945,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Mesclando pastas: %1 >> %2
-
+ Finishing Snapshot Merge...Mesclagem de Instantâneo Finalizada...
@@ -3035,7 +3035,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
@@ -3050,22 +3050,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Clique para aplicar a atualização
-
+ %1 Directory: %2Diretório de %1: %2
-
+ ApplicationAplicativo
-
+ Installationinstalação
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3073,84 +3073,84 @@ Please check if there is an update for sandboxie.
-
+ Don't show this message again for the current build.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.
-
+ Do you want the setup wizard to be omitted?
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
-
+
+ Don't ask in futureNão perguntar no futuro
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Reset ColumnsRedefinir Colunas
-
+ Copy CellCopiar Célula
-
+ Copy RowCopiar Linha
-
+ Copy PanelCopiar Painel
@@ -3445,7 +3445,7 @@ Error: %1
-
+ About Sandboxie-PlusSobre o Sandboxie-Plus
@@ -3474,7 +3474,7 @@ Error: %1
-
+ Sandboxie-Plus Insider [%1]
@@ -3673,22 +3673,27 @@ Error: %1
Horário|Nome da Caixa|Caminho do Arquivo
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -3734,23 +3739,23 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Versão do Sbie+: %1 (%2)
-
+ The supporter certificate is not valid for this build, please get an updated certificateO certificado de suporte não é válido para essa compilação, obtenha um certificado atualizado
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificateO certificado de suporte expirou %1, por favor obtenha um certificado atualizado
-
+ , but it remains valid for the current build, mas permanece válido para a compilação atual
-
+ The supporter certificate will expire in %1 days, please get an updated certificateO certificado de suporte irá expirar em %1 dias, obtenha um certificado atualizado
@@ -3763,12 +3768,12 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
O programa %1 iniciado na caixa %2 será terminado em 5 minutos, porque a caixa foi configurada para usar recursos exclusivamente disponíveis para projetos suportados.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um defensor do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>O conjunto de recursos selecionados só estaram disponíveis para apoiadores do projeto. Os processos iniciados em uma caixa com esse conjunto de recursos sem um certificado de suporte serão encerrados após 5 minutos.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Tornar-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!O período de avaliação expirou!!!
@@ -3791,47 +3796,47 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Importando: %1
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Insira a duração, em segundos, para desativar as regras de Programas Forçados.
-
+ No RecoverySem recuperação
-
+ No MessagesSem mensagens
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERRO:</b> O Sandboxie-Plus Manager (SandMan.exe) não possui uma assinatura válida (SandMan.exe.sig). Faça o download de uma versão confiável da <a href="https://sandboxie-plus.com/go.php?to=sbie-get">página de download oficial</a>.
-
+ Maintenance operation failed (%1)Falha na operação de manutenção (%1)
-
+ Maintenance operation completedOperação de manutenção concluída
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Na Interface Plus, essa funcionalidade foi integrada à exibição principal da lista de caixa.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Usando o menu de contexto de caixa/grupo, você pode mover caixas e grupos para outros grupos. Você também pode usar arrastar e soltar para mover os itens. Como alternativa, você também pode usar as teclas de seta enquanto mantém ALT pressionada para mover itens para cima e para baixo dentro de seu grupo.<br />Poderá criar novas caixas e grupos no menu do Sandbox.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3840,129 +3845,129 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Este arquivo faz parte do Sandboxie e todas as alterações feitas nele serão revertidas na próxima vez que o Sandboxie for atualizado.
-
+ Sandboxie config has been reloadedA configuração do Sandboxie foi recarregada
-
+ Error Status: 0x%1 (%2)Status do Erro: 0x%1 (%2)
-
+ UnknownDesconhecido
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move box image '%1' to '%2'
-
+ Failed to copy box data filesFalha ao copiar os arquivos de dados da caixa
-
+ Failed to remove old box data filesFalha ao remover arquivos de dados de caixas antigas
-
+ The operation was canceled by the userA operação foi cancelada pelo usuário
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedImportação/Exportação não disponível, 7z.dll não pôde ser carregada
-
+ Failed to create the box archiveFalha ao criar o arquivo da caixa
-
+ Failed to open the 7z archiveFalha ao abrir o arquivo 7z
-
+ Failed to unpack the box archiveFalha ao descompactar o arquivo da caixa
-
+ The selected 7z file is NOT a box archiveO arquivo 7z selecionado NÃO é um arquivo de caixa
-
+ Unknown Error Status: 0x%1Status de Erro Desconhecido: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case SensitiveMaiúsculas e minúsculas
-
+ RegExp
-
+ HighlightRealçar
-
+ CloseFechar
-
+ &Find ...&Localizar ...
-
+ All columnsTodas as colunas
@@ -4000,10 +4005,10 @@ Você quer fazer a limpeza?
-
-
-
-
+
+
+
+ Don't show this message again.Não mostrar essa mensagem novamente.
@@ -4028,19 +4033,19 @@ Você quer fazer a limpeza?
Excluindo automaticamente o conteúdo %1
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Erro
-
+ Failed to stop all Sandboxie componentsFalha ao parar todos os componentes do Sandboxie
-
+ Failed to start required Sandboxie componentsFalha ao iniciar os componentes exigidos do Sandboxie
@@ -4083,7 +4088,7 @@ Você quer fazer a limpeza?
- Portable
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -4142,93 +4147,93 @@ Não vou escolher: %2
-
+ Auto deleting content of %1Excluindo automaticamente o conteúdo de %1
-
+ Auto removing sandbox %1Removendo automaticamente a caixa %1
-
+ Sandboxie-Plus Version: %1 (%2)Versão do Sandboxie-Plus: %1 (%2)
-
+ Current Config: %1Configuração atual: %1
-
+ Data Directory: %1Diretório de dados: %1
-
+ for Personal use para uso Pessoal
-
+ - for Non-Commercial use ONLY - APENAS para uso Não Comercial
-
+ Default sandbox not found; creating: %1Caixa de areia padrão não encontrada; Criando: %1
-
+ - NOT connected - NÃO conectado
-
+ Failed to configure hotkey %1, error: %2
-
-
-
+
+
+ (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.O programa %1 iniciado na caixa %2 será encerrado em 5 minutos porque a caixa foi configurada para usar recursos disponíveis exclusivamente para apoiadores do projeto.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.A caixa %1 está configurada para usar recursos disponíveis exclusivamente para apoiadores do projeto, essas predefinições serão ignoradas.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de apoiador</a>
@@ -4296,22 +4301,22 @@ Não vou escolher: %2
-
+ Only Administrators can change the config.Apenas administradores podem alterar a configuração.
-
+ Please enter the configuration password.Por favor, insira a senha de configuração.
-
+ Login Failed: %1Falha no Login: %1
-
+ Do you want to terminate all processes in all sandboxes?Você deseja encerrar todos os processos em todas as caixas?
@@ -4324,32 +4329,32 @@ Não vou escolher: %2
Insira a duração para desabilitar programas forçados.
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus foi iniciado no modo portable é preciso criar os serviços necessários. Isso solicitará privilégios administrativos.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.CUIDADO: Outro agente (provavelmente SbieCtrl.exe) já está gerenciando essa sessão de sandboxie, por favor, feche-o primeiro e reconecte para assumir o controle.
-
+ Executing maintenance operation, please wait...Executando operação de manutenção, por favor aguarde...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Você também deseja redefinir as caixas de mensagens ocultas (sim) ou apenas todas as mensagens de log (não)?
-
+ The changes will be applied automatically whenever the file gets saved.As alterações serão aplicadas automaticamente sempre que o arquivo for salvo.
-
+ The changes will be applied automatically as soon as the editor is closed.As alterações serão aplicadas automaticamente assim que o editor for fechado.
@@ -4358,82 +4363,82 @@ Não vou escolher: %2
Status de Erro: %1
-
+ Administrator rights are required for this operation.Direitos de administrador são necessários para essa operação.
-
+ Failed to execute: %1Falha ao executar: %1
-
+ Failed to connect to the driverFalha ao se conectar com o driver
-
+ Failed to communicate with Sandboxie Service: %1Falha ao se comunicar com o serviço Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Um Sandboxie %1 incompatível foi encontrado. Versões compatíveis: %2
-
+ Can't find Sandboxie installation path.Não é possível encontrar o caminho de instalação do Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Falha ao copiar a configuração do sandbox %1: %2
-
+ A sandbox of the name %1 already existsUma caixa de areia com o nome %1 já existe
-
+ Failed to delete sandbox %1: %2Falha ao excluir sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.O nome da caixa de área não pode ter mais de 32 caracteres.
-
+ The sandbox name can not be a device name.O nome da caixa de areia não pode ser um nome de dispositivo.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.O nome da caixa de areia pode conter apenas letras, números e sublinhados que são exibidos como espaços.
-
+ Failed to terminate all processesFalha ao terminar todos os processos
-
+ Delete protection is enabled for the sandboxA proteção de exclusão está ativada para a caixa de areia
-
+ All sandbox processes must be stopped before the box content can be deletedTodos os processos do sandbox devem ser interrompidos antes que o conteúdo da caixa possa ser excluído
-
+ Error deleting sandbox folder: %1Erro ao excluir a pasta da caixa de areia: %1
@@ -4442,42 +4447,42 @@ Não vou escolher: %2
Uma caixa de areia deve ser esvaziada antes de ser renomeada.
-
+ A sandbox must be emptied before it can be deleted.Uma caixa de areia deve ser esvaziada antes de ser excluída.
-
+ Failed to move directory '%1' to '%2'Falha ao mover diretório '%1' para '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Essa operação de instantâneo não pode ser executada enquanto os processos ainda estiverem em execução na caixa.
-
+ Failed to create directory for new snapshotFalha ao criar diretório para novo instantâneo
-
+ Snapshot not foundInstantâneo não encontrado
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Erro ao mesclar os diretórios de instantâneo '%1' com '%2', o instantâneo não foi totalmente mesclado.
-
+ Failed to remove old snapshot directory '%1'Falha ao remover diretório de instantâneo antigo '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsNão é possível remover instantâneos compartilhado por vários instantâneos posteriores
@@ -4486,27 +4491,27 @@ Não vou escolher: %2
Falha ao remover RegHive antigo
-
+ You are not authorized to update configuration in section '%1'Você não está autorizado a atualizar a configuração na seção '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Falha ao definir a definição de configuração %1 na seção %2: %3
-
+ Can not create snapshot of an empty sandboxNão é possível criar instantâneo de uma caixa de areia vazia
-
+ A sandbox with that name already existsUma caixa de areia com esse nome já existe
-
+ The config password must not be longer than 64 charactersA senha de configuração não deve ter mais de 64 caracteres
@@ -4515,7 +4520,7 @@ Não vou escolher: %2
Status de erro desconhecido: %1
-
+ Operation failed for %1 item(s).A operação falhou para %1 item(ns).
@@ -4524,7 +4529,7 @@ Não vou escolher: %2
Deseja abrir %1 em um Navegador web na caixa de areia (sim) ou fora da caixa de areia (não)?
-
+ Remember choice for later.Lembrar escolha mais tarde.
@@ -9119,27 +9124,27 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
QPlatformTheme
-
+ OK
-
+ ApplyAplicar
-
+ CancelCancelar
-
+ &Yes&Sim
-
+ &No&Não
diff --git a/SandboxiePlus/SandMan/sandman_pt_PT.ts b/SandboxiePlus/SandMan/sandman_pt_PT.ts
index 08cee2cb..e76d9ed8 100644
--- a/SandboxiePlus/SandMan/sandman_pt_PT.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_PT.ts
@@ -1688,11 +1688,11 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
-
-
-
-
+
+
+
+
+ All ProgramsTodos os Programas
@@ -1703,9 +1703,9 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
-
-
+
+
+ Group: %1Grupo: %1
@@ -1740,7 +1740,7 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
+ Template values can not be edited.Os valores do modelo não podem ser editados.
@@ -2183,82 +2183,82 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
+ AnyQualquer
-
+ TCP
-
+ UDP
-
+ ICMP
-
+ Allow accessPermitir acesso
-
+ Block using Windows Filtering PlatformBloquear usando a Plataforma de Filtragem do Windows
-
+ Block by denying access to Network devicesBloquear negando acesso a Dispositivos de rede
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowPermitir
-
+ Block (WFP)Bloquear (WFP)
-
+ Block (NDev)Bloquear (NDev)
-
+ A non empty program name is required.É necessário um nome de programa não vazio.
-
+ BlockBloquear
@@ -2926,17 +2926,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1A aguar pela pasta: %1
-
+ Deleting folder: %1A apagar pasta: %1
-
+ Merging folders: %1 >> %2A fundir pastas: %1 >> %2
@@ -2945,7 +2945,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
A fundir pastas: %1 >> %2
-
+ Finishing Snapshot Merge...A fundir Instantâneo Finalizada...
@@ -3035,7 +3035,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
@@ -3050,22 +3050,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Clique para aplicar a actualização
-
+ %1 Directory: %2Pasta de %1: %2
-
+ ApplicationAplicação
-
+ Installationinstalação
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3073,84 +3073,84 @@ Please check if there is an update for sandboxie.
-
+ Don't show this message again for the current build.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.
-
+ Do you want the setup wizard to be omitted?
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
-
+
+ Don't ask in futureNão perguntar no futuro
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Reset ColumnsRepor Colunas
-
+ Copy CellCopiar Célula
-
+ Copy RowCopiar Linha
-
+ Copy PanelCopiar Painel
@@ -3445,7 +3445,7 @@ Error: %1
-
+ About Sandboxie-PlusAcerca do Sandboxie-Plus
@@ -3474,7 +3474,7 @@ Error: %1
-
+ Sandboxie-Plus Insider [%1]
@@ -3673,22 +3673,27 @@ Error: %1
Horário|Nome da Caixa|Localização do Ficheiro
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -3734,23 +3739,23 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Versão do Sbie+: %1 (%2)
-
+ The supporter certificate is not valid for this build, please get an updated certificateO certificado de suporte não é válido para esta compilação, obtenha um certificado actualizado
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificateO certificado de suporte expirou %1, por favor obtenha um certificado actualizado
-
+ , but it remains valid for the current build, mas permanece válido para a compilação actual
-
+ The supporter certificate will expire in %1 days, please get an updated certificateO certificado de suporte irá expirar em %1 dias, obtenha um certificado actualizado
@@ -3768,12 +3773,12 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
O programa %1 iniciado na caixa %2 será terminado em 5 minutos, porque a caixa foi configurada para utilizar recursos exclusivamente disponíveis para projetos suportados.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um defensor do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>O conjunto de recursos selecionado só está disponível para apoiadores do projetar. Os processos iniciados em uma caixa com este conjunto de recursos são ativados sem um certificado de suporte serão rescindidos após 5 minutos.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Tornar-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!O período de avaliação expirou!!!
@@ -3796,47 +3801,47 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Importando: %1
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Introduza a duração, em segundos, para desactivar as regras de Programas Forçados.
-
+ No RecoverySem recuperação
-
+ No MessagesSem mensagens
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERRO:</b> O Sandboxie-Plus Manager (SandMan.exe) não possui uma assinatura válida (SandMan.exe.sig). Faça o download de uma versão confiável da <a href="https://sandboxie-plus.com/go.php?to=sbie-get">página de download oficial</a>.
-
+ Maintenance operation failed (%1)Falha na operação de manutenção (%1)
-
+ Maintenance operation completedOperação de manutenção concluída
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Na Interface Plus, esta funcionalidade foi integrada à vista principal da lista do sandbox.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Usando o menu de contexto de caixa/grupo, você pode mover caixas e grupos para outros grupos. Você também pode utilizar arrastar e soltar para mover os itens. Como alternativa, você também pode utilizar as teclas de seta enquanto mantém ALT pressionada para mover itens para cima e para baixo dentro de seu grupo.<br />Poderá criar novas caixas e grupos no menu do Sandbox.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3845,129 +3850,129 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Este ficheiro faz parte do Sandboxie e todas as alterações feitas nele serão revertidas na próxima vez que o Sandboxie for atualizado.
-
+ Sandboxie config has been reloadedA definição do Sandboxie foi recarregada
-
+ Error Status: 0x%1 (%2)Estado do Erro: 0x%1 (%2)
-
+ UnknownDesconhecido
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move box image '%1' to '%2'
-
+ Failed to copy box data filesFalha ao copiar os ficheiros de dados da caixa
-
+ Failed to remove old box data filesFalha ao remover ficheiros de dados de caixa antigas
-
+ The operation was canceled by the userA operação foi cancelada pelo utilizador
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedImportação/Exportação não disponível, 7z.dll não pôde ser carregada
-
+ Failed to create the box archiveFalha ao criar o ficheiro da caixa
-
+ Failed to open the 7z archiveFalha ao abrir o ficheiro 7z
-
+ Failed to unpack the box archiveFalha ao descompactar o ficheiro da caixa
-
+ The selected 7z file is NOT a box archiveO ficheiro 7z selecionado NÃO é um ficheiro de caixa
-
+ Unknown Error Status: 0x%1Estado do Erro Desconhecido: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case SensitiveMaiúsculas e minúsculas
-
+ RegExp
-
+ HighlightRealçar
-
+ CloseFechar
-
+ &Find ...&Localizar ...
-
+ All columnsTodas as colunas
@@ -4005,10 +4010,10 @@ Você quer fazer a limpeza?
-
-
-
-
+
+
+
+ Don't show this message again.Não mostrar esta mensagem novamente.
@@ -4033,19 +4038,19 @@ Você quer fazer a limpeza?
A apagar automaticamente o conteúdo %1
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Erro
-
+ Failed to stop all Sandboxie componentsFalha ao parar todos os componentes do Sandboxie
-
+ Failed to start required Sandboxie componentsFalha ao iniciar os componentes exigidos do Sandboxie
@@ -4088,7 +4093,7 @@ Você quer fazer a limpeza?
- Portable
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -4147,93 +4152,93 @@ Não vou definir: %2
-
+ Auto deleting content of %1A apagar automaticamente o conteúdo de %1
-
+ Auto removing sandbox %1Removendo automaticamente a caixa %1
-
+ Sandboxie-Plus Version: %1 (%2)Versão do Sandboxie-Plus: %1 (%2)
-
+ Current Config: %1Definição actual: %1
-
+ Data Directory: %1Pasta de dados: %1
-
+ for Personal use para uso Pessoal
-
+ - for Non-Commercial use ONLY - APENAS para uso Não Comercial
-
+ Default sandbox not found; creating: %1Caixa de areia predefinida não encontrada; Criando: %1
-
+ - NOT connected - NÃO conectado
-
+ Failed to configure hotkey %1, error: %2
-
-
-
+
+
+ (%1) (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.O programa %1 iniciado na caixa %2 será encerrado em 5 minutos porque a caixa foi configurada para utilizar recursos disponíveis exclusivamente para apoiadores do projeto.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.A caixa %1 está configurada para utilizar recursos disponíveis exclusivamente para apoiadores do projeto, essas predefinições serão ignoradas.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de apoiador</a>
@@ -4301,22 +4306,22 @@ Não vou definir: %2
-
+ Only Administrators can change the config.Apenas administradores podem mudar a definição.
-
+ Please enter the configuration password.Por favor, introduza a palavra-passe de definição.
-
+ Login Failed: %1Falha no Login: %1
-
+ Do you want to terminate all processes in all sandboxes?Você deseja encerrar todos os processos em todas as caixas?
@@ -4329,32 +4334,32 @@ Não vou definir: %2
Introduza a duração para desactivar programas forçados.
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus foi iniciado no modo portable é preciso construir os serviços necessários. Isso solicitará privilégios administrativos.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.CUIDADO: Outro agente (provavelmente SbieCtrl.exe) já está a gerir esta sessão do sandboxie, por favor, feche-o primeiro e reconecte para assumir o controlo.
-
+ Executing maintenance operation, please wait...A executar operação de manutenção, por favor aguarde...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Você também deseja repor as caixas de mensagens ocultas (sim) ou apenas todas as mensagens de registro (não)?
-
+ The changes will be applied automatically whenever the file gets saved.As alterações serão aplicadas automaticamente sempre que o ficheiro for salvo.
-
+ The changes will be applied automatically as soon as the editor is closed.As alterações serão aplicadas automaticamente assim que o editor for fechado.
@@ -4363,82 +4368,82 @@ Não vou definir: %2
Estado do Erro: %1
-
+ Administrator rights are required for this operation.Direitos de administrador são necessários para esta operação.
-
+ Failed to execute: %1Falha ao rodar: %1
-
+ Failed to connect to the driverFalha ao se conectar com o controlador
-
+ Failed to communicate with Sandboxie Service: %1Falha ao se comunicar com o serviço Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Um Sandboxie %1 incompatível foi encontrado. Versões compatíveis: %2
-
+ Can't find Sandboxie installation path.Não é possível encontrar o localização de instalação do Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Falha ao copiar a definição do sandbox %1: %2
-
+ A sandbox of the name %1 already existsUma caixa de areia com o nome %1 já existe
-
+ Failed to delete sandbox %1: %2Falha ao apagar sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.O nome da caixa de área não pode ter mais de 32 caracteres.
-
+ The sandbox name can not be a device name.O nome da caixa de areia não pode ser um nome de dispositivo.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.O nome da caixa de areia pode conter apenas letras, números e sublinhados que são exibidos como espaços.
-
+ Failed to terminate all processesFalha ao terminar todos os processos
-
+ Delete protection is enabled for the sandboxA proteção ao apagar está ativada para a caixa de areia
-
+ All sandbox processes must be stopped before the box content can be deletedTodos os processos do sandbox devem ser interrompidos antes que o conteúdo da caixa possa ser excluído
-
+ Error deleting sandbox folder: %1Erro ao apagar a pasta da caixa de areia: %1
@@ -4447,42 +4452,42 @@ Não vou definir: %2
Uma caixa de areia deve ser esvaziada antes de ser renomeada.
-
+ A sandbox must be emptied before it can be deleted.Uma caixa de areia deve ser esvaziada antes de ser eliminada.
-
+ Failed to move directory '%1' to '%2'Falha ao mover pasta '%1' para '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Esta operação de instantâneo não pode ser executada enquanto os processos ainda estiverem em execução na caixa.
-
+ Failed to create directory for new snapshotFalha ao construir pasta para novo instantâneo
-
+ Snapshot not foundInstantâneo não encontrado
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Erro ao fundir os diretórios de instantâneo '%1' com '%2', o instantâneo não foi totalmente mesclado.
-
+ Failed to remove old snapshot directory '%1'Falha ao remover pasta de instantâneo antigo '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsNão é possível remover instantâneos compartilhado por vários instantâneos posteriores
@@ -4491,27 +4496,27 @@ Não vou definir: %2
Falha ao remover RegHive antigo
-
+ You are not authorized to update configuration in section '%1'Você não está concedido a atualizar a definição na seção '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Falha ao definir a definição de definição %1 na seção %2: %3
-
+ Can not create snapshot of an empty sandboxNão é possível construir instantâneo de uma caixa de areia vazia
-
+ A sandbox with that name already existsUma caixa de areia com este nome já existe
-
+ The config password must not be longer than 64 charactersA palavra-passe de definição não deve ter mais de 64 caracteres
@@ -4520,7 +4525,7 @@ Não vou definir: %2
Estado de erro desconhecido: %1
-
+ Operation failed for %1 item(s).A operação falhou para %1 item(ns).
@@ -4529,7 +4534,7 @@ Não vou definir: %2
Deseja abrir %1 num Navegador web na caixa de areia (sim) ou fora da caixa de areia (não)?
-
+ Remember choice for later.Lembrar escolha mais tarde.
@@ -9119,27 +9124,27 @@ Por favor, note que este valores são atualmente para o utilizador específico e
QPlatformTheme
-
+ OK
-
+ ApplyAplicar
-
+ CancelCancelar
-
+ &Yes&Sim
-
+ &No&Não
diff --git a/SandboxiePlus/SandMan/sandman_ru.ts b/SandboxiePlus/SandMan/sandman_ru.ts
index 8268d87e..521d248f 100644
--- a/SandboxiePlus/SandMan/sandman_ru.ts
+++ b/SandboxiePlus/SandMan/sandman_ru.ts
@@ -1547,11 +1547,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All ProgramsВсе программы
@@ -1562,9 +1562,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1Группа: %1
@@ -1599,7 +1599,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.Значения шаблона нельзя редактировать.
@@ -2002,82 +2002,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ AnyЛюбой
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessРазрешить доступ
-
+ Block using Windows Filtering PlatformБлокировать с помощью платформы фильтрации Windows
-
+ Block by denying access to Network devicesБлокировать путем запрета доступа к сетевым устройствам
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowРазрешить
-
+ Block (WFP)Block (WFP)
-
+ Block (NDev)Block (NDev)
-
+ A non empty program name is required.Требуется непустое имя программы.
-
+ BlockБлокировать
@@ -2721,22 +2721,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Ожидание папки: %1
-
+ Deleting folder: %1Удаление папки: %1
-
+ Merging folders: %1 >> %2Слияние папок: %1 и %2
-
+ Finishing Snapshot Merge...Завершение слияния снимков...
@@ -2813,27 +2813,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
-
+ Reset ColumnsСбросить столбцы
-
+ Copy CellКопировать ячейку
-
+ Copy RowКопировать строку
-
+ Copy PanelКопировать панель
@@ -3070,7 +3070,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusО Sandboxie-Plus
@@ -3129,10 +3129,10 @@ Do you want to do the clean up?
-
-
-
-
+
+
+
+ Don't show this message again.Больше не показывать это сообщение.
@@ -3162,7 +3162,7 @@ Do you want to do the clean up?
Неизвестная операция '%1' запрошена из командной строки
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3171,34 +3171,34 @@ Please check if there is an update for sandboxie.
Пожалуйста, проверьте, есть ли обновление для Sandboxie.
-
+ Don't show this message again for the current build.Больше не показывать это сообщение для текущей сборки.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.Ваша сборка Windows %1 превышает текущие известные возможности поддержки вашей версии Sandboxie. Sandboxie попытается использовать последние известные смещения, что может привести к нестабильности системы.
-
+ Do you want the setup wizard to be omitted?Вы хотите, чтобы мастер установки был пропущен?
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Ошибка
-
+ Failed to stop all Sandboxie componentsНе удалось остановить все компоненты Sandboxie
-
+ Failed to start required Sandboxie componentsНе удалось запустить необходимые компоненты Sandboxie
@@ -3213,7 +3213,7 @@ Please check if there is an update for sandboxie.
Убраны удаленные шаблоны...
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3222,32 +3222,32 @@ No will choose: %2
Нет, выберет: %2
-
+ A sandbox must be emptied before it can be deleted.Песочницу необходимо очистить, прежде чем ее можно будет удалить.
-
+ The supporter certificate is not valid for this build, please get an updated certificateСертификат сторонника недействителен для этой сборки, получите обновленный сертификат
-
+ The supporter certificate has expired%1, please get an updated certificateСрок действия сертификата сторонника истек%1, пожалуйста получите обновленный сертификат
-
+ , but it remains valid for the current build, но остается действительным для текущей сборки
-
+ The supporter certificate will expire in %1 days, please get an updated certificateСрок действия сертификата сторонника истекает через %1 дн., получите обновленный сертификат
-
+ Default sandbox not found; creating: %1Песочница по умолчанию не найдена; создание: %1
@@ -3272,12 +3272,12 @@ No will choose: %2
Автоудаление содержимого %1
-
+ - NOT connected - НЕ подключено
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Выбранный набор функций доступен только сторонникам проекта. Процессы, запущенные в песочнице с этим набором функций без сертификата сторонника, будут прекращены через 5 минут.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Станьте сторонником проекта</a>, и получите <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертификат сторонника</a>
@@ -3334,122 +3334,122 @@ No will choose: %2
-
+ Only Administrators can change the config.Только администраторы могут изменять конфигурацию.
-
+ Please enter the configuration password.Пожалуйста, введите пароль конфигурации.
-
+ Login Failed: %1Ошибка входа: %1
-
+ Do you want to terminate all processes in all sandboxes?Вы хотите завершить все процессы во всех песочницах?
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus запущен в портативном режиме, и ему нужно создать необходимые службы. Это потребует административных привилегий.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.ВНИМАНИЕ: другой агент (вероятно, SbieCtrl.exe) уже управляет этим сеансом Sandboxie, пожалуйста, сначала закройте его и подключитесь повторно, чтобы взять на себя управление.
-
+ Executing maintenance operation, please wait...Выполняется операция обслуживания, подождите...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Вы также хотите сбросить скрытые окна сообщений (да) или только все сообщения журнала (нет)?
-
+ The changes will be applied automatically whenever the file gets saved.Изменения будут применяться автоматически при сохранении файла.
-
+ The changes will be applied automatically as soon as the editor is closed.Изменения вступят в силу автоматически после закрытия редактора.
-
+ Error Status: 0x%1 (%2)Состояние ошибки: 0x%1 (%2)
-
+ UnknownНеизвестно
-
+ Failed to copy box data filesНе удалось скопировать файлы данных песочницы
-
+ Failed to remove old box data filesНе удалось удалить старые файлы данных песочницы
-
+ Unknown Error Status: 0x%1Неизвестный статус ошибки: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?Хотите ли вы открыть %1 в изолированном или не изолированном веб-браузере?
-
+ SandboxedВ песочнице
-
+ UnsandboxedБез песочницы
-
+ Case SensitiveЧувствительный к регистру
-
+ RegExpРегулярное выражение
-
+ HighlightПодсветить
-
+ CloseЗакрыть
-
+ &Find ...Найти (&) ...
-
+ All columnsВсе столбцы
@@ -3471,7 +3471,7 @@ No will choose: %2
Sandboxie-Plus - это продолжение Sandboxie с открытым исходным кодом.<br />Посетите <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> для получения дополнительной информации.<br /><br />%3<br /><br />Версия драйвера: %1<br />Возможности: %2<br /><br />Иконки взяты с <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.Для этой операции требуются права администратора.
@@ -3604,45 +3604,45 @@ No will choose: %2
Выполнение OnBoxDelete: %1
-
+ Auto deleting content of %1Автоудаление содержимого %1
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus версия: %1 (%2)
-
+ Current Config: %1Текущая конфигурация: %1
-
+ Data Directory: %1Каталог данных: %1
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.Программа %1, запущенная в песочнице %2, будет завершена через 5 минут, поскольку песочница была настроена на использование функций, доступных исключительно для сторонников проекта.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.Песочница %1 настроена на использование функций, доступных исключительно для сторонников проекта, эти предустановки будут игнорироваться.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Стань сторонником проекта</a>, и получи <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертификат сторонника</a>
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Введите продолжительность в секундах, для отключения правил принудительных программ.
@@ -3653,7 +3653,7 @@ No will choose: %2
-
+ Sandboxie-Plus Insider [%1]Sandboxie-Plus инсайдер [%1]
@@ -3806,375 +3806,380 @@ No will choose: %2
Выполнение OnBoxTerminate: %1
-
+ Auto removing sandbox %1Автоудаление песочницы %1
-
+ %1 Directory: %2%1 Каталог: %2
-
+ ApplicationПриложение
-
+ InstallationУстановка
-
+ for Personal use для личного использования
-
+ - for Non-Commercial use ONLY - ТОЛЬКО для некоммерческого использования
-
+ Failed to configure hotkey %1, error: %2Не удалось настроить горячую клавишу %1, ошибка: %2
-
-
-
+
+
+ (%1) (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.Песочница %1 настроена на использование функций, доступных исключительно сторонникам проекта.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.Песочница %1 настроена на использование функций, требующих <b>расширенного</b> сертификата сторонника.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Обновите свой сертификат</a>, чтобы разблокировать расширенные функции.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.Для выбранной функции требуется <b>расширенный</b> сертификат сторонника.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Выбранный набор функций доступен только сторонникам проекта.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Станьте сторонником проекта</a > и получите <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертификат сторонника</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Сертификат, который вы пытаетесь использовать, заблокирован, то есть он признан недействительным по определенной причине. Любая попытка его использования является нарушением условий его использования!
-
+ The Certificate Signature is invalid!Подпись сертификата недействительна!
-
+ The Certificate is not suitable for this product.Сертификат не подходит для этого продукта.
-
+ The Certificate is node locked.Сертификат заблокирован на узле.
-
+ The support certificate is not valid.
Error: %1Сертификат сторонника недействителен.
Ошибка: %1
-
+ The evaluation period has expired!!!Период оценки истек!!!
-
-
+
+ Don't ask in futureНе спрашивать в будущем
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Вы хотите завершить все процессы в зашифрованных песочницах и размонтировать их?
-
+ No RecoveryНет файлов для восстановления
-
+ No MessagesНет сообщений
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ОШИБКА:</b> Sandboxie-Plus Manager (SandMan.exe) не имеет действительной подписи (SandMan.exe.sig). Загрузите надежную версию с <a href="https://sandboxie-plus.com/go.php?to=sbie-get">официальной страницы загрузки</a>.
-
+ Maintenance operation failed (%1)Операция обслуживания не удалась (%1)
-
+ Maintenance operation completedОперация технического обслуживания завершена
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.В интерфейсе Plus, эта функция была интегрирована в основное представление списка песочницы.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Используя контекстное меню песочницы/группы, вы можете перемещать песочницы и группы в другие группы. Вы также можете использовать перетаскивание для перемещения элементов. В качестве альтернативы вы также можете использовать клавиши со стрелками, удерживая нажатой клавишу ALT, чтобы перемещать элементы вверх и вниз в пределах группы.<br />Вы можете создавать новые песочницы и группы из меню "Песочница".
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.Вы собираетесь редактировать Templates.ini, обычно это не рекомендуется.
Этот файл является частью Sandboxie, и все внесенные в него изменения будут отменены при следующем обновлении Sandboxie.
-
+ Sandboxie config has been reloadedКонфигурация Sandboxie перезагружена
-
+ Failed to execute: %1Не удалось выполнить: %1
-
+ Failed to connect to the driverНе удалось подключиться к драйверу
-
+ Failed to communicate with Sandboxie Service: %1Не удалось связаться со службой Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Обнаружена несовместимая песочница %1. Совместимые версии: %2
-
+ Can't find Sandboxie installation path.Не удается найти путь установки Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Не удалось скопировать конфигурацию из песочницы %1: %2
-
+ A sandbox of the name %1 already existsПесочница с именем %1 уже существует
-
+ Failed to delete sandbox %1: %2Не удалось удалить песочницу %1: %2
-
+ The sandbox name can not be longer than 32 characters.Имя песочницы не может быть длиннее 32 символов.
-
+ The sandbox name can not be a device name.Имя песочницы не может быть именем устройства.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Имя песочницы может содержать только буквы, цифры и символы подчеркивания, которые отображаются как пробелы.
-
+ Failed to terminate all processesНе удалось завершить все процессы
-
+ Delete protection is enabled for the sandboxДля этой песочницы включена защита от удаления
-
+ All sandbox processes must be stopped before the box content can be deletedВсе процессы песочницы должны быть остановлены, перед удалением ее содержимого
-
+ Error deleting sandbox folder: %1Ошибка при удалении папки песочницы: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.Все процессы в песочнице должны быть остановлены, прежде чем ее можно будет переименовать.
-
+ Failed to move directory '%1' to '%2'Не удалось переместить каталог '%1' в '%2'
-
+ Failed to move box image '%1' to '%2'Не удалось переместить образ контейнера '%1' в '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Операция снимка не может быть выполнена, пока в песочнице еще выполняются процессы.
-
+ Failed to create directory for new snapshotНе удалось создать каталог для нового снимка
-
+ Snapshot not foundСнимок не найден
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Ошибка при объединении каталогов снимков '%1' с '%2', снимок не был объединен полностью.
-
+ Failed to remove old snapshot directory '%1'Не удалось удалить старый каталог снимков '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsНевозможно удалить снимок, который используется несколькими более поздними снимками
-
+ You are not authorized to update configuration in section '%1'У вас нет прав для обновления конфигурации в разделе '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Не удалось установить параметр конфигурации %1 в секции %2: %3
-
+ Can not create snapshot of an empty sandboxНевозможно создать снимок пустой песочницы
-
+ A sandbox with that name already existsПесочница с таким именем уже существует
-
+ The config password must not be longer than 64 charactersПароль конфигурации не должен быть длиннее 64 символов
-
+ The operation was canceled by the userОперация отменена пользователем
-
+ The content of an unmounted sandbox can not be deletedСодержимое несмонтированной песочницы нельзя удалить
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedИмпорт/экспорт недоступен, не удалось загрузить 7z.dll
-
+ Failed to create the box archiveНе удалось создать архив контейнера
-
+ Failed to open the 7z archiveНе удалось открыть 7z архив
-
+ Failed to unpack the box archiveНе удалось распаковать архив контейнера
-
+ The selected 7z file is NOT a box archiveВыбранный 7z файл НЕ является архивом контейнера
-
+ Operation failed for %1 item(s).Операция не удалась для %1 элемента(ов).
-
+ Remember choice for later.Запомнить выбор.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -8309,27 +8314,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OKОК
-
+ ApplyПрименить
-
+ CancelОтмена
-
+ &YesДа (&Y)
-
+ &NoНет (&N)
diff --git a/SandboxiePlus/SandMan/sandman_sv_SE.ts b/SandboxiePlus/SandMan/sandman_sv_SE.ts
index b40f5dfe..8cee9799 100644
--- a/SandboxiePlus/SandMan/sandman_sv_SE.ts
+++ b/SandboxiePlus/SandMan/sandman_sv_SE.ts
@@ -1696,9 +1696,9 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
-
-
+
+
+ Group: %1Grupp: %1
@@ -1861,11 +1861,11 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
-
-
-
-
+
+
+
+
+ All ProgramsAlla program
@@ -1900,7 +1900,7 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
+ Template values can not be edited.Mallvärden kan inte redigeras.
@@ -2323,82 +2323,82 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
+ AnyVarje
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessTillåt tillgång
-
+ Block using Windows Filtering PlatformBlockera användande av Windows Filtering Platform
-
+ Block by denying access to Network devicesBlockera genom att neka tillgång till nätverksenheter
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowTillåt
-
+ Block (WFP)Blockera (WFP)
-
+ Block (NDev)Blockera (NDev)
-
+ A non empty program name is required.Ett icke tomt programnamn krävs.
-
+ BlockBlockera
@@ -3012,22 +3012,22 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
CSandBox
-
+ Waiting for folder: %1Väntar på mapp: %1
-
+ Deleting folder: %1Raderar mapp: %1
-
+ Merging folders: %1 >> %2Sammanför mappar: %1 >> %2
-
+ Finishing Snapshot Merge...Slutför sammanförande av ögonblicksbilder...
@@ -3118,7 +3118,7 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
@@ -3133,22 +3133,22 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
Ingen tvingande process
-
+ %1 Directory: %2%1 Katalog: %2
-
+ ApplicationApplikation
-
+ InstallationInstallation
-
+ The evaluation period has expired!!!Utvärderingsperioden har utgått!
@@ -3162,52 +3162,52 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
Importerar :%1
-
+ No RecoveryInget återställande
-
+ No MessagesInga meddelanden
-
+ Maintenance operation completedUnderhållsoperation avklarad
-
+ Failed to create the box archiveLyckades inte skapa lådarkivet
-
+ Failed to unpack the box archiveLyckades inte packa upp lådarkivet
-
+ The selected 7z file is NOT a box archiveDen valda 7z-filen är INTE ett lådarkiv
-
+ Reset ColumnsÅterställ kolumner
-
+ Copy CellKopiera cellen
-
+ Copy RowKopiera raden
-
+ Copy PanelKopiera panelen
@@ -3494,7 +3494,7 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
-
+ About Sandboxie-PlusOm Sandboxie-Plus
@@ -3663,10 +3663,10 @@ Vill du göra rensningen?
-
-
-
-
+
+
+
+ Don't show this message again.Visa inte detta meddelande igen.
@@ -3746,7 +3746,7 @@ Denna låda förhindrar tillgång till alla användardataplatser, förutom de ut
Adderade genväg till: %1
-
+ Auto deleting content of %1Autoraderar innehåll i %1
@@ -3755,17 +3755,17 @@ Denna låda förhindrar tillgång till alla användardataplatser, förutom de ut
Installationskatalog: %1
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus version: %1 (%2)
-
+ Current Config: %1Nuvarande konfiguration: %1
-
+ Data Directory: %1Datakatalog: %1
@@ -3774,7 +3774,7 @@ Denna låda förhindrar tillgång till alla användardataplatser, förutom de ut
- Portabel
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3783,45 +3783,45 @@ Ja väljer: %1
Nej väljer: %2
-
+ for Personal use för personlig användning
-
+ - for Non-Commercial use ONLY - för icke-kommersiell användning ENDAST
-
+ Default sandbox not found; creating: %1Standardsandlåda hittades inte; skapar: %1
-
+ Do you want the setup wizard to be omitted?Vill du att installationsguiden blir utelämnad?
-
+ - NOT connected - INTE ansluten
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.Programmet %1 startad i låda %2 kommer att avslutas om 5 minuter för att lådan konfigurerades att använda funktioner exklusivt tillgängliga för projektsupportrar.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.Låda %1 är konfigurerad att använda funktioner exklusivt tillgängliga för projektsupportrar, dessa inställningar kommer ignoreras.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Bli en projektsupporter</a>, och få ett <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supportercertifikat</a>
@@ -3834,7 +3834,7 @@ Nej väljer: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Den valda funktionsuppsättningen är endast tillgänglig för projektsupportrar. Processer startade i en låda med denna funktionsuppsättning aktiverad utan ett supportercertifikat kommer att avslutas efter 5 minuter.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Bli en projektsupporter</a>, och få ett <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supportercertifikat</a>
@@ -3843,22 +3843,22 @@ Nej väljer: %2
Evalueringsperioden har utgått!
-
+ The supporter certificate is not valid for this build, please get an updated certificateSupportercertifikatet är inte giltigt för detta bygge, vänligen skaffa ett uppdaterat certifikat
-
+ The supporter certificate has expired%1, please get an updated certificateSupportercertifikatet har utgått%1, vänligen skaffa ett uppdaterat certifikat
-
+ , but it remains valid for the current build, men det förblir giltigt för nuvarande bygge
-
+ The supporter certificate will expire in %1 days, please get an updated certificateSupportercertifikatet utgår om %1 dagar, vänligen skaffa ett uppdaterat certifikat
@@ -3918,17 +3918,17 @@ Nej väljer: %2
-
+ Only Administrators can change the config.Endast administratörer kan ändra konfigurationen.
-
+ Please enter the configuration password.Vänligen för in konfigurationslösenordet.
-
+ Login Failed: %1Inloggning misslyckades: %1
@@ -3941,7 +3941,7 @@ Nej väljer: %2
7-zip arkiv (*.7z)
-
+ Do you want to terminate all processes in all sandboxes?Vill du avsluta alla processer i alla sandlådor?
@@ -3950,39 +3950,39 @@ Nej väljer: %2
Avsluta alla utan att fråga
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Vänligen för in varaktigheten, i sekunder, för inaktivering av tvingade programs regler.
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus startades i portabelt läge och det behöver skapa nödvändiga tjänster. Detta ger förfrågan om administrativa rättigheter.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.FÖRSIKTIG: En annan agent (troligen SbieCtrl.exe) hanterar redan denna Sandboxie-session, vänligen stäng den först och återanslut för att ta över.
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Fel
-
+ Failed to stop all Sandboxie componentsLyckades inte stoppa alla Sandboxie-komponenter
-
+ Failed to start required Sandboxie componentsLyckades inte starta krävda Sandboxie-komponenter
-
+ Maintenance operation failed (%1)Underhållsoperationen misslyckades (%1)
@@ -4002,7 +4002,7 @@ Nej väljer: %2
-
+ Sandboxie-Plus Insider [%1]Sandboxie-Plus Insider [%1]
@@ -4134,12 +4134,12 @@ Nej väljer: %2
Verkställer VidLådTerminering:%1
-
+ Auto removing sandbox %1Autoborttager sandlåda %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -4148,118 +4148,123 @@ Please check if there is an update for sandboxie.
Vänligen kontrollera om det finns en uppdatering för Sandboxie.
-
+ Don't show this message again for the current build.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.Ditt windows-bygge %1 överstiger de nuvarande kända supportförmågorna av din Sandboxie-version, Sandboxie kommer försöka använda de senast-kända kompensationerna vilket kan orsaka systeminstabilitet.
-
+ Failed to configure hotkey %1, error: %2Lyckades inte konfigurera snabbkommando %1, fel:%2
-
-
-
+
+
+ (%1) (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.Lådan %1 är konfigurerad att använda egenskaper exklusivt tillgängliga till projektsupportrar.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.Lådan %1 är konfigurerad att använda egenskaper som kräver ett <b>avancerat<b> supportercertifikat.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Uppgradera ditt certifikat</a> för att låsa upp avancerade egenskaper.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.Den valda egenskapen kräver ett <b>avancerat<b> supportercertifikat.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>De valda egenskaperna är endast tillgängliga för projektsupportrar.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">bli en projektsupporter</a>, och mottag ett <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supportercertifikat</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Certifikatet du försöker använda har blockerats, vilket menas att det har blivit ogiltigt av en orsak. Varje försök att använda det innebär ett brytande av dess användarvillkor!
-
+ The Certificate Signature is invalid!Certifikatssignaturen är ogiltig!
-
+ The Certificate is not suitable for this product.Certifikatet är inte tillämpligt för denna produkt.
-
+ The Certificate is node locked.Certifikatet är nod-låst.
-
+ The support certificate is not valid.
Error: %1Supportcertifikatet är inte giltigt.
Fel: %1
-
-
+
+ Don't ask in futureFråga inte i framtiden
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Vill du avsluta alla processer i krypterade sandlådor, och avmontera dem?
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>FEL:</b> Sandboxie-Plus hanterare (SandMan.exe) har inte en giltig signatur (SandMan.exe.sig). Vänligen nedladda en betrodd utgåva från den <a href="https://sandboxie-plus.com/go.php?to=sbie-get">officiella nedladdningssidan</a>.
-
+ Executing maintenance operation, please wait...Verkställer underhållsoperationen, vänligen vänta...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.I användargränssnittet i Plus, har denna funktion integrerats in i huvudsandlådans listöversikt.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Vid användning av låd-/gruppsnabbmenyn, kan du flytta lådor och grupper till andra grupper. Du kan också dra och släppa för att flytta omkring poster. Alternativt, du kan också använda piltangenterna medans du håller ner ALT för flytta poster upp och ner inom dess grupp.<br />Du kan skapa nya lådor och grupper från menyn Sandlåda.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Vill du också återställa dolda meddelandelådor (Ja), eller bara alla loggmeddelanden (Nej)?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4268,279 +4273,279 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs nästa gång Sandboxie uppdateras.
-
+ The changes will be applied automatically whenever the file gets saved.Ändringarna tillämpas automatiskt närhelst filen sparas.
-
+ The changes will be applied automatically as soon as the editor is closed.Ändringarna tillämpas automatiskt så fort som redigeraren stängs.
-
+ Sandboxie config has been reloadedSandboxie-konfigurationen har laddats om
-
+ Error Status: 0x%1 (%2)Felstatus: 0x%1 (%2)
-
+ UnknownOkänd
-
+ Administrator rights are required for this operation.Administratörsrättigheter krävs för denna operation.
-
+ Failed to execute: %1Lyckades inte verkställa: %1
-
+ Failed to connect to the driverLyckades inte ansluta till drivrutinen
-
+ Failed to communicate with Sandboxie Service: %1Lyckades inte kommunicera med Sandboxies tjänst: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2En inkompatibel Sandboxie %1 hittades. Kompatibla versioner: %2
-
+ Can't find Sandboxie installation path.Kan inte finna Sandboxies installationssökväg.
-
+ Failed to copy configuration from sandbox %1: %2Lyckades inte kopiera konfigurationen från sandlåda %1: %2
-
+ A sandbox of the name %1 already existsEn sandlåda med namnet %1 existerar redan
-
+ Failed to delete sandbox %1: %2Lyckades inte radera sandlåda %1: %2
-
+ The sandbox name can not be longer than 32 characters.Sandlådenamnet kan inte vara längre än 32 tecken.
-
+ The sandbox name can not be a device name.Sandlådenamnet kan inte vara ett enhetsnamn.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Sandlådenamnet kan bara innehålla bokstäver, siffror och understrykningar vilka visas som utrymmen.
-
+ Failed to terminate all processesLyckades inte avsluta alla processer
-
+ Delete protection is enabled for the sandboxRaderingsskydd är aktiverat för sandlådan
-
+ All sandbox processes must be stopped before the box content can be deletedAlla sandlådeprocesser måste stoppas innan lådinnehållet kan raderas
-
+ Error deleting sandbox folder: %1Fel vid radering av sandlådemapp: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.Alla processer i en sandlåda behöver stoppas innan den kan namnändras.
-
+ A sandbox must be emptied before it can be deleted.En sandlåda måste tömmas innan den kan raderas.
-
+ Failed to move directory '%1' to '%2'Lyckades inte flytta katalog '%1' till '%2'
-
+ Failed to move box image '%1' to '%2'Lyckades inte flytta lådavbild %1 till %2
-
+ This Snapshot operation can not be performed while processes are still running in the box.Denna ögonblicksbildoperation kan inte utföras medan processer fortfarande kör i lådan.
-
+ Failed to create directory for new snapshotLyckades inte skapa katalog för ny ögonblicksbild
-
+ Failed to copy box data filesLyckades inte kopiera låddatafiler
-
+ Snapshot not foundÖgonblicksbild hittades inte
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Fel vid sammanförande av ögonblicksbildkataloger '%1' med '%2'. Ögonblicksbilden har inte blivit helt sammanförd.
-
+ Failed to remove old snapshot directory '%1'Lyckades inte ta bort gammal ögonblicksbildkatalog '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsKan inte ta bort en ögonblicksbild som delas av flera senare ögonblicksbilder
-
+ Failed to remove old box data filesLyckades inte ta bort gamla låddatafiler
-
+ You are not authorized to update configuration in section '%1'Du är inte berättigad att uppdatera konfigurationen i sektion '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Lyckades inte ange konfigurationsinställning %1 i sektion %2: %3
-
+ Can not create snapshot of an empty sandboxKan inte skapa ögonblicksbild av en tom sandlåda
-
+ A sandbox with that name already existsEn sandlåda med det namnet existerar redan
-
+ The config password must not be longer than 64 charactersKonfigurationslösenordet får inte vara längre än 64 tecken
-
+ The operation was canceled by the userOperationen avbröts av användaren
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deletedInnehållet i en omonterad sandlåda kan inte raderas
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedImportera/Exportera ej tillgängligt, 7z.dll kunde ej laddas
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?Vill du öppna %1 i en sandlådad eller osandlådad webbläsare?
-
+ SandboxedSandlådad
-
+ UnsandboxedOsandlådad
-
+ Case SensitiveSkiftlägeskänslig
-
+ RegExpRegExp
-
+ HighlightMarkera
-
+ CloseStäng
-
+ &Find ...&Hitta ...
-
+ All columnsAlla kolumner
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4549,7 +4554,7 @@ Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs
Misslyckades att skapa lådarkiv
-
+ Failed to open the 7z archiveLyckades inte öppna 7z-arkivet
@@ -4562,12 +4567,12 @@ Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs
Den valda 7z-filen är INTE ett lådarkiv
-
+ Unknown Error Status: 0x%1Okänd felstatus: 0x%1
-
+ Operation failed for %1 item(s).Operationen misslyckades för %1 post(er).
@@ -4576,7 +4581,7 @@ Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs
Vill du öppna %1 i en sandlådad (Ja) eller osandlådad (Nej) webbläsare?
-
+ Remember choice for later.Kom ihåg valet till senare.
@@ -9179,27 +9184,27 @@ istället för "*".
QPlatformTheme
-
+ OKOK
-
+ ApplyTillämpa
-
+ CancelAvbryt
-
+ &Yes&Ja
-
+ &No&Nej
diff --git a/SandboxiePlus/SandMan/sandman_tr.ts b/SandboxiePlus/SandMan/sandman_tr.ts
index 38cfb866..959c8e01 100644
--- a/SandboxiePlus/SandMan/sandman_tr.ts
+++ b/SandboxiePlus/SandMan/sandman_tr.ts
@@ -1371,7 +1371,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
-
+ Template values can not be edited.Şablon değerleri düzenlenemez.
@@ -1447,9 +1447,9 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
-
-
-
+
+
+ Group: %1Grup: %1
@@ -1552,11 +1552,11 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
-
-
-
-
-
+
+
+
+
+ All ProgramsTüm Programlar
@@ -1846,82 +1846,82 @@ Lütfen bu dosyayı içeren bir klasör seçin.
-
+ AnyHerhangi
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessErişime izin ver
-
+ Block using Windows Filtering PlatformWindows Filtreleme Platformunu kullanarak engelle
-
+ Block by denying access to Network devicesAğ cihazlarına erişimi reddederek engelle
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ Allowİzin ver
-
+ Block (WFP)Engelle (WFP)
-
+ Block (NDev)Engelle (NDev)
-
+ A non empty program name is required.Boş olmayan bir program adı gereklidir.
-
+ BlockEngelle
@@ -2695,22 +2695,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Klasör bekleniyor: %1
-
+ Deleting folder: %1Klasör siliniyor: %1
-
+ Merging folders: %1 >> %2Klasörler birleştiriliyor: %1 >> %2
-
+ Finishing Snapshot Merge...Anlık Görüntü Birleştirme Tamamlanıyor...
@@ -2792,7 +2792,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Çıkış
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus taşınabilir modda başlatıldı ve gerekli hizmetleri oluşturması gerekiyor. Bunun için yönetici ayrıcalıkları isteyecektir.
@@ -2813,19 +2813,19 @@ Unlike the preview channel, it does not include untested, potentially breaking,
&Görünüm
-
+ Error deleting sandbox folder: %1Korumalı alan klasörü silinirken hata: %1
-
+ About Sandboxie-PlusSandboxie-Plus Hakkında
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
@@ -2855,7 +2855,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Destek Forumu'nu Ziyaret Et
-
+ Failed to copy configuration from sandbox %1: %2%1 korumalı alanından yapılandırma kopyalaması başarısız oldu: %2
@@ -2865,7 +2865,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Basit Görünüm
-
+ Login Failed: %1Giriş başarısız: %1
@@ -2877,10 +2877,10 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
-
-
+
+
+
+ Don't show this message again.Bu mesajı bir daha gösterme.
@@ -2900,12 +2900,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Hizmeti Yükle
-
+ Failed to remove old snapshot directory '%1'Eski anlık görüntü dizini kaldırılamadı '%1'
-
+ The changes will be applied automatically as soon as the editor is closed.Düzenleyici kapatılır kapatılmaz değişiklikler otomatik olarak uygulanacaktır.
@@ -2915,7 +2915,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie Yöneticisi'ni kapatmak istiyor musunuz?
-
+ Failed to create directory for new snapshotYeni anlık görüntü için dizin oluşturulamadı
@@ -2966,7 +2966,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Failed to move directory '%1' to '%2''%1' dizini, '%2' dizinine taşınamadı
@@ -2981,9 +2981,9 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Çevrimiçi Belgeler
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Hata
@@ -3003,12 +3003,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Göster/Gizle
-
+ A sandbox must be emptied before it can be deleted.Bir korumalı alan, silinmeden önce boşaltılmalıdır.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Korumalı alan adı yalnızca harf, rakam ve alt çizgi içerebilir.
@@ -3018,12 +3018,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
&Bakım
-
+ The sandbox name can not be a device name.Korumalı alan adı bir cihaz adı olamaz.
-
+ Operation failed for %1 item(s).%1 öge için işlem başarısız oldu.
@@ -3057,12 +3057,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Bağlan
-
+ Only Administrators can change the config.Yalnızca Yöneticiler yapılandırmayı değiştirebilir.
-
+ Snapshot not foundAnlık görüntü bulunamadı
@@ -3072,7 +3072,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Tümünü Durdur
-
+ Delete protection is enabled for the sandboxKorumalı alan için silme koruması etkinleştirilmiş
@@ -3082,7 +3082,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
&Gelişmiş
-
+ Executing maintenance operation, please wait...Bakım işlemi yapılıyor, lütfen bekleyin...
@@ -3099,7 +3099,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Yeni Alan Oluştur
-
+ Failed to terminate all processesTüm işlemler sonlandırılamadı
@@ -3109,7 +3109,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Gelişmiş Görünüm
-
+ Failed to delete sandbox %1: %2%1: %2 Korumalı alanı silinemedi
@@ -3120,17 +3120,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Tüm İşlemleri Sonlandır
-
+ Please enter the configuration password.Lütfen yapılandırma parolasını girin.
-
+ You are not authorized to update configuration in section '%1'Bölümdeki yapılandırmayı güncelleme yetkiniz yok '%1'
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.'%1' ve '%2' anlık görüntü dizinleri birleştirilirken hata oluştu, anlık görüntü tam olarak birleştirilmedi.
@@ -3150,12 +3150,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sonlandırılmışları Tut
-
+ A sandbox of the name %1 already exists%1 adında bir korumalı alan zaten var
-
+ Failed to set configuration setting %1 in section %2: %3%2: %3 bölümünde %1 yapılandırma parametresi ayarlanamadı
@@ -3244,302 +3244,307 @@ Unlike the preview channel, it does not include untested, potentially breaking,
OnBoxTerminate yürütülüyor: %1
-
+ Auto removing sandbox %1%1 korumalı alanı otomatik olarak kaldırıyor
-
+ %1 Directory: %2%1 Dizini: %2
-
+ ApplicationUygulama
-
+ InstallationKurulum
-
+ for Personal use Kişisel kullanım için
-
+ - for Non-Commercial use ONLY - Ticari Olmayan kullanım için
-
+ Do you want the setup wizard to be omitted?Kurulum sihirbazının çıkarılmasını istiyor musunuz?
-
+ - NOT connected - Bağlı DEĞİL
-
+ Failed to configure hotkey %1, error: %2%1 kısayol tuşu yapılandırılamadı, hata: %2
-
+ The box %1 is configured to use features exclusively available to project supporters.%1 alanı, yalnızca proje destekçilerine sunulan özellikleri kullanacak şekilde yapılandırılmıştır.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.%1 alanı, <b>gelişmiş</b> destekçi sertifikası gerektiren özellikleri kullanacak şekilde yapılandırılmıştır.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.Gelişmiş özelliklerin kilidini açmak için <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Sertifikanızı yükseltin</a>.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.Seçilen özellik, <b>gelişmiş</b> bir destekçi sertifikası gerektiriyor.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Seçilen özellik seti yalnızca proje destekçileri tarafından kullanılabilir. <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Proje destekçisi olmak</a> için bir <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">destekçi sertifikası</a> edinin
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Kullanmaya çalıştığınız sertifika engellendi, yani geçersiz kılındı. Bunu kullanmaya yönelik herhangi bir girişim, kullanım şartlarının ihlali anlamına gelir!
-
+ The Certificate Signature is invalid!Sertifika İmzası geçersiz!
-
+ The Certificate is not suitable for this product.Sertifika bu ürün için uygun değildir.
-
+ The Certificate is node locked.Sertifika düğüm kilitli.
-
+ The support certificate is not valid.
Error: %1Destek sertifikası geçerli değil.
Hata: %1
-
+ The evaluation period has expired!!!Değerlendirme süresi dolmuştur!
-
-
+
+ Don't ask in futureGelecekte sorma
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Şifreli korumalı alanlardaki tüm işlemleri sonlandırmak ve bağlantılarını kaldırmak istiyor musunuz?
-
+ No RecoveryKurtarma Yok
-
+ No MessagesMesaj Yok
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>HATA:</b> Sandboxie-Plus Yöneticisi (SandMan.exe) geçerli bir imzaya sahip değil (SandMan.exe.sig). Lütfen <a href="https://sandboxie-plus.com/go.php?to=sbie-get">resmî indirme sayfasından</a> güvenilir bir sürüm indirin.
-
+ Maintenance operation completedBakım işlemi tamamlandı
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Bu işlevsellik, Plus kullanıcı arayüzünde korumalı alan liste görünümüne entegre edilmiştir.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Alan/grup bağlam menüsünü kullanarak alanları ve grupları diğer gruplara taşıyabilirsiniz. Öğeleri hareket ettirmek için sürükle ve bırak özelliğini de kullanabilirsiniz. Alternatif olarak, öğeleri grupları içinde yukarı ve aşağı taşımak için ALT tuşunu basılı tutarken ok tuşlarını da kullanabilirsiniz.<br />Korumalı Alan menüsünden yeni alanlar ve gruplar oluşturabilirsiniz.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Gizlenmiş mesaj kutuları dahil her şeyi (evet) veya yalnızca tüm günlük mesajlarını (hayır) sıfırlamak mı istiyorsunuz?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.Templates.ini dosyasını düzenlemek üzeresiniz, bu genellikle önerilmez. Bu dosya Sandboxie'nin bir parçasıdır ve üzerinde yapılan tüm değişiklikler Sandboxie güncellendiğinde kaybolacaktır.
-
+ The changes will be applied automatically whenever the file gets saved.Dosya her kaydedildiğinde değişiklikler otomatik olarak uygulanacaktır.
-
+ Administrator rights are required for this operation.Bu işlem için yönetici hakları gereklidir.
-
+ Failed to execute: %1%1 çalıştırılamadı
-
+ Failed to connect to the driverSürücüye bağlanılamadı
-
+ Failed to communicate with Sandboxie Service: %1Sandboxie Hizmeti ile iletişim kurulamadı: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Uyumsuz bir Sandboxie %1 bulundu. Uyumlu sürümler: %2
-
+ Can't find Sandboxie installation path.Sandboxie kurulum yolu bulunamıyor.
-
+ The sandbox name can not be longer than 32 characters.Korumalı alan adı 32 karakterden uzun olamaz.
-
+ All processes in a sandbox must be stopped before it can be renamed.Bir korumalı alanın yeniden adlandırılabilmesi için oradaki tüm işlemlerin durdurulması gerekir.
-
+ Failed to move box image '%1' to '%2''%1' korumalı alan görüntüsü '%2' konumuna taşınamadı
-
+ This Snapshot operation can not be performed while processes are still running in the box.Bu Anlık Görüntü işlemi, alan içinde işlemler çalışırken gerçekleştirilemez.
-
+ Can't remove a snapshot that is shared by multiple later snapshotsBirden çok anlık görüntü tarafından paylaşılan bir anlık görüntü kaldırılamaz
-
+ The content of an unmounted sandbox can not be deletedBağlanmamış bir korumalı alanın içeriği silinemez
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedİçe/Dışa Aktarma kullanılamıyor, 7z.dll yüklenemedi
-
+ Failed to create the box archiveAlan arşivi oluşturulamadı
-
+ Failed to open the 7z archive7z arşivi açılamadı
-
+ Failed to unpack the box archiveAlan arşivi açılamadı
-
+ The selected 7z file is NOT a box archiveSeçilen 7z dosyası bir alan arşivi DEĞİLDİR
-
+ Remember choice for later.Seçimi sonrası için hatırla.
-
+ Copy CellHücreyi Kopyala
-
+ Copy RowSatırı Kopyala
-
+ Copy PanelPaneli Kopyala
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p><h3>Sandboxie-Plus Hakkında</h3><p>Sürüm %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1Sandboxie'nin bu kopyası şu kişiler için sertifikalandırılmıştır: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.Sandboxie-Plus, kişisel ve ticari olmayan kullanım için ücretsizdir.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Sandboxie-Plus, Sandboxie'nin açık kaynaklı bir devamıdır.<br />Daha fazla bilgi için <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> adresini ziyaret ediniz.<br /><br />%2<br /><br />Özellikler: %3<br /><br />Kurulum: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Simgeler için <a href="https://icons8.com">icons8.com</a>
-
+ Failed to stop all Sandboxie componentsTüm Sandboxie bileşenleri durdurulamadı
-
+ Failed to start required Sandboxie componentsGerekli Sandboxie bileşenleri başlatılamadı
@@ -3565,17 +3570,17 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Kaldırılan şablonlar temizlendi...
-
+ Can not create snapshot of an empty sandboxBoş bir korumalı alanın anlık görüntüsü oluşturulamaz
-
+ A sandbox with that name already existsBu adda bir korumalı alan zaten var
-
+ Reset ColumnsSütunları Sıfırla
@@ -3590,7 +3595,7 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Bazı uyumluluk şablonları (%1) eksik, büyük olasılıkla silinmiş, bunları tüm alanlardan kaldırmak istiyor musunuz?
-
+ Do you want to terminate all processes in all sandboxes?Tüm korumalı alanlardaki tüm işlemleri sonlandırmak istiyor musunuz?
@@ -3615,7 +3620,7 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Sandboxie-Plus - Pencere Bulucu
-
+ Default sandbox not found; creating: %1Varsayılan korumalı alan bulunamadı; oluşturuluyor: %1
@@ -3640,12 +3645,12 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Bilinmeyen işlem '%1' komut satırı aracılığıyla istendi
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.DİKKAT: Bu Sandboxie oturumunu başka bir aracı (muhtemelen SbieCtrl.exe) zaten yönetiyor, lütfen önce onu kapatın ve devralmak için yeniden bağlanın.
-
+ The config password must not be longer than 64 charactersYapılandırma parolası 64 karakterden uzun olmamalıdır
@@ -3665,17 +3670,17 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Tüm Oturumları Göster
-
+ Error Status: 0x%1 (%2)Hata Durumu: 0x%1 (%2)
-
+ UnknownBilinmeyen
-
+ Unknown Error Status: 0x%1Bilinmeyen Hata Durumu: 0x%1
@@ -3719,7 +3724,7 @@ Temizlik yapmak ister misin?
Zorlanmış İşlem Yok
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3728,7 +3733,7 @@ Evet şunları seçer: %1
Hayır şunları seçer: %2
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Seçilen özellik seti yalnızca proje destekçileri tarafından kullanılabilir. Bu özellik setinin destekçi sertifikası olmadan etkinleştirildiği bir alanda başlatılan işlemler 5 dakika sonra sonlandırılacaktır.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Proje destekçisi olmak</a> için bir <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">destekçi sertifikası</a> edinin
@@ -3785,7 +3790,7 @@ Hayır şunları seçer: %2
-
+ Sandboxie-Plus Insider [%1]Sandboxie-Plus Insider [%1]
@@ -3948,154 +3953,154 @@ Hayır şunları seçer: %2
OnBoxDelete yürütülüyor: %1
-
+ Auto deleting content of %1%1 içeriği otomatik olarak siliniyor
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus Sürümü: %1 (%2)
-
+ Data Directory: %1Veri Dizini: %1
-
-
-
+
+
+ (%1) (%1)
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.%2 korumalı alanında başlatılan programlar 5 dakika içinde sonlandırılacaktır. Çünkü bu korumalı alan yalnızca proje destekçilerine sunulan %1 özelliğini kullanacak şekilde yapılandırılmış.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.%1 alanı, yalnızca proje destekçilerine sunulan özellikleri kullanacak şekilde yapılandırılmıştır, bu ön ayarlar yok sayılacaktır.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Proje destekçisi olmak</a> için bir <a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">destekçi sertifikası</a> edinebilirsiniz
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Windows derlemeniz %1, Sandboxie sürümünüzün mevcut destek yeteneklerini aşıyor ve belirteç tabanlı güvenlik yalıtımının devre dışı bırakılmasına neden oluyor. Sonuç olarak, tüm uygulamalar güvenlik yalıtımı olmadan Uygulama Bölmesi Modunda çalışacaktır.
Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.
-
+ Don't show this message again for the current build.Mevcut derleme için bu mesajı bir daha gösterme.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.Windows derlemeniz %1, Sandboxie sürümünüzün bilinen mevcut destek yeteneklerini aşıyor; Sandboxie bilinen son ofsetleri kullanmaya çalışacak ve bu da sistem kararsızlığına neden olabilir.
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Lütfen Zorunlu Programlar kurallarını devre dışı bırakmak için süreyi saniye cinsinden girin.
-
+ Maintenance operation failed (%1)Bakım işlemi başarısız oldu (%1)
-
+ All sandbox processes must be stopped before the box content can be deletedAlan içeriği silinmeden önce tüm korumalı alan işlemleri durdurulmalıdır
-
+ Failed to copy box data filesAlan veri dosyaları kopyalanamadı
-
+ Failed to remove old box data filesEski alan veri dosyaları kaldırılamadı
-
+ The operation was canceled by the userİşlem kullanıcı tarafından iptal edildi
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?%1 bağlantısını korumalı alanda veya korumasız olarak Web tarayıcısında açmak istiyor musunuz?
-
+ SandboxedKorumalı
-
+ UnsandboxedKorumasız
-
+ Case SensitiveHarfe Duyarlı
-
+ RegExpDüzİfa
-
+ HighlightVurgula
-
+ CloseKapat
-
+ &Find ...&Bul ...
-
+ All columnsTüm Sütunlar
-
+ The supporter certificate is not valid for this build, please get an updated certificateBu destekçi sertifikası bu derleme için geçerli değildir, lütfen yenilenmiş bir sertifika edinin
-
+ The supporter certificate has expired%1, please get an updated certificateBu destekçi sertifikasının süresi dolmuş %1, lütfen yenilenmiş bir sertifika edinin
-
+ , but it remains valid for the current build, ancak mevcut derleme için geçerli kalır
-
+ The supporter certificate will expire in %1 days, please get an updated certificateDestekçi sertifikasının süresi %1 gün içinde dolacak, lütfen yenilenmiş bir sertifika edinin
@@ -4148,12 +4153,12 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.%1 İçeriği Otomatik Siliniyor
-
+ Current Config: %1Geçerli Yapılandırma: %1
-
+ Sandboxie config has been reloadedSandboxie yapılandırması yeniden yüklendi
@@ -8246,27 +8251,27 @@ The process match level has a higher priority than the specificity and describes
QPlatformTheme
-
+ OKTAMAM
-
+ ApplyUygula
-
+ Cancelİptal
-
+ &Yes&Evet
-
+ &No&Hayır
diff --git a/SandboxiePlus/SandMan/sandman_uk.ts b/SandboxiePlus/SandMan/sandman_uk.ts
index 7a6df68a..bb1353be 100644
--- a/SandboxiePlus/SandMan/sandman_uk.ts
+++ b/SandboxiePlus/SandMan/sandman_uk.ts
@@ -1632,11 +1632,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All ProgramsУсі програми
@@ -1647,9 +1647,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1Група: %1
@@ -1684,7 +1684,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.Шаблон не можна редагувати.
@@ -2103,82 +2103,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ AnyБудь-який
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessДозволити доступ
-
+ Block using Windows Filtering PlatformЗаборонити за допомогою Windows Filtering Platform
-
+ Block by denying access to Network devicesЗаборонити, заблокувавши доступ до пристроїв мережі
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowДозволити
-
+ Block (WFP)Заборонити (WFP)
-
+ Block (NDev)Заборонити (NDev)
-
+ A non empty program name is required.
-
+ BlockЗаборонити
@@ -2839,22 +2839,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Очікування папки: %1
-
+ Deleting folder: %1Видалення папки: %1
-
+ Merging folders: %1 >> %2Злиття папок: %1 та %2
-
+ Finishing Snapshot Merge...Завершення злиття знімків...
@@ -2935,7 +2935,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
@@ -2960,37 +2960,37 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Reset ColumnsСкинути налаштування стовців
-
+ Copy CellСкопіювати клітинку
-
+ Copy RowСкопіювати рядок
-
+ Copy PanelСкопіювати панель
@@ -3279,7 +3279,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusПро Sandboxie-Plus
@@ -3372,10 +3372,10 @@ Do you want to do the clean up?
-
-
-
-
+
+
+
+ Don't show this message again.Не показувати це повідомлення знову.
@@ -3452,37 +3452,37 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
-
+ Auto deleting content of %1Автоматичне видалення вмісту %1
-
+ Auto removing sandbox %1
-
+ %1 Directory: %2
-
+ Application
-
+ Installation
-
+ Current Config: %1Поточна конфігурація: %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3490,34 +3490,34 @@ Please check if there is an update for sandboxie.
-
+ Don't show this message again for the current build.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.
-
+ Do you want the setup wizard to be omitted?
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Помилка
-
+ Failed to stop all Sandboxie componentsНе вдалося зупинити всі компоненти Sandboxie
-
+ Failed to start required Sandboxie componentsНе вдалося запустити потрібні для Sandboxie компоненти
@@ -3567,7 +3567,7 @@ Please check if there is an update for sandboxie.
- Портативно
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3576,27 +3576,27 @@ No will choose: %2
Ні, Sandboxie-Plus обере: %2
-
+ A sandbox must be emptied before it can be deleted.Перед видаленням пісочницю необхідно очистити.
-
+ The supporter certificate is not valid for this build, please get an updated certificateЦей сертифікат спонсора не є дійсним для цієї збірки, будь ласка, оновіть сертифікат
-
+ The supporter certificate has expired%1, please get an updated certificateТермін дії сертифіката підтримки закінчився%1, будь ласка, отримайте оновлений сертифікат
-
+ , but it remains valid for the current build, але він залишається дісним для поточної збірки
-
+ The supporter certificate will expire in %1 days, please get an updated certificateЦей сертифікат спонсора буде вичерпаний через %1 днів, будь ласка, отримайте новий сертифікат
@@ -3613,12 +3613,12 @@ No will choose: %2
Оновлений сертифікат недоступний.
-
+ Default sandbox not found; creating: %1Пісочниця за замовчуванням була не знайдена, створення: %1
-
+ - NOT connected - НЕ підключено
@@ -3631,7 +3631,7 @@ No will choose: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Ця функція доступна лише для спонсорів проєкту. Процеси, які працюють з цією функцією без сертифіката спонсора, будуть завершені через 5 хвилин.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Станьте спонсором проєкту</a>, та отримайте <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертифікат спонсора</a>
@@ -3687,22 +3687,22 @@ No will choose: %2
-
+ Only Administrators can change the config.Тільки адміністратор може змінити конфігурацію.
-
+ Please enter the configuration password.Будь ласка, введіть пароль конфігурації.
-
+ Login Failed: %1Не вдалося увійти: %1
-
+ Do you want to terminate all processes in all sandboxes?Ви дійсно хочете завершити всі процеси в всіх пісочницях?
@@ -3711,57 +3711,57 @@ No will choose: %2
Завершити без запитань
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Програму Sandboxie-Plus було запущено в портативному режимі та для цього режиму потрібно сторити необхідні служби. Це може потребувати права адміністратора.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.УВАГА: Ще один агент (можливо, SbieCtrl.exe) вже керує цим сеаносом Sandboxie, будь ласка, завершіть інший сеанс та повторно підключиться.
-
+ Executing maintenance operation, please wait...Виконання операції для технічного обслуговування, зачекайте...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Ви дійсно хочете скинути сховані вікна повідомлень (так), або тількі всі повідомлення журналу (ні)?
-
+ The changes will be applied automatically whenever the file gets saved.Зміни будуть застосовані автоматично, коли файл буде збережений.
-
+ The changes will be applied automatically as soon as the editor is closed.Зміни будуть застосовані автоматично, коли текстовий редактор буде закритий.
-
+ Error Status: 0x%1 (%2)Код помилки: 0x%1 (%2)
-
+ UnknownНевідомо
-
+ Failed to copy box data filesНе вдалося скопіювати файли пісочниці
-
+ Failed to remove old box data filesНе вдалося видалити старі файли пісочниці
-
+ Unknown Error Status: 0x%1Невідома помилка: 0x%1
@@ -3795,13 +3795,13 @@ Note: The update check is often behind the latest GitHub release to ensure that
Sandboxie-Plus - це продовження Sandboxie з відкритим кодом.<br />Відвідайте <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> для більш детальної інформації.<br /><br />%3<br /><br />Версія драйвера: %1<br />Особливості: %2<br /><br />Зображення з <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.Для цієї дії потрібні права адміністратора.
-
+ Sandboxie-Plus Insider [%1]
@@ -3926,47 +3926,47 @@ Note: The update check is often behind the latest GitHub release to ensure that
Каталог встановлення: %1
-
+ Sandboxie-Plus Version: %1 (%2)Версія Sandboxie-Plus: %1 (%2)
-
+ Data Directory: %1Каталог даних: %1
-
+ for Personal use
-
+ - for Non-Commercial use ONLY
-
-
-
+
+
+ (%1) (%1)
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.Програма %1, яка працює в пісочниці %2, буде завершена через 5 хвилин, тому що пісочниця має в своїй конфігурації функції, які доступні лише для спонсорів.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.Контейнер %1 налаштовано на використання функцій, доступних виключно для спонсорів проекту, ці попередні налаштування будуть ігноровані.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Стань спонсором проекту</a>, та отримай <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертифікат спонсора</a>
@@ -4009,121 +4009,126 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Failed to configure hotkey %1, error: %2
-
+ The box %1 is configured to use features exclusively available to project supporters.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!
-
-
+
+ Don't ask in future
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Будь ласка, введіть тривалість вимкнення правил примусових програм у секундах.
-
+ No Recovery
-
+ No Messages
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
+ Maintenance operation failed (%1)Помилка технічного обслуговування (%1)
-
+ Maintenance operation completed
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.В інтерфейсі Plus цю функцію інтегровано в головний список ізольованого програмного середовища.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Використовуючи контекстне меню пісочниці/групи, ви можете переміщувати пісочниці та групи в інші групи. Ви також можете використовувати перетягування для переміщення елементів. Крім того, ви також можете використовувати клавіші зі стрілками, утримуючи натиснутою клавішу ALT, щоб переміщувати елементи вгору та вниз у їхній групі.<br />Ви можете створювати нові поля та групи з меню "Пісочниці".
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4131,219 +4136,219 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Sandboxie config has been reloadedКонфігурацію Sandboxie перезавантажено
-
+ Failed to execute: %1Не вдалося виконати: %1
-
+ Failed to connect to the driverНе вдалося підключитись до драйвера
-
+ Failed to communicate with Sandboxie Service: %1Не вдалося підключитись до служби Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Була знайдена несумісна версія Sandboxie %1. Сумістима версія: %2
-
+ Can't find Sandboxie installation path.Не вдалося знайти місце інсталяції Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Не вдалося скопіювати конфігурацію пісочниці %1: %2
-
+ A sandbox of the name %1 already existsПісочниця з назвою %1 вже існує
-
+ Failed to delete sandbox %1: %2Не вдалося видалити пісочницю %1: %2
-
+ The sandbox name can not be longer than 32 characters.Назва пісочниці має не більше 32 символів.
-
+ The sandbox name can not be a device name.Назва пісочниці не повина містити назву пристроя.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Назва пісочниці має містити тільки літери, цифри та символи підкреслення, які будуть відображатись, як пробіли.
-
+ Failed to terminate all processesНе вдалося завершити всі процеси
-
+ Delete protection is enabled for the sandboxЗахист від видалення увімкнен для пісочниці
-
+ All sandbox processes must be stopped before the box content can be deletedУсі процеси пісочниці необхідно зупинити, перш ніж вміст контейнера можна буде видалити
-
+ Error deleting sandbox folder: %1Помилка під час видалення папки пісочниці: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move directory '%1' to '%2'Не вдалося перемістити папку '%1' до '%2'
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Ця операція зі знимком не може виконатись, коли процеси працюють в пісочниці.
-
+ Failed to create directory for new snapshotНе вдалося створити папку для нового знімку
-
+ Snapshot not foundЗнімок не знайдено
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Помилка під час злиття папок знімків '%1' та '%2', знімок був створений неповністю.
-
+ Failed to remove old snapshot directory '%1'Не вдалося видалити папку старого знімку '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsНе можливо видалити знімок, який використовується в інших знімках
-
+ You are not authorized to update configuration in section '%1'Ви не маєте прав змінювати конфігурацію в розділі '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Не вдалося застосвувати параметр %1 конфігурації в розділі %2: %3
-
+ Can not create snapshot of an empty sandboxНе можливо створити знімок у порожній пісочниці
-
+ A sandbox with that name already existsПісочниця з такою назвою вже існує
-
+ The config password must not be longer than 64 charactersПароль конфігурації не повинен містити більше 64 символів
-
+ The operation was canceled by the userОперацію скасував користувач
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded
-
+ Failed to create the box archive
-
+ Failed to open the 7z archive
-
+ Failed to unpack the box archive
-
+ The selected 7z file is NOT a box archive
-
+ Operation failed for %1 item(s).Дія не вдалась для %1 елемента(ів).
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4352,37 +4357,37 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ви хочете відкрити %1 у веб-браузері із пісочниці (так) чи ззовні (ні)?
-
+ Remember choice for later.Запам'ятати цей вибір.
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseЗакрити
-
+ &Find ...
-
+ All columns
@@ -8767,27 +8772,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OKОК
-
+ ApplyЗастосувати
-
+ CancelВідмінити
-
+ &YesТак (&Y)
-
+ &NoНі (&N)
diff --git a/SandboxiePlus/SandMan/sandman_vi.ts b/SandboxiePlus/SandMan/sandman_vi.ts
index fdf138b1..6ca612b3 100644
--- a/SandboxiePlus/SandMan/sandman_vi.ts
+++ b/SandboxiePlus/SandMan/sandman_vi.ts
@@ -1624,11 +1624,11 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
-
-
-
-
+
+
+
+
+ All ProgramsTất cả Chương Trình
@@ -1639,9 +1639,9 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
-
-
+
+
+ Group: %1Nhóm: %1
@@ -1676,7 +1676,7 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
+ Template values can not be edited.Không thể chỉnh sửa giá trị mẫu.
@@ -2095,82 +2095,82 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
+ AnyMọi Loại
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow accessCho phép truy cập
-
+ Block using Windows Filtering PlatformChặn bằng cách sử dụng Nền tảng lọc của Windows
-
+ Block by denying access to Network devicesChặn bằng cách từ chối quyền truy cập vào các thiết bị Mạng
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ AllowCho phép
-
+ Block (WFP)Chặn (WFP)
-
+ Block (NDev)Chặn (NDev)
-
+ A non empty program name is required.
-
+ BlockChặn
@@ -2819,22 +2819,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Đang đợi thư mục: %1
-
+ Deleting folder: %1Xóa thư mục: %1
-
+ Merging folders: %1 >> %2Hợp nhất các thư mục: %1 >> %2
-
+ Finishing Snapshot Merge...Kết thúc Hợp nhất Bản Ghi chụp nhanh...
@@ -2915,27 +2915,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
-
+ Reset ColumnsĐặt lại cột
-
+ Copy CellSao chép ô
-
+ Copy RowSao chép hàng
-
+ Copy PanelSao chép bảng điều khiển
@@ -3211,7 +3211,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusVề Sandboxie-Plus
@@ -3285,10 +3285,10 @@ Bạn có muốn dọn dẹp không?
-
-
-
-
+
+
+
+ Don't show this message again.Không hiển thị lại thông báo này.
@@ -3350,44 +3350,44 @@ Sandbox này ngăn quyền truy cập vào tất cả các vị trí dữ liệu
Tự động xóa Nội dung %1
-
+ Auto deleting content of %1Tự động xóa nội dung của %1
-
+ %1 Directory: %2%1 Thư mục: %2
-
+ ApplicationĐăng kí
-
+ InstallationCài đặt
-
+ Current Config: %1Cấu hình hiện tại: %1
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Lỗi
-
+ Failed to stop all Sandboxie componentsKhông dừng được tất cả các thành phần Sandboxie
-
+ Failed to start required Sandboxie componentsKhông thể khởi động các thành phần Sandboxie bắt buộc
@@ -3446,7 +3446,7 @@ Sandbox này ngăn quyền truy cập vào tất cả các vị trí dữ liệu
Đã xóa các mẫu đã xóa ...
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3455,12 +3455,12 @@ Có sẽ chọn: %1
Không sẽ chọn: %2
-
+ Default sandbox not found; creating: %1Không tìm thấy Sandbox mặc định; tạo: %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3468,22 +3468,22 @@ Please check if there is an update for sandboxie.
-
+ Don't show this message again for the current build.
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.
-
+ Do you want the setup wizard to be omitted?
-
+ - NOT connected - Không kết nối
@@ -3496,7 +3496,7 @@ Please check if there is an update for sandboxie.
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Bộ tính năng đã chọn chỉ có sẵn cho những người ủng hộ dự án. Các quá trình bắt đầu trong một Sandbox có bật bộ tính năng này mà không có chứng chỉ hỗ trợ sẽ bị chấm dứt sau 5 phút.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Trở thành người hỗ trợ dự án</a>, và nhận được một <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">giấy chứng nhận người ủng hộ</a>
@@ -3552,22 +3552,22 @@ Please check if there is an update for sandboxie.
-
+ Only Administrators can change the config.Chỉ Quản trị viên mới có thể thay đổi cấu hình.
-
+ Please enter the configuration password.Vui lòng nhập mật khẩu cấu hình.
-
+ Login Failed: %1Đăng nhập thất bại: %1
-
+ Do you want to terminate all processes in all sandboxes?Bạn có muốn chấm dứt tất cả các quy trình trong tất cả các hộp cát không?
@@ -3576,107 +3576,107 @@ Please check if there is an update for sandboxie.
Chấm dứt tất cả mà không cần hỏi
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus đã được khởi động ở chế độ Portable và nó cần tạo ra các dịch vụ cần thiết. Điều này sẽ nhắc nhở các đặc quyền quản trị.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.THẬN TRỌNG: Một tác nhân khác (có thể là SbieCtrl.exe) đã quản lý phiên Sandboxie này, vui lòng đóng nó trước và kết nối lại để tiếp quản.
-
+ Executing maintenance operation, please wait...Đang thực hiện hoạt động bảo trì, vui lòng đợi...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Bạn cũng muốn đặt lại các hộp thông báo ẩn (có), hay chỉ tất cả các thông báo nhật ký (không)?
-
+ The changes will be applied automatically whenever the file gets saved.Các thay đổi sẽ được áp dụng tự động bất cứ khi nào tệp được lưu.
-
+ The changes will be applied automatically as soon as the editor is closed.Các thay đổi sẽ được áp dụng tự động ngay khi đóng trình chỉnh sửa.
-
+ Error Status: 0x%1 (%2)Tình trạng lỗi: 0x%1 (%2)
-
+ UnknownKhông xác định
-
+ A sandbox must be emptied before it can be deleted.Sandbox phải được làm trống trước khi có thể bị xóa.
-
+ Failed to copy box data filesKhông sao chép được tệp dữ liệu từ Sandbox
-
+ Failed to remove old box data filesKhông xóa được các tệp dữ liệu Sandbox cũ
-
+ Unknown Error Status: 0x%1Trạng thái lỗi không xác định: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseĐóng
-
+ &Find ...
-
+ All columns
@@ -3698,7 +3698,7 @@ Please check if there is an update for sandboxie.
Sandboxie-Plus là phần tiếp theo mã nguồn mở của Sandboxie.<br />Ghé thăm <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> để biết thêm thông tin.<br /><br />%3<br /><br />Phiên bản trình điều khiển: %1<br />Đặc trưng: %2<br /><br />Biểu tượng từ <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.Quyền quản trị viên được yêu cầu cho hoạt động này.
@@ -3737,7 +3737,7 @@ Please check if there is an update for sandboxie.
-
+ Sandboxie-Plus Insider [%1]
@@ -3879,52 +3879,52 @@ Please check if there is an update for sandboxie.
Shortcut đã thêm vào: %1
-
+ Auto removing sandbox %1
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus Phiên bản: %1 (%2)
-
+ Data Directory: %1Thư mục dữ liệu: %1
-
+ for Personal use chỉ dùng với mục đích cá nhân
-
+ - for Non-Commercial use ONLY - CHỈ sử dụng cho mục đích phi thương mại
-
-
-
+
+
+ (%1) (%1)
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.Chương trình %1 bắt đầu trong Sandbox %2 sẽ kết thúc sau 5 phút vì Sandbox đã được định cấu hình để sử dụng các tính năng dành riêng cho những người ủng hộ dự án.
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.Sandbox %1 được định cấu hình để sử dụng các tính năng dành riêng cho những người ủng hộ dự án, các giá trị đặt trước này sẽ bị bỏ qua.
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert"> Trở thành người hỗ trợ dự án</a>, và nhận được một <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">giấy chứng nhận người ủng hộ</a>
@@ -3967,121 +3967,126 @@ Please check if there is an update for sandboxie.
-
+ Failed to configure hotkey %1, error: %2
-
+ The box %1 is configured to use features exclusively available to project supporters.
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!Thời hạn đánh giá đã hết!!!
-
-
+
+ Don't ask in futureKhông hỏi trong tương lai
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Vui lòng nhập thời lượng, tính bằng giây, để tắt các quy tắc Chương trình bắt buộc.
-
+ No RecoveryKhông có phục hồi
-
+ No MessagesKhông có tin nhắn
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
+ Maintenance operation failed (%1)Hoạt động bảo trì không thành công (%1)
-
+ Maintenance operation completedHoạt động bảo trì đã hoàn thành
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Trong giao diện người dùng Plus, chức năng này đã được tích hợp vào chế độ xem danh sách Sandbox chính.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Sử dụng menu ngữ cảnh Sandbox/nhóm, bạn có thể di chuyển các Sandbox và nhóm sang các nhóm khác. Bạn cũng có thể sử dụng kéo và thả để di chuyển các mục xung quanh. Ngoài ra, bạn cũng có thể sử dụng các phím mũi tên trong khi giữ ALT để di chuyển các mục lên và xuống trong nhóm của chúng.<br />Bạn có thể tạo các Sandbox và nhóm mới từ menu Sandbox.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4089,219 +4094,219 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Sandboxie config has been reloadedCấu hình Sandboxie đã được tải lại
-
+ Failed to execute: %1Không thực hiện được: %1
-
+ Failed to connect to the driverKhông kết nối được với trình điều khiển
-
+ Failed to communicate with Sandboxie Service: %1Không kết nối được với Dịch vụ Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Không tương thích Sandboxie %1 đã được tìm thấy. Các phiên bản tương thích: %2
-
+ Can't find Sandboxie installation path.Không thể tìm thấy đường dẫn cài đặt Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Không sao chép được cấu hình từ Sandbox %1: %2
-
+ A sandbox of the name %1 already existsSandbox tên %1 đã tồn tại
-
+ Failed to delete sandbox %1: %2Không xóa được Sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.Tên Sandbox không được dài hơn 32 ký tự.
-
+ The sandbox name can not be a device name.Tên Sandbox không được là tên thiết bị.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Tên Sandbox chỉ có thể chứa các chữ cái, chữ số và dấu gạch dưới được hiển thị dưới dạng dấu cách.
-
+ Failed to terminate all processesKhông thể chấm dứt tất cả các tiến trình
-
+ Delete protection is enabled for the sandboxXóa bảo vệ được bật cho Sandbox
-
+ All sandbox processes must be stopped before the box content can be deletedTất cả các quá trình Sandbox phải được dừng lại trước khi có thể xóa nội dung Sandbox
-
+ Error deleting sandbox folder: %1Lỗi khi xóa thư mục Sandbox: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move directory '%1' to '%2'Không di chuyển được thư mục '%1' to '%2'
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Không thể thực hiện thao tác Bản ghi nhanh này trong khi các quy trình vẫn đang chạy trong Sandbox.
-
+ Failed to create directory for new snapshotKhông tạo được thư mục cho Bản ghi nhanh mới
-
+ Snapshot not foundBản ghi nhanh không tìm thấy
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Lỗi khi hợp nhất các thư mục bản ghi nhanh '%1' với '%2', bản ghi nhanh chưa được hợp nhất hoàn toàn.
-
+ Failed to remove old snapshot directory '%1'Không xóa được thư mục bản ghi nhanh cũ '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsKhông thể xóa bản ghi nhanh được nhiều bản ghi nhanh sau này chia sẻ
-
+ You are not authorized to update configuration in section '%1'Bạn không được phép cập nhật cấu hình trong phần '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Không đặt được cài đặt cấu hình %1 trong phần %2: %3
-
+ Can not create snapshot of an empty sandboxKhông thể tạo ảnh chụp nhanh của một Sandbox trống
-
+ A sandbox with that name already existsMột Sandbox có tên đó đã tồn tại
-
+ The config password must not be longer than 64 charactersMật khẩu cấu hình không được dài hơn 64 ký tự
-
+ The operation was canceled by the userThao tác đã bị người dùng hủy bỏ
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded
-
+ Failed to create the box archive
-
+ Failed to open the 7z archive
-
+ Failed to unpack the box archive
-
+ The selected 7z file is NOT a box archive
-
+ Operation failed for %1 item(s).Thao tác không thành công cho %1 mục.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4310,28 +4315,28 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Bạn muốn mở %1 trong trình duyệt Web có Sandbox (có) hay không có Sandbox (không)?
-
+ Remember choice for later.Hãy nhớ lựa chọn cho sau này.
-
+ The supporter certificate is not valid for this build, please get an updated certificateChứng chỉ hỗ trợ không hợp lệ cho bản dựng này, vui lòng nhận chứng chỉ cập nhật
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificateChứng chỉ người hỗ trợ đã hết hạn %1, vui lòng nhận chứng chỉ cập nhật
-
+ , but it remains valid for the current build, nhưng nó vẫn có giá trị cho bản dựng hiện tại
-
+ The supporter certificate will expire in %1 days, please get an updated certificateChứng chỉ người hỗ trợ sẽ hết hạn sau %1 ngày, xin vui lòng nhận được một chứng chỉ cập nhật
@@ -8610,27 +8615,27 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
QPlatformTheme
-
+ OKOK
-
+ ApplyÁp dụng
-
+ CancelHủy bỏ
-
+ &Yes&Có
-
+ &No&Không
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index 44c7589c..d3f3b00f 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -2016,9 +2016,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1组: %1
@@ -2216,11 +2216,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All Programs所有程序
@@ -2255,7 +2255,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.模板值不能被编辑
@@ -2370,82 +2370,82 @@ Please select a folder which contains this file.
-
+ Any任意
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow access允许访问
-
+ Block using Windows Filtering Platform阻止访问 - 使用 Windows 筛选平台 (WFP)
-
+ Block by denying access to Network devices阻止访问 - 通过禁止访问网络设备
-
+ Please enter a domain to be filtered请输入一个过滤域名
-
+ Please enter IP and Port.请输入IP地址与端口。
-
+ entry: IP or Port cannot be empty进入:IP或端口号不能为空
-
-
+
+ Allow允许
-
+ Block (WFP)阻止 (WFP)
-
+ Block (NDev)阻止 (网络设备)
-
+ A non empty program name is required.程序名不得为空
-
+ Block阻止
@@ -2942,22 +2942,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1正在等待文件夹: %1
-
+ Deleting folder: %1正在删除文件夹: %1
-
+ Merging folders: %1 >> %2正在合并文件夹: %1 >> %2
-
+ Finishing Snapshot Merge...正在完成快照合并...
@@ -3038,7 +3038,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
@@ -3063,22 +3063,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
没有必沙程序
-
+ Reset Columns重置列
-
+ Copy Cell复制此格
-
+ Copy Row复制此行
-
+ Copy Panel复制此表
@@ -3334,7 +3334,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Sandboxie-Plus Insider [%1]Sandboxie-Plus 内部版本 [%1]
@@ -3365,7 +3365,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-Plus关于 Sandboxie-Plus
@@ -3573,10 +3573,10 @@ Do you want to do the clean up?
-
-
-
-
+
+
+
+ Don't show this message again.不再显示此消息
@@ -3651,79 +3651,79 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
添加快捷方式: %1
-
+ Auto deleting content of %1自动删除 %1 的内容
-
+ Auto removing sandbox %1自动删除沙盒 %1
-
+ %1 Directory: %2%1 目录: %2
-
+ Application应用程序
-
+ Installation安装
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - 错误
-
+ Failed to stop all Sandboxie components停止全部的 Sandboxie 组件失败
-
+ Failed to start required Sandboxie components启动所需的 Sandboxie 组件失败
-
+ Sandboxie config has been reloaded已重载沙盒配置文件
-
+ The supporter certificate is not valid for this build, please get an updated certificate此赞助者凭据对该版本沙盒无效,请获取可用的新凭据
-
+ The supporter certificate has expired%1, please get an updated certificate此赞助者凭据已过期%1,请获取可用的新凭据
-
+ , but it remains valid for the current build,但它对当前构建的沙盒版本仍然有效
-
+ The supporter certificate will expire in %1 days, please get an updated certificate此赞助者凭据将在 %1 天后过期,请获取可用的新凭据
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>选定的特性只对项目赞助者可用。如果没有赞助者凭据,在启用该特性的沙盒里启动的进程,将在 5 分钟后被终止。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成为项目赞助者</a>,以获得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">赞助者凭据</a>
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3732,87 +3732,87 @@ Please check if there is an update for sandboxie.
请检查 Sandboxie 是否有更新版本。
-
+ Don't show this message again for the current build.对于当前版本,不再显示此消息。
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.您的Windows版本 %1 超过了 Sandboxie 版本的当前已知支持范围,Sandboxie 将尝试使用上一个已知的配置,这可能会导致系统不稳定。
-
+ Do you want the setup wizard to be omitted?是否要省略安装向导?
-
+ Error Status: 0x%1 (%2)错误状态: 0x%1 (%2)
-
+ Unknown未知
-
+ Failed to remove old box data files无法删除旧沙盒中的数据文件
-
+ The operation was canceled by the user该操作已被用户取消
-
+ Unknown Error Status: 0x%1未知错误状态: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?是否打开链接 %1?您可以选择是否使用沙盒中的浏览器打开。
-
+ Sandboxed沙盒中的
-
+ Unsandboxed沙盒外的
-
+ Case Sensitive区分大小写
-
+ RegExp正则表达式
-
+ Highlight高亮显示
-
+ Close关闭
-
+ &Find ...查找(&F)...
-
+ All columns所有列
@@ -3834,7 +3834,7 @@ Please check if there is an update for sandboxie.
Sandboxie-Plus 是知名程序 Sandboxie 自开源以来的一个延续。<br />访问 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 来了解更多信息<br /><br />%3<br /><br />驱动版本: %1<br />特性: %2<br /><br />图标来源: <a href="https://icons8.com">icons8.com</a>
-
+ Default sandbox not found; creating: %1未找到默认沙盒,正在创建:%1
@@ -3872,7 +3872,7 @@ Please check if there is an update for sandboxie.
已清理缺失的模板...
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3881,25 +3881,25 @@ No will choose: %2
“否”将选择目录: %2
-
+ - NOT connected - 未连接
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.在沙盒 %2 中启动的程序 %1 将在 5 分钟之后自动终止,因为使用此沙盒被配置为项目赞助者的特供功能
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.沙盒 %1 被配置为使用项目赞助者专有的沙盒类型,这些预设选项将被忽略
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成为项目赞助者</a>,以获得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">赞助者凭据</a>
@@ -3970,17 +3970,17 @@ No will choose: %2
-
+ Only Administrators can change the config.仅管理员可更改该配置
-
+ Please enter the configuration password.请输入配置保护密码
-
+ Login Failed: %1登录失败:%1
@@ -4002,7 +4002,7 @@ No will choose: %2
正在导入:%1
-
+ Do you want to terminate all processes in all sandboxes?确定要终止所有沙盒中的所有进程吗?
@@ -4011,59 +4011,59 @@ No will choose: %2
终止所有且不再询问
-
+ No Recovery没有恢复文件
-
+ No Messages没有消息
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus 正以便携模式启动,需要创建所需的服务,这将会寻求管理员权限
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.警告:另一代理程序 (可能是 SbieCtrl.exe) 已接管当前 Sandboxie 会话,请将其关闭,然后尝试重新连接以接管控制
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>错误:</b>Sandboxie Plus管理器(SandMan.exe)没有有效的签名(SandMan.exe.sig)。请从<a href="https://sandboxie-plus.com/go.php?to=sbie-get">官方下载</a>。
-
+ Maintenance operation completed维护作业完成
-
+ Executing maintenance operation, please wait...正在执行操作维护,请稍候...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.在 Plus 视图,此功能已被整合到主沙盒列表中
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.使用“沙盒/组”右键菜单,你可以将沙盒在沙盒组之间移动
同时,你也可以通过 Alt + 方向键或鼠标拖动来整理列表
另外,你可以通过右键菜单来新建“沙盒/组”
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?请确认是否要重置已隐藏的消息框(选“是”),或者仅重置所有日志消息(选“否”)?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4072,128 +4072,128 @@ This file is part of Sandboxie and all changed done to it will be reverted next
因为该文件是 Sandboxie 的一部分并且所有的更改会在下次更新时被重置
-
+ The changes will be applied automatically whenever the file gets saved.当文件被保存时,将自动应用更改
-
+ The changes will be applied automatically as soon as the editor is closed.编辑器被关闭后,更改将很快自动应用
-
+ Administrator rights are required for this operation.此操作需要管理员权限
-
+ Failed to execute: %1执行失败:%1
-
+ Failed to connect to the driver连接驱动程序失败
-
+ Failed to communicate with Sandboxie Service: %1无法与 Sandboxie 服务通信:%1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2发现不兼容的 Sandboxie %1,其它兼容的版本:%2
-
+ Can't find Sandboxie installation path.无法找到 Sandboxie 的安装路径
-
+ Failed to copy configuration from sandbox %1: %2复制沙盒配置 %1: %2 失败
-
+ A sandbox of the name %1 already exists名为 %1 的沙盒已存在
-
+ Failed to delete sandbox %1: %2删除沙盒 %1: %2 失败
-
+ The sandbox name can not be longer than 32 characters.沙盒名称不能超过 32 个字符
-
+ The sandbox name can not be a device name.沙盒名称不能为设备名称
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.沙盒名称只能包含字母、数字和下划线(显示为空格)
-
+ Failed to terminate all processes终止所有进程失败
-
+ Delete protection is enabled for the sandbox该沙盒已启用删除保护
-
+ All sandbox processes must be stopped before the box content can be deleted在删除沙盒内容之前,必须先停止沙盒内的所有进程
-
+ Error deleting sandbox folder: %1删除沙盒文件夹出错:%1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.必须先停止沙盒中的所有进程,然后才能对其进行重命名。
-
+ A sandbox must be emptied before it can be deleted.沙盒被删除前必须清空
-
+ Failed to move directory '%1' to '%2'移动目录 '%1' 到 '%2' 失败
-
+ Failed to move box image '%1' to '%2'无法将沙盒镜像“%1”移动到“%2”
-
+ This Snapshot operation can not be performed while processes are still running in the box.因有进程正在沙盒中运行,此快照操作无法完成
-
+ Failed to create directory for new snapshot创建新快照的目录失败
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus 版本: %1 (%2)
@@ -4225,225 +4225,230 @@ This file is part of Sandboxie and all changed done to it will be reverted next
在沙盒内所有进程终止时执行
-
+ Current Config: %1当前配置: %1
-
+ Data Directory: %1数据存放目录: %1
-
+ for Personal use个人用户
-
+ - for Non-Commercial use ONLY - 仅用于非商业用途
-
+ Failed to configure hotkey %1, error: %2配置快捷键 %1 失败,错误:%2
-
-
-
+
+
+ (%1) (%1)
-
+ The box %1 is configured to use features exclusively available to project supporters.沙盒 %1 被指定为仅对项目赞助者开放的功能。
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.沙盒 %1 被指定为需要更高级赞助许可证的功能。
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">升级您的许可证</a> 以解锁高级功能。
-
+ The selected feature requires an <b>advanced</b> supporter certificate.选择的功能需要更高级赞助许可证。
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>您所选择的特性仅适用于项目赞助者。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成为项目赞助者</a>, 获取一份 <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">赞助者凭据</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!您尝试使用的凭据已被阻止,这意味着它已因故失效。任何使用该凭据的企图都构成对使用条款的违反!
-
+ The Certificate Signature is invalid!凭据的签名无效!
-
+ The Certificate is not suitable for this product.凭据不适用于本产品。
-
+ The Certificate is node locked.凭据已被节点锁定。
-
+ The support certificate is not valid.
Error: %1赞助者凭据无效。
错误:%1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!已超过评估期限!!!
-
-
+
+ Don't ask in future此后不再询问
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?确定要终止加密沙盒中的所有进程并卸载加密沙盒吗?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.请输入「停用必沙程序规则」的持续时间 (单位: 秒)
-
+ Maintenance operation failed (%1)维护作业执行失败 (%1)
-
+ Failed to copy box data files复制沙盒数据文件失败
-
+ Snapshot not found没有找到快照
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.合并快照目录 '%1' 和 '%2' 出错,快照没有被完全合并
-
+ Failed to remove old snapshot directory '%1'移除旧快照的目录 '%1' 失败
-
+ Can't remove a snapshot that is shared by multiple later snapshots无法移除被多个后续快照所共享的快照
-
+ You are not authorized to update configuration in section '%1'您未被授权在 '%1' 更新配置
-
+ Failed to set configuration setting %1 in section %2: %3在 %2: %3 中设定配置设置 %1 失败
-
+ Can not create snapshot of an empty sandbox无法为空的沙盒创建快照
-
+ A sandbox with that name already exists已存在同名沙盒
-
+ The config password must not be longer than 64 characters配置保护密码长度不能超过 64 个字符
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted无法删除已卸载的沙盒的内容
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded导入/导出不可用,无法加载 7z.dll
-
+ Failed to create the box archive无法创建沙盒存档
-
+ Failed to open the 7z archive无法打开 7z 备份
-
+ Failed to unpack the box archive无法解压沙盒备份
-
+ The selected 7z file is NOT a box archive所选的 7z 文件不是沙盒备份
-
+ Operation failed for %1 item(s).%1 项操作失败。
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p><h3>关于 Sandboxie+</h3><p>版本 %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1本 Sandboxie+ 副本已授权为: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.Sandboxie+ 可免费用于个人和其他非商业用途。
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Sandboxie+ 是 Sandboxie 的开源延续。<br />前往 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 了解更多信息。<br /><br />%2<br /><br />特性: %3<br /><br />已安装: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />图标来自于 <a href="https://icons8.com">icons8.com</a>
@@ -4452,7 +4457,7 @@ Error: %1
是否在沙盒中的浏览器打开链接 %1 ?
-
+ Remember choice for later.记住选择供之后使用
@@ -8792,27 +8797,27 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
QPlatformTheme
-
+ OK确定
-
+ Apply应用
-
+ Cancel取消
-
+ &Yes是(&Y)
-
+ &No否(&N)
diff --git a/SandboxiePlus/SandMan/sandman_zh_TW.ts b/SandboxiePlus/SandMan/sandman_zh_TW.ts
index 9619ad29..cc6813ff 100644
--- a/SandboxiePlus/SandMan/sandman_zh_TW.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_TW.ts
@@ -1719,11 +1719,11 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
-
-
+
+
+
+
+ All Programs所有程式
@@ -1734,9 +1734,9 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
-
+
+
+ Group: %1群組: %1
@@ -1771,7 +1771,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Template values can not be edited.範本值無法編輯。
@@ -2191,82 +2191,82 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Any任何
-
+ TCPTCP
-
+ UDPUDP
-
+ ICMPICMP
-
+ Allow access允許存取
-
+ Block using Windows Filtering Platform阻止存取 - 使用 Windows 篩選平台 (WFP)
-
+ Block by denying access to Network devices阻止存取 - 透過拒絕對區域網路裝置的存取
-
+ Please enter a domain to be filtered
-
+ Please enter IP and Port.
-
+ entry: IP or Port cannot be empty
-
-
+
+ Allow允許
-
+ Block (WFP)阻止 (WFP)
-
+ Block (NDev)阻止 (區域網路裝置)
-
+ A non empty program name is required.程式名稱不得為空。
-
+ Block阻止
@@ -2924,22 +2924,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1正在等待資料夾: %1
-
+ Deleting folder: %1正在刪除資料夾: %1
-
+ Merging folders: %1 >> %2正在合併資料夾: %1 >> %2
-
+ Finishing Snapshot Merge...正在完成快照合併...
@@ -3020,27 +3020,27 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandMan
-
+ Sandboxie-Plus v%1Sandboxie-Plus v%1
-
+ Reset Columns重設欄
-
+ Copy Cell複製單元格
-
+ Copy Row複製列
-
+ Copy Panel複製表格
@@ -3303,7 +3303,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-Plus關於 Sandboxie-Plus
@@ -3388,10 +3388,10 @@ Do you want to do the clean up?
-
-
-
-
+
+
+
+ Don't show this message again.不再顯示此訊息。
@@ -3451,32 +3451,32 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
自動刪除 %1 的內容
-
+ Auto deleting content of %1自動刪除 %1 的內容
-
+ %1 Directory: %2%1 目錄: %2
-
+ Application應用程式
-
+ Installation安裝
-
+ Current Config: %1目前組態: %1
-
+ Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
Please check if there is an update for sandboxie.Your Windows build %1 exceeds the current support capabilities of your Sandboxie version, resulting in the disabling of token-based security isolation. Consequently, all applications will operate in application compartment mode without secure isolation.
@@ -3485,34 +3485,34 @@ Please check if there is an update for sandboxie.
請檢查 Sandboxie 是否有更新。
-
+ Don't show this message again for the current build.不再於目前組建中顯示此訊息。
-
+ Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.您的 Windows 組建版本 %1 超出了 Sandboxie 版本目前已知的支援能力,Sandboxie 將嘗試使用最後已知的偏移值,這可能會導致系統不穩定。
-
+ Do you want the setup wizard to be omitted?是否略過設定精靈?
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - 錯誤
-
+ Failed to stop all Sandboxie components停止所有 Sandboxie 元件失敗
-
+ Failed to start required Sandboxie components啟動所需 Sandboxie 元件失敗
@@ -3532,7 +3532,7 @@ Please check if there is an update for sandboxie.
清理已刪除的範本...
-
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
Yes will choose: %1
No will choose: %2
@@ -3541,12 +3541,12 @@ No will choose: %2
「否」將選擇: %2
-
+ Default sandbox not found; creating: %1未找到預設沙箱; 建立中: %1
-
+ - NOT connected - 未連線
@@ -3559,7 +3559,7 @@ No will choose: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>選取的功能只對專案贊助者可用。如果沒有贊助者憑證,在啟用此功能的沙箱內啟動的處理程序,將在 5 分鐘後自動終止。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成為專案贊助者</a>,以取得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">贊助者憑證</a>
@@ -3619,22 +3619,22 @@ No will choose: %2
-
+ Only Administrators can change the config.僅管理員可變更此組態。
-
+ Please enter the configuration password.請輸入組態的密碼。
-
+ Login Failed: %1登入失敗: %1
-
+ Do you want to terminate all processes in all sandboxes?確定要終止所有沙箱中的所有處理程序嗎?
@@ -3643,107 +3643,107 @@ No will choose: %2
終止全部並不再詢問
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus 已於便攜模式中啟動,需建立必要的服務。這將需要管理員權限。
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.注意: 另一個代理 (可能是 SbieCtrl.exe) 已經在管理這個 Sandboxie 工作階段,請先關閉其他代理並重新連線進行接管控制。
-
+ Executing maintenance operation, please wait...正在執行維護作業,請稍候...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?請確認是否要重設已隱藏的訊息框 (選「是」),或者僅重設所有日誌訊息 (選「否」)?
-
+ The changes will be applied automatically whenever the file gets saved.每當檔案儲存後更改將自動套用。
-
+ The changes will be applied automatically as soon as the editor is closed.變更將在編輯器關閉後自動提交。
-
+ Error Status: 0x%1 (%2)錯誤程式碼: 0x%1 (%2)
-
+ Unknown未知
-
+ A sandbox must be emptied before it can be deleted.刪除沙箱前必須先清空。
-
+ Failed to copy box data files複製沙箱資料檔案失敗
-
+ Failed to remove old box data files移除舊沙箱資料檔案失敗
-
+ Unknown Error Status: 0x%1未知錯誤狀態: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?是否在沙箱化或非沙箱化網路瀏覽器中開啟 %1?
-
+ Sandboxed沙箱化
-
+ Unsandboxed非沙箱化
-
+ Case Sensitive區分大小寫
-
+ RegExp正規表示式
-
+ Highlight醒目提示
-
+ Close關閉
-
+ &Find ...尋找(&F)...
-
+ All columns所有欄
@@ -3765,7 +3765,7 @@ No will choose: %2
Sandboxie-Plus 是著名程式 Sandboxie 自開源以來的一個延續。<br />造訪 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 來了解更多資訊。<br /><br />%3<br /><br />驅動版本: %1<br />功能: %2<br /><br />圖示來源 <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.此操作需要管理員權限。
@@ -3804,7 +3804,7 @@ No will choose: %2
-
+ Sandboxie-Plus Insider [%1]Sandboxie-Plus 測試人員 [%1]
@@ -3958,27 +3958,27 @@ No will choose: %2
加入捷徑至: %1
-
+ Auto removing sandbox %1自動刪除沙箱 %1
-
+ Sandboxie-Plus Version: %1 (%2)Sandboxie-Plus 版本: %1 (%2)
-
+ Data Directory: %1資料目錄: %1
-
+ for Personal use 個人使用者
-
+ - for Non-Commercial use ONLY - 僅用於非商業用途
@@ -3987,27 +3987,27 @@ No will choose: %2
是否略過設定精靈?
-
-
-
+
+
+ (%1) (%1)
-
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.在沙箱 %2 中啟動的程式 %1 將在 5 分鐘之後自動終止,因為此沙箱被設定為使用專案贊助者的專有功能。
-
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.沙箱 %1 被設定為使用專案贊助者專有的沙箱類型,這些預設選項將被忽略。
-
-
-
-
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成為專案贊助者</a>,以取得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">贊助者憑證</a>
@@ -4050,122 +4050,127 @@ No will choose: %2
執行 沙箱終止階段 中: %1
-
+ Failed to configure hotkey %1, error: %2設定快速鍵組態 %1 失敗,錯誤: %2
-
+ The box %1 is configured to use features exclusively available to project supporters.沙箱 %1 之組態設定為使用專案贊助者獨有的功能。
-
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.沙箱 %1 之組態設定為使用需要<b>進階</b>贊助者憑證的功能。
-
-
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">升級憑證</a>以解鎖進階功能。
-
+ The selected feature requires an <b>advanced</b> supporter certificate.選定的功能需要<b>進階</b>贊助者憑證。
-
+
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>所選功能集僅供專案贊助者使用。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成為專案贊助者</a >,並取得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">贊助者憑證</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!您正在嘗試使用的憑證已被封鎖,這意味著其已因某些原因而失效。任何試圖使用它的行為都違反了使用條款!
-
+ The Certificate Signature is invalid!憑證數位簽章無效!
-
+ The Certificate is not suitable for this product.憑證不適用於此產品。
-
+ The Certificate is node locked.憑證已被節點鎖定。
-
+ The support certificate is not valid.
Error: %1贊助憑證無效。
錯誤: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!評估期已過!!!
-
-
+
+ Don't ask in future此後不再詢問
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?是否終止加密沙箱中的所有處理程序並將其卸載?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.請輸入「停用強制沙箱程式規則」的持續時間 (單位:秒)。
-
+ No Recovery沒有復原檔案
-
+ No Messages沒有訊息
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>錯誤:</b> Sandboxie-Plus 管理員 (SandMan.exe) 沒有有效的數位簽章 (SandMan.exe.sig)。請從<a href="https://sandboxie-plus.com/go.php?to=sbie-get">官方下載頁面</a>下載可信賴的版本。
-
+ Maintenance operation failed (%1)維護作業執行失敗 (%1)
-
+ Maintenance operation completed維護作業完成
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.在 Plus UI 中,此功能已被整合到主沙箱清單檢視中。
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.使用「沙箱/群組」右鍵選單,您可以將沙箱在沙箱群組之間移動。同時,您也可以透過 Alt + 方向鍵或滑鼠拖曳來整理清單。<br />另外,您可以透過右鍵選單來新增「沙箱/群組」。
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4174,219 +4179,219 @@ This file is part of Sandboxie and all changed done to it will be reverted next
因為該檔案是 Sandboxie 的一部分並且所有的變更會在下次 Sandboxie 更新時被還原。
-
+ Sandboxie config has been reloaded已重新載入 Sandboxie 組態
-
+ Failed to execute: %1執行失敗: %1
-
+ Failed to connect to the driver連線驅動程式失敗
-
+ Failed to communicate with Sandboxie Service: %1無法與 Sandboxie 服務建立聯絡: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2已發現不相容的 Sandboxie %1。相容版本為: %2
-
+ Can't find Sandboxie installation path.無法找到 Sandboxie 安裝路徑。
-
+ Failed to copy configuration from sandbox %1: %2複製沙箱組態 %1: %2 失敗
-
+ A sandbox of the name %1 already exists沙箱名稱 %1 已存在
-
+ Failed to delete sandbox %1: %2刪除沙箱 %1: %2 失敗
-
+ The sandbox name can not be longer than 32 characters.沙箱名稱不能超過 32 個字元。
-
+ The sandbox name can not be a device name.沙箱名稱不能為裝置名稱。
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.沙箱名稱不能為空白,只能包含字母、數字和下劃線。
-
+ Failed to terminate all processes終止所有處理程序失敗
-
+ Delete protection is enabled for the sandbox沙箱的刪除保護已被啟用
-
+ All sandbox processes must be stopped before the box content can be deleted在刪除沙箱內容之前,必須先停止沙箱內的所有處理程序
-
+ Error deleting sandbox folder: %1刪除沙箱資料夾錯誤: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.在重新命名沙箱前,所有處理程序都應被停止。
-
+ Failed to move directory '%1' to '%2'移動目錄 '%1' 到 '%2' 失敗
-
+ Failed to move box image '%1' to '%2'移動沙箱映像 '%1' 至 '%2' 失敗
-
+ This Snapshot operation can not be performed while processes are still running in the box.因處理程序正在沙箱中執行,此快照操作無法完成。
-
+ Failed to create directory for new snapshot為新快照建立目錄失敗
-
+ Snapshot not found未發現快照
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.合併快照目錄 '%1' 和 '%2' 錯誤,快照沒有被完全合併。
-
+ Failed to remove old snapshot directory '%1'移除舊快照的目錄 '%1' 失敗
-
+ Can't remove a snapshot that is shared by multiple later snapshots無法刪除由多個後續快照共享的快照
-
+ You are not authorized to update configuration in section '%1'您未被授權在 '%1' 更新組態
-
+ Failed to set configuration setting %1 in section %2: %3在 %2: %3 中設定組態選項 %1 失敗
-
+ Can not create snapshot of an empty sandbox無法為空的沙箱建立快照
-
+ A sandbox with that name already exists已存在同名沙箱
-
+ The config password must not be longer than 64 characters組態密碼不得超過 64 個字元
-
+ The operation was canceled by the user此操作已被使用者取消
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted未被裝載的沙箱之內容不可被刪除
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded匯入/匯出無法使用,無法載入 7z.dll
-
+ Failed to create the box archive無法建立沙箱封存檔案
-
+ Failed to open the 7z archive無法開啟 7z 封存檔案
-
+ Failed to unpack the box archive無法解壓縮沙箱封存檔案
-
+ The selected 7z file is NOT a box archive所選的 7z 檔案不是沙箱封存檔案
-
+ Operation failed for %1 item(s).%1 項操作失敗。
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4395,28 +4400,28 @@ This file is part of Sandboxie and all changed done to it will be reverted next
是否在沙箱化網頁瀏覽器開啟連結 %1 ?
-
+ Remember choice for later.記住選擇供之後使用。
-
+ The supporter certificate is not valid for this build, please get an updated certificate此贊助者憑證對此版本沙箱無效,請取得更新的憑證
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificate此贊助者憑證已逾期%1,請取得更新的憑證
-
+ , but it remains valid for the current build,但它對目前組建的沙箱版本仍然有效
-
+ The supporter certificate will expire in %1 days, please get an updated certificate此贊助者憑證將在 %1 天後逾期,請取得更新的憑證
@@ -8705,27 +8710,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK確定
-
+ Apply套用
-
+ Cancel取消
-
+ &Yes是(&Y)
-
+ &No否(&N)
From 077a20a363251fb78b8aadebbe42564b8ba6fbc8 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 13 May 2024 01:30:50 +0000
Subject: [PATCH 110/122] Update SBIE language reports (RunReport)
---
Sandboxie/msgs/report/Report-German.txt | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/Sandboxie/msgs/report/Report-German.txt b/Sandboxie/msgs/report/Report-German.txt
index 4e947035..14672c77 100644
--- a/Sandboxie/msgs/report/Report-German.txt
+++ b/Sandboxie/msgs/report/Report-German.txt
@@ -2,7 +2,5 @@
* Missing Messages in Text-German-1031.txt
*==========
-2360;pop;err;01
-SBIE2360 Failed to inject SOCKS5 proxy: %2
-.
+There are no missing messages.
From f049d00873a43b4ced2941740703052f87d47f23 Mon Sep 17 00:00:00 2001
From: Michael <33252157+APMichael@users.noreply.github.com>
Date: Mon, 13 May 2024 10:57:59 +0200
Subject: [PATCH 111/122] Update sandman_de.ts
- Added new translation.
---
SandboxiePlus/SandMan/sandman_de.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts
index e0174716..dcd19d84 100644
--- a/SandboxiePlus/SandMan/sandman_de.ts
+++ b/SandboxiePlus/SandMan/sandman_de.ts
@@ -3334,7 +3334,7 @@ Nein wählt: %2
<br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ <br />Sie müssen auf der Stufe Great Patreon oder höher sein, um diese Funktion freizuschalten.
From cf9d9e973b15129c8c76cac6c8ee80452257c0b6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?VenusGirl=E2=9D=A4?=
<53147200+VenusGirl@users.noreply.github.com>
Date: Wed, 15 May 2024 18:44:17 +0900
Subject: [PATCH 112/122] Update Text-Korean-1042.txt
---
Sandboxie/msgs/Text-Korean-1042.txt | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Sandboxie/msgs/Text-Korean-1042.txt b/Sandboxie/msgs/Text-Korean-1042.txt
index 3af69d4b..a425357a 100644
--- a/Sandboxie/msgs/Text-Korean-1042.txt
+++ b/Sandboxie/msgs/Text-Korean-1042.txt
@@ -751,6 +751,10 @@ SBIE2332 SbiePst.dat 파일에 액세스할 수 없습니다
SBIE2335 %2 프로세스에 대해 초기화하지 못했습니다
.
+2360;pop;err;01
+SBIE2360 SOCKS5 프록시를 삽입하지 못했습니다: %2
+.
+
2336;pop;err;01
SBIE2336 GUI 서버의 오류: %2
.
From 134aae66ca3a7ed04fbfd04a7e600decd44bd66f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?VenusGirl=E2=9D=A4?=
<53147200+VenusGirl@users.noreply.github.com>
Date: Wed, 15 May 2024 19:33:08 +0900
Subject: [PATCH 113/122] Update sandman_ko.ts
---
SandboxiePlus/SandMan/sandman_ko.ts | 186 ++++++++++++++--------------
1 file changed, 95 insertions(+), 91 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_ko.ts b/SandboxiePlus/SandMan/sandman_ko.ts
index 5cb4cf14..fe7d9f5b 100644
--- a/SandboxiePlus/SandMan/sandman_ko.ts
+++ b/SandboxiePlus/SandMan/sandman_ko.ts
@@ -241,7 +241,7 @@
Drop rights from Administrators and Power Users groups
- 관리자 및 Power Users 그룹에서 권한 삭제
+ 관리자 및 Power Users 그룹에서 권한 삭제
@@ -2261,17 +2261,17 @@ Note: The update check is often behind the latest GitHub release to ensure that
Please enter a domain to be filtered
-
+ 필터링할 도메인을 입력하세요Please enter IP and Port.
-
+ IP와 포트를 입력하세요. entry: IP or Port cannot be empty
-
+ 엔트리: IP 또는 포트는 비워 둘 수 없습니다
@@ -3562,7 +3562,7 @@ Sandboxie에 대한 업데이트가 있는지 확인 부탁드립니다.
<br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ <br />이 기능을 잠금 해제하려면 Great Patreon 레벨 이상이어야 합니다.
@@ -4482,22 +4482,22 @@ This file is part of Sandboxie and all changed done to it will be reverted next
<h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ <h3>Sandboxie-Plus 정보</h3><p>버전 %1 한국어 번역: 비너스걸💋</p><p>This copy of Sandboxie-Plus is certified for: %1
-
+ 이 Sandboxie-Plus 사본은 다음에 대해 인증되었습니다. %1Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus는 개인용 및 비상업용으로 무료입니다.Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
-
+ Sandboxie-Plus는 Sandboxie의 오픈 소스 연속입니다.<br />더 많은 정보를 보려면 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 를 방문하세요.<br /><br />%2<br /><br />기능: %3<br /><br />설치: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Do you want to open %1 in a sandboxed (yes) or unsandboxed (no) Web browser?
@@ -5702,7 +5702,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
This does not look like a Sandboxie-Plus Serial Number.<br />If you have attempted to enter the UpdateKey or the Signature from a certificate, that is not correct, please enter the entire certificate into the text area above instead.
-
+ 이것은 Sandboxie-Plus 일련 번호처럼 보이지 않습니다.<br />인증서의 UpdateKey 또는 서명을 입력하려고 시도했지만 올바르지 않은 경우, 위의 텍스트 영역에 전체 인증서를 대신 입력하세요.
@@ -6580,49 +6580,49 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Sandboxie-Plus - Test Proxy
-
+ Sandboxie-Plus - 프록시 테스트N/A
-
+ 해당없음Testing...
-
+ 테스트 중...This test cannot be disabled.
-
+ 이 테스트는 비활성화할 수 없습니다.[%1] Starting Test 1: Connection to the Proxy Server
-
+ [%1] 테스트 1 시작: 프록시 서버에 대한 연결[%1] IP Address: %2
-
+ [%1] IP 주소: %2[%1] Connection established.
-
+ [%1] 연결이 설정되었습니다.[%1] Test passed.
-
+ [%1] 테스트가 통과되었습니다.[%1] Connection to proxy server failed: %2.
-
+ [%1] 프록시 서버에 연결하지 못했습니다: %2.
@@ -6630,88 +6630,88 @@ If you are a great patreaon supporter already, sandboxie can check online for an
[%1] Test failed.
-
+ [%1] 테스트에 실패했습니다.[%1] Starting Test 2: Connection through the Proxy Server
-
+ [%1] 테스트 2 시작: 프록시 서버를 통한 연결[%1] Authentication was successful.
-
+ [%1] 인증에 성공했습니다.[%1] Connection to %2 established through the proxy server.
-
+ [%1] 프록시 서버를 통해 %2에 연결이 설정되었습니다.[%1] Loading a web page to test the proxy server.
-
+ [%1] 프록시 서버를 테스트하기 위해 웹 페이지를 로드하는 중입니다.[%1] %2.
-
+ [%1] %2.[%1] Connection through proxy server failed: %2.
-
+ [%1] 프록시 서버를 통한 연결에 실패했습니다: %2.[%1] Web page loaded successfully.
-
+ [%1] 웹 페이지가 성공적으로 로드되었습니다.Timeout
-
+ 시간 초과[%1] Failed to load web page: %2.
-
+ [%1] 웹 페이지를 로드하지 못했습니다: %2.[%1] Starting Test 3: Proxy Server latency
-
+ [%1] 테스트 3 시작: 프록시 서버 지연 시간[%1] Latency through proxy server: %2ms.
-
+ [%1] 프록시 서버를 통한 지연 시간: %2ms.[%1] Failed to get proxy server latency: Request timeout.
-
+ [%1] 프록시 서버 대기 시간을 가져오지 못했습니다: 요청 시간 초과입니다.[%1] Failed to get proxy server latency.
-
+ [%1] 프록시 서버 지연 시간을 가져오지 못했습니다.[%1] Test Finished.
-
+ [%1] 테스트가 완료되었습니다.Stopped
-
+ 중지됨Stop
-
+ 중지
@@ -6720,42 +6720,46 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Address: %2
Protocol: %3
Authentication: %4%5
-
+ [%1] 테스트 시작...
+ 프록시 서버
+ 주소: %2
+ 프로토콜: %3
+ 인증: %4%5Retry
-
+ 재시도Test Passed
-
+ 테스트 통과Test Failed
-
+ 테스트 실패Invalid Timeout value. Please enter a value between 1 and 60.
-
+ 시간 초과 값이 잘못되었습니다. 1에서 60 사이의 값을 입력하세요.Invalid Port value. Please enter a value between 1 and 65535.
-
+ 포트 값이 잘못되었습니다. 1에서 65535 사이의 값을 입력하세요.Invalid Host value. Please enter a valid host name excluding 'http[s]://'.
-
+ 잘못된 호스트 값입니다. 'http[s]://'를 제외한 올바른 호스트 이름을 입력하세요.Invalid Ping Count value. Please enter a value between 1 and 10.
-
+ 잘못된 핑 카운트 값입니다. 1에서 10 사이의 값을 입력하세요.
@@ -7242,7 +7246,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
Auto delete content changes when last sandboxed process terminatesAuto delete content when last sandboxed process terminates
- 마지막 샌드박스 프로세스가 종료될 때 내용 자동 삭제
+ 마지막 샌드박스 처리가 종료될 때 내용 변경 자동 삭제
@@ -7640,29 +7644,29 @@ If leader processes are defined, all others are treated as lingering processes.<
Prevent sandboxed processes from interfering with power operations (Experimental)
-
+ 샌드박스가 적용된 프로세스가 전원 운영을 방해하지 않도록 방지 (실험적)Prevent move mouse, bring in front, and similar operations, this is likely to cause issues with games.Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.
-
+ 마우스를 움직이거나 앞으로 가져오는 등의 조작을 방지하면 게임에서 문제가 발생할 수 있습니다.Prevent interference with the user interface (Experimental)
-
+ 사용자 인터페이스 간섭 방지(실험적)This feature does not block all means of obtaining a screen capture, only some common ones.This feature does not block all means of optaining a screen capture only some common once.
-
+ 이 기능은 화면 캡처를 얻는 모든 수단을 차단하는 것이 아니라 일부 일반적인 수단만 차단합니다.Prevent sandboxed processes from capturing window images (Experimental, may cause UI glitches)
-
+ 샌드박스 프로세스가 창 이미지를 캡처하지 못하도록 방지 (실험적, UI 결함을 유발할 수 있음)
@@ -8847,62 +8851,62 @@ Please note that this values are currently user specific and saved globally for
DNS Filter
-
+ DNS 필터Add Filter
-
+ 필터 추가With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.
-
+ DNS 필터를 사용하면 개별 도메인을 프로세스 단위로 차단할 수 있습니다. 차단하려면 IP 열을 비워 두거나 리디렉션할 IP를 입력하세요.Domain
-
+ 도메인Internet Proxy
-
+ 인터넷 프록시Add Proxy
-
+ 프록시 추가Test Proxy
-
+ 프록시 테스트Auth
-
+ 인증Login
-
+ 로그인Password
-
+ 암호Sandboxed programs can be forced to use a preset SOCKS5 proxy.
-
+ 샌드박스가 적용된 프로그램은 사전 설정된 SOCKS5 프록시를 사용하도록 강제할 수 있습니다.Resolve hostnames via proxy
-
+ 프록시를 통해 호스트 이름 확인
@@ -8923,7 +8927,7 @@ Please note that this values are currently user specific and saved globally for
Open Template
-
+ 템플릿 열기
@@ -9370,7 +9374,7 @@ Please note that this values are currently user specific and saved globally for
Hotkey for suspending all processes:Hotkey for suspending all process
- 모든 프로세스를 일시 중지하는 단축키
+ 모든 프로세스를 일시 중지하는 단축키:
@@ -9505,7 +9509,7 @@ Please note that this values are currently user specific and saved globally for
Hide SandMan windows from screen capture (UI restart required)
-
+ 화면 캡처에서 SandMan 창 숨기기 (UI 재시작 필요)
@@ -10008,7 +10012,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Open Template
-
+ 템플릿 열기
@@ -10190,129 +10194,129 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Test Proxy
-
+ 프록시 테스트Test Settings...
-
+ 테스트 설정...Testing...
-
+ 테스트 중...Proxy Server
-
+ 프록시 서버Address:
-
+ 주소:127.0.0.1:80
-
+ 127.0.0.1:80Protocol:
- 프로토콜:
+ 프로토콜:SOCKS 5
-
+ SOCKS 5Authentication:
-
+ 인증:NO
-
+ 없음Login:
-
+ 로그인:username
-
+ 사용자 이름Timeout (secs):
-
+ 시간 초과 (초):5
-
+ 5Test 1: Connection to the Proxy Server
-
+ 테스트 1: 프록시 서버에 연결Enable this test
-
+ 이 테스트 사용Test 2: Connection through the Proxy Server
-
+ 테스트 2: 프록시 서버를 통한 연결Target host:
-
+ 대상 호스트:www.google.com
-
+ www.google.comPort:
- 포트:
+ 포트:80
-
+ 80Load a default web page from the host. (There must be a web server running on the host)
-
+ 호스트에서 기본 웹 페이지를 로드합니다. (호스트에서 웹 서버가 실행 중이어야 합니다.)Test 3: Proxy Server latency
-
+ 테스트 3: 프록시 서버 지연 시간Ping count:
-
+ 핑 횟수:Increase ping count to improve the accuracy of the average latency calculation. More pings help to ensure that the average is representative of typical network conditions.
-
+ 핑 수를 늘리면 평균 지연 시간 계산의 정확도가 향상됩니다. 핑 수가 많을수록 평균이 일반적인 네트워크 상태를 대표할 수 있도록 하는 데 도움이 됩니다.
From 46dd1da5efd80ebae432c52df5a2dd13a67369e8 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 16 May 2024 01:30:03 +0000
Subject: [PATCH 114/122] Update SBIE language reports (RunReport)
---
Sandboxie/msgs/report/Report-Korean.txt | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/Sandboxie/msgs/report/Report-Korean.txt b/Sandboxie/msgs/report/Report-Korean.txt
index e2be807d..75f30986 100644
--- a/Sandboxie/msgs/report/Report-Korean.txt
+++ b/Sandboxie/msgs/report/Report-Korean.txt
@@ -2,7 +2,5 @@
* Missing Messages in Text-Korean-1042.txt
*==========
-2360;pop;err;01
-SBIE2360 Failed to inject SOCKS5 proxy: %2
-.
+There are no missing messages.
From 5e2f2ca1c41b2deca73b9d8fb20ed48abb1f11c4 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Fri, 17 May 2024 17:57:02 +0200
Subject: [PATCH 115/122] fix
---
Sandboxie/core/drv/dyn_data.c | 2 +-
Sandboxie/core/drv/verify.c | 3 +++
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/Sandboxie/core/drv/dyn_data.c b/Sandboxie/core/drv/dyn_data.c
index 103e3d57..86f90070 100644
--- a/Sandboxie/core/drv/dyn_data.c
+++ b/Sandboxie/core/drv/dyn_data.c
@@ -34,7 +34,7 @@ const wchar_t Parameters[] = L"\\Parameters";
#define IMAGE_FILE_MACHINE_ARM64 0xAA64 // ARM64 Little-Endian
#endif
-#define WIN11_LATEST 26212 // <-----
+#define WIN11_LATEST 26217 // <-----
#define SVR2025 26040
#define WIN11_FIRST 22000
#define SVR2022 20348
diff --git a/Sandboxie/core/drv/verify.c b/Sandboxie/core/drv/verify.c
index 5cde51b0..1ef4d692 100644
--- a/Sandboxie/core/drv/verify.c
+++ b/Sandboxie/core/drv/verify.c
@@ -851,6 +851,9 @@ _FX NTSTATUS KphValidateCertificate()
Verify_CertInfo.type = eCertEternal;
Verify_CertInfo.level = eCertMaxLevel;
}
+ else if (_wcsicmp(level, L"LARGE") == 0 && cert_date.QuadPart < KphGetDate(1, 04, 2022)) {
+ Verify_CertInfo.level = eCertStandard2;
+ }
else if (_wcsicmp(level, L"LARGE") == 0) { // 2 years - personal
if(CERT_IS_TYPE(Verify_CertInfo, eCertPatreon))
Verify_CertInfo.level = eCertStandard2;
From 7ec0877c7de678475a0a8086b64eb74382073efa Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Fri, 17 May 2024 18:07:47 +0200
Subject: [PATCH 116/122] Update CHANGELOG.md
---
CHANGELOG.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 10fa92bc..29c245c1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -25,6 +25,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Changed
- validated compatybility with windows build 26212 and updated dyn data
+### Fixed
+- fixed an issue with an early batch of Large Supporter certificates
+
## [1.13.7 / 5.68.7] - 2024-05-01
From 1be0c2a26d1da19159388287b2ae324e37abd600 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Fri, 17 May 2024 18:18:10 +0200
Subject: [PATCH 117/122] Update verify.c
---
Sandboxie/core/drv/verify.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Sandboxie/core/drv/verify.c b/Sandboxie/core/drv/verify.c
index 1ef4d692..847ee8ce 100644
--- a/Sandboxie/core/drv/verify.c
+++ b/Sandboxie/core/drv/verify.c
@@ -852,7 +852,7 @@ _FX NTSTATUS KphValidateCertificate()
Verify_CertInfo.level = eCertMaxLevel;
}
else if (_wcsicmp(level, L"LARGE") == 0 && cert_date.QuadPart < KphGetDate(1, 04, 2022)) {
- Verify_CertInfo.level = eCertStandard2;
+ Verify_CertInfo.level = eCertAdvanced;
}
else if (_wcsicmp(level, L"LARGE") == 0) { // 2 years - personal
if(CERT_IS_TYPE(Verify_CertInfo, eCertPatreon))
From 6bebe977605084804abd84b95e0914a955909d0d Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Fri, 17 May 2024 18:21:11 +0200
Subject: [PATCH 118/122] Update verify.c
[skipci]
---
Sandboxie/core/drv/verify.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Sandboxie/core/drv/verify.c b/Sandboxie/core/drv/verify.c
index 847ee8ce..1ef4d692 100644
--- a/Sandboxie/core/drv/verify.c
+++ b/Sandboxie/core/drv/verify.c
@@ -852,7 +852,7 @@ _FX NTSTATUS KphValidateCertificate()
Verify_CertInfo.level = eCertMaxLevel;
}
else if (_wcsicmp(level, L"LARGE") == 0 && cert_date.QuadPart < KphGetDate(1, 04, 2022)) {
- Verify_CertInfo.level = eCertAdvanced;
+ Verify_CertInfo.level = eCertStandard2;
}
else if (_wcsicmp(level, L"LARGE") == 0) { // 2 years - personal
if(CERT_IS_TYPE(Verify_CertInfo, eCertPatreon))
From 58ae4fc4db5ee031ca596fb3088299cb76ea3013 Mon Sep 17 00:00:00 2001
From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com>
Date: Fri, 17 May 2024 19:05:25 +0200
Subject: [PATCH 119/122] fix2
---
Sandboxie/core/dll/dns_filter.c | 2 +-
Sandboxie/core/dll/net.c | 2 +-
Sandboxie/core/drv/verify.c | 25 +++++++++++--------
Sandboxie/core/drv/verify.h | 2 +-
Sandboxie/core/svc/MountManager.cpp | 2 +-
SandboxiePlus/SandMan/SandMan.cpp | 10 ++------
.../SandMan/Windows/OptionsGeneral.cpp | 3 +--
.../SandMan/Windows/OptionsNetwork.cpp | 2 +-
.../SandMan/Windows/SettingsWindow.cpp | 2 ++
9 files changed, 25 insertions(+), 25 deletions(-)
diff --git a/Sandboxie/core/dll/dns_filter.c b/Sandboxie/core/dll/dns_filter.c
index a8e96c27..f301dca7 100644
--- a/Sandboxie/core/dll/dns_filter.c
+++ b/Sandboxie/core/dll/dns_filter.c
@@ -194,7 +194,7 @@ _FX BOOLEAN WSA_InitNetDnsFilter(HMODULE module)
map_init(&WSA_LookupMap, Dll_Pool);
SCertInfo CertInfo = { 0 };
- if (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_ADVANCED(CertInfo)) {
+ if (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_LEVEL(CertInfo, eCertAdvanced)) {
const WCHAR* strings[] = { L"NetworkDnsFilter" , NULL };
SbieApi_LogMsgExt(-1, 6009, strings);
diff --git a/Sandboxie/core/dll/net.c b/Sandboxie/core/dll/net.c
index e4a20ac9..a0490a96 100644
--- a/Sandboxie/core/dll/net.c
+++ b/Sandboxie/core/dll/net.c
@@ -1327,7 +1327,7 @@ _FX BOOLEAN WSA_InitNetProxy()
}
SCertInfo CertInfo = { 0 };
- if (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_ADVANCED(CertInfo)) {
+ if (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_LEVEL(CertInfo, eCertAdvanced)) {
const WCHAR* strings[] = { L"NetworkUseProxy" , NULL };
SbieApi_LogMsgExt(-1, 6009, strings);
diff --git a/Sandboxie/core/drv/verify.c b/Sandboxie/core/drv/verify.c
index 1ef4d692..40c5a2b5 100644
--- a/Sandboxie/core/drv/verify.c
+++ b/Sandboxie/core/drv/verify.c
@@ -842,8 +842,13 @@ _FX NTSTATUS KphValidateCertificate()
}
else if (!level || _wcsicmp(level, L"STANDARD") == 0) // not used, default does not have explicit level
Verify_CertInfo.level = eCertStandard;
- else if (_wcsicmp(level, L"ADVANCED") == 0)
- Verify_CertInfo.level = eCertAdvanced;
+ else if (_wcsicmp(level, L"ADVANCED") == 0)
+ {
+ if(Verify_CertInfo.type == eCertPatreon || Verify_CertInfo.type == eCertEntryPatreon)
+ Verify_CertInfo.level = eCertAdvanced1;
+ else
+ Verify_CertInfo.level = eCertAdvanced;
+ }
// scheme 1.1 >>>
else if (CERT_IS_TYPE(Verify_CertInfo, eCertPersonal) || CERT_IS_TYPE(Verify_CertInfo, eCertPatreon))
{
@@ -852,8 +857,10 @@ _FX NTSTATUS KphValidateCertificate()
Verify_CertInfo.level = eCertMaxLevel;
}
else if (_wcsicmp(level, L"LARGE") == 0 && cert_date.QuadPart < KphGetDate(1, 04, 2022)) {
- Verify_CertInfo.level = eCertStandard2;
+ Verify_CertInfo.level = eCertAdvanced1;
+ expiration_date.QuadPart = -2;
}
+ // todo: 01.09.2025: remove code for expired case LARGE
else if (_wcsicmp(level, L"LARGE") == 0) { // 2 years - personal
if(CERT_IS_TYPE(Verify_CertInfo, eCertPatreon))
Verify_CertInfo.level = eCertStandard2;
@@ -861,15 +868,11 @@ _FX NTSTATUS KphValidateCertificate()
Verify_CertInfo.level = eCertAdvanced;
expiration_date.QuadPart = cert_date.QuadPart + KphGetDateInterval(0, 0, 2); // 2 years
}
+ // todo: 01.09.2024: remove code for expired case MEDIUM
else if (_wcsicmp(level, L"MEDIUM") == 0) { // 1 year - personal
Verify_CertInfo.level = eCertStandard2;
}
- else if (_wcsicmp(level, L"ENTRY") == 0) { // PATREON-ENTRY new patreons get only 3 montgs for start
- Verify_CertInfo.level = eCertStandard2;
- if(CERT_IS_TYPE(Verify_CertInfo, eCertPatreon))
- Verify_CertInfo.type = eCertEntryPatreon;
- expiration_date.QuadPart = cert_date.QuadPart + KphGetDateInterval(0, 3, 0);
- }
+ // todo: 01.09.2024: remove code for expired case SMALL
else if (_wcsicmp(level, L"SMALL") == 0) { // 1 year - subscription
Verify_CertInfo.level = eCertStandard2;
Verify_CertInfo.type = eCertHome;
@@ -889,7 +892,9 @@ _FX NTSTATUS KphValidateCertificate()
// check if this is a subscription type certificate
BOOLEAN isSubscription = CERT_IS_SUBSCRIPTION(Verify_CertInfo);
- if (expiration_date.QuadPart != -1)
+ if (expiration_date.QuadPart == -2)
+ Verify_CertInfo.expired = 1; // but not outdated
+ else if (expiration_date.QuadPart != -1)
{
// check if this certificate is expired
if (expiration_date.QuadPart < LocalTime.QuadPart)
diff --git a/Sandboxie/core/drv/verify.h b/Sandboxie/core/drv/verify.h
index f10ea8e3..37199847 100644
--- a/Sandboxie/core/drv/verify.h
+++ b/Sandboxie/core/drv/verify.h
@@ -79,6 +79,7 @@ enum ECertLevel {
eCertNoLevel = 0b000,
eCertStandard = 0b010,
eCertStandard2 = 0b011,
+ eCertAdvanced1 = 0b100,
eCertAdvanced = 0b101,
eCertMaxLevel = 0b111,
};
@@ -86,7 +87,6 @@ enum ECertLevel {
#define CERT_IS_TYPE(cert,t) ((cert.type & 0b11100) == (unsigned long)(t))
#define CERT_IS_SUBSCRIPTION(cert) (CERT_IS_TYPE(cert, eCertBusiness) || CERT_IS_TYPE(cert, eCertHome) || cert.type == eCertEntryPatreon || CERT_IS_TYPE(cert, eCertEvaluation))
#define CERT_IS_INSIDER(cert) (CERT_IS_TYPE(cert, eCertEternal) || cert.type == eCertGreatPatreon)
-#define CERT_IS_ADVANCED(cert) (CERT_IS_TYPE(cert, eCertEternal) || (CERT_IS_LEVEL(cert, eCertAdvanced) && cert.type != eCertPatreon))
#define CERT_IS_LEVEL(cert,l) (cert.active && cert.level >= (unsigned long)(l))
#ifdef KERNEL_MODE
diff --git a/Sandboxie/core/svc/MountManager.cpp b/Sandboxie/core/svc/MountManager.cpp
index 8830bc6d..ae59a790 100644
--- a/Sandboxie/core/svc/MountManager.cpp
+++ b/Sandboxie/core/svc/MountManager.cpp
@@ -997,7 +997,7 @@ bool MountManager::AcquireBoxRoot(const WCHAR* boxname, const WCHAR* reg_root, c
std::wstring TargetNtPath;
SCertInfo CertInfo = { 0 };
- if ((UseFileImage || UseRamDisk) && (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_LEVEL(CertInfo, (UseFileImage ? eCertAdvanced : eCertStandard)))) {
+ if ((UseFileImage || UseRamDisk) && (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_LEVEL(CertInfo, (UseFileImage ? eCertAdvanced1 : eCertStandard)))) {
const WCHAR* strings[] = { boxname, UseFileImage ? L"UseFileImage" : L"UseRamDisk" , NULL };
SbieApi_LogMsgExt(session_id, UseFileImage ? 6009 : 6008, strings);
errlvl = 0x66;
diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp
index 35f9350f..e2042f97 100644
--- a/SandboxiePlus/SandMan/SandMan.cpp
+++ b/SandboxiePlus/SandMan/SandMan.cpp
@@ -2970,14 +2970,8 @@ bool CSandMan::CheckCertificate(QWidget* pWidget, int iType)
QString Message;
if (iType == 1 || iType == 2)
{
- if (iType == 1) {
- if (CERT_IS_LEVEL(g_CertInfo, eCertAdvanced))
- return true;
- }
- else {
- if (CERT_IS_ADVANCED(g_CertInfo))
- return true;
- }
+ if (CERT_IS_LEVEL(g_CertInfo, iType == 1 ? eCertAdvanced1 : eCertAdvanced))
+ return true;
Message = tr("The selected feature requires an advanced supporter certificate.");
if (iType == 2 && CERT_IS_TYPE(g_CertInfo, eCertPatreon))
diff --git a/SandboxiePlus/SandMan/Windows/OptionsGeneral.cpp b/SandboxiePlus/SandMan/Windows/OptionsGeneral.cpp
index 63137400..102b62d2 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsGeneral.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsGeneral.cpp
@@ -96,9 +96,8 @@ void COptionsWindow::CreateGeneral()
}
if (!CERT_IS_LEVEL(g_CertInfo, eCertStandard2))
COptionsWindow__AddCertIcon(ui.chkConfidential, true);
- if (!CERT_IS_LEVEL(g_CertInfo, eCertAdvanced)) {
+ if (!CERT_IS_LEVEL(g_CertInfo, eCertAdvanced1))
COptionsWindow__AddCertIcon(ui.chkEncrypt, true);
- }
m_HoldBoxType = false;
diff --git a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
index 153c9e43..fcad857b 100644
--- a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
+++ b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
@@ -62,7 +62,7 @@ void COptionsWindow::CreateNetwork()
connect(ui.tabsInternet, SIGNAL(currentChanged(int)), this, SLOT(OnInternetTab()));
- if (!CERT_IS_ADVANCED(g_CertInfo)) {
+ if (!CERT_IS_LEVEL(g_CertInfo, eCertAdvanced)) {
ui.tabDNS->setEnabled(false);
ui.tabNetProxy->setEnabled(false);
}
diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
index 9317b7ba..8326aea0 100644
--- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
+++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
@@ -1436,6 +1436,8 @@ QString CSettingsWindow::GetCertLevel()
QString CertLevel;
if (g_CertInfo.level == eCertAdvanced)
CertLevel = tr("Advanced");
+ else if (g_CertInfo.level == eCertAdvanced1)
+ CertLevel = tr("Advanced (L)");
else if (g_CertInfo.level == eCertMaxLevel)
CertLevel = tr("Max Level");
else if (g_CertInfo.level != eCertStandard && g_CertInfo.level != eCertStandard2)
From 14d385fa623e8724dc609ca859c678434680b770 Mon Sep 17 00:00:00 2001
From: DavidXanatos
Date: Fri, 17 May 2024 20:08:26 +0200
Subject: [PATCH 120/122] Update CHANGELOG.md
---
CHANGELOG.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 29c245c1..e9e87254 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,7 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
-## [1.14.0 / 5.69.0] - 2024-05-??
+## [1.14.0 / 5.69.0] - 2024-05-17
### Added
- Add option to limit the memory of sandboxed process and the number of process in single sandbox through job object. (thanks Yeyixiao)
From 986dbae2c4366e90f24800a5e11de495fb7ef9d3 Mon Sep 17 00:00:00 2001
From: DavidXanatos
Date: Fri, 17 May 2024 20:11:01 +0200
Subject: [PATCH 121/122] Update CHANGELOG.md
---
CHANGELOG.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e9e87254..be491f7f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,7 +23,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- added ability to automatically removes template references that begin with “Template_Temp_” in the sandbox.
### Changed
-- validated compatybility with windows build 26212 and updated dyn data
+- validated compatybility with windows build 26217 and updated dyn data
### Fixed
- fixed an issue with an early batch of Large Supporter certificates
From 4a8752fce258f731d38fce9db632acde87525127 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sat, 18 May 2024 01:27:59 +0000
Subject: [PATCH 122/122] Sync SBIE Plus language files (lupdate)
---
SandboxiePlus/SandMan/sandman_de.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_en.ts | 377 +++++++++++++------------
SandboxiePlus/SandMan/sandman_es.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_fr.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_hu.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_it.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_ja.ts | 377 +++++++++++++------------
SandboxiePlus/SandMan/sandman_ko.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_nl.ts | 377 +++++++++++++------------
SandboxiePlus/SandMan/sandman_pl.ts | 377 +++++++++++++------------
SandboxiePlus/SandMan/sandman_pt_BR.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_pt_PT.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_ru.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_sv_SE.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_tr.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_uk.ts | 377 +++++++++++++------------
SandboxiePlus/SandMan/sandman_vi.ts | 377 +++++++++++++------------
SandboxiePlus/SandMan/sandman_zh_CN.ts | 375 ++++++++++++------------
SandboxiePlus/SandMan/sandman_zh_TW.ts | 375 ++++++++++++------------
19 files changed, 3616 insertions(+), 3521 deletions(-)
diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts
index dcd19d84..0790fa62 100644
--- a/SandboxiePlus/SandMan/sandman_de.ts
+++ b/SandboxiePlus/SandMan/sandman_de.ts
@@ -1568,120 +1568,120 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Applikationsunterteilung
-
+ Custom iconEigenes Icon
-
+ Version 1Version 1
-
+ Version 2Version 2
-
+ Browse for ProgramZu Programm navigieren
-
+ Open Box OptionsÖffne Boxoptionen
-
+ Browse ContentInhalt durchsuchen
-
+ Start File RecoveryStarte Dateiwiederherstellung
-
+ Show Run DialogZeige Ausführen-Dialog
-
+ IndeterminateUnbestimmt
-
+ Backup Image HeaderAbbildheader sichern
-
+ Restore Image HeaderAbbildheader wiederherstellen
-
+ Change PasswordPasswort ändern
-
-
+
+ Always copyImmer kopieren
-
-
+
+ Don't copyNicht kopieren
-
-
+
+ Copy emptyOhne Inhalt kopieren
-
+ The image file does not existDie Abbilddatei existiert nicht
-
+ The password is wrongDas Passwort ist falsch
-
+ Unexpected error: %1Unerwarteter Fehler: %1
-
+ Image Password ChangedAbbildpasswort geändert
-
+ Backup Image Header for %1Sichere Abbildheader für %1
-
+ Image Header BackupedAbbildheader gesichert
-
+ Restore Image Header for %1Stelle Abbildheader wieder her für %1
-
+ Image Header RestoredAbbildheader wiederhergestellt
@@ -1748,23 +1748,23 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Einige Änderungen wurden bisher nicht gespeichert, möchten Sie dieses Einstellungsfenster wirklich schließen?
-
+ kilobytes (%1)Only capitalized.Kilobytes (%1)
-
+ Select colorFarbe auswählen
-
+ Select ProgramProgramm auswählen
-
+ Executables (*.exe *.cmd)Ausführbare Dateien (*.exe *.cmd)
@@ -1774,13 +1774,13 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
Bitte geben Sie eine Dienstbezeichnung ein
-
-
+
+ Please enter a menu titleBitte einen Menütitel eingeben
-
+ Please enter a commandBitte ein Kommando eingeben
@@ -1789,8 +1789,8 @@ Notiz: Die Updateprüfung ist oft zeitversetzt zu den letzten GitHub-Veröffentl
-
-
+
+
@@ -2075,8 +2075,8 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
-
-
+
+
@@ -2103,7 +2103,7 @@ Bitte wählen Sie einen Ordner, der diese Datei enthält.
-
+
@@ -2705,22 +2705,22 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
CSandBox
-
+ Waiting for folder: %1Warte auf Ordner: %1
-
+ Deleting folder: %1Lösche Ordner: %1
-
+ Merging folders: %1 >> %2Führe Ordner zusammen: %1 >> %2
-
+ Finishing Snapshot Merge...Beende Schnappschuss Zusammenführung...
@@ -2803,22 +2803,22 @@ Anders als der Vorschaukanal, enthält es keine ungetesteten, möglicherweise fe
Sandboxie-Plus v%1
-
+ Reset ColumnsSpalten zurücksetzen
-
+ Copy CellZelle kopieren
-
+ Copy RowSpalte kopieren
-
+ Copy PanelTafel kopieren
@@ -3322,195 +3322,195 @@ Nein wählt: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgraden Sie Ihr Zertifikat</a> um alle erweiterten Funktionen freizuschalten.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.Diese Funktion erfordert ein <b>erweitertes</b> Unterstützerzertifikat.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.<br />Sie müssen auf der Stufe Great Patreon oder höher sein, um diese Funktion freizuschalten.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Die ausgewählte(n) Funktion(en) ist/sind nur für Projektunterstützer verfügbar.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Werden Sie ein Projektunterstützer</a>, und erhalten Sie ein <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Unterstützerzertifikat</a>
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Die ausgewählte(n) Funktion(en) ist/sind nur für Projektunterstützer verfügbar. Prozesse, die in einer Box mit diesen Funktionen ohne Unterstützerzertifikat gestartet werden, werden nach 5 Minuten beendet.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Werden Sie ein Projektunterstützer</a>, und erhalten Sie ein <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Unterstützerzertifikat</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Das Zertifikat, das Sie zu verwenden versuchen, wurde gesperrt, was bedeutet, dass es aus gutem Grund für ungültig erklärt wurde. Jeder Versuch es zu verwenden, stellt einen Verstoß gegen die Nutzungsbedingungen dar!
-
+ The Certificate Signature is invalid!Die Zertifikatssignatur ist ungültig!
-
+ The Certificate is not suitable for this product.Das Zertifikat ist für dieses Produkt nicht geeignet.
-
+ The Certificate is node locked.Das Zertifikat ist an ein anderes Gerät gebunden (node-locked).
-
+ The support certificate is not valid.
Error: %1Das Unterstützerzertifikat ist nicht gültig.
Fehler: %1
-
-
+
+ Don't ask in futureZukünftig nicht mehr fragen
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Möchten Sie alle Prozesse in verschlüsselten Sandboxen beenden und diese aushängen?
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.ACHTUNG: Ein anderer Agent (vermutlich SbieCtrl.exe) verwaltet diese Sandboxiesitzung bereits, bitte schließen Sie diesen zuerst und verbinden sich erneut, um zu übernehmen.
-
+ Error Status: 0x%1 (%2)Fehlerstatus: 0x%1 (%2)
-
+ UnknownUnbekannt
-
+ All processes in a sandbox must be stopped before it can be renamed.Alle Prozesse in einer Sandbox müssen beendet werden, bevor diese umbenannt werden kann.
-
+ Failed to move box image '%1' to '%2'Konnte Boxabbild '%1' nicht nach '%2' verschieben
-
+ The config password must not be longer than 64 charactersDas Konfigurationspasswort darf nicht länger als 64 Zeichen sein
-
+ The content of an unmounted sandbox can not be deletedDer Inhalt einer nicht angeschlossenen Sandbox kann nicht gelöscht werden
-
+ %1%1
-
+ Unknown Error Status: 0x%1Unbekannter Fehlerstatus: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?Möchten Sie %1 in einem sandgeboxten oder nicht sandgeboxten Browser öffnen?
-
+ SandboxedSandgeboxt
-
+ UnsandboxedNicht sandgeboxt
-
+ Case SensitiveGroß-/Kleinschreibung beachten
-
+ RegExpRegulärer Ausdruck (RegExp)
-
+ HighlightHervorheben
-
+ CloseSchließen
-
+ &Find ...&Suchen ...
-
+ All columnsAlle Spalten
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p><h3>Über Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1Diese Kopie von Sandboxie-Plus ist zertifiziert für: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.Sandboxie-Plus ist gratis für persönliche und nicht-kommerzielle Nutzung.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Sandboxie-Plus ist eine Open-Source Fortsetzung von Sandboxie.<br />Besuchen Sie <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> für mehr Informationen.<br /><br />%2<br /><br />Funktionen: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons von <a href="https://icons8.com">icons8.com</a>
-
+ The supporter certificate is not valid for this build, please get an updated certificateDas Unterstützerzertifikat ist für diese Version nicht gültig, bitte holen Sie sich ein aktuelles Zertifikat
-
+ The supporter certificate has expired%1, please get an updated certificateDas Unterstützerzertifikat ist abgelaufen%1, bitte holen Sie sich ein aktuelles Zertifikat
-
+ , but it remains valid for the current build, aber es bleibt für die aktuelle Version gültig
-
+ The supporter certificate will expire in %1 days, please get an updated certificateDas Unterstützerzertifikat wird in %1 Tagen ablaufen, bitte holen Sie sich ein aktuelles Zertifikat
@@ -3583,7 +3583,7 @@ Fehler: %1
-
+ About Sandboxie-PlusÜber Sandboxie-Plus
@@ -3642,12 +3642,12 @@ Möchten Sie die Bereinigung durchführen?
Automatisches Löschen des Inhalts von %1
-
+ Failed to stop all Sandboxie componentsKonnte nicht alle Sandboxiekomponenten stoppen
-
+ Failed to start required Sandboxie componentsKonnte nicht alle benötigten Sandboxiekomponenten starten
@@ -3712,112 +3712,112 @@ Möchten Sie die Bereinigung durchführen?
-
+ Do you want to terminate all processes in all sandboxes?Möchten Sie alle Prozesse in allen Sandboxen beenden?
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus wurde im portablen Modus gestartet, nun müssen die benötigten Dienste erzeugt werden, was Adminrechte benötigt.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Möchten Sie auch die ausgeblendeten Mitteilungsboxen zurücksetzen (Ja) oder nur alle Protokollnachrichten (Nein)?
-
+ The changes will be applied automatically whenever the file gets saved.Die Änderungen werden automatisch angewendet, sobald die Datei gespeichert wird.
-
+ The changes will be applied automatically as soon as the editor is closed.Die Änderungen werden automatisch angewendet, sobald der Editor geschlossen wird.
-
+ Can not create snapshot of an empty sandboxKann keinen Schnappschuss von einer leeren Box erstellen
-
+ A sandbox with that name already existsEs existiert bereits eine Sandbox mit diesem Namen
-
+ Failed to execute: %1Fehler beim Ausführen von: %1
-
+ Failed to communicate with Sandboxie Service: %1Fehler beim Kommunizieren mit Sandbox-Dienst: %1
-
+ Failed to copy configuration from sandbox %1: %2Fehler beim Kopieren der Konfiguration von Sandbox %1: %2
-
+ A sandbox of the name %1 already existsEs existiert bereits eine Sandbox mit dem Namen %1
-
+ Failed to delete sandbox %1: %2Fehler beim Löschen der Sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.Der Name der Sandbox darf nicht länger als 32 Zeichen sein.
-
+ The sandbox name can not be a device name.Der Name der Sandbox darf kein reservierter Gerätename (device name) sein.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Der Name der Sandbox darf nur Buchstaben, Zahlen und Unterstriche, welche als Leerstellen angezeigt werden, enthalten.
-
+ Failed to terminate all processesKonnte nicht alle Prozesse beenden
-
+ Delete protection is enabled for the sandboxLöschschutz ist für diese Sandbox aktiviert
-
+ Error deleting sandbox folder: %1Fehler beim Löschen von Sandbox-Ordner: %1
-
+ A sandbox must be emptied before it can be deleted.Eine Sandbox muss geleert werden, bevor sie umbenannt werden kann.
-
+ Failed to move directory '%1' to '%2'Konnte Ordner '%1' nicht nach '%2' verschieben
-
+ This Snapshot operation can not be performed while processes are still running in the box.Der Schnappschuss kann nicht erstellt werden, während Prozesse in dieser Box laufen.
-
+ Failed to create directory for new snapshotKonnte den Ordner für den neuen Schnappschuss (Snapshot) nicht erstellen
@@ -3919,32 +3919,32 @@ Bitte überprüfen Sie, ob es ein Update für Sandboxie gibt.
Möchten Sie den Einrichtungsassistenten auslassen?
-
+ The evaluation period has expired!!!Die Evaluierungsphase ist abgelaufen!!!
-
+ Snapshot not foundSchnappschuss (Snapshot) nicht gefunden
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Fehler beim Zusammenführen der Schnappschuss Ordner: '%1' mit '%2', der Schnappschuss wurde nicht vollständig zusammengeführt.
-
+ Failed to remove old snapshot directory '%1'Konnte alten Schnappschuss-Ordner '%1' nicht entfernen
-
+ You are not authorized to update configuration in section '%1'Sie sind nicht berechtigt die Konfiguration in Sektion '%1' zu aktualisieren
-
+ Failed to set configuration setting %1 in section %2: %3Fehler beim Setzen der Konfigurationsoption %1 in Sektion %2: %3
@@ -3952,16 +3952,16 @@ Bitte überprüfen Sie, ob es ein Update für Sandboxie gibt.
-
-
-
+
+
+ Don't show this message again.Diese Nachricht nicht mehr anzeigen.
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Fehler
@@ -4006,7 +4006,7 @@ Bitte überprüfen Sie, ob es ein Update für Sandboxie gibt.
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Werden Sie ein Projektunterstützer</a>, und erhalten Sie ein <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Unterstützerzertifikat</a>
@@ -4016,154 +4016,154 @@ Bitte überprüfen Sie, ob es ein Update für Sandboxie gibt.
Stelle Datei %1 zu %2 wieder her
-
+ Only Administrators can change the config.Nur Administratoren können die Konfiguration editieren.
-
+ Please enter the configuration password.Bitte Konfigurationspasswort eingeben.
-
+ Login Failed: %1Login fehlgeschlagen: %1
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Bitte geben Sie die Dauer, in Sekunden, ein, zum Pausieren der erzwungenen Programmregeln.
-
+ No RecoveryKeine Wiederherstellung
-
+ No MessagesKeine Nachrichten
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERROR:</b> Der Sandboxie-Plus Manager (SandMan.exe) verfügt nicht über eine gültige Signatur (SandMan.exe.sig). Bitte laden Sie eine vertrauenswürdige Version von der <a href="https://sandboxie-plus.com/go.php?to=sbie-get">offiziellen Downloadseite</a>.
-
+ Maintenance operation failed (%1)Wartungsvorgang fehlgeschlagen (%1)
-
+ Maintenance operation completedWartungsvorgang abgeschlossen
-
+ Executing maintenance operation, please wait...Führe Wartungsvorgang aus, bitte warten...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Im Plus-UI wurde diese Funktionalität in die Hauptlistenansicht der Sandboxen integriert.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Mit dem Box-/Gruppenkontextmenü können Sie Boxen und Gruppen zu anderen Gruppen bewegen. Sie können die Elemente auch per Ziehen und Loslassen bewegen. Alternativ können Sie die Pfeiltasten nutzen, während Sie ALT gedrückt halten, um die Elemente innerhalb ihrer Gruppe rauf und runter zu bewegen.<br />Sie können neue Boxen und Gruppen aus dem Sandboxmenü erstellen.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.Sie sind im Begriff die Templates.ini zu bearbeiten, was grundsätzlich nicht empfohlen wird.
Diese Datei ist Teil von Sandboxie und alle vorgenommenen Änderungen an der Datei werden zurückgesetzt, wenn Sandboxie aktualisiert wird.
-
+ Sandboxie config has been reloadedSandboxiekonfiguration wurde neu geladen
-
+ Administrator rights are required for this operation.Für diesen Vorgang werden Adminrechte benötigt.
-
+ Failed to connect to the driverFehler beim Verbinden mit dem Treiber
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Eine inkompatible Version von Sandboxie %1 wurde gefunden. Kompatible Versionen: %2
-
+ Can't find Sandboxie installation path.Kann Installationspfad von Sandboxie nicht finden.
-
+ All sandbox processes must be stopped before the box content can be deletedAlle Sandboxprozesse müssen beendet sein, bevor der Boxinhalt gelöscht werden kann
-
+ Failed to copy box data filesFehlschlag beim Kopieren der Boxdateien
-
+ Can't remove a snapshot that is shared by multiple later snapshotsEs kann kein Schnappschuss gelöscht werden der von mehreren späteren Schnappschüssen geteilt wird
-
+ Failed to remove old box data filesFehlschlag beim Entfernen der alten Boxdateien
-
+ The operation was canceled by the userDer Vorgang wurde durch den Nutzer abgebrochen
-
+ Import/Export not available, 7z.dll could not be loadedImport/Export nicht verfügbar, 7z.dll konnte nicht geladen werden
-
+ Failed to create the box archiveKonnte Boxarchiv nicht erzeugen
-
+ Failed to open the 7z archiveKonnte das 7z-Archiv nicht öffnen
-
+ Failed to unpack the box archiveKonnte das Boxarchiv nicht entpacken
-
+ The selected 7z file is NOT a box archiveDie ausgewählte 7z-Datei ist KEIN Boxarchiv
-
+ Operation failed for %1 item(s).Vorgang für %1 Element(e) fehlgeschlagen.
-
+ Remember choice for later.Die Auswahl für später merken.
@@ -5311,36 +5311,41 @@ This file is part of Sandboxie and all change done to it will be reverted next t
+ Advanced (L)
+
+
+
+ Max LevelMaximale Stufe
-
+ Level %1Stufe %1
-
+ Supporter certificate required for accessUnterstützerzertifikat notwendig für Zugriff
-
+ Supporter certificate required for automationUnterstützerzertifikat notwendig zur Automatisierung
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Dieses Zertifikat ist leider nicht für die aktuelle Version gültig. Sie müssen ein neues Zertifikat erwerben oder auf eine frühere Version zurückgehen.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Obwohl dieses Zertifikat abgelaufen ist, bleiben die Plus-Funktionen der aktuell installierten Version aktiviert. Sie haben jedoch keinen Zugang mehr zu den Sandboxie-Live-Diensten, einschließlich Kompatibilitäts-Updates und der Onlineproblemlösungsdatenbank.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Dieses Zertifikat ist leider abgelaufen, Sie müssen ein neues Zertifikat erwerben.
@@ -5361,12 +5366,12 @@ This file is part of Sandboxie and all change done to it will be reverted next t
<br />Plus-Funktionen sind nicht länger aktiviert.
-
+ Run &Un-SandboxedStarte &Nicht-Sandgeboxt
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Dies scheint kein Zertifikat zu sein. Bitte geben Sie das ganze Zertifikat ein, nicht nur einen Teil davon.
@@ -5491,93 +5496,93 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Home
-
+ Thank you for supporting the development of Sandboxie-Plus.Danke Ihnen für die Unterstützung der Entwicklung von Sandboxie-Plus.
-
+ Update AvailableUpdate verfügbar
-
+ InstalledInstalliert
-
+ by %1von %1
-
+ (info website)(Informationswebseite)
-
+ This Add-on is mandatory and can not be removed.Diese Erweiterung ist notwendig und kann nicht entfernt werden.
-
+ <a href="check">Check Now</a><a href="check">Jetzt prüfen</a>
-
+ Please enter the new configuration password.Bitte ein Passwort für die neue Konfiguration eingeben.
-
+ Please re-enter the new configuration password.Bitte das neue Konfigurationspasswort wiederholen.
-
+ Passwords did not match, please retry.Passwörter stimmten nicht überein, bitte erneut versuchen.
-
+ ProcessProzess
-
+ FolderOrdner
-
+ Please enter a program file nameBitte den Dateinamen eines Programms eingeben
-
+ Please enter the template identifierBitte Vorlagen-Identifikation eingeben
-
+ Error: %1Fehler: %1
-
+ Do you really want to delete the selected local template(s)?Möchten Sie wirklich die ausgewählte(n) lokalen Vorlage(n) löschen?
-
+ %1 (Current)%1 (Aktuell)
-
-
+
+ Select DirectoryOrdner auswählen
@@ -8274,27 +8279,27 @@ Bitte beachten Sie, dass diese Werte aktuell nutzerspezifisch sind und global f
QPlatformTheme
-
+ OKOK
-
+ ApplyAnwenden
-
+ CancelAbbrechen
-
+ &Yes&Ja
-
+ &No&Nein
diff --git a/SandboxiePlus/SandMan/sandman_en.ts b/SandboxiePlus/SandMan/sandman_en.ts
index 66c58f60..b9775bd3 100644
--- a/SandboxiePlus/SandMan/sandman_en.ts
+++ b/SandboxiePlus/SandMan/sandman_en.ts
@@ -1530,8 +1530,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1545,8 +1545,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1581,7 +1581,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1826,135 +1826,135 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Custom icon
-
+ Version 1
-
+ Version 2
-
+ Browse for Program
-
+ Open Box Options
-
+ Browse Content
-
+ Start File Recovery
-
+ Show Run Dialog
-
+ Indeterminate
-
+ Backup Image Header
-
+ Restore Image Header
-
+ Change Password
+
+
+
+ Always copy
+
+
- Always copy
+ Don't copy
- Don't copy
-
-
-
-
- Copy empty
-
+ kilobytes (%1)
-
+ Select color
-
+ Select Program
-
+ The image file does not exist
-
+ The password is wrong
-
+ Unexpected error: %1
-
+ Image Password Changed
-
+ Backup Image Header for %1
-
+ Image Header Backuped
-
+ Restore Image Header for %1
-
+ Image Header Restored
@@ -1964,18 +1964,18 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Executables (*.exe *.cmd)
-
-
+
+ Please enter a menu title
-
+ Please enter a command
@@ -2707,22 +2707,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1
-
+ Deleting folder: %1
-
+ Merging folders: %1 >> %2
-
+ Finishing Snapshot Merge...
@@ -2804,22 +2804,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Reset Columns
-
+ Copy Cell
-
+ Copy Row
-
+ Copy Panel
@@ -3082,7 +3082,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-Plus
@@ -3166,9 +3166,9 @@ Do you want to do the clean up?
-
-
-
+
+
+ Don't show this message again.
@@ -3258,19 +3258,19 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
-
-
-
+
+
+ Sandboxie-Plus - Error
-
+ Failed to stop all Sandboxie components
-
+ Failed to start required Sandboxie components
@@ -3307,7 +3307,7 @@ No will choose: %2
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
@@ -3362,132 +3362,132 @@ No will choose: %2
-
+ Only Administrators can change the config.
-
+ Please enter the configuration password.
-
+ Login Failed: %1
-
+ Do you want to terminate all processes in all sandboxes?
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.
-
+ Executing maintenance operation, please wait...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?
-
+ The changes will be applied automatically whenever the file gets saved.
-
+ The changes will be applied automatically as soon as the editor is closed.
-
+ Error Status: 0x%1 (%2)
-
+ Unknown
-
+ A sandbox must be emptied before it can be deleted.
-
+ Failed to copy box data files
-
+ Failed to remove old box data files
-
+ Unknown Error Status: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ Close
-
+ &Find ...
-
+ All columns
-
+ Administrator rights are required for this operation.
@@ -3743,7 +3743,7 @@ Please check if there is an update for sandboxie.
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
@@ -3802,110 +3802,110 @@ Please check if there is an update for sandboxie.
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!
-
-
+
+ Don't ask in future
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.
-
+ No Recovery
-
+ No Messages
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
+ Maintenance operation failed (%1)
-
+ Maintenance operation completed
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3913,245 +3913,245 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Sandboxie config has been reloaded
-
+ Failed to execute: %1
-
+ Failed to connect to the driver
-
+ Failed to communicate with Sandboxie Service: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2
-
+ Can't find Sandboxie installation path.
-
+ Failed to copy configuration from sandbox %1: %2
-
+ A sandbox of the name %1 already exists
-
+ Failed to delete sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.
-
+ The sandbox name can not be a device name.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.
-
+ Failed to terminate all processes
-
+ Delete protection is enabled for the sandbox
-
+ All sandbox processes must be stopped before the box content can be deleted
-
+ Error deleting sandbox folder: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move directory '%1' to '%2'
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.
-
+ Failed to create directory for new snapshot
-
+ Snapshot not found
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.
-
+ Failed to remove old snapshot directory '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshots
-
+ You are not authorized to update configuration in section '%1'
-
+ Failed to set configuration setting %1 in section %2: %3
-
+ Can not create snapshot of an empty sandbox
-
+ A sandbox with that name already exists
-
+ The config password must not be longer than 64 characters
-
+ The operation was canceled by the user
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1
-
+ Import/Export not available, 7z.dll could not be loaded
-
+ Failed to create the box archive
-
+ Failed to open the 7z archive
-
+ Failed to unpack the box archive
-
+ The selected 7z file is NOT a box archive
-
+ Operation failed for %1 item(s).
-
+ Remember choice for later.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
-
+ The supporter certificate is not valid for this build, please get an updated certificate
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificate
-
+ , but it remains valid for the current build
-
+ The supporter certificate will expire in %1 days, please get an updated certificate
@@ -5357,36 +5357,41 @@ This file is part of Sandboxie and all changed done to it will be reverted next
- Max Level
+ Advanced (L)
+ Max Level
+
+
+
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
@@ -5486,103 +5491,103 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Run &Un-Sandboxed
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.
-
+ Thank you for supporting the development of Sandboxie-Plus.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select Directory
-
+ <a href="check">Check Now</a>
-
+ Please enter the new configuration password.
-
+ Please re-enter the new configuration password.
-
+ Passwords did not match, please retry.
-
+ Process
-
+ Folder
-
+ Please enter a program file name
-
+ Please enter the template identifier
-
+ Error: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)
@@ -8274,27 +8279,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK
-
+ Apply
-
+ Cancel
-
+ &Yes
-
+ &No
diff --git a/SandboxiePlus/SandMan/sandman_es.ts b/SandboxiePlus/SandMan/sandman_es.ts
index 0a6c9e76..3c8d5490 100644
--- a/SandboxiePlus/SandMan/sandman_es.ts
+++ b/SandboxiePlus/SandMan/sandman_es.ts
@@ -1732,120 +1732,120 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Compartimiento de aplicación
-
+ Custom iconIcono personalizado
-
+ Version 1Versión 1
-
+ Version 2Versión 2
-
+ Browse for ProgramBuscar programa
-
+ Open Box OptionsAbrir Opciones de Caja
-
+ Browse ContentExplorar contenido
-
+ Start File RecoveryIniciar Recuperación de Archivo
-
+ Show Run DialogMostrar Diálogo de Ejecución
-
+ IndeterminateIndeterminado
-
+ Backup Image HeaderRespaldar Cabecera de Imagen
-
+ Restore Image HeaderRestaurar Cabecera de Imagen
-
+ Change PasswordCambiar contraseña
-
-
+
+ Always copySiempre copiar
-
-
+
+ Don't copyNo copiar
-
-
+
+ Copy emptyCopia vacía
-
+ The image file does not existEl archivo de imagen no existe
-
+ The password is wrongLa contraseña es incorrecta
-
+ Unexpected error: %1Error inesperado: %1
-
+ Image Password ChangedContraseña de Imagen Cambiada
-
+ Backup Image Header for %1Respaldo de Cabecera de Imagen para %1
-
+ Image Header BackupedCabecera de Imagen Respaldada
-
+ Restore Image Header for %1Restaurar Cabecera de Imagen para %1
-
+ Image Header RestoredCabecera de Imagen Restaurada
@@ -1912,12 +1912,12 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Algunos cambios aún no se han guardado, ¿desea realmente cerrar esta ventana de opciones?
-
+ kilobytes (%1)kilobytes (%1)
-
+ Select colorSeleccionar color
@@ -1926,7 +1926,7 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Por favor entre una ruta de programa
-
+ Select ProgramSeleccionar Programa
@@ -1944,18 +1944,18 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
Programa
-
+ Executables (*.exe *.cmd)Ejecutables (*.exe *.cmd)
-
-
+
+ Please enter a menu titlePor favor introduzca un título de menu
-
+ Please enter a commandPor favor ingrese un comando
@@ -1964,8 +1964,8 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
-
-
+
+
@@ -2184,8 +2184,8 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
-
-
+
+
@@ -2222,7 +2222,7 @@ Nota: La comprobación de actualización a menudo está atrasada respecto al úl
-
+
@@ -2956,22 +2956,22 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
CSandBox
-
+ Waiting for folder: %1Esperando a carpeta: %1
-
+ Deleting folder: %1Borrando carpeta: %1
-
+ Merging folders: %1 >> %2Fusionando carpetas: %1 >> %2
-
+ Finishing Snapshot Merge...Terminando fusionado de instantánea...
@@ -3110,22 +3110,22 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
Instalación
-
+ Reset ColumnsReestablecer Columnas
-
+ Copy CellCopiar Celda
-
+ Copy RowCopiar Fila
-
+ Copy PanelCopiar Panel
@@ -3410,7 +3410,7 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
-
+ About Sandboxie-PlusSobre Sandboxie-Plus
@@ -3646,152 +3646,152 @@ A diferencia del canal previo, no incluye cambios sin probar, potencialmente rom
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Actualice su certificado</a> para desbloquear funciones avanzadas.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.La función seleccionada requiere un certificado de patrocinador <b>avanzado</b>.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>El conjunto de características seleccionado solo está disponible para los patrocinadores del proyecto.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Conviértete en un patrocinador del proyecto</a> y recibe un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de patrocinador</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!El certificado que está intentando usar ha sido bloqueado, lo que significa que ha sido invalidado por alguna causa. ¡Cualquier intento de usarlo constituye una violación de sus términos de uso!
-
+ The Certificate Signature is invalid!¡La firma del certificado es inválida!
-
+ The Certificate is not suitable for this product.El certificado no es apto para este producto.
-
+ The Certificate is node locked.El certificado está bloqueado en el nodo.
-
+ The support certificate is not valid.
Error: %1El certificado de patrocinador es inválido.
Error: %1
-
-
+
+ Don't ask in futureNo preguntar en el futuro
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?¿Desea realmente finalizar todos los procesos en sandboxes encriptadas, y desmontarlos?
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERROR:</b> El Administrador de Sandboxie-Plus (SandMan.exe) no tiene una firma válida (SandMan.exe.sig). Por favor, descargue una versión de confianza de la <a href="https://sandboxie-plus.com/go.php?to=sbie-get">página oficial de Descargas</a>.
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.Todos los procesos en una sandbox deben ser parados antes de que se pueda renombrar.
-
+ Failed to move box image '%1' to '%2'Error al mover imagen de caja '%1' a '%2'
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deletedLos contenidos de una sandbox desmontada no se pueden borrar
-
+ %1%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?¿Desea abrir %1 en un navegador web aislado o no aislado?
-
+ SandboxedAislado
-
+ UnsandboxedNo aislado
-
+ Case SensitiveSensible a mayúsculas y minúsculas
-
+ RegExpRegExp
-
+ HighlightResaltar
-
+ CloseCerrar
-
+ &Find ...&Buscar ...
-
+ All columnsTodas las columnas
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p><h3>Acerca de Sandboxie-Plus</h3><p>Versión %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1Esta copia de Sandboxie-Plus está certificada para: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.Sandboxie-Plus es gratis para uso personal y no comercial.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Sandboxie-Plus es una continuación de código abierto de Sandboxie.<br />Visite <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> para más información.<br /><br />%2<br /><br />Características: %3<br /><br />Instalación: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Iconos de <a href="https://icons8.com">icons8.com</a>
@@ -3865,9 +3865,9 @@ Desea hacer la limpieza?
-
-
-
+
+
+ Don't show this message again.No motrar este mensaje nuevamente.
@@ -3936,19 +3936,19 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Auto eliminando %1 contenido
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Error
-
+ Failed to stop all Sandboxie componentsFallo al intentar detener todos los componentes de Sandboxie
-
+ Failed to start required Sandboxie componentsFallo al intentar iniciar los componentes requerido por Sandboxie
@@ -3961,22 +3961,22 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Operación de mantenimiento Satisfactoria
-
+ The supporter certificate is not valid for this build, please get an updated certificateEl certificado de patrocinador no es valido para esta version, por favor obtenga una actualización de certificado
-
+ The supporter certificate has expired%1, please get an updated certificateEl certificado de patrocinador ha expirado%1, por favor obtenga una actualización de certificado
-
+ , but it remains valid for the current build, pero permanece valido para la actual version
-
+ The supporter certificate will expire in %1 days, please get an updated certificateEl certificado de patrocinador expirará en %1 días, por favor obtenga una actualización de certificado
@@ -3993,7 +3993,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
No hay ninguna actualización de certificado.
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>La característica seleccionadad esta solo disponible a los patrocinadores del proyecto. Procesos comenzados en esta caja con esta característica habilitada sin un certificado de patrocinador serí terminada luego de 5 minutos.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Conviertase en un patrocinador del proyecto</a>, y obtenga un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de patrocinador</a>
@@ -4055,115 +4055,115 @@ Por favor, verifique si hay una actualización para Sandboxie.
¿Desea omitir el asistente de instalación?
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!¡El periodo de evaluación ha expirado!
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Por favor ingrese la duración, en segundos, para deshabilitar las reglas de programas forzados.
-
+ No RecoverySin Recuperación
-
+ No MessagesSin Mensajes
-
+ Maintenance operation failed (%1)Operación de mantenimiento falló (%1)
-
+ Maintenance operation completedOperación de mantenimiento completada
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.En la IU Plus, esta funcionalidad se ha integrado en el listado principal del sandbox.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Usando el menú contextual de caja/grupo, puedes mover cajas y grupos a otros grupos. También puedes usar arrastrar y soltar para mover los elementos. Además, puedes usar las teclas de flecha mientras mantienes presionada la tecla ALT para mover elementos hacia arriba y hacia abajo dentro de su grupo.<br />Puedes crear nuevas cajas y grupos desde el menú Sandbox.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.Estás a punto de editar el archivo Templates.ini, esto generalmente no se recomienda.
Este archivo es parte de Sandboxie y todos los cambios realizados en él serán revertidos la próxima vez que se actualice Sandboxie.
-
+ Sandboxie config has been reloadedLa configuración de Sandboxie se ha recargado
-
+ Error Status: 0x%1 (%2)Error de estado: 0x%1 (%2)
-
+ UnknownDesconocido
-
+ All sandbox processes must be stopped before the box content can be deletedTodos los procesos de la sandbox deben ser detenidos antes de que el contenido pueda ser eliminado
-
+ Failed to copy box data filesFallo al copiar archivos de datos
-
+ Failed to remove old box data filesError al eliminar archivos de caja antigua
-
+ The operation was canceled by the userLa operación fue cancelada por el usuario
-
+ Import/Export not available, 7z.dll could not be loadedImportar/Exportar no disponible, 7z.dll no se pudo cargar
-
+ Failed to create the box archiveError al crear el archivador de la caja
-
+ Failed to open the 7z archiveError al abrir el archivador 7z
-
+ Failed to unpack the box archiveError al desempaquetar el archivador de la caja
-
+ The selected 7z file is NOT a box archiveEl archivo 7z seleccionado NO es un archivo de caja
-
+ Unknown Error Status: 0x%1Esatdo de error desconocido: 0x%1
@@ -4272,7 +4272,7 @@ NO seleccionará: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Conviértase en patrocinador</a>, y obtenga un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de patrocinador</a>
@@ -4337,22 +4337,22 @@ NO seleccionará: %2
-
+ Only Administrators can change the config.Solo Administradores pueden cambiar la configuracion.
-
+ Please enter the configuration password.Por favor ingrese la contraseña de configuracion.
-
+ Login Failed: %1Login incorrecto: %1
-
+ Do you want to terminate all processes in all sandboxes?Desea terminar todos los procesos en todas las sandboxes?
@@ -4365,32 +4365,32 @@ NO seleccionará: %2
Por favor ingrese la duración para deshabilitar los programas forzados.
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus fue iniciado en modo portable y necesita crear los servicios requeridos. Esto pedira permisos administrativos.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.PELIGRO: otro agente (probablemente SbieCtrl.exe) ya está administrando esta sesión de sandbox, por favor cierrela primero y reconectese para tomar el control.
-
+ Executing maintenance operation, please wait...Ejecutando operación de mantenimiento, por favor espere...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Desea tambien reestablecer los mensajes ocultos (si), o solo todos los mensajes del log (no)?
-
+ The changes will be applied automatically whenever the file gets saved.Los cambios serán aplicados automaticamente cuando el archivo sea guardado.
-
+ The changes will be applied automatically as soon as the editor is closed.Los cambios seran aplicados automaticamente cuando cierre el editor.
@@ -4399,77 +4399,77 @@ NO seleccionará: %2
Status Error: %1
-
+ Administrator rights are required for this operation.Permisos administrativos son necesarios para esta operacion.
-
+ Failed to execute: %1Fallo al ejecutar: %1
-
+ Failed to connect to the driverFallo al conectar al controlador
-
+ Failed to communicate with Sandboxie Service: %1Fallo al comunicarse con el Servicio Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Una Sandboxie %1 incompatible fue encontrada. Versiones compatibles: %2
-
+ Can't find Sandboxie installation path.No se puede encontrar la ruta de instalación de Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Fallo al copiar la configuracin de la sandbox %1: %2
-
+ A sandbox of the name %1 already existsUna sandbox con el nombre %1 ya existe
-
+ Failed to delete sandbox %1: %2Fallo al eliminar la sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.El nombre de la sandbox no puede ser mas largo que 32 caracteres.
-
+ The sandbox name can not be a device name.El nombre de la sandbox no puede ser el nombre de un dispositivo.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.El nombre de la sandbox puede contener solo letras, digitos y guion bajo (se veran como espacios).
-
+ Failed to terminate all processesFallo al terminar todos los procesos
-
+ Delete protection is enabled for the sandboxProtección de eliminación esta habilitado para esta sandbox
-
+ Error deleting sandbox folder: %1Error borrando la carpeta sandbox: %1
@@ -4478,42 +4478,42 @@ NO seleccionará: %2
Una sandbox debe ser vaciada antes de que pueda ser renombrada.
-
+ A sandbox must be emptied before it can be deleted.Una sandbox debe ser vaciada antes de que pueda ser eliminada.
-
+ Failed to move directory '%1' to '%2'Fallo al mover el directorio '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Esta operación de Instantánea no se puede realizar mientras se estén ejecutando procesos en la sandbox.
-
+ Failed to create directory for new snapshotError al crear directorio para la nueva instantánea
-
+ Snapshot not foundInstantánea no encontrada
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Error al unir directorios de instantáneas '%1' con '%2', la instantánea no se ha unido completamente.
-
+ Failed to remove old snapshot directory '%1'Error al eliminar directorio antiguo de instantáneas '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsNo se puede eliminar una instantánea que es compartida por múltiples instantáneas posteriores
@@ -4522,27 +4522,27 @@ NO seleccionará: %2
Fallo al remover viejo RegHive
-
+ You are not authorized to update configuration in section '%1'No estas autorizado a actualizar la configuración en la sección '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Fallo al setear configuración %1 en sección %2: %3
-
+ Can not create snapshot of an empty sandboxNo es posible crear instantánea de una sandbox vacía
-
+ A sandbox with that name already existsLa sandbox con ese nombre ya existe
-
+ The config password must not be longer than 64 charactersLa clave de configuración no debe ser mayor de 64 caracteres
@@ -4551,7 +4551,7 @@ NO seleccionará: %2
Estado de Error Desconocido: %1
-
+ Operation failed for %1 item(s).La operación fallo para %1 item(s).
@@ -4560,7 +4560,7 @@ NO seleccionará: %2
Desea abrir %1 en sandbox (si) o fuera de sandbox (no) navegador Web?
-
+ Remember choice for later.Recordar selección para mas tarde.
@@ -5981,36 +5981,41 @@ NO seleccionará: %2
+ Advanced (L)
+
+
+
+ Max LevelNivel máximo
-
+ Level %1Nivel %1
-
+ Supporter certificate required for accessCertificado de patrocinador requerido para acceso
-
+ Supporter certificate required for automationCertificado de patrocinador requerido para automatización
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Este certificado es desafortunadamente inválido para la compilación actual, necesita obtener un nuevo certificado o volver a una compilación anterior.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Aunque este certificado ha caducado, las funciones adicionales de la versión actualmente instalada siguen habilitadas. Sin embargo, ya no tendrás acceso a los servicios de Sandboxie-Live, incluidas las actualizaciones de compatibilidad y la base de datos de solución de problemas en línea.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Este certificado ha desafortunadamente expirado, necesita obtener un nuevo certificado.
@@ -6039,12 +6044,12 @@ NO seleccionará: %2
Este certificado de patrocinador <font color='red'>expirará en %1 días</font>, por favor <a href="sbie://update/cert">obtenga un certificado actualizado</a>.
-
+ Run &Un-SandboxedEjecutar &Sin-Sandbox
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Esto no parece un certificado. Por favor introduzca el certificado entero, no solo una porción del mismo.
@@ -6057,7 +6062,7 @@ NO seleccionará: %2
Este certificado esta desactualizado.
-
+ Thank you for supporting the development of Sandboxie-Plus.Gracias por patrocinar el desarrollo de Sandboxie-Plus.
@@ -6066,88 +6071,88 @@ NO seleccionará: %2
Este certificado de patrocinador no es válido.
-
+ Update AvailableActualización Disponible
-
+ InstalledInstalado
-
+ by %1por %1
-
+ (info website)(web de información)
-
+ This Add-on is mandatory and can not be removed.Esta extensión es obligatoria y no se puede eliminar.
-
-
+
+ Select DirectorySeleccionar Directorio
-
+ <a href="check">Check Now</a><a href="check">Comprobar Ahora</a>
-
+ Please enter the new configuration password.Por favor ingrese la nueva clave de configuracion.
-
+ Please re-enter the new configuration password.Por favor re-ingrese la nueva clave de configuracion.
-
+ Passwords did not match, please retry.Las contraseñas no son iguales, vuelva a intentarlo por favor.
-
+ ProcessProceso
-
+ FolderCarpeta
-
+ Please enter a program file namePor favor ingrese un nombre de archivo al programa
-
+ Please enter the template identifierPor favor ingrese el identificador de plantilla
-
+ Error: %1Error: %1
-
+ Do you really want to delete the selected local template(s)?¿Desea realmente borrar la(s) plantilla(s) local(es) seleccionada(s)?
-
+ %1 (Current)%1 (Actual)
@@ -9141,27 +9146,27 @@ Por favor note que estos valores son especificos para usuario y guardados global
QPlatformTheme
-
+ OKOK
-
+ ApplyAplicar
-
+ CancelCancelar
-
+ &Yes&Si
-
+ &No&No
diff --git a/SandboxiePlus/SandMan/sandman_fr.ts b/SandboxiePlus/SandMan/sandman_fr.ts
index d4d7c744..31222729 100644
--- a/SandboxiePlus/SandMan/sandman_fr.ts
+++ b/SandboxiePlus/SandMan/sandman_fr.ts
@@ -1742,8 +1742,8 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
-
+
+
@@ -1757,8 +1757,8 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
-
+
+
@@ -1793,7 +1793,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
-
+
@@ -2059,130 +2059,130 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Conteneur d'applications
-
+ Custom iconIcône personnalisée
-
+ Version 1Version 1
-
+ Version 2Version 2
-
+ Browse for ProgramExplorer pour un programme
-
+ Open Box OptionsOuvrir les options du bac
-
+ Browse ContentParcourir le contenu
-
+ Start File RecoveryLancer la récupération de fichiers
-
+ Show Run DialogAfficher la boite de dialogue « Exécuter »
-
+ IndeterminateIndéterminé
-
+ Backup Image HeaderSauvegarder l'en-tête de l'image
-
+ Restore Image HeaderRestaurer l'en-tête de l'image
-
+ Change PasswordModifier le mot de passe
-
-
+
+ Always copyToujours copier
-
-
+
+ Don't copyNe pas copier
-
-
+
+ Copy emptyCopier si vide
-
+ kilobytes (%1)kilo-octets (%1)
-
+ Select colorSélectionner une couleur
-
+ The image file does not existLe fichier d'image n'existe pas
-
+ The password is wrongLe mot de passe est erroné
-
+ Unexpected error: %1Erreur inattendue : %1
-
+ Image Password ChangedLe mot de passe de l'image a été modifié
-
+ Backup Image Header for %1Sauvegarder l'en-tête de l'image pour %1
-
+ Image Header BackupedEn-tête de l'image sauvegardé
-
+ Restore Image Header for %1Restaurer l'en-tête de l'image pour %1
-
+ Image Header RestoredEn-tête de l'image restauré
@@ -2191,7 +2191,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Veuillez entrer un chemin de programme
-
+ Select ProgramSélectionner le programme
@@ -2213,18 +2213,18 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Programme
-
+ Executables (*.exe *.cmd)Exécutables (*.exe *.cmd)
-
-
+
+ Please enter a menu titleVeuillez saisir un titre de menu
-
+ Please enter a commandVeuillez saisir une commande
@@ -2991,22 +2991,22 @@ Contrairement au canal des Aperçus, cela n'inclut pas les changements non
CSandBox
-
+ Waiting for folder: %1Dossier en attente : %1
-
+ Deleting folder: %1Suppression du dossier : %1
-
+ Merging folders: %1 >> %2Fusion des dossiers : %1 >> %2
-
+ Finishing Snapshot Merge...Finalisation de la fusion des instantanés...
@@ -3197,7 +3197,7 @@ Veuillez vérifier s'il y a une mise à jour pour Sandboxie.
Échec de configuration du raccourci %1 ; erreur : %2
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!La période d'évaluation a expiré !!!
@@ -3220,17 +3220,17 @@ Veuillez vérifier s'il y a une mise à jour pour Sandboxie.
Importation : %1
-
+ No RecoveryPas de récupération
-
+ No MessagesPas de message
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3239,47 +3239,47 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera annulée la prochaine fois que Sandboxie sera mis à jour.
-
+ Import/Export not available, 7z.dll could not be loadedImportation/Exportation non disponible ; 7z.dll n'a pas pu être chargé
-
+ Failed to create the box archiveÉchec de création de l'archive du bac
-
+ Failed to open the 7z archiveÉchec d'ouverture de l'archive 7z
-
+ Failed to unpack the box archiveÉchec de décompression de l'archive du bac
-
+ The selected 7z file is NOT a box archiveLe fichier 7z choisi n'est PAS une archive de bac
-
+ Reset ColumnsRéinitialiser les colonnes
-
+ Copy CellCopier la cellule
-
+ Copy RowCopier la rangée
-
+ Copy PanelCopier le tableau
@@ -3587,7 +3587,7 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
-
+ About Sandboxie-PlusÀ propos de Sandboxie-Plus
@@ -3774,27 +3774,27 @@ Ce fichier fait partie de Sandboxie et toute modification faite sur lui sera ann
Bac à sable USB introuvable ; création : %1
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p><h3>À propos de Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1Cette copie de Sandboxie-Plus est attestée pour : %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.Sandboxie-Plus est gratuit pour une utilisation personnelle et non commerciale.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Sandboxie-Plus est la poursuite en code source ouvert de Sandboxie.<br />Visitez <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> pour plus d'informations.<br /><br />%2<br /><br />Fonctions : %3<br /><br />Installation : %1<br />SbieDrv.sys : %4<br /> SbieSvc.exe : %5<br /> SbieDll.dll : %6<br /><br />Icônes provenant de <a href="https://icons8.com">icons8.com</a>
@@ -3827,127 +3827,127 @@ Veuillez vérifier s'il y a une mise à jour pour Sandboxie.
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Mettez à jour votre certificat</a> afin de débloquer les fonctions avancées.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.La fonction choisie nécessite un certificat d'adhérent <b>avancé</b>.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>La fonction choisie est uniquement disponible aux adhérents au projet.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Devenez un adhérent au projet</a>, et recevez un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificat d'adhérent</a>.
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Le certificat que vous essayez d'utiliser a été bloqué, ce qui veut dire qu'il a été invalidé pour une bonne raison. Toute tentative de l'utiliser constitue une violation de ses conditions d'utilisation !
-
+ The Certificate Signature is invalid!La signature du certificat est invalide !
-
+ The Certificate is not suitable for this product.Le certificat ne convient pas à ce produit.
-
+ The Certificate is node locked.Le certificat est verrouillé par nœud.
-
+ The support certificate is not valid.
Error: %1Le certificat d'adhérent est invalide.
Erreur : %1
-
-
+
+ Don't ask in futureNe plus demander
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Voulez-vous arrêter tous les processus dans les bacs à sable chiffrés, puis démonter ces derniers ?
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERREUR :</b> Le gestionnaire de Sandboxie-Plus (SandMan.exe) n'a pas une signature valide (SandMan.exe.sig). Veuillez télécharger une version fiable depuis la <a href="https://sandboxie-plus.com/go.php?to=sbie-get">page de téléchargement officielle</a>.
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.Tous les processus du bac à sable doivent être arrêtés avant qu'il puisse être renommé.
-
+ Failed to move box image '%1' to '%2'Échec du déplacement de l'image du bac « %1 » vers « %2 »
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deletedLe contenu d'un bac à sable non monté ne peut pas être supprimé
-
+ %1%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?Voulez-vous ouvrir %1 dans un navigateur web dans un bac à sable ou en dehors ?
-
+ SandboxedDans un bac à sable
-
+ UnsandboxedEn dehors d'un bac à sable
-
+ Case SensitiveSensible à la casse
-
+ RegExpRegex
-
+ HighlightSurligner
-
+ CloseFermer
-
+ &Find ...&Rechercher...
-
+ All columnsToutes les colonnes
@@ -4014,9 +4014,9 @@ Voulez-vous faire la purge ?
-
-
-
+
+
+ Don't show this message again.Ne plus afficher ce message
@@ -4085,19 +4085,19 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Supression automatisée du contenu de %1
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Erreur
-
+ Failed to stop all Sandboxie componentsÉchec de l'arrêt de tous les composants de Sandboxie
-
+ Failed to start required Sandboxie componentsImpossible de démarrer les composants requis de Sandboxie
@@ -4177,27 +4177,27 @@ No will choose: %2
« Non » choisira : %2
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Veuillez saisir la durée (en secondes) de suspension du forçage des programmes.
-
+ The supporter certificate is not valid for this build, please get an updated certificateLe certificat d'adhérent n'est pas valide pour cette version, veuillez obtenir un certificat à jour
-
+ The supporter certificate has expired%1, please get an updated certificateCe certificat d'adhérent a expiré%1, veuillez obtenir un certificat à jour
-
+ , but it remains valid for the current build, mais il reste valide pour la version actuelle
-
+ The supporter certificate will expire in %1 days, please get an updated certificateLe certificat d'adhérent expirera dans %1 jour(s), veuillez obtenir un certificat mis à jour
@@ -4241,7 +4241,7 @@ No will choose: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Devenez un adhérent du projet</a>, et recevez un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificat d'adhérent</a>.
@@ -4258,7 +4258,7 @@ No will choose: %2
%1 (%2) :
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>La fonction sélectionnée n'est disponible qu'aux adhérents au projet. Les processus lancés dans un bac à sable avec cette fonction activée sans certificat d'adhérent seront arrêtés après 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Devenez un adhérent du projet</a>, et recevez un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificat d'adhérent</a>.
@@ -4321,22 +4321,22 @@ No will choose: %2
-
+ Only Administrators can change the config.Seuls les administrateurs peuvent modifier la configuration.
-
+ Please enter the configuration password.Veuillez saisir le mot de passe de la configuration.
-
+ Login Failed: %1Échec de la connexion : %1
-
+ Do you want to terminate all processes in all sandboxes?Voulez-vous arrêter tous les processus dans tous les bacs à sable ?
@@ -4349,92 +4349,92 @@ No will choose: %2
Veuillez saisir la durée de désactivation du forçage des programmes.
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus a été démarré en mode portable et doit maintenant créer les services nécessaires. Cela demandera des privilèges d'administrateur.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.ATTENTION : Un autre agent (probablement SbieCtrl.exe) gère déjà cette session de Sandboxie, veuillez le fermer d'abord et vous reconnecter pour prendre le contrôle.
-
+ Maintenance operation failed (%1)Échec de l'opération de maintenance (%1)
-
+ Maintenance operation completedOpération de maintenance terminée
-
+ Executing maintenance operation, please wait...Exécution de l'opération de maintenance, veuillez patienter...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Dans l'interface utilisateur de la version Plus, cette fonction a été intégrée à l'affichage principal de la liste des bacs à sable.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.En utilisant le menu contextuel Bac/Groupe, vous pouvez déplacer les bacs et les groupes vers d'autres groupes. Vous pouvez également utiliser le glisser-déposer pour déplacer les éléments. Alternativement, vous pouvez aussi utiliser les touches fléchées tout en maintenant ALT enfoncée pour déplacer les éléments vers le haut ou le bas au sein de leur groupe.<br />Vous pouvez créer de nouveaux bacs et groupes depuis le menu du bac à sable.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Voulez-vous également réinitialiser les messages masqués des bacs (oui), ou seulement tous les messages du journal (non) ?
-
+ The changes will be applied automatically whenever the file gets saved.Les changements seront appliqués automatiquement à chaque fois que le fichier sera enregistré.
-
+ The changes will be applied automatically as soon as the editor is closed.Les changements seront appliqués automatiquement dès que l'éditeur sera fermé.
-
+ Sandboxie config has been reloadedLa configuration de Sandboxie a été rechargée
-
+ Error Status: 0x%1 (%2)Statut de l'erreur : 0x%1 (%2)
-
+ UnknownInconnu
-
+ All sandbox processes must be stopped before the box content can be deletedTous les processus du bac à sable doivent être arrêtés pour que le contenu du bac puisse être supprimé
-
+ Failed to copy box data filesÉchec de la copie des fichiers de données du bac
-
+ Failed to remove old box data filesÉchec de la suppression des fichiers de données de l'ancien bac
-
+ The operation was canceled by the userL'opération a été annulée par l'utilisateur
-
+ Unknown Error Status: 0x%1Code erreur inconnu : 0x%1
@@ -4472,77 +4472,77 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Statut d'erreur : %1
-
+ Administrator rights are required for this operation.Les droits d'administrateur sont nécessaires pour cette opération.
-
+ Failed to execute: %1Échec de l'exécution : %1
-
+ Failed to connect to the driverÉchec de la connexion au pilote
-
+ Failed to communicate with Sandboxie Service: %1Échec de la communication avec le service Sandboxie : %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Un bac à sable incompatible %1 a été trouvé. Versions compatibles : %2
-
+ Can't find Sandboxie installation path.Impossible de trouver le chemin d'installation de Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Échec de la copie de la configuration du bac à sable %1 : %2
-
+ A sandbox of the name %1 already existsUn bac à sable du nom de %1 existe déjà
-
+ Failed to delete sandbox %1: %2Échec de la suppression du bac à sable %1 : %2
-
+ The sandbox name can not be longer than 32 characters.Le nom du bac à sable ne peut pas comporter plus de 32 caractères.
-
+ The sandbox name can not be a device name.Le nom du bac à sable ne peut pas être un nom de périphérique.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Le nom du bac à sable ne peut contenir que des lettres, des chiffres et des traits de soulignement qui seront affichés comme des espaces.
-
+ Failed to terminate all processesÉchec de l'arrêt de tous les processus.
-
+ Delete protection is enabled for the sandboxLa protection contre la suppression est activée pour ce bac à sable.
-
+ Error deleting sandbox folder: %1Erreur lors de la suppression du dossier du bac à sable : %1
@@ -4551,22 +4551,22 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Un bac à sable doit être vidé avant de pouvoir être renommé.
-
+ A sandbox must be emptied before it can be deleted.Un bac à sable doit être vidé avant de pouvoir être supprimé.
-
+ Failed to move directory '%1' to '%2'Impossible de déplacer le dossier « %1 » vers « %2 »
-
+ This Snapshot operation can not be performed while processes are still running in the box.Cette opération d’instantané ne peut pas être effectuée lorsque des processus sont encore en cours dans le bac.
-
+ Failed to create directory for new snapshotImpossible de créer un répertoire pour le nouvel instantané
@@ -4589,22 +4589,22 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Configuration actuelle : %1
-
+ Snapshot not foundInstantané introuvable
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Erreur de fusion des répertoires de l'instantané « %1 » avec « %2 », l'instantané n'a pas été entièrement fusionné.
-
+ Failed to remove old snapshot directory '%1'Impossible de supprimer l'ancien répertoire de l'instantané « %1 »
-
+ Can't remove a snapshot that is shared by multiple later snapshotsImpossible de supprimer un instantané qui est partagé par plusieurs autres instantanés
@@ -4613,27 +4613,27 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Impossible de supprimer l'ancienne base de données
-
+ You are not authorized to update configuration in section '%1'Vous n'êtes pas autorisé à mettre à jour la configuration dans la section « %1 »
-
+ Failed to set configuration setting %1 in section %2: %3Échec de la définition du paramètre de configuration %1 dans la section %2 : %3
-
+ Can not create snapshot of an empty sandboxImpossible de créer un instantané d'un bac à sable vide.
-
+ A sandbox with that name already existsUn bac à sable portant ce nom existe déjà
-
+ The config password must not be longer than 64 charactersLe mot de passe de la configuration ne doit pas comporter plus de 64 caractères
@@ -4642,7 +4642,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Statut d'erreur inconnu : %1
-
+ Operation failed for %1 item(s).L'opération a échoué pour %1 objet.
@@ -4651,7 +4651,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Voulez-vous ouvrir %1 dans un navigateur web dans le bac à sable (oui) ou en dehors (non) ?
-
+ Remember choice for later.Mémoriser ce choix pour plus tard.
@@ -5884,12 +5884,12 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Ce certificat d'adhérent va <font color='red'>expirer dans %1 jour(s)</font>, veuillez <a href="sbie://update/cert">obtenir une mise à jour du certificat</a>.
-
+ Run &Un-SandboxedExécuter &en dehors d'un bac à sable
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Cela ne semble pas être un certificat. Veuillez saisir le certificat dans son intégralité, et non uniquement une partie.
@@ -6074,36 +6074,41 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
+ Advanced (L)
+
+
+
+ Max LevelNiveau max
-
+ Level %1Niveau %1
-
+ Supporter certificate required for accessCertificat d'adhérent nécessaire pour l'accès
-
+ Supporter certificate required for automationCertificat d'adhérent nécessaire pour l'automatisation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Ce certificat est malheureusement invalide pour la version actuelle, vous avez besoin d'obtenir un nouveau certificat ou de rétrograder à une version moins récente.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Bien que ce certificat ait expiré, les fonctions Plus demeurent activées pour la version actuellement installée. Cependant, vous n'aurez plus accès aux services Sandboxie-Live, incluant les mises à jour de compatibilité et la base de données de dépannage en ligne.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Ce certificat a malheureusement expiré, vous avez besoin d'en obtenir un nouveau.
@@ -6174,7 +6179,7 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Ce certificat est malheureusement obsolète.
-
+ Thank you for supporting the development of Sandboxie-Plus.Merci pour votre soutien au développement de Sandboxie-Plus.
@@ -6183,88 +6188,88 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
Ce certificat d'adhérent n'est pas valide.
-
+ Update AvailableMise à jour disponible
-
+ InstalledInstallé
-
+ by %1par %1
-
+ (info website)(site web d'information)
-
+ This Add-on is mandatory and can not be removed.Ce module est obligatoire et ne peut pas être supprimé.
-
-
+
+ Select DirectorySélectionner le dossier
-
+ <a href="check">Check Now</a><a href="check">Vérifier maintenant</a>
-
+ Please enter the new configuration password.Veuillez saisir le nouveau mot de passe de configuration.
-
+ Please re-enter the new configuration password.Veuillez saisir à nouveau le mot de passe de la configuration.
-
+ Passwords did not match, please retry.Les mots de passe ne correspondent pas, veuillez réessayer.
-
+ ProcessProcessus
-
+ FolderDossier
-
+ Please enter a program file nameVeuillez saisir le nom de fichier du programme
-
+ Please enter the template identifierVeuillez saisir l'identifiant du modèle
-
+ Error: %1Erreur : %1
-
+ Do you really want to delete the selected local template(s)?Voulez-vous vraiment supprimer le ou les modèles locaux sélectionnés ?
-
+ %1 (Current)%1 (Actuel)
@@ -9293,27 +9298,27 @@ Ceci est fait pour empêcher les processus malveillants à l'intérieur du
QPlatformTheme
-
+ OKOK
-
+ ApplyAppliquer
-
+ CancelAnnuler
-
+ &Yes&Oui
-
+ &No&Non
diff --git a/SandboxiePlus/SandMan/sandman_hu.ts b/SandboxiePlus/SandMan/sandman_hu.ts
index eecdd864..42593ead 100644
--- a/SandboxiePlus/SandMan/sandman_hu.ts
+++ b/SandboxiePlus/SandMan/sandman_hu.ts
@@ -1609,8 +1609,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1624,8 +1624,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1660,7 +1660,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1917,135 +1917,135 @@ Note: The update check is often behind the latest GitHub release to ensure that
Alkalmazás rekesz
-
+ Custom iconEgyéni ikon
-
+ Version 1Verzió 1
-
+ Version 2Verzió 2
-
+ Browse for ProgramProgram keresése
-
+ Open Box OptionsHomokozó opciók megnyitása
-
+ Browse ContentTartalom tallózása
-
+ Start File RecoveryFájl helyreállítás indítása
-
+ Show Run DialogFuttatás párbeszédablak megjelenítése
-
+ IndeterminateMeghatározhatatlan
-
+ Backup Image Header
-
+ Restore Image Header
-
+ Change PasswordJelszó módosítása
-
-
+
+ Always copyMindig másoljon
-
-
+
+ Don't copyNe másoljon
-
-
+
+ Copy emptyMásolás üresen
-
+ kilobytes (%1)KB (%1)
-
+ Select colorSzín kiválasztása
-
+ Select ProgramProgram kiválasztása
-
+ The image file does not exist
-
+ The password is wrong
-
+ Unexpected error: %1
-
+ Image Password Changed
-
+ Backup Image Header for %1
-
+ Image Header Backuped
-
+ Restore Image Header for %1
-
+ Image Header Restored
@@ -2055,18 +2055,18 @@ Note: The update check is often behind the latest GitHub release to ensure that
Kérjük, adja meg a szolgáltatás azonosítóját
-
+ Executables (*.exe *.cmd)Futtatható fájlok (*.exe *.cmd)
-
-
+
+ Please enter a menu titleKérjük, adjon meg egy menücímet
-
+ Please enter a commandKérjük, adjon meg egy parancsot
@@ -2806,22 +2806,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Várakozás a mappára: %1
-
+ Deleting folder: %1Mappa törlése: %1
-
+ Merging folders: %1 >> %2Mappák egyesítése: %1 >> %2
-
+ Finishing Snapshot Merge...Pillanatkép-egyesítés befejezése...
@@ -2907,22 +2907,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie-Plus v%1
-
+ Reset ColumnsOszlopok visszaállítása
-
+ Copy CellCella másolása
-
+ Copy RowSor másolása
-
+ Copy PanelPanel másolása
@@ -3185,7 +3185,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusSandboxie-Plus névjegye
@@ -3271,9 +3271,9 @@ Elvégzi a takarítást?
-
-
-
+
+
+ Don't show this message again.Ne jelenjen meg többet ez az üzenet.
@@ -3381,45 +3381,45 @@ Please check if there is an update for sandboxie.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
-
+
+ Don't ask in futureA jövőben ne kérdezzen
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Hiba
-
+ Failed to stop all Sandboxie componentsNem sikerült leállítani minden Sandboxie komponenst
-
+ Failed to start required Sandboxie componentsA szükséges Sandboxie komponensek elindítása sikertelen
@@ -3466,7 +3466,7 @@ Nem választás: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>A kiválasztott funkciókészlet csak a projekt támogatói számára érhető el. A támogatói tanúsítvány nélkül engedélyezett funkciókészlettel elindított folyamatok 5 perc múlva leállnak.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Legyen támogatónk</a>, és kap egy <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">támogatói tanúsítványt</a>
@@ -3525,22 +3525,22 @@ Nem választás: %2
Néhány fájlt nem sikerült helyreállítani:
-
+ Only Administrators can change the config.Csak a rendszergazda módosíthatja a konfigurációt.
-
+ Please enter the configuration password.Kérjük, adja meg a konfigurációs jelszót.
-
+ Login Failed: %1Belépés sikertelen: %1
-
+ Do you want to terminate all processes in all sandboxes?Leállít minden folyamatot az összes homokozóban?
@@ -3549,107 +3549,107 @@ Nem választás: %2
Leállít mindent kérés nélkül
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.A Sandboxie-Plus hordozható módban indult, és létre kell hoznia a szükséges szolgáltatásokat. Ez adminisztrátori jogosultságokat kér.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.VIGYÁZAT: Egy másik ügynök (valószínűleg SbieCtrl.exe) már kezeli ezt a Sandboxie-munkamenetet. Kérjük, előbb zárja be, majd csatlakozzon újra, hogy átvegye az irányítást.
-
+ Executing maintenance operation, please wait...Karbantartási művelet van folyamatban. Kérjük, várjon...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Visszaállítja a rejtett üzenet mezőket (Igen) vagy csak az összes naplóüzenetet (Nem)?
-
+ The changes will be applied automatically whenever the file gets saved.A változtatások automatikusan érvénybe lépnek, amikor a fájl mentésre kerül.
-
+ The changes will be applied automatically as soon as the editor is closed.A módosítások automatikusan érvénybe lépnek, amikor a szerkesztő bezárul.
-
+ Error Status: 0x%1 (%2)Állapot hiba: 0x%1 (%2)
-
+ UnknownIsmeretlen
-
+ A sandbox must be emptied before it can be deleted.A homokozót a törlés előtt ki kell üríteni.
-
+ Failed to copy box data filesA homokó adatfájljainak másolása sikertelen
-
+ Failed to remove old box data filesA régi homokozó adatfájljainak eltávolítása sikertelen
-
+ Unknown Error Status: 0x%1Ismeretlen hiba állapot: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseBezárás
-
+ &Find ...
-
+ All columns
@@ -3671,7 +3671,7 @@ Nem választás: %2
SandboxiePlus a nyilt forráskodú Sandboxie folytatása. <br />Keresse fel a <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> weblapot több információért. <br /><br />%3<br /><br />Driver verzió: %1<br />Funkciók: %2<br /><br />Ikonok: <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.Ehhez a művelethez rendszergazdai jogosultság szükséges.
@@ -3950,7 +3950,7 @@ Nem választás: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
@@ -3965,27 +3965,27 @@ Nem választás: %2
%1 homokozó úgy van beállítva, hogy kizárólag a projekt támogatói számára elérhető szolgáltatásokat használja, ezeket az előre beállított értékeket figyelmen kívül hagyja.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -3993,33 +3993,33 @@ Nem választás: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Legyen támogatónk</a>, és kap egy <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">támogatói anúsítványt</a>
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!A próbaidőszak időszak lejárt!!!
@@ -4042,47 +4042,47 @@ Error: %1
Importálás: %1
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Kérjük, adja meg a "Kényszerített programok" szabályainak letiltásához szükséges időtartamot másodpercben.
-
+ No RecoveryNind hrlyreállítás
-
+ No MessagesNincsenek üzenetek
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
+ Maintenance operation failed (%1)Karbantartási művelet sikertelen (%1)
-
+ Maintenance operation completedA karbantartási művelet befejeződött
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.A Plus felhasználói felületen ez a funkció a fő sandbox listanézetbe integrálva lett.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.A homokozó/csoport helyi menü használatával áthelyezhet homokozókat és csoportokat más csoportokba. A fogd és vidd módszerrel is mozgathatja az elemeket. Alternatív megoldásként használhatja a nyílbillentyűket, miközben lenyomva tartja az ALT billentyűt, hogy fel-le mozgassa az elemeket a csoporton belül.<br />Új homokozókat és csoportokat hozhat létre a Sandbox menüből.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4091,199 +4091,199 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza lesz állítva a Sandboxie következő frissítésekor.
-
+ Sandboxie config has been reloadedA Sandboxie konfigurációja újratöltve
-
+ Failed to execute: %1Végrehajtás sikertelen: %1
-
+ Failed to connect to the driverKapcsolódás a driverhez sikertelen
-
+ Failed to communicate with Sandboxie Service: %1Kommunikáció a homokozó szolgáltatással sikertelen: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2%1 nem-kompatibilis Sandboxie verzió található. Kompatibilis verziók: %2
-
+ Can't find Sandboxie installation path.Sandboxie telepítési útvonala nem található.
-
+ Failed to copy configuration from sandbox %1: %2Nem sikerült másolni a konfigurációt a %1 homokozóból: %2
-
+ A sandbox of the name %1 already exists%1 néven már létezik egy homokozó
-
+ Failed to delete sandbox %1: %2ínem sikerült törölni %1 homokozót: %2
-
+ The sandbox name can not be longer than 32 characters.A homokozó neve nem lehet hosszabb 32 karakternél.
-
+ The sandbox name can not be a device name.A homokozó neve nem lehet egy eszköz neve.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.A homokozó neve csak betűket, számokat és aláhúzásokat tartalmazhat, amelyek szóközként jelennek meg.
-
+ Failed to terminate all processesNem sikerült minden folyamatot leállítani
-
+ Delete protection is enabled for the sandboxA törlésvédelem engedélyezve van a homokozóban
-
+ All sandbox processes must be stopped before the box content can be deletedMinden homokozói folyamatot le kell állítani a homokozó tartalmának törlése előtt
-
+ Error deleting sandbox folder: %1Hiba történt a homokozó mappa törlésekor: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move directory '%1' to '%2''%1' könyvtár átmozgatása sikertelen ide: '%2'
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Ez a pillanatkép nem hajtható végre, amíg a folyamat még fut a homokozóban.
-
+ Failed to create directory for new snapshotKönyvtár létrehozása az új pillanatkép részére sikertelen
-
+ Snapshot not foundPillanatkép nem található
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Hiba történt a pillanatkép könyvtárak egyesítésekor: '%1' ezzel: '%2', a pillanatkép nincs teljesen összevonva.
-
+ Failed to remove old snapshot directory '%1'A régi '%1' pillanatkép könyvtár eltávolítása sikertelen
-
+ Can't remove a snapshot that is shared by multiple later snapshotsNem lehet eltávolítani azt a pillanatképet, amelyet több későbbi pillanatkép is megoszt
-
+ You are not authorized to update configuration in section '%1'Nem jogosult a konfiguráció frissítésére '%1' szakaszban
-
+ Failed to set configuration setting %1 in section %2: %3%1 konfigurációs beállítások beállítása sikertelen %2 szakaszban: %3
-
+ Can not create snapshot of an empty sandboxNem lehet pillanatképet készíteni egy üres homokozóról
-
+ A sandbox with that name already existsMár létezik ilyen nevű homokozó
-
+ The config password must not be longer than 64 charactersA konfigurációs jelszó nem lehet 64 karakternél hosszabb
-
+ The operation was canceled by the userA műveletet a felhasználó törölte
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedAz importálás/exportálás nem érhető el, a 7z.dll nem tölthető be
-
+ Failed to create the box archiveNem sikerült létrehozni a homokozó archívumot
-
+ Failed to open the 7z archiveNem sikerült megnyitni a 7z archívumot
-
+ Failed to unpack the box archiveNem sikerült kicsomagolni a homokozó archívumot
-
+ The selected 7z file is NOT a box archiveA kiválasztott 7z fájl NEM egy homokozó archívum
-
+ Operation failed for %1 item(s).%1 elemre vonatkozó művelet sikertelen.
@@ -4292,28 +4292,28 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Megnyitja a %1 weblapot egy homokozóban (Igen) vagy azon kívül (Nem)?
-
+ Remember choice for later.A választás megjegyzése.
-
+ The supporter certificate is not valid for this build, please get an updated certificateA támogatói tanúsítvány nem érvényes ehhez a buildhez, kérjük, szerezzen be frissített tanúsítványt
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificateA támogatói tanúsítvány %1 napja lejárt, kérjük, szerezzen be frissített tanúsítványt
-
+ , but it remains valid for the current build, de érvényes marad a jelenlegi buildre
-
+ The supporter certificate will expire in %1 days, please get an updated certificateA támogatói tanúsítvány %1 nap múlva lejár. Kérjük, hosszabítsa meg
@@ -5537,36 +5537,41 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
- Max Level
+ Advanced (L)
+ Max Level
+
+
+
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
@@ -5673,12 +5678,12 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Támogatói tanúsítvány szükséges
-
+ Run &Un-SandboxedFuttatás &homokozón kívül
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Ez nem úgy néz ki, mint egy tanúsítvány. Kérjük, adja meg a teljes tanúsítványt, ne csak egy részét.
@@ -5691,7 +5696,7 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Ez a tanúsítvány sajnos elavult.
-
+ Thank you for supporting the development of Sandboxie-Plus.Köszönjük, hogy támogatja a Sandboxie-Plus fejlesztését.
@@ -5700,88 +5705,88 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
Ez a támogatói tanúsítvány nem érvényes.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectoryKönyvtár kiválasztása
-
+ <a href="check">Check Now</a><a href="check">Ellenőrzés most</a>
-
+ Please enter the new configuration password.Az új konfigurációs jelszó megadása.
-
+ Please re-enter the new configuration password.Kérjük, adja meg újra a konfigurációs jelszót.
-
+ Passwords did not match, please retry.A jelszavak nem egyeznek. Kérjük, próbálja meg újra.
-
+ ProcessFolyamatok
-
+ FolderMappa
-
+ Please enter a program file nameEgy program nevének megadása
-
+ Please enter the template identifierKérjük, adja meg a sablon azonosítóját
-
+ Error: %1Hiba: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)%1 (jelenlegi)
@@ -8573,27 +8578,27 @@ Felhívjuk figyelmét, hogy ezek az értékek jelenleg felhasználóspecifikusak
QPlatformTheme
-
+ OKOK
-
+ ApplyAlkalmazás
-
+ CancelMégse
-
+ &Yes&Igen
-
+ &No&Nem
diff --git a/SandboxiePlus/SandMan/sandman_it.ts b/SandboxiePlus/SandMan/sandman_it.ts
index 348f3692..bc3fc8cc 100644
--- a/SandboxiePlus/SandMan/sandman_it.ts
+++ b/SandboxiePlus/SandMan/sandman_it.ts
@@ -1711,120 +1711,120 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Compartimento applicazioni
-
+ Custom iconIcona personalizzata
-
+ Version 1Versione 1
-
+ Version 2Versione 2
-
+ Browse for ProgramSfoglia programma
-
+ Open Box OptionsMostra Opzioni area virtuale
-
+ Browse ContentSfoglia contenuto
-
+ Start File RecoveryEsegui recupero file
-
+ Show Run DialogMostra finestra di avvio programma
-
+ IndeterminateNon definito
-
+ Backup Image Header
-
+ Restore Image Header
-
+ Change PasswordModifica password
-
-
+
+ Always copyCopia sempre
-
-
+
+ Don't copyNon copiare
-
-
+
+ Copy emptyCopia vuota
-
+ The image file does not exist
-
+ The password is wrong
-
+ Unexpected error: %1
-
+ Image Password Changed
-
+ Backup Image Header for %1
-
+ Image Header Backuped
-
+ Restore Image Header for %1
-
+ Image Header Restored
@@ -1891,17 +1891,17 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Alcune modifiche non sono state ancora salvate, vuoi chiudere la finestra opzioni?
-
+ kilobytes (%1)kilobyte (%1)
-
+ Select colorScegli un colore
-
+ Select ProgramSeleziona programma
@@ -1911,18 +1911,18 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
Inserire un identificativo di servizio
-
+ Executables (*.exe *.cmd)File eseguibili (*.exe *.cmd)
-
-
+
+ Please enter a menu titleImmetti il nome da assegnare al menu
-
+ Please enter a commandImmetti un comando
@@ -1931,8 +1931,8 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
-
+
+
@@ -2131,8 +2131,8 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
-
+
+
@@ -2169,7 +2169,7 @@ Nota: Il controllo degli aggiornamenti è solitamente indietro rispetto all&apos
-
+
@@ -2854,22 +2854,22 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
CSandBox
-
+ Waiting for folder: %1In attesa della cartella: %1
-
+ Deleting folder: %1Eliminazione della cartella: %1
-
+ Merging folders: %1 >> %2Unione cartelle: %1 >> %2
-
+ Finishing Snapshot Merge...Completamento unione istantanea...
@@ -2965,22 +2965,22 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
<a href="sbie://update/apply" style="color: red;">Un nuovo aggiornamento %1 di Sandboxie Plus è pronto da installare</a>
-
+ Reset ColumnsReimposta colonne
-
+ Copy CellCopia cella
-
+ Copy RowCopia riga
-
+ Copy PanelCopia riquadro
@@ -3266,7 +3266,7 @@ A differenza del canale di anteprima, non contiene modifiche non testate, potenz
-
+ About Sandboxie-PlusInformazioni su Sandboxie Plus
@@ -3477,9 +3477,9 @@ Effettuare la pulizia?
-
-
-
+
+
+ Don't show this message again.Non mostrare più questo messaggio.
@@ -3514,19 +3514,19 @@ Effettuare la pulizia?
Configurazione corrente: %1
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie Plus - Errore
-
+ Failed to stop all Sandboxie componentsImpossibile fermare tutti i componenti di Sandboxie
-
+ Failed to start required Sandboxie componentsImpossibile avviare i componenti di Sandboxie richiesti
@@ -3592,7 +3592,7 @@ Effettuare la pulizia?
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Diventa un sostenitore di Sandboxie Plus</a> per ricevere un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificato di supporto</a>
@@ -3636,112 +3636,112 @@ Please check if there is an update for sandboxie.
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!La firma del certificato non è valida!
-
+ The Certificate is not suitable for this product.Il certificato non è adatto a questo prodotto.
-
+ The Certificate is node locked.node-locked = hardware-lockedIl certificato è associato a un altro dispositivo.
-
+ The support certificate is not valid.
Error: %1Il certificato di supporto non è valido.
Errore: %1
-
+ The evaluation period has expired!!!Il periodo di valutazione è scaduto!
-
-
+
+ Don't ask in futureNon chiedere in futuro
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Qui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaImmettere l'intervallo in secondi per la disattivazione<br />delle regole dei programmi ad avvio forzato.
-
+ Error Status: 0x%1 (%2)Stato di errore: 0x%1 (%2)
-
+ UnknownSconosciuto
-
+ Failed to copy box data filesImpossibile copiare i dati dell'area virtuale
-
+ Failed to remove old box data filesImpossibile rimuovere i dati obsoleti dell'area virtuale
-
+ Unknown Error Status: 0x%1Stato di errore sconosciuto: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
@@ -3904,7 +3904,7 @@ Scegliere No per selezionare: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Qui ho forzato di proposito un ritorno a capo per ragioni di lunghezzaLa funzionalità selezionata è disponibile solo ai sostenitori del progetto.<br />I processi avviati nell'area virtuale con questa funzione senza un valido certificato di supporto verranno terminati dopo 5 minuti.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Diventa un sostenitore di Sandboxie Plus</a>, e ricevi un <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificato di supporto</a>
@@ -3962,17 +3962,17 @@ Scegliere No per selezionare: %2
-
+ Only Administrators can change the config.Solo gli amministratori possono cambiare la configurazione.
-
+ Please enter the configuration password.Immettere la password di configurazione.
-
+ Login Failed: %1Login non riuscito: %1
@@ -3993,7 +3993,7 @@ Scegliere No per selezionare: %2
Importazione: %1
-
+ Do you want to terminate all processes in all sandboxes?Chiudere tutti i processi in tutte le aree virtuali?
@@ -4002,301 +4002,301 @@ Scegliere No per selezionare: %2
Terminali tutti senza chiedere
-
+ No RecoverySospensione recupero file in corso
-
+ No MessagesSospensione messaggi popup in corso
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie Plus è stato avviato in modalità portatile e deve creare i servizi necessari. Questa operazione richiederà privilegi amministrativi.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.ATTENZIONE: Un altro processo (probabilmente SbieCtrl.exe) sta attualmente gestendo questa sessione Sandboxie, si prega di chiuderla e di riconnettersi.
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERRORE:</b> Sandboxie Plus Manager (SandMan.exe) non ha una firma digitale valida (SandMan.exe.sig). Si prega di scaricare una versione attendibile dalla <a href="https://sandboxie-plus.com/go.php?to=sbie-get">pagina ufficiale di download</a>.
-
+ Maintenance operation failed (%1)Operazione di manutenzione non riuscita (%1)
-
+ Maintenance operation completedOperazione di manutenzione completata
-
+ Executing maintenance operation, please wait...Operazione di manutenzione in esecuzione, attendere...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Nell'interfaccia utente Plus, questa funzionalità è stata integrata nell'elenco principale delle aree virtuali.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Utilizzando il menu contestuale dell'area virtuale/gruppo, è possibile spostare aree virtuali e gruppi in altri gruppi. È inoltre prevista la possibilità di utilizzare il trascinamento per spostare gli elementi. In alternativa, è possibile utilizzare i tasti freccia tenendo premuto ALT per spostare gli elementi in alto e in basso all'interno del gruppo.<br />È possibile creare nuove aree virtuali e gruppi dal menu Area virtuale.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Vuoi reimpostare i messaggi nascosti (sì), o soltanto i log dei messaggi (no)?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.Si sta per modificare il file Templates.ini, operazione generalmente sconsigliata.
Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno annullate al prossimo aggiornamento di Sandboxie.
-
+ The changes will be applied automatically whenever the file gets saved.Le modifiche verranno applicate automaticamente ogni volta che il file viene salvato.
-
+ The changes will be applied automatically as soon as the editor is closed.Le modifiche verranno applicate automaticamente non appena l'editor viene chiuso.
-
+ Sandboxie config has been reloadedLa configurazione di Sandboxie è stata aggiornata
-
+ Administrator rights are required for this operation.Questa operazione richiede privilegi amministrativi.
-
+ Failed to execute: %1Impossibile eseguire: %1
-
+ Failed to connect to the driverImpossibile collegarsi al driver
-
+ Failed to communicate with Sandboxie Service: %1Impossibile comunicare con Sandboxie Service: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2La versione di Sandboxie %1 risulta incompatibile. Versioni compatibili: %2
-
+ Can't find Sandboxie installation path.Impossibile trovare il percorso di installazione di Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Impossibile copiare la configurazione dall'area virtuale %1: %2
-
+ A sandbox of the name %1 already existsUn'area virtuale %1 è già presente
-
+ Failed to delete sandbox %1: %2Impossibile cancellare area virtuale %1: %2
-
+ The sandbox name can not be longer than 32 characters.Il nome dell'area virtuale non può superare i 32 caratteri.
-
+ The sandbox name can not be a device name.Il nome dell'area virtuale non può essere quello di un dispositivo.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Il nome dell'area virtuale può contenere solo lettere, cifre e trattini bassi che vengono visualizzati come spazi.
-
+ Failed to terminate all processesImpossibile terminare tutti i processi
-
+ Delete protection is enabled for the sandboxBlocco di eliminazione attivo per quest'area virtuale
-
+ All sandbox processes must be stopped before the box content can be deletedTutti i processi dell'area virtuale devono essere interrotti prima che il contenuto possa essere eliminato
-
+ Error deleting sandbox folder: %1Errore durante l'eliminazione della cartella: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.Tutti i processi dell'area virtuale devono essere interrotti prima che possa essere rinominata.
-
+ A sandbox must be emptied before it can be deleted.Occorre svuotare il contenuto dell'area virtuale prima di poterla rimuovere.
-
+ Failed to move directory '%1' to '%2'Impossibile spostare directory '%1' in '%2'
-
+ Failed to move box image '%1' to '%2'Impossibile spostare l'immagine dell'area virtuale '%1' in '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Questa istantanea non può essere eseguita mentre i processi sono ancora in esecuzione nell'area virtuale.
-
+ Failed to create directory for new snapshotImpossibile creare directory su nuova istantanea
-
+ Snapshot not foundIstantanea non trovata
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Errore durante l'unione delle directory '%1' con '%2': unione delle istantanee non riuscita.
-
+ Failed to remove old snapshot directory '%1'Impossibile rimuovere directory di istantanea '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsImpossibile rimuovere un'istantanea condivisa da istantanee successive
-
+ You are not authorized to update configuration in section '%1'Non sei autorizzato ad aggiornare la configurazione nel punto '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Salvataggio dell'impostazione di configurazione %1 fallito nel punto %2: %3
-
+ Can not create snapshot of an empty sandboxImpossibile creare istantanea di un'area virtuale vuota
-
+ A sandbox with that name already existsUn'area virtuale con quel nome è già presente
-
+ The config password must not be longer than 64 charactersLa password non può superare i 64 caratteri
-
+ The operation was canceled by the userOperazione annullata dall'utente
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deletedIl contenuto di un'area virtuale non montata non può essere eliminato
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedImportazione/esportazione non disponibile, 7z.dll non può essere caricato
-
+ Failed to create the box archiveImpossibile creare l'archivio dell'area virtuale
-
+ Failed to open the 7z archiveImpossibile aprire l'archivio 7z
-
+ Failed to unpack the box archiveImpossibile estrarre l'archivio dell'area virtuale
-
+ The selected 7z file is NOT a box archiveIl file 7z selezionato NON è un archivio relativo a un'area virtuale
-
+ Operation failed for %1 item(s).Operazione fallita per %1 elemento(i).
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4305,37 +4305,37 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Aprire %1 nel browser dell'area virtuale (sì) o all'esterno (no)?
-
+ Remember choice for later.Ricorda la scelta per dopo.
-
+ Case Sensitive&Maiuscole/minuscole
-
+ RegExpEspressione regolare
-
+ HighlightEvidenzia
-
+ CloseChiudi
-
+ &Find ...&Trova ...
-
+ All columnsTutte le colonne
@@ -4352,22 +4352,22 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Sandboxie Plus è la continuazione open source di Sandboxie.<br />Visita <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> per informazioni.<br /><br />%3<br /><br />Versione driver: %1<br />Funzioni attive: %2<br /><br />Icone by <a href="https://icons8.com">icons8.com</a><br /><br />Traduzione italiana a cura di <a href="https://eng2ita.altervista.org">Eng2ita</a><br />
-
+ The supporter certificate is not valid for this build, please get an updated certificateIl certificato non è valido per questa build, si prega di ottenere un certificato aggiornato
-
+ The supporter certificate has expired%1, please get an updated certificateIl certificato è scaduto%1, si prega di ottenere un certificato aggiornato
-
+ , but it remains valid for the current build, ma resta valido per la build corrente
-
+ The supporter certificate will expire in %1 days, please get an updated certificateIl certificato scadrà fra %1 giorni, si prega di ottenere un certificato aggiornato
@@ -5610,36 +5610,41 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
+ Advanced (L)
+
+
+
+ Max LevelLivello massimo
-
+ Level %1Livello %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Sfortunatamente questo certificato non è valido per questa build, è necessario ottenere un nuovo certificato o tornare ad una build precedente.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Benché questo certificato sia scaduto, le funzionalità Plus rimangono attive per la versione attualmente installata. Tuttavia, non si avrà più accesso ai servizi di Sandboxie Live, inclusi gli aggiornamenti di compatibilità e il database di risoluzione problemi.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Sfortunatamente questo certificato è scaduto, è necessario ottenere un nuovo certificato.
@@ -5745,13 +5750,13 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
È necessario un certificato di supporto
-
+ Run &Un-SandboxedVoce relativa al menu contestuale dei file all'interno della sandboxAvvia all'&esterno dell'area virtuale
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Si prega di inserire l'intero certificato, non solo una parte di esso.
@@ -5764,7 +5769,7 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Questo certificato è obsoleto.
-
+ Thank you for supporting the development of Sandboxie-Plus.Grazie per aver sostenuto lo sviluppo di Sandboxie Plus.
@@ -5773,89 +5778,89 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
Certificato di supporto non valido.
-
+ Update AvailableAggiornamento disponibile
-
+ InstalledInstallato
-
+ by %1Si tratta di un tooltip, perciò non ci sono problemi di lunghezzacomponente sviluppato da %1
-
+ (info website)(info sito web)
-
+ This Add-on is mandatory and can not be removed.Questo componente aggiuntivo è necessario e non può essere rimosso.
-
-
+
+ Select DirectorySeleziona directory
-
+ <a href="check">Check Now</a><a href="check">Controlla ora</a>
-
+ Please enter the new configuration password.Immettere la nuova password di configurazione.
-
+ Please re-enter the new configuration password.Reimmettere la nuova password di configurazione.
-
+ Passwords did not match, please retry.Le password non corrispondono, si prega di riprovare.
-
+ ProcessProcesso
-
+ FolderCartella
-
+ Please enter a program file nameImmettere il nome del programma (es. nomefile.exe)
-
+ Please enter the template identifierInserire l'identificativo del modello
-
+ Error: %1Errore: %1
-
+ Do you really want to delete the selected local template(s)?Eliminare i modelli locali selezionati?
-
+ %1 (Current)%1 (Attuale)
@@ -8659,27 +8664,27 @@ area virtuale
QPlatformTheme
-
+ OKOK
-
+ ApplyApplica
-
+ CancelAnnulla
-
+ &Yes&Sì
-
+ &No&No
diff --git a/SandboxiePlus/SandMan/sandman_ja.ts b/SandboxiePlus/SandMan/sandman_ja.ts
index 56282dbd..f820b88d 100644
--- a/SandboxiePlus/SandMan/sandman_ja.ts
+++ b/SandboxiePlus/SandMan/sandman_ja.ts
@@ -1403,8 +1403,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1417,8 +1417,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1606,7 +1606,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1859,151 +1859,151 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ Custom icon
-
+ Version 1
-
+ Version 2
-
+ Browse for Program
-
+ Open Box Options
-
+ Browse Content
-
+ Start File Recovery
-
+ Show Run Dialog
-
+ Indeterminate
-
+ Backup Image Header
-
+ Restore Image Header
-
+ Change Password
+
+
+
+ Always copy
+
+
- Always copy
+ Don't copy
- Don't copy
-
-
-
-
- Copy empty
-
+ kilobytes (%1)
-
+ Select color
-
+ Select Program
-
+ Executables (*.exe *.cmd)
-
-
+
+ Please enter a menu title
-
+ Please enter a command
-
+ The image file does not exist
-
+ The password is wrong
-
+ Unexpected error: %1
-
+ Image Password Changed
-
+ Backup Image Header for %1
-
+ Image Header Backuped
-
+ Restore Image Header for %1
-
+ Image Header Restored
@@ -2658,22 +2658,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1
-
+ Deleting folder: %1
-
+ Merging folders: %1 >> %2
-
+ Finishing Snapshot Merge...
@@ -2902,7 +2902,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusSandboxie-Plus について
@@ -3287,9 +3287,9 @@ Do you want to do the clean up?
-
-
-
+
+
+ Don't show this message again.
@@ -3484,7 +3484,7 @@ Please check if there is an update for sandboxie.
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
@@ -3495,7 +3495,7 @@ Please check if there is an update for sandboxie.
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
@@ -3510,517 +3510,517 @@ Please check if there is an update for sandboxie.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!
-
+ The supporter certificate is not valid for this build, please get an updated certificate
-
+ The supporter certificate has expired%1, please get an updated certificate
-
+ , but it remains valid for the current build
-
+ The supporter certificate will expire in %1 days, please get an updated certificate
-
+ Only Administrators can change the config.
-
+ Please enter the configuration password.
-
+ Login Failed: %1
-
+ Do you want to terminate all processes in all sandboxes?
-
-
+
+ Don't ask in future
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Forced Programs ルールを一時的に無効化する時間を秒単位で入力してください。
-
+ No Recovery
-
+ No Messages
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
-
-
+
+
+ Sandboxie-Plus - Error
-
+ Failed to stop all Sandboxie components
-
+ Failed to start required Sandboxie components
-
+ Maintenance operation failed (%1)
-
+ Maintenance operation completed
-
+ Executing maintenance operation, please wait...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.
-
+ The changes will be applied automatically whenever the file gets saved.
-
+ The changes will be applied automatically as soon as the editor is closed.
-
+ Sandboxie config has been reloadedSandboxie 構成は再読み込みされました
-
+ Error Status: 0x%1 (%2)
-
+ Unknown
-
+ Administrator rights are required for this operation.この操作には管理者権限が必要です。
-
+ Failed to execute: %1
-
+ Failed to connect to the driver
-
+ Failed to communicate with Sandboxie Service: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2
-
+ Can't find Sandboxie installation path.
-
+ Failed to copy configuration from sandbox %1: %2
-
+ A sandbox of the name %1 already exists
-
+ Failed to delete sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.
-
+ The sandbox name can not be a device name.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.
-
+ Failed to terminate all processes
-
+ Delete protection is enabled for the sandbox
-
+ All sandbox processes must be stopped before the box content can be deleted
-
+ Error deleting sandbox folder: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.
-
+ A sandbox must be emptied before it can be deleted.
-
+ Failed to move directory '%1' to '%2'
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.
-
+ Failed to create directory for new snapshot
-
+ Failed to copy box data files
-
+ Snapshot not found
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.
-
+ Failed to remove old snapshot directory '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshots
-
+ Failed to remove old box data files
-
+ You are not authorized to update configuration in section '%1'
-
+ Failed to set configuration setting %1 in section %2: %3
-
+ Can not create snapshot of an empty sandbox
-
+ A sandbox with that name already exists
-
+ The config password must not be longer than 64 characters
-
+ The operation was canceled by the user
-
+ The content of an unmounted sandbox can not be deleted
-
+ %1
-
+ Import/Export not available, 7z.dll could not be loaded
-
+ Failed to create the box archive
-
+ Failed to open the 7z archive
-
+ Failed to unpack the box archive
-
+ The selected 7z file is NOT a box archive
-
+ Unknown Error Status: 0x%1
-
+ Operation failed for %1 item(s).
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?%1 をサンドボックス化した、または、していないブラウザで開きますか?
-
+ Remember choice for later.
-
+ Sandboxed
-
+ Unsandboxed
-
+ Reset Columns列をリセット
-
+ Copy Cell
-
+ Copy Row
-
+ Copy Panel
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ Close閉じる
-
+ &Find ...
-
+ All columns
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -5381,137 +5381,142 @@ This file is part of Sandboxie and all change done to it will be reverted next t
- Max Level
+ Advanced (L)
+ Max Level
+
+
+
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ Run &Un-Sandboxed
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
-
+ Thank you for supporting the development of Sandboxie-Plus.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select Directoryディレクトリの選択
-
+ <a href="check">Check Now</a>
-
+ Please enter the new configuration password.
-
+ Please re-enter the new configuration password.
-
+ Passwords did not match, please retry.
-
+ Process
-
+ Folder
-
+ Please enter a program file name
-
+ Please enter the template identifier
-
+ Error: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)
@@ -8182,27 +8187,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK
-
+ Apply
-
+ Cancelキャンセル
-
+ &Yes
-
+ &No
diff --git a/SandboxiePlus/SandMan/sandman_ko.ts b/SandboxiePlus/SandMan/sandman_ko.ts
index fe7d9f5b..0a2f577c 100644
--- a/SandboxiePlus/SandMan/sandman_ko.ts
+++ b/SandboxiePlus/SandMan/sandman_ko.ts
@@ -1744,8 +1744,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1759,8 +1759,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1795,7 +1795,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -2056,135 +2056,135 @@ Note: The update check is often behind the latest GitHub release to ensure that
응용 프로그램 구획
-
+ Custom icon사용자 지정 아이콘
-
+ Version 1버전 1
-
+ Version 2버전 2
-
+ Browse for Program프로그램 찾아보기
-
+ Open Box Options박스 열기 옵션
-
+ Browse Content내용 찾아보기
-
+ Start File Recovery파일 복구 시작
-
+ Show Run Dialog실행 대화 상자 표시
-
+ Indeterminate불확실한
-
+ Backup Image Header이미지 헤더 백업
-
+ Restore Image Header이미지 헤더 복원
-
+ Change Password암호 변경
-
-
+
+ Always copy항상 복사
-
-
+
+ Don't copy복사 안 함
-
-
+
+ Copy empty빈 복사
-
+ kilobytes (%1)킬로바이트 (%1)
-
+ Select color색상 선택
-
+ Select Program프로그램 선택
-
+ The image file does not exist이미지 파일이 없습니다
-
+ The password is wrong암호가 잘못되었습니다
-
+ Unexpected error: %1예기치 않은 오류: %1
-
+ Image Password Changed이미지 암호 변경됨
-
+ Backup Image Header for %1%1에 대한 이미지 헤더 백업
-
+ Image Header Backuped이미지 헤더 백업됨
-
+ Restore Image Header for %1%1에 대한 이미지 헤더 복원
-
+ Image Header Restored이미지 헤더 복원됨
@@ -2194,18 +2194,18 @@ Note: The update check is often behind the latest GitHub release to ensure that
서비스 식별자를 입력하십시오
-
+ Executables (*.exe *.cmd)실행 파일 (*.exe *.cmd)
-
-
+
+ Please enter a menu title메뉴 제목을 입력하십시오
-
+ Please enter a command명령을 입력하십시오
@@ -2970,22 +2970,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1폴더 대기 중: %1
-
+ Deleting folder: %1폴더 삭제 중: %1
-
+ Merging folders: %1 >> %2폴더 병합: %1 >> %2
-
+ Finishing Snapshot Merge...스냅샷 병합을 완료하는 중...
@@ -3071,22 +3071,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie-Plus v%1
-
+ Reset Columns열 초기화
-
+ Copy Cell셀 복사
-
+ Copy Row행 복사
-
+ Copy Panel패널 복사
@@ -3362,7 +3362,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusSandboxie-Plus 정보
@@ -3449,9 +3449,9 @@ Do you want to do the clean up?
-
-
-
+
+
+ Don't show this message again.이 메시지를 다시 표시하지 않습니다.
@@ -3555,50 +3555,50 @@ Sandboxie에 대한 업데이트가 있는지 확인 부탁드립니다.Windows 빌드 %1이 현재 알려진 Sandboxie 버전의 지원 기능을 초과합니다. Sandboxie는 시스템 불안정을 유발할 수 있는 마지막으로 알려진 오프셋을 사용하려고 합니다.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.선택한 기능에는 <b>고급</b> 지원자 인증서가 필요합니다.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.<br />이 기능을 잠금 해제하려면 Great Patreon 레벨 이상이어야 합니다.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>선택한 기능 세트는 프로젝트 후원자만 사용할 수 있습니다.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">프로젝트 후원자 되기</a>, 및 <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">후원자 인증서 받기</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!사용하려는 인증서가 차단되었습니다. 이는 해당 인증서가 원인으로 인해 무효화되었음을 의미합니다. 이 인증서를 사용하려는 시도는 사용 약관 위반에 해당합니다!
-
-
+
+ Don't ask in future앞으로 묻지 않기
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?암호화된 샌드박스의 모든 프로세스를 종료하고 마운트 해제하시겠습니까?
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - 오류
-
+ Failed to stop all Sandboxie components모든 Sandboxie 구성 요소를 중지하지 못했습니다
-
+ Failed to start required Sandboxie components필수 Sandboxie 구성 요소를 시작하지 못했습니다
@@ -3688,7 +3688,7 @@ No will choose: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>선택한 기능 세트는 프로젝트 후원자만 사용할 수 있습니다. 후원자 인증서 없이 이 기능 세트가 활성화된 박스에서 시작된 프로세스는 5분 후에 종료됩니다.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">프로젝트 후원자가 되어</a>, <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">후원 인증서</a>를 받습니다
@@ -3748,22 +3748,22 @@ No will choose: %2
-
+ Only Administrators can change the config.관리자만 구성을 변경할 수 있습니다.
-
+ Please enter the configuration password.구성 암호를 입력하십시오.
-
+ Login Failed: %1로그인 실패: %1
-
+ Do you want to terminate all processes in all sandboxes?모든 sandboxes의 모든 프로세스를 종료하시겠습니까?
@@ -3772,107 +3772,107 @@ No will choose: %2
묻지 않고 모두 종료
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus는 휴대용 모드로 시작되었으며 필요한 서비스를 만들어야 합니다. 관리 권한을 묻는 메시지가 나타납니다.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.주의: 다른 에이전트 (아마도 SbieCtrl.exe)가 이미 이 Sandboxie 세션을 관리하고 있습니다. 먼저 이 세션을 닫은 후 다시 연결하여 작업을 수행하십시오.
-
+ Executing maintenance operation, please wait...유지 보수 작업을 실행하는 중입니다. 잠시 기다려 주십시오...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?숨겨진 메시지 박스 (예)를 재설정하시겠습니까, 아니면 모든 로그 메시지 (아니오)만 재설정하시겠습니까?
-
+ The changes will be applied automatically whenever the file gets saved.파일이 저장될 때마다 변경 내용이 자동으로 적용됩니다.
-
+ The changes will be applied automatically as soon as the editor is closed.편집기가 닫히는 즉시 변경 내용이 자동으로 적용됩니다.
-
+ Error Status: 0x%1 (%2)오류 상태: 0x%1(%2)
-
+ Unknown알 수 없음
-
+ A sandbox must be emptied before it can be deleted.샌드박스를 삭제하려면 먼저 비워야 합니다.
-
+ Failed to copy box data files박스 데이터 파일을 복사하지 못했습니다
-
+ Failed to remove old box data files이전 박스 데이터 파일을 제거하지 못했습니다
-
+ Unknown Error Status: 0x%1알 수 없는 오류 상태: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?샌드박스한 웹 브라우저 또는 샌드박스 안 한 웹 브라우저에서 %1을(를) 여시겠습니까?
-
+ Sandboxed샌드박스함
-
+ Unsandboxed샌드박스 안 함
-
+ Case Sensitive대소문자 구분
-
+ RegExp정규식
-
+ Highlight강조
-
+ Close닫기
-
+ &Find ...찾기(&F)...
-
+ All columns모든 열
@@ -3894,7 +3894,7 @@ No will choose: %2
Sandboxie-Plus는 Sandboxie의 오픈 소스 연속입니다.<br />더 많은 정보는 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a>를 방문하세요.<br /><br />%3<br /><br />드라이버 버전: %1<br />기능: %2<br /><br />아이콘 제공은 <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.이 작업을 수행하려면 관리자 권한이 필요합니다.
@@ -4166,7 +4166,7 @@ No will choose: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">인증서를 업그레이드</a> 하여 고급 기능의 잠금을 해제합니다.
@@ -4184,34 +4184,34 @@ No will choose: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">프로젝트 후원자가 되어</a>, <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">후원자 인증서</a>를 받습니다
-
+ The Certificate Signature is invalid!인증서 서명이 잘못되었습니다!
-
+ The Certificate is not suitable for this product.인증서가 이 제품에 적합하지 않습니다.
-
+ The Certificate is node locked.인증서가 노드 잠금 상태입니다.
-
+ The support certificate is not valid.
Error: %1지원 인증서가 잘못되었습니다.
오류: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!평가 기간이 만료되었습니다!!!
@@ -4234,47 +4234,47 @@ Error: %1
가져오기: %1
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.강제 프로그램 규칙을 비활성화하는 기간을 초로 입력하십시오.
-
+ No Recovery복구 안 함
-
+ No Messages메시지 없음
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>오류:</b> Sandboxie-Plus Manager(SandMan.exe)에 유효한 서명(SandMan.exe.sig)이 없습니다. <a href="https://sandboxie-plus.com/go.php?to=sbie-get">공식 다운로드 페이지</a>에서 신뢰할 수 있는 릴리스를 다운로드하십시오.
-
+ Maintenance operation failed (%1)유지 관리 작업에 실패했습니다 (%1)
-
+ Maintenance operation completed유지 보수 작업이 완료되었습니다
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Plus UI에서 이 기능은 기본 샌드박스 목록 보기에 통합되었습니다.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.박스/그룹의 상황에 맞는 메뉴를 사용하여 박스와 그룹을 다른 그룹으로 이동할 수 있습니다. 끌어서 놓기를 사용하여 항목을 이동할 수도 있습니다. 또는 ALT를 누른 상태에서 화살표 키를 사용하여 그룹 내에서 항목을 위아래로 이동할 수도 있습니다.<br />.샌드박스 메뉴에서 새 박스 및 그룹을 생성할 수 있습니다.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4283,219 +4283,219 @@ This file is part of Sandboxie and all changed done to it will be reverted next
이 파일은 Sandboxie의 일부이며 다음에 Sandboxie가 업데이트될 때 변경된 모든 내용이 되돌아갑니다.
-
+ Sandboxie config has been reloadedSandboxie 구성을 다시 불러왔습니다
-
+ Failed to execute: %1실행하지 못했습니다: %1
-
+ Failed to connect to the driver드라이버에 연결하지 못했습니다
-
+ Failed to communicate with Sandboxie Service: %1Sandboxie Service와 통신하지 못했습니다: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2호환되지 않는 Sandboxie %1이(가) 발견되었습니다. 호환 버전: %2
-
+ Can't find Sandboxie installation path.Sandboxie 설치 경로를 찾을 수 없습니다.
-
+ Failed to copy configuration from sandbox %1: %2%1에서 구성을 복사하지 못했습니다: %2
-
+ A sandbox of the name %1 already exists%1 이름의 샌드박스가 이미 있습니다
-
+ Failed to delete sandbox %1: %2샌드박스 %1을(를) 삭제하지 못했습니다: %2
-
+ The sandbox name can not be longer than 32 characters.샌드박스 이름은 32자를 초과할 수 없습니다.
-
+ The sandbox name can not be a device name.샌드박스 이름은 장치 이름이 될 수 없습니다.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.샌드박스 이름에는 공백으로 표시되는 문자, 숫자 및 밑줄만 포함될 수 있습니다.
-
+ Failed to terminate all processes모든 프로세스를 종료하지 못했습니다
-
+ Delete protection is enabled for the sandbox샌드박스에 대해 삭제 보호가 활성화되었습니다
-
+ All sandbox processes must be stopped before the box content can be deleted박스 내용을 삭제하려면 먼저 모든 샌드박스 프로세스를 중지해야 합니다
-
+ Error deleting sandbox folder: %1샌드박스 폴더 삭제 중 오류 발생: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.샌드박스의 모든 프로세스를 중지해야 이름을 바꿀 수 있습니다.
-
+ Failed to move directory '%1' to '%2''%1' 디렉터리를 '%2'로 이동하지 못했습니다
-
+ Failed to move box image '%1' to '%2'박스 이미지 '%1'을(를) '%2'(으)로 이동하지 못했습니다
-
+ This Snapshot operation can not be performed while processes are still running in the box.프로세스가 박스에서 실행 중인 동안에는 이 스냅샷 작업을 수행할 수 없습니다.
-
+ Failed to create directory for new snapshot새 스냅샷에 대한 디렉터리를 생성하지 못했습니다
-
+ Snapshot not found스냅샷을 찾을 수 없음
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.'%1' 스냅샷 디렉터리를 '%2'과(와) 병합하는 동안 오류가 발생했습니다. 스냅샷이 완전히 병합되지 않았습니다.
-
+ Failed to remove old snapshot directory '%1'이전 스냅샷 디렉터리 '%1'을(를) 제거하지 못했습니다
-
+ Can't remove a snapshot that is shared by multiple later snapshots이후 여러 스냅샷이 공유하는 스냅샷을 제거할 수 없습니다
-
+ You are not authorized to update configuration in section '%1''%1' 섹션의 구성을 업데이트할 수 있는 권한이 없습니다
-
+ Failed to set configuration setting %1 in section %2: %3%2 섹션에서 구성 설정 %1을 설정하지 못했습니다: %3
-
+ Can not create snapshot of an empty sandbox빈 샌드박스의 스냅샷을 생성할 수 없습니다
-
+ A sandbox with that name already exists같은 이름의 샌드박스가 이미 있습니다
-
+ The config password must not be longer than 64 characters구성 암호는 64자를 초과할 수 없습니다
-
+ The operation was canceled by the user사용자가 작업을 취소했습니다
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted마운트 해제된 샌드박스의 내용을 삭제할 수 없습니다
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded가져오기/내보내기 기능을 사용할 수 없습니다, 7z.dll을 불러올 수 없습니다
-
+ Failed to create the box archive박스 압축파일을 만들지 못했습니다
-
+ Failed to open the 7z archive7z 압축파일을 열지 못했습니다
-
+ Failed to unpack the box archive박스 압축파일의 압축을 풀지 못했습니다
-
+ The selected 7z file is NOT a box archive선택한 7z 파일이 박스 압축파일이 아닙니다
-
+ Operation failed for %1 item(s).%1 항목에 대한 작업에 실패했습니다.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p><h3>Sandboxie-Plus 정보</h3><p>버전 %1 한국어 번역: 비너스걸💋</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1이 Sandboxie-Plus 사본은 다음에 대해 인증되었습니다. %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.Sandboxie-Plus는 개인용 및 비상업용으로 무료입니다.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Sandboxie-Plus는 Sandboxie의 오픈 소스 연속입니다.<br />더 많은 정보를 보려면 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 를 방문하세요.<br /><br />%2<br /><br />기능: %3<br /><br />설치: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4504,28 +4504,28 @@ This file is part of Sandboxie and all changed done to it will be reverted next
샌드박스에서 (예) 또는 샌드박스가 없는 (아니오) 웹 브라우저에서 %1을 여시겠습니까?
-
+ Remember choice for later.나중을 위해 선택을 기억합니다.
-
+ The supporter certificate is not valid for this build, please get an updated certificate후원자 인증서가 이 빌드에 유효하지 않습니다. 업데이트된 인증서를 받으십시오
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificate후원자 인증서가 %1일 전에 만료되었습니다. 업데이트된 인증서를 받으십시오
-
+ , but it remains valid for the current build, 하지만 현재 빌드에 대해서는 유효합니다
-
+ The supporter certificate will expire in %1 days, please get an updated certificate후원자 인증서가 %1일 후에 만료됩니다. 업데이트된 인증서를 받으십시오
@@ -5807,36 +5807,41 @@ This file is part of Sandboxie and all changed done to it will be reverted next
+ Advanced (L)
+
+
+
+ Max Level최대 수준
-
+ Level %1수준 %1
-
+ Supporter certificate required for access접근에 필요한 후원자 인증서
-
+ Supporter certificate required for automation자동화에 필요한 후원자 인증서
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.이 인증서는 현재 빌드에 유효하지 않습니다. 새 인증서를 가져오거나 이전 빌드로 다운그레이드해야 합니다.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.이 인증서는 만료되었지만 현재 설치된 버전 및 기능에 대해서는 사용 가능한 상태로 유지됩니다. 그러나 호환성 업데이트 및 온라인 문제 해결 데이터베이스를 포함한 Sandboxie-Live 서비스에 더 이상 액세스할 수 없습니다.
-
+ This certificate has unfortunately expired, you need to get a new certificate.이 인증서는 만료되었습니다. 새 인증서를 받아야 합니다.
@@ -5922,12 +5927,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
후원자 인증서 필요
-
+ Run &Un-Sandboxed샌드박스 없이 실행(&U)
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.인증서로 보이지 않습니다. 인증서 일부가 아닌 전체 인증서를 입력하십시오.
@@ -5940,7 +5945,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
안타깝게도 이 인증서는 오래되었습니다.
-
+ Thank you for supporting the development of Sandboxie-Plus.Sandboxie-Plus 개발을 지원해 주셔서 감사합니다.
@@ -5949,88 +5954,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
이 후원 인증서는 유효하지 않습니다.
-
+ Update Available사용 가능한 업데이트
-
+ Installed설치됨
-
+ by %1%1까지
-
+ (info website)(정보 웹사이트)
-
+ This Add-on is mandatory and can not be removed.이 추가 기능은 필수 사항 제거할 수 없습니다.
-
-
+
+ Select Directory디렉터리 선택
-
+ <a href="check">Check Now</a><a href="check">지금 확인</a>
-
+ Please enter the new configuration password.새 구성 암호를 입력하십시오.
-
+ Please re-enter the new configuration password.새 구성 암호를 다시 입력하십시오.
-
+ Passwords did not match, please retry.암호가 일치하지 않습니다. 다시 시도하십시오.
-
+ Process프로세스
-
+ Folder폴더
-
+ Please enter a program file name프로그램 파일 이름을 입력하십시오
-
+ Please enter the template identifier템플릿 식별자를 입력하십시오
-
+ Error: %1오류: %1
-
+ Do you really want to delete the selected local template(s)?선택한 로컬 템플릿을 삭제하시겠습니까?
-
+ %1 (Current)%1 (현재)
@@ -8982,27 +8987,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK확인
-
+ Apply적용
-
+ Cancel취소
-
+ &Yes예(&Y)
-
+ &No아니오(&N)
diff --git a/SandboxiePlus/SandMan/sandman_nl.ts b/SandboxiePlus/SandMan/sandman_nl.ts
index 3604b77a..70272171 100644
--- a/SandboxiePlus/SandMan/sandman_nl.ts
+++ b/SandboxiePlus/SandMan/sandman_nl.ts
@@ -1636,8 +1636,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1651,8 +1651,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1687,7 +1687,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1944,135 +1944,135 @@ Note: The update check is often behind the latest GitHub release to ensure that
Toepassingscompartiment
-
+ Custom icon
-
+ Version 1
-
+ Version 2
-
+ Browse for ProgramBladeren naar programma
-
+ Open Box Options
-
+ Browse ContentInhoud doorbladeren
-
+ Start File Recovery
-
+ Show Run Dialog
-
+ Indeterminate
-
+ Backup Image Header
-
+ Restore Image Header
-
+ Change PasswordWachtwoord wijzigen
+
+
+
+ Always copy
+
+
- Always copy
+ Don't copy
- Don't copy
-
-
-
-
- Copy empty
-
+ kilobytes (%1)kilobytes (%1)
-
+ Select colorKleur selecteren
-
+ Select ProgramProgramma selecteren
-
+ The image file does not exist
-
+ The password is wrong
-
+ Unexpected error: %1
-
+ Image Password Changed
-
+ Backup Image Header for %1
-
+ Image Header Backuped
-
+ Restore Image Header for %1
-
+ Image Header Restored
@@ -2082,18 +2082,18 @@ Note: The update check is often behind the latest GitHub release to ensure that
Een service-identifier invoeren
-
+ Executables (*.exe *.cmd)Uitvoerbare bestanden (*.exe *.cmd)
-
-
+
+ Please enter a menu titleVoer een menutitel in
-
+ Please enter a commandVoer een opdracht in
@@ -2845,22 +2845,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Wachten op map: %1
-
+ Deleting folder: %1Map verwijderen: %1
-
+ Merging folders: %1 >> %2Mappen samenvoegen: %1 >> %2
-
+ Finishing Snapshot Merge...Samenvoegen van snapshot afwerken...
@@ -3018,22 +3018,22 @@ Please check if there is an update for sandboxie.
-
+ Reset ColumnsKolommen herstellen
-
+ Copy CellCel kopiëren
-
+ Copy RowRij kopiëren
-
+ Copy PanelDeelvenster kopiëren
@@ -3328,7 +3328,7 @@ Please check if there is an update for sandboxie.
-
+ About Sandboxie-PlusOver Sandboxie-Plus
@@ -3567,9 +3567,9 @@ Wilt u het opruimen uitvoeren?
-
-
-
+
+
+ Don't show this message again.Dit bericht niet meer weergeven
@@ -3640,19 +3640,19 @@ Deze box verhindert de toegang tot alle gegevenslocaties van gebruikers, behalve
Inhoud van %1 automatisch verwijderen
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Fout
-
+ Failed to stop all Sandboxie componentsStoppen van alle Sadboxie-onderdelen mislukt
-
+ Failed to start required Sandboxie componentsStarten van vereiste Sandboxie-onderdelen mislukt
@@ -3710,7 +3710,7 @@ Nee zal %2 kiezen
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>De geselecteerde functieset is alleen beschikbaar voor projectondersteuners. Processen die gestart zijn in een box met deze functieset ingeschakeld zonder ondersteunerscertificaat worden na 5 minuten beëindigd.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Word een projectondersteuner</a> en ontvang een <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">ondersteunerscertificaat</a>
@@ -3766,22 +3766,22 @@ Nee zal %2 kiezen
-
+ Only Administrators can change the config.Alleen administrators kunnen de config wijzigen.
-
+ Please enter the configuration password.Voer het configuratiewachtwoord in
-
+ Login Failed: %1Aanmelden mislukt: %1
-
+ Do you want to terminate all processes in all sandboxes?Wilt u alle processen in alle sandboxen beëindigen?
@@ -3790,107 +3790,107 @@ Nee zal %2 kiezen
Alles beëindigen zonder vragen
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus is gestart in portable modus en moet de nodige services aanmaken. Dit zal om administratieve rechten vragen.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.LET OP: een andere agent (waarschijnlijk SbieCtrl.exe) beheert deze Sandboxie-sessie al. Sluit deze eerst en maak opnieuw verbinding om over te nemen.
-
+ Executing maintenance operation, please wait...Onderhoudsbewerking uitvoeren. Even geduld...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Wilt u ook de verborgen berichtvensters herstellen (ja) of alleen alle logberichten (nee)?
-
+ The changes will be applied automatically whenever the file gets saved.De wijzigingen worden automatisch toegepast wanneer het bestand opgeslagen wordt.
-
+ The changes will be applied automatically as soon as the editor is closed.De wijzigingen worden automatisch toegepast van zodra de editor gesloten wordt.
-
+ Error Status: 0x%1 (%2)Foutstatus: 0x%1 (%2)
-
+ UnknownOnbekend
-
+ A sandbox must be emptied before it can be deleted.Een sandbox moet leeggemaakt worden voordat hij kan verwijderd worden.
-
+ Failed to copy box data filesKopiëren van gegevensbestanden van box mislukt
-
+ Failed to remove old box data filesVerwijderen van oude gegevensbestanden van box mislukt
-
+ Unknown Error Status: 0x%1Onbekende foutstatus: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseSluiten
-
+ &Find ...
-
+ All columns
@@ -3912,7 +3912,7 @@ Nee zal %2 kiezen
Sandboxie-Plus is een open source verderzetting van Sandboxie.<br />Bezoek <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> voor meer informatie.<br /><br />%3<br /><br />Driver-versie: %1<br />Functies: %2<br /><br />Pictogrammen van <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.Administratorrechten zijn nodig voor deze bewerking
@@ -3970,7 +3970,7 @@ Nee zal %2 kiezen
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Word projectondersteuner</a> en ontvang een <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">ondersteunerscertificaat</a>
@@ -4029,110 +4029,110 @@ Nee zal %2 kiezen
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!
-
-
+
+ Don't ask in future
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Geef de duur op, in seconden, voor het uitschakelen van regels voor geforceerde programma's.
-
+ No Recovery
-
+ No Messages
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
+ Maintenance operation failed (%1)Onderhoudsbewerking mislukt (%1)
-
+ Maintenance operation completed
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4140,219 +4140,219 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Sandboxie config has been reloaded
-
+ Failed to execute: %1Uitvoeren mislukt: %1
-
+ Failed to connect to the driverVerbinden met de driver mislukt
-
+ Failed to communicate with Sandboxie Service: %1Communiceren met Sandboxie-service mislukt: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Er is een incompatibele Sandboxie %1 gevonden. Compatibele versies: %2
-
+ Can't find Sandboxie installation path.Kan het Sandboxie-installatiepad niet vinden
-
+ Failed to copy configuration from sandbox %1: %2Configuratie kopiëren uit sandbox %1 mislukt: %2
-
+ A sandbox of the name %1 already existsEr bestaat al een sandbox met de naam %1
-
+ Failed to delete sandbox %1: %2Verwijderen van sandbox %1 mislukt: %2
-
+ The sandbox name can not be longer than 32 characters.De sandbox-naam mag niet langer zijn dan 32 tekens.
-
+ The sandbox name can not be a device name.De sandbox-naam mag geen apparaatnaam zijn.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.De sandbox-naam mag alleen letters, cijfers en underscores bevatten. Underscores worden als spaties weergegeven.
-
+ Failed to terminate all processesBeëindigen van alle processen mislukt
-
+ Delete protection is enabled for the sandboxBeveiliging tegen verwijdering is ingeschakeld voor de sandbox
-
+ All sandbox processes must be stopped before the box content can be deletedAlle sandbox-processen moeten worden gestopt voordat de inhoud van de box kan worden verwijderd
-
+ Error deleting sandbox folder: %1Fout bij het verwijderen van de sandbox-map: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move directory '%1' to '%2'Verplaatsen van map '%1' naar '%2' mislukt
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Deze snapshot-bewerking kan niet uitgevoerd worden terwijl processen actief zijn in de box.
-
+ Failed to create directory for new snapshotAanmaken van map voor nieuwe snapshot mislukt
-
+ Snapshot not foundSnapshot niet gevonden
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Fout bij samenvoegen van snapshot-map '%1' met '%2'. De snapshot is niet volledig samengevoegd.
-
+ Failed to remove old snapshot directory '%1'Verwijderen van oude snapshot-map '%1' mislukt
-
+ Can't remove a snapshot that is shared by multiple later snapshotsKan geen snapshot verwijderen die gedeeld is door meerdere latere snapshots
-
+ You are not authorized to update configuration in section '%1'U hebt geen toestemming om de configuratie bij te werken in sectie '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Instellen van configuratie-instelling %1 in sectie %2 mislukt: %3
-
+ Can not create snapshot of an empty sandboxKan geen snapshot aanmaken van een lege sandbox
-
+ A sandbox with that name already existsEr bestaat al een sandbox met die naam
-
+ The config password must not be longer than 64 charactersHet configuratiewachtwoord mag niet langer zijn dan 64 tekens
-
+ The operation was canceled by the userDe bewerking is geannuleerd door de gebruiker
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded
-
+ Failed to create the box archive
-
+ Failed to open the 7z archive
-
+ Failed to unpack the box archive
-
+ The selected 7z file is NOT a box archive
-
+ Operation failed for %1 item(s).Bewerking mislukt voor %1 item(s).
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4361,7 +4361,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Wilt u %1 openen in een gesandboxte (ja) of niet-gesandboxte (nee) webbrowser?
-
+ Remember choice for later.Keuze onthouden voor later.
@@ -4418,23 +4418,23 @@ This file is part of Sandboxie and all changed done to it will be reverted next
<p>De nieuwe Sandboxie-Plus is naar de volgende locatie gedownload:</p><p><a href="%2">%1</a></p><p>Wilt u de installatie starten? Als er gesandboxte programma's draaien, worden die beëindigd.</p>
-
+ The supporter certificate is not valid for this build, please get an updated certificateHet ondersteunerscertificaat is niet geldig voor deze build. Haal een bijgewerkt certificaat op
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificateHet ondersteunerscertificaat is vervallen%1. Haal een bijgewerkt certificaat op.
-
+ , but it remains valid for the current build, maar het blijft geldig voor de huidige build
-
+ The supporter certificate will expire in %1 days, please get an updated certificateHet ondersteunerscertificaat vervalt over %1 dagen. Haal een bijgewerkt certificaat op.
@@ -5786,36 +5786,41 @@ This file is part of Sandboxie and all changed done to it will be reverted next
- Max Level
+ Advanced (L)
+ Max Level
+
+
+
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
@@ -5829,12 +5834,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Dit ondersteunerscertificaat <font color='red'>vervalt over %1 dagen</font>. <a href="sbie://update/cert">Haal een bijgewerkt certificaat op</a>.
-
+ Run &Un-SandboxedNiet-gesandboxt uitvoeren
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.
@@ -5847,7 +5852,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Dit certificaat is spijtig genoeg verouderd.
-
+ Thank you for supporting the development of Sandboxie-Plus.Dank u voor uw steun aan de ontwikkeling van Sandboxie-Plus.
@@ -5856,88 +5861,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Dit ondersteuningscertificaat is niet geldig.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectoryMap selecteren
-
+ <a href="check">Check Now</a>
-
+ Please enter the new configuration password.Voer het nieuwe configuratiewachtwoord in
-
+ Please re-enter the new configuration password.Voer het nieuwe configuratiewachtwoord opnieuw in
-
+ Passwords did not match, please retry.Wachtwoorden komen niet overeen. Probeer het opnieuw.
-
+ ProcessProces
-
+ FolderMap
-
+ Please enter a program file nameVoer een programma-bestandsnaam in
-
+ Please enter the template identifierVoer de sjabloon-identifier in
-
+ Error: %1Fout: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)
@@ -8795,27 +8800,27 @@ Merk op dat deze waarden momenteel gebruikersspecifiek zijn en globaal worden op
QPlatformTheme
-
+ OKOk
-
+ ApplyToepassen
-
+ CancelAnnuleren
-
+ &YesJa
-
+ &NoNee
diff --git a/SandboxiePlus/SandMan/sandman_pl.ts b/SandboxiePlus/SandMan/sandman_pl.ts
index a98bab80..889515c3 100644
--- a/SandboxiePlus/SandMan/sandman_pl.ts
+++ b/SandboxiePlus/SandMan/sandman_pl.ts
@@ -1759,120 +1759,120 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Komora aplikacji
-
+ Custom iconWłasna ikona
-
+ Version 1Wersja 1
-
+ Version 2Wersja 2
-
+ Browse for ProgramPrzeglądaj w poszukiwaniu programu
-
+ Open Box OptionsOtwórz opcje boksa
-
+ Browse ContentPrzeglądaj zawartość
-
+ Start File RecoveryZacznij odzyskiwanie plików
-
+ Show Run DialogPokaż okno dialogowe
-
+ IndeterminateNieokreślony
-
+ Backup Image HeaderNagłówek obrazu kopii zapasowej
-
+ Restore Image HeaderPrzywróć nagłówek obrazu
-
+ Change PasswordZmień hasło
-
-
+
+ Always copyZawsze kopiuj
-
-
+
+ Don't copyNie kopiuj
-
-
+
+ Copy emptyKopiuj puste
-
+ The image file does not existPlik obrazu nie istnieje
-
+ The password is wrongHasło jest nieprawidłowe
-
+ Unexpected error: %1Nieoczekiwany błąd: %1
-
+ Image Password ChangedZmieniono hasło obrazu
-
+ Backup Image Header for %1Nagłówek obrazu kopii zapasowej dla %1
-
+ Image Header BackupedZarchiwizowany nagłówek obrazu
-
+ Restore Image Header for %1Przywróć nagłówek obrazu dla %1
-
+ Image Header RestoredPrzywrócony nagłówek obrazu
@@ -1939,12 +1939,12 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Niektóre ustawienia nie zostały jeszcze zapisane, czy naprawdę chcesz zamknąć ustawienia?
-
+ kilobytes (%1)kilobajty (%1)
-
+ Select colorWybierz kolor
@@ -1953,7 +1953,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Proszę podać ścieżkę programu
-
+ Select ProgramWybierz program
@@ -1975,18 +1975,18 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Program
-
+ Executables (*.exe *.cmd)Programy (*.exe *.cmd)
-
-
+
+ Please enter a menu titleProszę wpisać tytuł menu
-
+ Please enter a commandProszę wpisać polecenie
@@ -1995,8 +1995,8 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
-
-
+
+
@@ -2203,8 +2203,8 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
-
-
+
+
@@ -2241,7 +2241,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
-
+
@@ -2949,22 +2949,22 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
CSandBox
-
+ Waiting for folder: %1Oczekiwanie na folder: %1
-
+ Deleting folder: %1Usuwanie folderu: %1
-
+ Merging folders: %1 >> %2Scalanie folderów: %1 >> %2
-
+ Finishing Snapshot Merge...Kończenie scalania migawek...
@@ -3094,37 +3094,37 @@ W przeciwieństwie do kanału podglądu nie zawiera niesprawdzonych, potencjalni
Czy chcesz pominąć kreatora konfiguracji?
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?Czy chcesz otworzyć %1 w przeglądarce WWW w piaskownicy lub bez piaskownicy?
-
+ SandboxedW piaskownicy
-
+ UnsandboxedBez piaskownicy
-
+ Reset ColumnsZresetuj kolumny
-
+ Copy CellSkopiuj komórkę
-
+ Copy RowSkopiuj linijkę
-
+ Copy PanelSkopiuj wszystko
@@ -3586,37 +3586,37 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Bieżąca konfiguracja: %1
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Wybrany zestaw funkcji jest dostępny tylko dla sponsorów projektu. Procesy rozpoczęte w boksie z włączonym zestawem funkcji bez certyfikatu wsparcia zostaną zakończone po 5 minutach.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get- cert">Zostań sponsorem</a> i otrzymaj <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certyfikat wsparcia</a>
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Proszę wpisać czas (w sekundach) wyłączenia reguł Programów wymuszonych.
-
+ Error Status: 0x%1 (%2)Kod błędu: 0x%1 (%2)
-
+ UnknownNieznane
-
+ Failed to copy box data filesBłąd przy kopiowaniu plików danych boksu
-
+ Failed to remove old box data filesBłąd przy usuwaniu starych plików danych boksu
-
+ Unknown Error Status: 0x%1Nieznany kod błędu: 0x%1
@@ -3732,7 +3732,7 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
-
+ About Sandboxie-PlusO Sandboxie-Plus
@@ -3772,9 +3772,9 @@ Do you want to do the clean up?
-
-
-
+
+
+ Don't show this message again.Nie pokazuj ponownie tej wiadomości.
@@ -3890,83 +3890,83 @@ Please check if there is an update for sandboxie.
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Uaktualnij swój certyfikat</a>, aby odblokować zaawansowane funkcje.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.Wybrana funkcja wymaga <b>zaawansowanego</b> certyfikatu wsparcia.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Wybrany zestaw funkcji jest dostępny tylko dla osób wspierających projekt.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Zostań osobą wspierającą projekt</a > i otrzymaj <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certyfikat wsparcia</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Certyfikat, którego próbujesz użyć, został zablokowany, co oznacza, że został unieważniony z jakiegoś powodu. Każda próba jego użycia stanowi naruszenie warunków użytkowania!
-
+ The Certificate Signature is invalid!The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.Certyfikat nie jest odpowiedni dla tego produktu.
-
+ The Certificate is node locked.Certyfikat jest zablokowany w węźle.
-
+ The support certificate is not valid.
Error: %1Certyfikat wsparcia jest nieważny.
Błąd: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!Upłynął okres oceny!
-
-
+
+ Don't ask in futureNie pytaj w przyszłości
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Czy chcesz zakończyć wszystkie procesy w zaszyfrowanych piaskownicach i odmontować je?
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Błąd
-
+ Failed to stop all Sandboxie componentsBłąd przy zatrzymywaniu komponentów Sandboxie
-
+ Failed to start required Sandboxie componentsBłąd w inicjacji komponentów Sandboxie
@@ -4067,7 +4067,7 @@ Nie, wybierze: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Zostań sponsorem projektu</a>, i otrzymaj <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certyfikat wsparcia</a>
@@ -4138,17 +4138,17 @@ Nie, wybierze: %2
-
+ Only Administrators can change the config.Tylko administratorzy mogą zmieniać ustawienia piaskownicy.
-
+ Please enter the configuration password.Proszę wpisać hasło konfiguracji.
-
+ Login Failed: %1Nieudane logowanie: %1
@@ -4170,7 +4170,7 @@ Nie, wybierze: %2
Importowanie: %1
-
+ Do you want to terminate all processes in all sandboxes?Czy chcesz zakończyć wszystkie procesy ww wszystkich piaskowniach?
@@ -4179,62 +4179,62 @@ Nie, wybierze: %2
W przyszłości zakańczaj bez pytania
-
+ No RecoveryBrak odzyskiwania
-
+ No MessagesBrak wiadomości
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus został uruchomiony w trybie przenośnym i musi utworzyć niezbędne usługi. Spowoduje to wyświetlenie pytania o uprawnienia administracyjne.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.UWAGA: Inny agent (prawdopodobnie SbieCtrl.exe) już zarządza tą sesją Sandboxie, proszę go najpierw zamknąć i połączyć się ponownie, aby przejąć kontrolę.
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>BŁĄD:</b> Menedżer Sandboxie-Plus (SandMan.exe) nie ma prawidłowego podpisu (SandMan.exe.sig). Pobierz zaufaną wersję z <a href="https://sandboxie-plus.com/go.php?to=sbie-get">oficjalnej strony pobierania</a>.
-
+ Maintenance operation failed (%1)Operacja konserwacji nie powiodła się (%1)
-
+ Maintenance operation completedZakończono operację konserwacji
-
+ Executing maintenance operation, please wait...Wykonywanie operacji zarzadzania, proszę czekać…
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.W interfejsie SB+, funkcjonalność ta została zintegrowana z głównym widokiem listy piaskownicy.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Korzystając z menu kontekstowego boksu/grupy, możesz przenosić boksy i grupy do innych grup. Możesz także użyć przeciągania i upuszczania, aby przenosić elementy. Możesz także użyć klawiszy strzałek, przytrzymując klawisz ALT, aby przenosić elementy w górę iw dół w ramach ich grupy.<br />Możesz tworzyć nowe boksy i grupy z menu piaskownicy.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Czy chcesz również zresetować ukrywany komunikat boksów (tak) czy tylko wszystkie komunikaty dziennika (nie)?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4243,239 +4243,239 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ten plik jest częścią Sandboxie i wszystkie zmiany w nim dokonane zostaną cofnięte przy następnej aktualizacji Sandboxie.
-
+ The changes will be applied automatically whenever the file gets saved.Zmiany będą zastosowane automatycznie jak tylko plik zostanie zapisany.
-
+ The changes will be applied automatically as soon as the editor is closed.Zmiany będą zastosowane automatycznie jak tylko edytor zostanie zakończony.
-
+ Sandboxie config has been reloadedKonfiguracja piaskownicy została ponownie załadowana
-
+ Administrator rights are required for this operation.Ta operacja wymaga uprawnień administratora.
-
+ Failed to execute: %1Błąd przy wykonywaniu: %1
-
+ Failed to connect to the driverBłąd przy połączeniu ze sterownikiem
-
+ Failed to communicate with Sandboxie Service: %1Błąd przy komunikacji z usługą: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Znaleziono niekompatybilną piaskownicę %1. Kompatybilne wersje: %2
-
+ Can't find Sandboxie installation path.Nie można znaleźć ścieżki instalacji Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Błąd przy kopiowaniu konfiguracji piaskownicy %1: %2
-
+ A sandbox of the name %1 already existsPiaskownica o nazwie %1 już istnieje
-
+ Failed to delete sandbox %1: %2Błąd przy usuwaniu piaskownicy %1: %2
-
+ The sandbox name can not be longer than 32 characters.Nazwy piaskownicy nie mogą być dłuższe niż 32 znaki.
-
+ The sandbox name can not be a device name.Nazwy piaskownicy nie mogą być nazwami urządzeń.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Nazwa piaskownicy może zawierać tylko litery, cyfry i podkreślenia, które są wyświetlane jako spacje.
-
+ Failed to terminate all processesBłąd przy zakańczaniu wszystkich procesów
-
+ Delete protection is enabled for the sandboxOchrona przed usunięciem jest aktywna dla tej piaskownicy
-
+ All sandbox processes must be stopped before the box content can be deletedPrzed usunięciem zawartości skrzynki wszystkie procesy piaskownicy muszą zostać zatrzymane
-
+ Error deleting sandbox folder: %1Błąd usuwania foldera piaskownicy: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.Wszystkie procesy w piaskownicy muszą zostać zatrzymane przed zmianą jej nazwy.
-
+ A sandbox must be emptied before it can be deleted.Przed usunięciem piaskownicy należy ją opróżnić.
-
+ Failed to move directory '%1' to '%2'Błąd przy przenoszeniu foldera %1 do %2
-
+ Failed to move box image '%1' to '%2'Nie udało się przenieść obrazu skrzynki '%1' do '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Tej operacji migawki nie można wykonać, gdy procesy są nadal uruchomione w boksie.
-
+ Failed to create directory for new snapshotBłąd przy tworzeniu foldera dla nowej migawki
-
+ Snapshot not foundNie znaleziono migawki
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Błąd podczas łączenia katalogów migawek „%1” z „%2”, migawka nie została w pełni scalona.
-
+ Failed to remove old snapshot directory '%1'Błąd przy usuwaniu starego foldera migawki '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsNie można usunąć migawki, która jest używana przez inne migawki
-
+ You are not authorized to update configuration in section '%1'Brak autoryzacji do zmian konfiguracji w tej sekcji '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Błąd przy zmianie ustawienia %1 w sekcji %2: %3
-
+ Can not create snapshot of an empty sandboxNie można utworzyć migawki pustej piaskownicy
-
+ A sandbox with that name already existsPiaskownica o tej nazwie już istnieje
-
+ The config password must not be longer than 64 charactersHasło konfiguracyjne nie może być dłuższe niż 64 znaki
-
+ The operation was canceled by the userOperacja została anulowana przez użytkownika
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deletedZawartość niezamontowanej piaskownicy nie może zostać usunięta
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedImport/Export nie jest dostępny, 7z.dll nie może być załadowany
-
+ Failed to create the box archiveNie udało się utworzyć archiwum boksu
-
+ Failed to open the 7z archiveNie udało się otworzyć archiwum 7z
-
+ Failed to unpack the box archiveNie udało się rozpakować archiwum boksu
-
+ The selected 7z file is NOT a box archiveWybrany plik 7z NIE jest archiwum boksu
-
+ Operation failed for %1 item(s).Błąd przy wykonywaniu %1 operacji.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4484,38 +4484,38 @@ Ten plik jest częścią Sandboxie i wszystkie zmiany w nim dokonane zostaną co
Czy przeglądarka WWW z %1 ma być otwarta w piaskownicy (tak), czy poza piaskownicą (nie)?
-
+ Remember choice for later.Zapamiętaj wybór na później.
-
+ Case SensitiveI don't know what it's for
-
+ RegExp
-
+ HighlightPodkreśl
-
+ CloseZamknij
-
+ &Find ...&Znajdź...
-
+ All columnsWszystkie kolumny
@@ -4580,22 +4580,22 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
<p>Nowa wersja Sandboxie-Plus zostanie pobrana z:</p><p><a href="%2">%1</a></p><p>Czy chcesz rozpocząć instalację? Jeśli jakieś programy działają w trybie piaskownicy, zostaną zakończone.</p>
-
+ The supporter certificate is not valid for this build, please get an updated certificateCertyfikat wsparcia jest nieważny dla tej kompilacji, proszę o zaktualizowanie certyfikatu
-
+ The supporter certificate has expired%1, please get an updated certificate%1Wygasł certyfikat wsparcia, proszę o zaktualizowanie certyfikatu
-
+ , but it remains valid for the current build, ale zachowuje ważność dla obecnej kompilacji
-
+ The supporter certificate will expire in %1 days, please get an updated certificateCertyfikat wsparcia wygaśnie za %1 dni, proszę o zaktualizowanie certyfikatu
@@ -5787,17 +5787,22 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Strona główna
-
+
+ Advanced (L)
+
+
+
+ Supporter certificate required for accessDo uzyskania dostępu wymagany jest certyfikat sponsora
-
+ Supporter certificate required for automationCertyfikat sponora wymagany do automatyzacji
-
+ This Add-on is mandatory and can not be removed.Ten dodatek jest obowiązkowy i nie można go usunąć.
@@ -5971,27 +5976,27 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Zaawansowany
-
+ Max LevelPoziom maks.
-
+ Level %1Poziom %1
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Ten certyfikat niestety nie jest ważny dla bieżącej kompilacji, musisz uzyskać nowy certyfikat lub przejść na starszą wersję.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Chociaż ten certyfikat wygasł, dla obecnie zainstalowanej wersji oraz funkcje pozostają włączone. Jednak nie będziesz już mieć dostępu do usług Sandboxie-Live, w tym aktualizacji zgodności i bazy danych rozwiązywania problemów online.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Ten certyfikat niestety wygasł, musisz uzyskać nowy certyfikat.
@@ -6014,12 +6019,12 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Wymagany certyfikat sponsora
-
+ Run &Un-SandboxedUr&uchom bez piaskownicy
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.To nie wygląda jak certyfikat. Proszę wpisać cały certyfikat, a nie tylko jego fragment.
@@ -6032,7 +6037,7 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Ten certyfikat jest niestety nieaktualny.
-
+ Thank you for supporting the development of Sandboxie-Plus.Dziękujemy za wsparcie rozwoju Sandboxie-Plus.
@@ -6041,22 +6046,22 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Ten certyfikat pomocy technicznej jest nieważny.
-
+ Update AvailableDostępna aktualizacja
-
+ InstalledZainstalowane
-
+ by %1przez %1
-
+ (info website)(strona informacyjna)
@@ -6065,63 +6070,63 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
Ten dodatek jest obowiązkowy i nie można go usunąć.
-
-
+
+ Select DirectoryWybierz katalog
-
+ <a href="check">Check Now</a><a href="check">Sprawdź teraz</a>
-
+ Please enter the new configuration password.Proszę wpisać nowe hasło konfiguracyjne.
-
+ Please re-enter the new configuration password.Wprowadź ponownie nowe hasło konfiguracyjne.
-
+ Passwords did not match, please retry.Hasła nie zgadzają się, spróbuj ponownie.
-
+ ProcessProces
-
+ FolderFolder
-
+ Please enter a program file nameProszę wpisać nazwę pliku programu
-
+ Please enter the template identifierProszę wpisać identyfikator szablonu
-
+ Error: %1Błąd: %1
-
+ Do you really want to delete the selected local template(s)?Czy naprawdę chcesz usunąć wybrany lokalny szablon(-y)?
-
+ %1 (Current)%1 (aktualne)
@@ -9088,27 +9093,27 @@ Należy pamiętać, że te wartości są obecnie specyficzne dla użytkownika i
QPlatformTheme
-
+ OKOK
-
+ ApplyZastosuj
-
+ CancelAnuluj
-
+ &Yes&Tak
-
+ &No&Nie
diff --git a/SandboxiePlus/SandMan/sandman_pt_BR.ts b/SandboxiePlus/SandMan/sandman_pt_BR.ts
index d24839bf..493d539c 100644
--- a/SandboxiePlus/SandMan/sandman_pt_BR.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_BR.ts
@@ -1686,8 +1686,8 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
-
+
+
@@ -1701,8 +1701,8 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
-
+
+
@@ -1737,7 +1737,7 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
-
+
@@ -2001,131 +2001,131 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Compartimento de Aplicativos
-
+ Custom iconPersonalizar ícone
-
+ Version 1Versão 1
-
+ Version 2Versão 2
-
+ Browse for ProgramProcurar pelo programa
-
+ Open Box OptionsAbrir opções da caixa
-
+ Browse ContentNavegador de conteúdo
-
+ Start File RecoveryIniciar recuperação de arquivos
-
+ Show Run DialogMostrar diálogo executar
-
+ IndeterminateIndeterminado
-
+ Backup Image Header
-
+ Restore Image Header
-
+ Change PasswordAlterar Senha
-
-
+
+ Always copySempre copiar
-
-
+
+ Don't copyNão copiar
-
-
+
+ Copy emptyCopiar vazio
-
+ kilobytes (%1)Only capitalizedKilobytes (%1)
-
+ Select colorSelecionar cor
-
+ The image file does not exist
-
+ The password is wrong
-
+ Unexpected error: %1
-
+ Image Password Changed
-
+ Backup Image Header for %1
-
+ Image Header Backuped
-
+ Restore Image Header for %1
-
+ Image Header Restored
@@ -2134,7 +2134,7 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Insira o caminho do programa
-
+ Select ProgramSelecionar Programa
@@ -2156,18 +2156,18 @@ Nota: A verificação de atualização geralmente está por trás da versão mai
Programa
-
+ Executables (*.exe *.cmd)Executáveis (*.exe *.cmd)
-
-
+
+ Please enter a menu titlePor favor insira o título do menu
-
+ Please enter a commandPor favor, digite um comando
@@ -2926,17 +2926,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Aguardando pela pasta: %1
-
+ Deleting folder: %1Excluíndo pasta: %1
-
+ Merging folders: %1 >> %2Mesclando pastas: %1 >> %2
@@ -2945,7 +2945,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Mesclando pastas: %1 >> %2
-
+ Finishing Snapshot Merge...Mesclagem de Instantâneo Finalizada...
@@ -3088,69 +3088,69 @@ Please check if there is an update for sandboxie.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
-
+
+ Don't ask in futureNão perguntar no futuro
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Reset ColumnsRedefinir Colunas
-
+ Copy CellCopiar Célula
-
+ Copy RowCopiar Linha
-
+ Copy PanelCopiar Painel
@@ -3445,7 +3445,7 @@ Error: %1
-
+ About Sandboxie-PlusSobre o Sandboxie-Plus
@@ -3673,27 +3673,27 @@ Error: %1
Horário|Nome da Caixa|Caminho do Arquivo
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -3739,23 +3739,23 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Versão do Sbie+: %1 (%2)
-
+ The supporter certificate is not valid for this build, please get an updated certificateO certificado de suporte não é válido para essa compilação, obtenha um certificado atualizado
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificateO certificado de suporte expirou %1, por favor obtenha um certificado atualizado
-
+ , but it remains valid for the current build, mas permanece válido para a compilação atual
-
+ The supporter certificate will expire in %1 days, please get an updated certificateO certificado de suporte irá expirar em %1 dias, obtenha um certificado atualizado
@@ -3768,12 +3768,12 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
O programa %1 iniciado na caixa %2 será terminado em 5 minutos, porque a caixa foi configurada para usar recursos exclusivamente disponíveis para projetos suportados.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um defensor do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>O conjunto de recursos selecionados só estaram disponíveis para apoiadores do projeto. Os processos iniciados em uma caixa com esse conjunto de recursos sem um certificado de suporte serão encerrados após 5 minutos.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Tornar-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!O período de avaliação expirou!!!
@@ -3796,47 +3796,47 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Importando: %1
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Insira a duração, em segundos, para desativar as regras de Programas Forçados.
-
+ No RecoverySem recuperação
-
+ No MessagesSem mensagens
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERRO:</b> O Sandboxie-Plus Manager (SandMan.exe) não possui uma assinatura válida (SandMan.exe.sig). Faça o download de uma versão confiável da <a href="https://sandboxie-plus.com/go.php?to=sbie-get">página de download oficial</a>.
-
+ Maintenance operation failed (%1)Falha na operação de manutenção (%1)
-
+ Maintenance operation completedOperação de manutenção concluída
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Na Interface Plus, essa funcionalidade foi integrada à exibição principal da lista de caixa.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Usando o menu de contexto de caixa/grupo, você pode mover caixas e grupos para outros grupos. Você também pode usar arrastar e soltar para mover os itens. Como alternativa, você também pode usar as teclas de seta enquanto mantém ALT pressionada para mover itens para cima e para baixo dentro de seu grupo.<br />Poderá criar novas caixas e grupos no menu do Sandbox.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3845,129 +3845,129 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Este arquivo faz parte do Sandboxie e todas as alterações feitas nele serão revertidas na próxima vez que o Sandboxie for atualizado.
-
+ Sandboxie config has been reloadedA configuração do Sandboxie foi recarregada
-
+ Error Status: 0x%1 (%2)Status do Erro: 0x%1 (%2)
-
+ UnknownDesconhecido
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move box image '%1' to '%2'
-
+ Failed to copy box data filesFalha ao copiar os arquivos de dados da caixa
-
+ Failed to remove old box data filesFalha ao remover arquivos de dados de caixas antigas
-
+ The operation was canceled by the userA operação foi cancelada pelo usuário
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedImportação/Exportação não disponível, 7z.dll não pôde ser carregada
-
+ Failed to create the box archiveFalha ao criar o arquivo da caixa
-
+ Failed to open the 7z archiveFalha ao abrir o arquivo 7z
-
+ Failed to unpack the box archiveFalha ao descompactar o arquivo da caixa
-
+ The selected 7z file is NOT a box archiveO arquivo 7z selecionado NÃO é um arquivo de caixa
-
+ Unknown Error Status: 0x%1Status de Erro Desconhecido: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case SensitiveMaiúsculas e minúsculas
-
+ RegExp
-
+ HighlightRealçar
-
+ CloseFechar
-
+ &Find ...&Localizar ...
-
+ All columnsTodas as colunas
@@ -4006,9 +4006,9 @@ Você quer fazer a limpeza?
-
-
-
+
+
+ Don't show this message again.Não mostrar essa mensagem novamente.
@@ -4033,19 +4033,19 @@ Você quer fazer a limpeza?
Excluindo automaticamente o conteúdo %1
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Erro
-
+ Failed to stop all Sandboxie componentsFalha ao parar todos os componentes do Sandboxie
-
+ Failed to start required Sandboxie componentsFalha ao iniciar os componentes exigidos do Sandboxie
@@ -4215,7 +4215,7 @@ Não vou escolher: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
@@ -4233,7 +4233,7 @@ Não vou escolher: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de apoiador</a>
@@ -4301,22 +4301,22 @@ Não vou escolher: %2
-
+ Only Administrators can change the config.Apenas administradores podem alterar a configuração.
-
+ Please enter the configuration password.Por favor, insira a senha de configuração.
-
+ Login Failed: %1Falha no Login: %1
-
+ Do you want to terminate all processes in all sandboxes?Você deseja encerrar todos os processos em todas as caixas?
@@ -4329,32 +4329,32 @@ Não vou escolher: %2
Insira a duração para desabilitar programas forçados.
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus foi iniciado no modo portable é preciso criar os serviços necessários. Isso solicitará privilégios administrativos.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.CUIDADO: Outro agente (provavelmente SbieCtrl.exe) já está gerenciando essa sessão de sandboxie, por favor, feche-o primeiro e reconecte para assumir o controle.
-
+ Executing maintenance operation, please wait...Executando operação de manutenção, por favor aguarde...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Você também deseja redefinir as caixas de mensagens ocultas (sim) ou apenas todas as mensagens de log (não)?
-
+ The changes will be applied automatically whenever the file gets saved.As alterações serão aplicadas automaticamente sempre que o arquivo for salvo.
-
+ The changes will be applied automatically as soon as the editor is closed.As alterações serão aplicadas automaticamente assim que o editor for fechado.
@@ -4363,82 +4363,82 @@ Não vou escolher: %2
Status de Erro: %1
-
+ Administrator rights are required for this operation.Direitos de administrador são necessários para essa operação.
-
+ Failed to execute: %1Falha ao executar: %1
-
+ Failed to connect to the driverFalha ao se conectar com o driver
-
+ Failed to communicate with Sandboxie Service: %1Falha ao se comunicar com o serviço Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Um Sandboxie %1 incompatível foi encontrado. Versões compatíveis: %2
-
+ Can't find Sandboxie installation path.Não é possível encontrar o caminho de instalação do Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Falha ao copiar a configuração do sandbox %1: %2
-
+ A sandbox of the name %1 already existsUma caixa de areia com o nome %1 já existe
-
+ Failed to delete sandbox %1: %2Falha ao excluir sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.O nome da caixa de área não pode ter mais de 32 caracteres.
-
+ The sandbox name can not be a device name.O nome da caixa de areia não pode ser um nome de dispositivo.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.O nome da caixa de areia pode conter apenas letras, números e sublinhados que são exibidos como espaços.
-
+ Failed to terminate all processesFalha ao terminar todos os processos
-
+ Delete protection is enabled for the sandboxA proteção de exclusão está ativada para a caixa de areia
-
+ All sandbox processes must be stopped before the box content can be deletedTodos os processos do sandbox devem ser interrompidos antes que o conteúdo da caixa possa ser excluído
-
+ Error deleting sandbox folder: %1Erro ao excluir a pasta da caixa de areia: %1
@@ -4447,42 +4447,42 @@ Não vou escolher: %2
Uma caixa de areia deve ser esvaziada antes de ser renomeada.
-
+ A sandbox must be emptied before it can be deleted.Uma caixa de areia deve ser esvaziada antes de ser excluída.
-
+ Failed to move directory '%1' to '%2'Falha ao mover diretório '%1' para '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Essa operação de instantâneo não pode ser executada enquanto os processos ainda estiverem em execução na caixa.
-
+ Failed to create directory for new snapshotFalha ao criar diretório para novo instantâneo
-
+ Snapshot not foundInstantâneo não encontrado
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Erro ao mesclar os diretórios de instantâneo '%1' com '%2', o instantâneo não foi totalmente mesclado.
-
+ Failed to remove old snapshot directory '%1'Falha ao remover diretório de instantâneo antigo '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsNão é possível remover instantâneos compartilhado por vários instantâneos posteriores
@@ -4491,27 +4491,27 @@ Não vou escolher: %2
Falha ao remover RegHive antigo
-
+ You are not authorized to update configuration in section '%1'Você não está autorizado a atualizar a configuração na seção '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Falha ao definir a definição de configuração %1 na seção %2: %3
-
+ Can not create snapshot of an empty sandboxNão é possível criar instantâneo de uma caixa de areia vazia
-
+ A sandbox with that name already existsUma caixa de areia com esse nome já existe
-
+ The config password must not be longer than 64 charactersA senha de configuração não deve ter mais de 64 caracteres
@@ -4520,7 +4520,7 @@ Não vou escolher: %2
Status de erro desconhecido: %1
-
+ Operation failed for %1 item(s).A operação falhou para %1 item(ns).
@@ -4529,7 +4529,7 @@ Não vou escolher: %2
Deseja abrir %1 em um Navegador web na caixa de areia (sim) ou fora da caixa de areia (não)?
-
+ Remember choice for later.Lembrar escolha mais tarde.
@@ -5957,36 +5957,41 @@ Não vou escolher: %2
- Max Level
+ Advanced (L)
+ Max Level
+
+
+
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
@@ -6009,12 +6014,12 @@ Não vou escolher: %2
Certificado de apoiador necessário
-
+ Run &Un-SandboxedExecutar &Fora da Caixa de Areia
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Isso não parece um certificado. Insira o certificado inteiro, não apenas uma parte dele.
@@ -6027,7 +6032,7 @@ Não vou escolher: %2
Infelizmente, esse certificado está desatualizado.
-
+ Thank you for supporting the development of Sandboxie-Plus.Obrigado por apoiar o desenvolvimento do Sandboxie-Plus.
@@ -6036,89 +6041,89 @@ Não vou escolher: %2
Esse certificado de suporte não é válido.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectorySelecionar Diretório
-
+ <a href="check">Check Now</a><a href="check">Verificar Agora</a>
-
+ Please enter the new configuration password.Por favor, insira a nova senha de configuração.
-
+ Please re-enter the new configuration password.Please re enter the new configuration password.Insira novamente a nova senha de configuração.
-
+ Passwords did not match, please retry.As senhas não coincidem, tente novamente.
-
+ ProcessProcesso
-
+ FolderPasta
-
+ Please enter a program file nameInsira o nome do programa
-
+ Please enter the template identifierPor favor, insira o identificador de modelo
-
+ Error: %1Erro: %1
-
+ Do you really want to delete the selected local template(s)?Você realmente deseja excluir o(s) modelo(s) local(is) selecionado(s)?
-
+ %1 (Current)%1 (Atual)
@@ -9124,27 +9129,27 @@ Por favor, note que esse valores são atualmente para o usuário específico e s
QPlatformTheme
-
+ OK
-
+ ApplyAplicar
-
+ CancelCancelar
-
+ &Yes&Sim
-
+ &No&Não
diff --git a/SandboxiePlus/SandMan/sandman_pt_PT.ts b/SandboxiePlus/SandMan/sandman_pt_PT.ts
index e76d9ed8..e1607c76 100644
--- a/SandboxiePlus/SandMan/sandman_pt_PT.ts
+++ b/SandboxiePlus/SandMan/sandman_pt_PT.ts
@@ -1686,8 +1686,8 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
-
+
+
@@ -1701,8 +1701,8 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
-
+
+
@@ -1737,7 +1737,7 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
-
+
@@ -2001,131 +2001,131 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Compartimento de Aplicação
-
+ Custom iconPersonalizar ícone
-
+ Version 1Versão 1
-
+ Version 2Versão 2
-
+ Browse for ProgramProcurar pelo programa
-
+ Open Box OptionsAbrir opções da caixa
-
+ Browse ContentNavegador de Conteúdo
-
+ Start File RecoveryIniciar recuperação de ficheiros
-
+ Show Run DialogMostrar diálogo rodar
-
+ IndeterminateIndeterminado
-
+ Backup Image Header
-
+ Restore Image Header
-
+ Change PasswordMudar Palavra-passe
-
-
+
+ Always copySempre copiar
-
-
+
+ Don't copyNão copiar
-
-
+
+ Copy emptyCopiar vazio
-
+ kilobytes (%1)Only capitalizedKilobytes (%1)
-
+ Select colorSeleccionar cor
-
+ The image file does not exist
-
+ The password is wrong
-
+ Unexpected error: %1
-
+ Image Password Changed
-
+ Backup Image Header for %1
-
+ Image Header Backuped
-
+ Restore Image Header for %1
-
+ Image Header Restored
@@ -2134,7 +2134,7 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Introduza o localização do programa
-
+ Select ProgramSeleccionar Programa
@@ -2156,18 +2156,18 @@ Nota: A verificação de actualização geralmente está por trás da versão ma
Programa
-
+ Executables (*.exe *.cmd)Executáveis (*.exe *.cmd)
-
-
+
+ Please enter a menu titlePor favor introduza o título do menu
-
+ Please enter a commandPor favor, digite um comando
@@ -2926,17 +2926,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1A aguar pela pasta: %1
-
+ Deleting folder: %1A apagar pasta: %1
-
+ Merging folders: %1 >> %2A fundir pastas: %1 >> %2
@@ -2945,7 +2945,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
A fundir pastas: %1 >> %2
-
+ Finishing Snapshot Merge...A fundir Instantâneo Finalizada...
@@ -3088,69 +3088,69 @@ Please check if there is an update for sandboxie.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
-
+
+ Don't ask in futureNão perguntar no futuro
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Reset ColumnsRepor Colunas
-
+ Copy CellCopiar Célula
-
+ Copy RowCopiar Linha
-
+ Copy PanelCopiar Painel
@@ -3445,7 +3445,7 @@ Error: %1
-
+ About Sandboxie-PlusAcerca do Sandboxie-Plus
@@ -3673,27 +3673,27 @@ Error: %1
Horário|Nome da Caixa|Localização do Ficheiro
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -3739,23 +3739,23 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Versão do Sbie+: %1 (%2)
-
+ The supporter certificate is not valid for this build, please get an updated certificateO certificado de suporte não é válido para esta compilação, obtenha um certificado actualizado
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificateO certificado de suporte expirou %1, por favor obtenha um certificado actualizado
-
+ , but it remains valid for the current build, mas permanece válido para a compilação actual
-
+ The supporter certificate will expire in %1 days, please get an updated certificateO certificado de suporte irá expirar em %1 dias, obtenha um certificado actualizado
@@ -3773,12 +3773,12 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
O programa %1 iniciado na caixa %2 será terminado em 5 minutos, porque a caixa foi configurada para utilizar recursos exclusivamente disponíveis para projetos suportados.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um defensor do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>O conjunto de recursos selecionado só está disponível para apoiadores do projetar. Os processos iniciados em uma caixa com este conjunto de recursos são ativados sem um certificado de suporte serão rescindidos após 5 minutos.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Tornar-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de suporte</a>
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!O período de avaliação expirou!!!
@@ -3801,47 +3801,47 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
Importando: %1
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Introduza a duração, em segundos, para desactivar as regras de Programas Forçados.
-
+ No RecoverySem recuperação
-
+ No MessagesSem mensagens
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ERRO:</b> O Sandboxie-Plus Manager (SandMan.exe) não possui uma assinatura válida (SandMan.exe.sig). Faça o download de uma versão confiável da <a href="https://sandboxie-plus.com/go.php?to=sbie-get">página de download oficial</a>.
-
+ Maintenance operation failed (%1)Falha na operação de manutenção (%1)
-
+ Maintenance operation completedOperação de manutenção concluída
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Na Interface Plus, esta funcionalidade foi integrada à vista principal da lista do sandbox.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Usando o menu de contexto de caixa/grupo, você pode mover caixas e grupos para outros grupos. Você também pode utilizar arrastar e soltar para mover os itens. Como alternativa, você também pode utilizar as teclas de seta enquanto mantém ALT pressionada para mover itens para cima e para baixo dentro de seu grupo.<br />Poderá criar novas caixas e grupos no menu do Sandbox.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -3850,129 +3850,129 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Este ficheiro faz parte do Sandboxie e todas as alterações feitas nele serão revertidas na próxima vez que o Sandboxie for atualizado.
-
+ Sandboxie config has been reloadedA definição do Sandboxie foi recarregada
-
+ Error Status: 0x%1 (%2)Estado do Erro: 0x%1 (%2)
-
+ UnknownDesconhecido
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move box image '%1' to '%2'
-
+ Failed to copy box data filesFalha ao copiar os ficheiros de dados da caixa
-
+ Failed to remove old box data filesFalha ao remover ficheiros de dados de caixa antigas
-
+ The operation was canceled by the userA operação foi cancelada pelo utilizador
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedImportação/Exportação não disponível, 7z.dll não pôde ser carregada
-
+ Failed to create the box archiveFalha ao criar o ficheiro da caixa
-
+ Failed to open the 7z archiveFalha ao abrir o ficheiro 7z
-
+ Failed to unpack the box archiveFalha ao descompactar o ficheiro da caixa
-
+ The selected 7z file is NOT a box archiveO ficheiro 7z selecionado NÃO é um ficheiro de caixa
-
+ Unknown Error Status: 0x%1Estado do Erro Desconhecido: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case SensitiveMaiúsculas e minúsculas
-
+ RegExp
-
+ HighlightRealçar
-
+ CloseFechar
-
+ &Find ...&Localizar ...
-
+ All columnsTodas as colunas
@@ -4011,9 +4011,9 @@ Você quer fazer a limpeza?
-
-
-
+
+
+ Don't show this message again.Não mostrar esta mensagem novamente.
@@ -4038,19 +4038,19 @@ Você quer fazer a limpeza?
A apagar automaticamente o conteúdo %1
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Erro
-
+ Failed to stop all Sandboxie componentsFalha ao parar todos os componentes do Sandboxie
-
+ Failed to start required Sandboxie componentsFalha ao iniciar os componentes exigidos do Sandboxie
@@ -4220,7 +4220,7 @@ Não vou definir: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
@@ -4238,7 +4238,7 @@ Não vou definir: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Torne-se um apoiador do projeto</a>, e receba um <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">certificado de apoiador</a>
@@ -4306,22 +4306,22 @@ Não vou definir: %2
-
+ Only Administrators can change the config.Apenas administradores podem mudar a definição.
-
+ Please enter the configuration password.Por favor, introduza a palavra-passe de definição.
-
+ Login Failed: %1Falha no Login: %1
-
+ Do you want to terminate all processes in all sandboxes?Você deseja encerrar todos os processos em todas as caixas?
@@ -4334,32 +4334,32 @@ Não vou definir: %2
Introduza a duração para desactivar programas forçados.
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus foi iniciado no modo portable é preciso construir os serviços necessários. Isso solicitará privilégios administrativos.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.CUIDADO: Outro agente (provavelmente SbieCtrl.exe) já está a gerir esta sessão do sandboxie, por favor, feche-o primeiro e reconecte para assumir o controlo.
-
+ Executing maintenance operation, please wait...A executar operação de manutenção, por favor aguarde...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Você também deseja repor as caixas de mensagens ocultas (sim) ou apenas todas as mensagens de registro (não)?
-
+ The changes will be applied automatically whenever the file gets saved.As alterações serão aplicadas automaticamente sempre que o ficheiro for salvo.
-
+ The changes will be applied automatically as soon as the editor is closed.As alterações serão aplicadas automaticamente assim que o editor for fechado.
@@ -4368,82 +4368,82 @@ Não vou definir: %2
Estado do Erro: %1
-
+ Administrator rights are required for this operation.Direitos de administrador são necessários para esta operação.
-
+ Failed to execute: %1Falha ao rodar: %1
-
+ Failed to connect to the driverFalha ao se conectar com o controlador
-
+ Failed to communicate with Sandboxie Service: %1Falha ao se comunicar com o serviço Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Um Sandboxie %1 incompatível foi encontrado. Versões compatíveis: %2
-
+ Can't find Sandboxie installation path.Não é possível encontrar o localização de instalação do Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Falha ao copiar a definição do sandbox %1: %2
-
+ A sandbox of the name %1 already existsUma caixa de areia com o nome %1 já existe
-
+ Failed to delete sandbox %1: %2Falha ao apagar sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.O nome da caixa de área não pode ter mais de 32 caracteres.
-
+ The sandbox name can not be a device name.O nome da caixa de areia não pode ser um nome de dispositivo.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.O nome da caixa de areia pode conter apenas letras, números e sublinhados que são exibidos como espaços.
-
+ Failed to terminate all processesFalha ao terminar todos os processos
-
+ Delete protection is enabled for the sandboxA proteção ao apagar está ativada para a caixa de areia
-
+ All sandbox processes must be stopped before the box content can be deletedTodos os processos do sandbox devem ser interrompidos antes que o conteúdo da caixa possa ser excluído
-
+ Error deleting sandbox folder: %1Erro ao apagar a pasta da caixa de areia: %1
@@ -4452,42 +4452,42 @@ Não vou definir: %2
Uma caixa de areia deve ser esvaziada antes de ser renomeada.
-
+ A sandbox must be emptied before it can be deleted.Uma caixa de areia deve ser esvaziada antes de ser eliminada.
-
+ Failed to move directory '%1' to '%2'Falha ao mover pasta '%1' para '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Esta operação de instantâneo não pode ser executada enquanto os processos ainda estiverem em execução na caixa.
-
+ Failed to create directory for new snapshotFalha ao construir pasta para novo instantâneo
-
+ Snapshot not foundInstantâneo não encontrado
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Erro ao fundir os diretórios de instantâneo '%1' com '%2', o instantâneo não foi totalmente mesclado.
-
+ Failed to remove old snapshot directory '%1'Falha ao remover pasta de instantâneo antigo '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsNão é possível remover instantâneos compartilhado por vários instantâneos posteriores
@@ -4496,27 +4496,27 @@ Não vou definir: %2
Falha ao remover RegHive antigo
-
+ You are not authorized to update configuration in section '%1'Você não está concedido a atualizar a definição na seção '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Falha ao definir a definição de definição %1 na seção %2: %3
-
+ Can not create snapshot of an empty sandboxNão é possível construir instantâneo de uma caixa de areia vazia
-
+ A sandbox with that name already existsUma caixa de areia com este nome já existe
-
+ The config password must not be longer than 64 charactersA palavra-passe de definição não deve ter mais de 64 caracteres
@@ -4525,7 +4525,7 @@ Não vou definir: %2
Estado de erro desconhecido: %1
-
+ Operation failed for %1 item(s).A operação falhou para %1 item(ns).
@@ -4534,7 +4534,7 @@ Não vou definir: %2
Deseja abrir %1 num Navegador web na caixa de areia (sim) ou fora da caixa de areia (não)?
-
+ Remember choice for later.Lembrar escolha mais tarde.
@@ -5961,36 +5961,41 @@ Não vou definir: %2
- Max Level
+ Advanced (L)
+ Max Level
+
+
+
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
@@ -6013,12 +6018,12 @@ Não vou definir: %2
Certificado de apoiador necessário
-
+ Run &Un-SandboxedRodar &Fora da Caixa de Areia
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Isso não parece um certificado. Introduza o certificado inteiro, não apenas uma parte dele.
@@ -6031,7 +6036,7 @@ Não vou definir: %2
Infelizmente, este certificado está desatualizado.
-
+ Thank you for supporting the development of Sandboxie-Plus.Obrigado por apoiar o desenvolvimento do Sandboxie-Plus.
@@ -6040,89 +6045,89 @@ Não vou definir: %2
Este certificado de suporte não é válido.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectorySeleccionar Pasta
-
+ <a href="check">Check Now</a><a href="check">Verificar Agora</a>
-
+ Please enter the new configuration password.Por favor, introduza a nova palavra-passe de definição.
-
+ Please re-enter the new configuration password.Please re enter the new configuration password.Introduza novamente a nova palavra-passe de definição.
-
+ Passwords did not match, please retry.As palavras-passe são diferentes, tente novamente.
-
+ ProcessProcesso
-
+ FolderPasta
-
+ Please enter a program file nameIntroduza o nome do programa
-
+ Please enter the template identifierPor favor, introduza o identificador de modelo
-
+ Error: %1Erro: %1
-
+ Do you really want to delete the selected local template(s)?Você realmente deseja excluir o(s) modelo(s) local(is) selecionado(s)?
-
+ %1 (Current)%1 (Actual)
@@ -9124,27 +9129,27 @@ Por favor, note que este valores são atualmente para o utilizador específico e
QPlatformTheme
-
+ OK
-
+ ApplyAplicar
-
+ CancelCancelar
-
+ &Yes&Sim
-
+ &No&Não
diff --git a/SandboxiePlus/SandMan/sandman_ru.ts b/SandboxiePlus/SandMan/sandman_ru.ts
index 521d248f..c52c86cc 100644
--- a/SandboxiePlus/SandMan/sandman_ru.ts
+++ b/SandboxiePlus/SandMan/sandman_ru.ts
@@ -1545,8 +1545,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1560,8 +1560,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1596,7 +1596,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1837,135 +1837,135 @@ Note: The update check is often behind the latest GitHub release to ensure that
Контейнер для приложений
-
+ Custom iconПользовательская иконка
-
+ Version 1Версия 1
-
+ Version 2Версия 2
-
+ Browse for ProgramВыбрать программу
-
+ Open Box OptionsОткрыть параметры песочницы
-
+ Browse ContentПросмотр содержимого
-
+ Start File RecoveryНачать восстановление файлов
-
+ Show Run DialogПоказать диалог запуска
-
+ IndeterminateНеопределено
-
+ Backup Image HeaderРезервная копия заголовка образа
-
+ Restore Image HeaderВосстановить заголовок образа
-
+ Change PasswordИзменить пароль
-
-
+
+ Always copyВсегда копировать
-
-
+
+ Don't copyНе копировать
-
-
+
+ Copy emptyКопировать пустой
-
+ kilobytes (%1)килобайт (%1)
-
+ Select colorВыбрать цвет
-
+ Select ProgramВыбрать программу
-
+ The image file does not existФайл образа не существует
-
+ The password is wrongПароль неправильный
-
+ Unexpected error: %1Непредвиденная ошибка: %1
-
+ Image Password ChangedПароль образа изменен
-
+ Backup Image Header for %1Резервное копирование заголовка образа для %1
-
+ Image Header BackupedРезервная копия заголовка образа создана
-
+ Restore Image Header for %1Восстановление заголовка образа для %1
-
+ Image Header RestoredЗаголовок образа восстановлен
@@ -1975,18 +1975,18 @@ Note: The update check is often behind the latest GitHub release to ensure that
Пожалуйста, введите идентификатор службы
-
+ Executables (*.exe *.cmd)Исполняемые файлы (*.exe *.cmd)
-
-
+
+ Please enter a menu titleПожалуйста, введите заголовок меню
-
+ Please enter a commandПожалуйста, введите команду
@@ -2721,22 +2721,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Ожидание папки: %1
-
+ Deleting folder: %1Удаление папки: %1
-
+ Merging folders: %1 >> %2Слияние папок: %1 и %2
-
+ Finishing Snapshot Merge...Завершение слияния снимков...
@@ -2818,22 +2818,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie-Plus v%1
-
+ Reset ColumnsСбросить столбцы
-
+ Copy CellКопировать ячейку
-
+ Copy RowКопировать строку
-
+ Copy PanelКопировать панель
@@ -3070,7 +3070,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusО Sandboxie-Plus
@@ -3130,9 +3130,9 @@ Do you want to do the clean up?
-
-
-
+
+
+ Don't show this message again.Больше не показывать это сообщение.
@@ -3186,19 +3186,19 @@ Please check if there is an update for sandboxie.
Вы хотите, чтобы мастер установки был пропущен?
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Ошибка
-
+ Failed to stop all Sandboxie componentsНе удалось остановить все компоненты Sandboxie
-
+ Failed to start required Sandboxie componentsНе удалось запустить необходимые компоненты Sandboxie
@@ -3222,27 +3222,27 @@ No will choose: %2
Нет, выберет: %2
-
+ A sandbox must be emptied before it can be deleted.Песочницу необходимо очистить, прежде чем ее можно будет удалить.
-
+ The supporter certificate is not valid for this build, please get an updated certificateСертификат сторонника недействителен для этой сборки, получите обновленный сертификат
-
+ The supporter certificate has expired%1, please get an updated certificateСрок действия сертификата сторонника истек%1, пожалуйста получите обновленный сертификат
-
+ , but it remains valid for the current build, но остается действительным для текущей сборки
-
+ The supporter certificate will expire in %1 days, please get an updated certificateСрок действия сертификата сторонника истекает через %1 дн., получите обновленный сертификат
@@ -3277,7 +3277,7 @@ No will choose: %2
- НЕ подключено
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Выбранный набор функций доступен только сторонникам проекта. Процессы, запущенные в песочнице с этим набором функций без сертификата сторонника, будут прекращены через 5 минут.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Станьте сторонником проекта</a>, и получите <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертификат сторонника</a>
@@ -3334,122 +3334,122 @@ No will choose: %2
-
+ Only Administrators can change the config.Только администраторы могут изменять конфигурацию.
-
+ Please enter the configuration password.Пожалуйста, введите пароль конфигурации.
-
+ Login Failed: %1Ошибка входа: %1
-
+ Do you want to terminate all processes in all sandboxes?Вы хотите завершить все процессы во всех песочницах?
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus запущен в портативном режиме, и ему нужно создать необходимые службы. Это потребует административных привилегий.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.ВНИМАНИЕ: другой агент (вероятно, SbieCtrl.exe) уже управляет этим сеансом Sandboxie, пожалуйста, сначала закройте его и подключитесь повторно, чтобы взять на себя управление.
-
+ Executing maintenance operation, please wait...Выполняется операция обслуживания, подождите...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Вы также хотите сбросить скрытые окна сообщений (да) или только все сообщения журнала (нет)?
-
+ The changes will be applied automatically whenever the file gets saved.Изменения будут применяться автоматически при сохранении файла.
-
+ The changes will be applied automatically as soon as the editor is closed.Изменения вступят в силу автоматически после закрытия редактора.
-
+ Error Status: 0x%1 (%2)Состояние ошибки: 0x%1 (%2)
-
+ UnknownНеизвестно
-
+ Failed to copy box data filesНе удалось скопировать файлы данных песочницы
-
+ Failed to remove old box data filesНе удалось удалить старые файлы данных песочницы
-
+ Unknown Error Status: 0x%1Неизвестный статус ошибки: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?Хотите ли вы открыть %1 в изолированном или не изолированном веб-браузере?
-
+ SandboxedВ песочнице
-
+ UnsandboxedБез песочницы
-
+ Case SensitiveЧувствительный к регистру
-
+ RegExpРегулярное выражение
-
+ HighlightПодсветить
-
+ CloseЗакрыть
-
+ &Find ...Найти (&) ...
-
+ All columnsВсе столбцы
@@ -3471,7 +3471,7 @@ No will choose: %2
Sandboxie-Plus - это продолжение Sandboxie с открытым исходным кодом.<br />Посетите <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> для получения дополнительной информации.<br /><br />%3<br /><br />Версия драйвера: %1<br />Возможности: %2<br /><br />Иконки взяты с <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.Для этой операции требуются права администратора.
@@ -3637,12 +3637,12 @@ No will choose: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Стань сторонником проекта</a>, и получи <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертификат сторонника</a>
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Введите продолжительность в секундах, для отключения правил принудительных программ.
@@ -3859,327 +3859,327 @@ No will choose: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Обновите свой сертификат</a>, чтобы разблокировать расширенные функции.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.Для выбранной функции требуется <b>расширенный</b> сертификат сторонника.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Выбранный набор функций доступен только сторонникам проекта.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Станьте сторонником проекта</a > и получите <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертификат сторонника</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Сертификат, который вы пытаетесь использовать, заблокирован, то есть он признан недействительным по определенной причине. Любая попытка его использования является нарушением условий его использования!
-
+ The Certificate Signature is invalid!Подпись сертификата недействительна!
-
+ The Certificate is not suitable for this product.Сертификат не подходит для этого продукта.
-
+ The Certificate is node locked.Сертификат заблокирован на узле.
-
+ The support certificate is not valid.
Error: %1Сертификат сторонника недействителен.
Ошибка: %1
-
+ The evaluation period has expired!!!Период оценки истек!!!
-
-
+
+ Don't ask in futureНе спрашивать в будущем
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Вы хотите завершить все процессы в зашифрованных песочницах и размонтировать их?
-
+ No RecoveryНет файлов для восстановления
-
+ No MessagesНет сообщений
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>ОШИБКА:</b> Sandboxie-Plus Manager (SandMan.exe) не имеет действительной подписи (SandMan.exe.sig). Загрузите надежную версию с <a href="https://sandboxie-plus.com/go.php?to=sbie-get">официальной страницы загрузки</a>.
-
+ Maintenance operation failed (%1)Операция обслуживания не удалась (%1)
-
+ Maintenance operation completedОперация технического обслуживания завершена
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.В интерфейсе Plus, эта функция была интегрирована в основное представление списка песочницы.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Используя контекстное меню песочницы/группы, вы можете перемещать песочницы и группы в другие группы. Вы также можете использовать перетаскивание для перемещения элементов. В качестве альтернативы вы также можете использовать клавиши со стрелками, удерживая нажатой клавишу ALT, чтобы перемещать элементы вверх и вниз в пределах группы.<br />Вы можете создавать новые песочницы и группы из меню "Песочница".
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.Вы собираетесь редактировать Templates.ini, обычно это не рекомендуется.
Этот файл является частью Sandboxie, и все внесенные в него изменения будут отменены при следующем обновлении Sandboxie.
-
+ Sandboxie config has been reloadedКонфигурация Sandboxie перезагружена
-
+ Failed to execute: %1Не удалось выполнить: %1
-
+ Failed to connect to the driverНе удалось подключиться к драйверу
-
+ Failed to communicate with Sandboxie Service: %1Не удалось связаться со службой Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Обнаружена несовместимая песочница %1. Совместимые версии: %2
-
+ Can't find Sandboxie installation path.Не удается найти путь установки Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Не удалось скопировать конфигурацию из песочницы %1: %2
-
+ A sandbox of the name %1 already existsПесочница с именем %1 уже существует
-
+ Failed to delete sandbox %1: %2Не удалось удалить песочницу %1: %2
-
+ The sandbox name can not be longer than 32 characters.Имя песочницы не может быть длиннее 32 символов.
-
+ The sandbox name can not be a device name.Имя песочницы не может быть именем устройства.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Имя песочницы может содержать только буквы, цифры и символы подчеркивания, которые отображаются как пробелы.
-
+ Failed to terminate all processesНе удалось завершить все процессы
-
+ Delete protection is enabled for the sandboxДля этой песочницы включена защита от удаления
-
+ All sandbox processes must be stopped before the box content can be deletedВсе процессы песочницы должны быть остановлены, перед удалением ее содержимого
-
+ Error deleting sandbox folder: %1Ошибка при удалении папки песочницы: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.Все процессы в песочнице должны быть остановлены, прежде чем ее можно будет переименовать.
-
+ Failed to move directory '%1' to '%2'Не удалось переместить каталог '%1' в '%2'
-
+ Failed to move box image '%1' to '%2'Не удалось переместить образ контейнера '%1' в '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Операция снимка не может быть выполнена, пока в песочнице еще выполняются процессы.
-
+ Failed to create directory for new snapshotНе удалось создать каталог для нового снимка
-
+ Snapshot not foundСнимок не найден
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Ошибка при объединении каталогов снимков '%1' с '%2', снимок не был объединен полностью.
-
+ Failed to remove old snapshot directory '%1'Не удалось удалить старый каталог снимков '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsНевозможно удалить снимок, который используется несколькими более поздними снимками
-
+ You are not authorized to update configuration in section '%1'У вас нет прав для обновления конфигурации в разделе '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Не удалось установить параметр конфигурации %1 в секции %2: %3
-
+ Can not create snapshot of an empty sandboxНевозможно создать снимок пустой песочницы
-
+ A sandbox with that name already existsПесочница с таким именем уже существует
-
+ The config password must not be longer than 64 charactersПароль конфигурации не должен быть длиннее 64 символов
-
+ The operation was canceled by the userОперация отменена пользователем
-
+ The content of an unmounted sandbox can not be deletedСодержимое несмонтированной песочницы нельзя удалить
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedИмпорт/экспорт недоступен, не удалось загрузить 7z.dll
-
+ Failed to create the box archiveНе удалось создать архив контейнера
-
+ Failed to open the 7z archiveНе удалось открыть 7z архив
-
+ Failed to unpack the box archiveНе удалось распаковать архив контейнера
-
+ The selected 7z file is NOT a box archiveВыбранный 7z файл НЕ является архивом контейнера
-
+ Operation failed for %1 item(s).Операция не удалась для %1 элемента(ов).
-
+ Remember choice for later.Запомнить выбор.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -5383,36 +5383,41 @@ This file is part of Sandboxie and all change done to it will be reverted next t
+ Advanced (L)
+
+
+
+ Max LevelМаксимальный уровень
-
+ Level %1Уровень %1
-
+ Supporter certificate required for accessДля доступа требуется сертификат сторонника
-
+ Supporter certificate required for automationДля автоматизации требуется сертификат сторонника
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.К сожалению, этот сертификат недействителен для текущей сборки, вам необходимо получить новый сертификат или перейти на более раннюю сборку.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Хотя срок действия этого сертификата истек, для текущей установленной версии плюс функции остаются включенными. Однако у вас больше не будет доступа к службам Sandboxie-Live, включая обновления совместимости и онлайн-базу данных для устранения неполадок.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Срок действия этого сертификата, к сожалению, истек, вам необходимо получить новый сертификат.
@@ -5512,103 +5517,103 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Домашняя
-
+ Run &Un-SandboxedЗапуск вне песочницы (&U)
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Это не похоже на сертификат. Пожалуйста, введите весь сертификат, а не только его часть.
-
+ Thank you for supporting the development of Sandboxie-Plus.Спасибо за поддержку разработки Sandboxie-Plus.
-
+ Update AvailableДоступно обновление
-
+ InstalledУстановлен
-
+ by %1%1
-
+ (info website)(информационный сайт)
-
+ This Add-on is mandatory and can not be removed.Это дополнение является обязательным и не может быть удалено.
-
-
+
+ Select DirectoryВыбрать каталог
-
+ <a href="check">Check Now</a><a href="check">Проверить сейчас</a>
-
+ Please enter the new configuration password.Пожалуйста, введите новый пароль конфигурации.
-
+ Please re-enter the new configuration password.Пожалуйста, повторно введите новый пароль конфигурации.
-
+ Passwords did not match, please retry.Пароли не совпадают, повторите попытку.
-
+ ProcessПроцесс
-
+ FolderПапка
-
+ Please enter a program file nameПожалуйста, введите имя файла программы
-
+ Please enter the template identifierПожалуйста, введите идентификатор шаблона
-
+ Error: %1Ошибка: %1
-
+ Do you really want to delete the selected local template(s)?Вы действительно хотите удалить выбранные локальные шаблоны?
-
+ %1 (Current)%1 (Текущая)
@@ -8314,27 +8319,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OKОК
-
+ ApplyПрименить
-
+ CancelОтмена
-
+ &YesДа (&Y)
-
+ &NoНет (&N)
diff --git a/SandboxiePlus/SandMan/sandman_sv_SE.ts b/SandboxiePlus/SandMan/sandman_sv_SE.ts
index 8cee9799..d42285d5 100644
--- a/SandboxiePlus/SandMan/sandman_sv_SE.ts
+++ b/SandboxiePlus/SandMan/sandman_sv_SE.ts
@@ -1694,8 +1694,8 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
-
+
+
@@ -1859,8 +1859,8 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
-
+
+
@@ -1897,7 +1897,7 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
-
+
@@ -2163,151 +2163,151 @@ Notera: Uppdateringskontrollen är ofta bakom senaste GitHub-utgivningen för at
Applikationsutrymme
-
+ Custom iconAnpassad ikon
-
+ Version 1Version 1
-
+ Version 2Version 2
-
+ Browse for ProgramBläddra efter program
-
+ Open Box OptionsÖppna lådalternativ
-
+ Browse ContentBläddra i innehållet
-
+ Start File RecoveryStarta filåterställande
-
+ Show Run DialogVisa kördialogen
-
+ IndeterminateObestämbar
-
+ Backup Image HeaderBacka upp avbildsrubrik
-
+ Restore Image HeaderÅterställ avbildsrubrik
-
+ Change PasswordÄndra lösenord
-
-
+
+ Always copyKopiera alltid
-
-
+
+ Don't copyKopiera inte
-
-
+
+ Copy emptyKopiera tomt
-
+ kilobytes (%1)kilobytes (%1)
-
+ Select colorVälj färg
-
+ Select ProgramVälj program
-
+ Executables (*.exe *.cmd)Verkställare (*.exe *.cmd)
-
-
+
+ Please enter a menu titleVänligen för in en menytitel
-
+ Please enter a commandVänligen för in ett kommando
-
+ The image file does not existAvbildsfilen existerar inte
-
+ The password is wrongLösenordet är fel
-
+ Unexpected error: %1Oväntat fel: %1
-
+ Image Password ChangedAvbildslösenord ändrades
-
+ Backup Image Header for %1Backa upp avbildsrubrik för %1
-
+ Image Header BackupedAvbildsrubrik uppbackad
-
+ Restore Image Header for %1Återställ avbildsrubrik för %1
-
+ Image Header RestoredAvbildsrubrik återställd
@@ -3012,22 +3012,22 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
CSandBox
-
+ Waiting for folder: %1Väntar på mapp: %1
-
+ Deleting folder: %1Raderar mapp: %1
-
+ Merging folders: %1 >> %2Sammanför mappar: %1 >> %2
-
+ Finishing Snapshot Merge...Slutför sammanförande av ögonblicksbilder...
@@ -3148,7 +3148,7 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
Installation
-
+ The evaluation period has expired!!!Utvärderingsperioden har utgått!
@@ -3162,52 +3162,52 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
Importerar :%1
-
+ No RecoveryInget återställande
-
+ No MessagesInga meddelanden
-
+ Maintenance operation completedUnderhållsoperation avklarad
-
+ Failed to create the box archiveLyckades inte skapa lådarkivet
-
+ Failed to unpack the box archiveLyckades inte packa upp lådarkivet
-
+ The selected 7z file is NOT a box archiveDen valda 7z-filen är INTE ett lådarkiv
-
+ Reset ColumnsÅterställ kolumner
-
+ Copy CellKopiera cellen
-
+ Copy RowKopiera raden
-
+ Copy PanelKopiera panelen
@@ -3494,7 +3494,7 @@ Till skillnad från preview-kanalen, inkluderar den inte otestade eller experime
-
+ About Sandboxie-PlusOm Sandboxie-Plus
@@ -3664,9 +3664,9 @@ Vill du göra rensningen?
-
-
-
+
+
+ Don't show this message again.Visa inte detta meddelande igen.
@@ -3821,7 +3821,7 @@ Nej väljer: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Bli en projektsupporter</a>, och få ett <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supportercertifikat</a>
@@ -3834,7 +3834,7 @@ Nej väljer: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Den valda funktionsuppsättningen är endast tillgänglig för projektsupportrar. Processer startade i en låda med denna funktionsuppsättning aktiverad utan ett supportercertifikat kommer att avslutas efter 5 minuter.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Bli en projektsupporter</a>, och få ett <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supportercertifikat</a>
@@ -3843,22 +3843,22 @@ Nej väljer: %2
Evalueringsperioden har utgått!
-
+ The supporter certificate is not valid for this build, please get an updated certificateSupportercertifikatet är inte giltigt för detta bygge, vänligen skaffa ett uppdaterat certifikat
-
+ The supporter certificate has expired%1, please get an updated certificateSupportercertifikatet har utgått%1, vänligen skaffa ett uppdaterat certifikat
-
+ , but it remains valid for the current build, men det förblir giltigt för nuvarande bygge
-
+ The supporter certificate will expire in %1 days, please get an updated certificateSupportercertifikatet utgår om %1 dagar, vänligen skaffa ett uppdaterat certifikat
@@ -3918,17 +3918,17 @@ Nej väljer: %2
-
+ Only Administrators can change the config.Endast administratörer kan ändra konfigurationen.
-
+ Please enter the configuration password.Vänligen för in konfigurationslösenordet.
-
+ Login Failed: %1Inloggning misslyckades: %1
@@ -3941,7 +3941,7 @@ Nej väljer: %2
7-zip arkiv (*.7z)
-
+ Do you want to terminate all processes in all sandboxes?Vill du avsluta alla processer i alla sandlådor?
@@ -3950,39 +3950,39 @@ Nej väljer: %2
Avsluta alla utan att fråga
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Vänligen för in varaktigheten, i sekunder, för inaktivering av tvingade programs regler.
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus startades i portabelt läge och det behöver skapa nödvändiga tjänster. Detta ger förfrågan om administrativa rättigheter.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.FÖRSIKTIG: En annan agent (troligen SbieCtrl.exe) hanterar redan denna Sandboxie-session, vänligen stäng den först och återanslut för att ta över.
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Fel
-
+ Failed to stop all Sandboxie componentsLyckades inte stoppa alla Sandboxie-komponenter
-
+ Failed to start required Sandboxie componentsLyckades inte starta krävda Sandboxie-komponenter
-
+ Maintenance operation failed (%1)Underhållsoperationen misslyckades (%1)
@@ -4181,90 +4181,90 @@ Vänligen kontrollera om det finns en uppdatering för Sandboxie.
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Uppgradera ditt certifikat</a> för att låsa upp avancerade egenskaper.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.Den valda egenskapen kräver ett <b>avancerat<b> supportercertifikat.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>De valda egenskaperna är endast tillgängliga för projektsupportrar.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">bli en projektsupporter</a>, och mottag ett <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supportercertifikat</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Certifikatet du försöker använda har blockerats, vilket menas att det har blivit ogiltigt av en orsak. Varje försök att använda det innebär ett brytande av dess användarvillkor!
-
+ The Certificate Signature is invalid!Certifikatssignaturen är ogiltig!
-
+ The Certificate is not suitable for this product.Certifikatet är inte tillämpligt för denna produkt.
-
+ The Certificate is node locked.Certifikatet är nod-låst.
-
+ The support certificate is not valid.
Error: %1Supportcertifikatet är inte giltigt.
Fel: %1
-
-
+
+ Don't ask in futureFråga inte i framtiden
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Vill du avsluta alla processer i krypterade sandlådor, och avmontera dem?
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>FEL:</b> Sandboxie-Plus hanterare (SandMan.exe) har inte en giltig signatur (SandMan.exe.sig). Vänligen nedladda en betrodd utgåva från den <a href="https://sandboxie-plus.com/go.php?to=sbie-get">officiella nedladdningssidan</a>.
-
+ Executing maintenance operation, please wait...Verkställer underhållsoperationen, vänligen vänta...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.I användargränssnittet i Plus, har denna funktion integrerats in i huvudsandlådans listöversikt.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Vid användning av låd-/gruppsnabbmenyn, kan du flytta lådor och grupper till andra grupper. Du kan också dra och släppa för att flytta omkring poster. Alternativt, du kan också använda piltangenterna medans du håller ner ALT för flytta poster upp och ner inom dess grupp.<br />Du kan skapa nya lådor och grupper från menyn Sandlåda.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Vill du också återställa dolda meddelandelådor (Ja), eller bara alla loggmeddelanden (Nej)?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4273,279 +4273,279 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs nästa gång Sandboxie uppdateras.
-
+ The changes will be applied automatically whenever the file gets saved.Ändringarna tillämpas automatiskt närhelst filen sparas.
-
+ The changes will be applied automatically as soon as the editor is closed.Ändringarna tillämpas automatiskt så fort som redigeraren stängs.
-
+ Sandboxie config has been reloadedSandboxie-konfigurationen har laddats om
-
+ Error Status: 0x%1 (%2)Felstatus: 0x%1 (%2)
-
+ UnknownOkänd
-
+ Administrator rights are required for this operation.Administratörsrättigheter krävs för denna operation.
-
+ Failed to execute: %1Lyckades inte verkställa: %1
-
+ Failed to connect to the driverLyckades inte ansluta till drivrutinen
-
+ Failed to communicate with Sandboxie Service: %1Lyckades inte kommunicera med Sandboxies tjänst: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2En inkompatibel Sandboxie %1 hittades. Kompatibla versioner: %2
-
+ Can't find Sandboxie installation path.Kan inte finna Sandboxies installationssökväg.
-
+ Failed to copy configuration from sandbox %1: %2Lyckades inte kopiera konfigurationen från sandlåda %1: %2
-
+ A sandbox of the name %1 already existsEn sandlåda med namnet %1 existerar redan
-
+ Failed to delete sandbox %1: %2Lyckades inte radera sandlåda %1: %2
-
+ The sandbox name can not be longer than 32 characters.Sandlådenamnet kan inte vara längre än 32 tecken.
-
+ The sandbox name can not be a device name.Sandlådenamnet kan inte vara ett enhetsnamn.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Sandlådenamnet kan bara innehålla bokstäver, siffror och understrykningar vilka visas som utrymmen.
-
+ Failed to terminate all processesLyckades inte avsluta alla processer
-
+ Delete protection is enabled for the sandboxRaderingsskydd är aktiverat för sandlådan
-
+ All sandbox processes must be stopped before the box content can be deletedAlla sandlådeprocesser måste stoppas innan lådinnehållet kan raderas
-
+ Error deleting sandbox folder: %1Fel vid radering av sandlådemapp: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.Alla processer i en sandlåda behöver stoppas innan den kan namnändras.
-
+ A sandbox must be emptied before it can be deleted.En sandlåda måste tömmas innan den kan raderas.
-
+ Failed to move directory '%1' to '%2'Lyckades inte flytta katalog '%1' till '%2'
-
+ Failed to move box image '%1' to '%2'Lyckades inte flytta lådavbild %1 till %2
-
+ This Snapshot operation can not be performed while processes are still running in the box.Denna ögonblicksbildoperation kan inte utföras medan processer fortfarande kör i lådan.
-
+ Failed to create directory for new snapshotLyckades inte skapa katalog för ny ögonblicksbild
-
+ Failed to copy box data filesLyckades inte kopiera låddatafiler
-
+ Snapshot not foundÖgonblicksbild hittades inte
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Fel vid sammanförande av ögonblicksbildkataloger '%1' med '%2'. Ögonblicksbilden har inte blivit helt sammanförd.
-
+ Failed to remove old snapshot directory '%1'Lyckades inte ta bort gammal ögonblicksbildkatalog '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsKan inte ta bort en ögonblicksbild som delas av flera senare ögonblicksbilder
-
+ Failed to remove old box data filesLyckades inte ta bort gamla låddatafiler
-
+ You are not authorized to update configuration in section '%1'Du är inte berättigad att uppdatera konfigurationen i sektion '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Lyckades inte ange konfigurationsinställning %1 i sektion %2: %3
-
+ Can not create snapshot of an empty sandboxKan inte skapa ögonblicksbild av en tom sandlåda
-
+ A sandbox with that name already existsEn sandlåda med det namnet existerar redan
-
+ The config password must not be longer than 64 charactersKonfigurationslösenordet får inte vara längre än 64 tecken
-
+ The operation was canceled by the userOperationen avbröts av användaren
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deletedInnehållet i en omonterad sandlåda kan inte raderas
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedImportera/Exportera ej tillgängligt, 7z.dll kunde ej laddas
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?Vill du öppna %1 i en sandlådad eller osandlådad webbläsare?
-
+ SandboxedSandlådad
-
+ UnsandboxedOsandlådad
-
+ Case SensitiveSkiftlägeskänslig
-
+ RegExpRegExp
-
+ HighlightMarkera
-
+ CloseStäng
-
+ &Find ...&Hitta ...
-
+ All columnsAlla kolumner
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4554,7 +4554,7 @@ Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs
Misslyckades att skapa lådarkiv
-
+ Failed to open the 7z archiveLyckades inte öppna 7z-arkivet
@@ -4567,12 +4567,12 @@ Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs
Den valda 7z-filen är INTE ett lådarkiv
-
+ Unknown Error Status: 0x%1Okänd felstatus: 0x%1
-
+ Operation failed for %1 item(s).Operationen misslyckades för %1 post(er).
@@ -4581,7 +4581,7 @@ Denna fil är en del av Sandboxie och alla ändringar gjorda i den återställs
Vill du öppna %1 i en sandlådad (Ja) eller osandlådad (Nej) webbläsare?
-
+ Remember choice for later.Kom ihåg valet till senare.
@@ -5912,27 +5912,27 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
Supportercertifikat krävs
-
+ Run &Un-SandboxedKör &osandlådad
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Detta ser inte ut som ett certifikat. Vänligen för in hela certifikatet, inte bara en del av det.
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Detta certifikat är tyvärr inte giltigt för nuvarande bygge, du behöver skaffa ett nytt certifikat eller nedgradera till ett tidigare bygge.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Även fast detta certifikat har utgått, för nuvarande installerad version förblir Plus-egenskaperna aktiverade. Däremot, kommer du inte längre ha tillgång till Sandboxie-Live tjänsterna, inklusive kompatibilitetsuppdateringar och felsökningsdatabasen på nätet.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Detta certifikat har tyvärr utgått, du behöver skaffa ett nytt certifikat.
@@ -6073,112 +6073,117 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
+ Advanced (L)
+
+
+
+ Max LevelMaxnivå
-
+ Level %1Nivå %1
-
+ Supporter certificate required for accessSupportercertifikat krävs för tillgång
-
+ Supporter certificate required for automationSupportercertifikat krävs för automatisering
-
+ Thank you for supporting the development of Sandboxie-Plus.Tack för att du stöder utvecklingen av Sandboxie-Plus.
-
+ Update AvailableUppdatering tillgänglig
-
+ InstalledInstalllerad
-
+ by %1av %1
-
+ (info website)(infowebbsida)
-
+ This Add-on is mandatory and can not be removed.Detta tillägg är obligatoriskt och kan inte tas bort.
-
-
+
+ Select DirectoryVälj katalog
-
+ <a href="check">Check Now</a><a href="check">Kontrollera nu</a>
-
+ Please enter the new configuration password.Vänligen för in det nya konfigurationslösenordet.
-
+ Please re-enter the new configuration password.Vänligen återinför det nya konfigurationslösenordet.
-
+ Passwords did not match, please retry.Lösenorden stämde inte, vänligen försök igen.
-
+ ProcessProcess
-
+ FolderMapp
-
+ Please enter a program file nameVänligen för in ett programfilsnamn
-
+ Please enter the template identifierVänligen för in mallidentifieraren
-
+ Error: %1Fel: %1
-
+ Do you really want to delete the selected local template(s)?Vill du verkligen radera de(n) valda lokala mall(arna)(en)?
-
+ %1 (Current)%1 (Nuvarande)
@@ -9184,27 +9189,27 @@ istället för "*".
QPlatformTheme
-
+ OKOK
-
+ ApplyTillämpa
-
+ CancelAvbryt
-
+ &Yes&Ja
-
+ &No&Nej
diff --git a/SandboxiePlus/SandMan/sandman_tr.ts b/SandboxiePlus/SandMan/sandman_tr.ts
index 959c8e01..103371ea 100644
--- a/SandboxiePlus/SandMan/sandman_tr.ts
+++ b/SandboxiePlus/SandMan/sandman_tr.ts
@@ -1368,7 +1368,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
-
+
@@ -1383,8 +1383,8 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Dosya için Göz At
-
-
+
+ Please enter a menu titleLütfen bir menü başlığı girin
@@ -1445,8 +1445,8 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
-
-
+
+
@@ -1515,17 +1515,17 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
Uygulama Bölmesi
-
+ Select ProgramProgram Seç
-
+ Please enter a commandLütfen bir komut girin
-
+ kilobytes (%1)kilobayt (%1)
@@ -1550,8 +1550,8 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
-
-
+
+
@@ -1581,7 +1581,7 @@ Not: Güncellemeler, yalnızca test edilen güncellemelerin sunulmasını sağla
RT arayüzleri isimleriyle belirtilmelidir.
-
+ Browse for ProgramProgram için Göz At
@@ -1966,125 +1966,125 @@ Lütfen bu dosyayı içeren bir klasör seçin.
Veri Korumalı Uygulama Bölmesi
-
+ Custom iconÖzel simge
-
+ Version 1Sürüm 1
-
+ Version 2Sürüm 2
-
+ Open Box OptionsAlan Seçeneklerini Aç
-
+ Browse Contentİçeriğe Göz At
-
+ Start File RecoveryDosya Kurtarmayı Başlatın
-
+ Show Run DialogÇalıştır Diyaloğunu Göster
-
+ IndeterminateBelirsiz
-
+ Backup Image HeaderGörüntü Başlığını Yedekle
-
+ Restore Image HeaderGörüntü Başlığını Geri Yükle
-
+ Change PasswordParolayı Değiştir
-
-
+
+ Always copyHer zaman kopyala
-
-
+
+ Don't copyKopyalama
-
-
+
+ Copy emptyBoş kopyala
-
+ Select colorRenk seç
-
+ Executables (*.exe *.cmd)Yürütülebilir dosyalar (*.exe *.cmd)
-
+ The image file does not existGörüntü dosyası mevcut değil
-
+ The password is wrongParola hatalı
-
+ Unexpected error: %1Beklenmeyen hata: %1
-
+ Image Password ChangedGörüntü Parolası Değiştirildi
-
+ Backup Image Header for %1%1 için Görüntü Başlığını Yedekle
-
+ Image Header BackupedGörüntü Başlığı Yedeklendi
-
+ Restore Image Header for %1%1 için Görüntü Başlığını Geri Yükle
-
+ Image Header RestoredGörüntü Başlığı Geri Yüklendi
@@ -2695,22 +2695,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Klasör bekleniyor: %1
-
+ Deleting folder: %1Klasör siliniyor: %1
-
+ Merging folders: %1 >> %2Klasörler birleştiriliyor: %1 >> %2
-
+ Finishing Snapshot Merge...Anlık Görüntü Birleştirme Tamamlanıyor...
@@ -2792,7 +2792,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Çıkış
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus taşınabilir modda başlatıldı ve gerekli hizmetleri oluşturması gerekiyor. Bunun için yönetici ayrıcalıkları isteyecektir.
@@ -2813,13 +2813,13 @@ Unlike the preview channel, it does not include untested, potentially breaking,
&Görünüm
-
+ Error deleting sandbox folder: %1Korumalı alan klasörü silinirken hata: %1
-
+ About Sandboxie-PlusSandboxie-Plus Hakkında
@@ -2855,7 +2855,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Destek Forumu'nu Ziyaret Et
-
+ Failed to copy configuration from sandbox %1: %2%1 korumalı alanından yapılandırma kopyalaması başarısız oldu: %2
@@ -2865,7 +2865,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Basit Görünüm
-
+ Login Failed: %1Giriş başarısız: %1
@@ -2878,9 +2878,9 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
-
-
+
+
+ Don't show this message again.Bu mesajı bir daha gösterme.
@@ -2900,12 +2900,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Hizmeti Yükle
-
+ Failed to remove old snapshot directory '%1'Eski anlık görüntü dizini kaldırılamadı '%1'
-
+ The changes will be applied automatically as soon as the editor is closed.Düzenleyici kapatılır kapatılmaz değişiklikler otomatik olarak uygulanacaktır.
@@ -2915,7 +2915,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie Yöneticisi'ni kapatmak istiyor musunuz?
-
+ Failed to create directory for new snapshotYeni anlık görüntü için dizin oluşturulamadı
@@ -2966,7 +2966,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Failed to move directory '%1' to '%2''%1' dizini, '%2' dizinine taşınamadı
@@ -2981,9 +2981,9 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Çevrimiçi Belgeler
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Hata
@@ -3003,12 +3003,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Göster/Gizle
-
+ A sandbox must be emptied before it can be deleted.Bir korumalı alan, silinmeden önce boşaltılmalıdır.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Korumalı alan adı yalnızca harf, rakam ve alt çizgi içerebilir.
@@ -3018,12 +3018,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
&Bakım
-
+ The sandbox name can not be a device name.Korumalı alan adı bir cihaz adı olamaz.
-
+ Operation failed for %1 item(s).%1 öge için işlem başarısız oldu.
@@ -3057,12 +3057,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Bağlan
-
+ Only Administrators can change the config.Yalnızca Yöneticiler yapılandırmayı değiştirebilir.
-
+ Snapshot not foundAnlık görüntü bulunamadı
@@ -3072,7 +3072,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Tümünü Durdur
-
+ Delete protection is enabled for the sandboxKorumalı alan için silme koruması etkinleştirilmiş
@@ -3082,7 +3082,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
&Gelişmiş
-
+ Executing maintenance operation, please wait...Bakım işlemi yapılıyor, lütfen bekleyin...
@@ -3099,7 +3099,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Yeni Alan Oluştur
-
+ Failed to terminate all processesTüm işlemler sonlandırılamadı
@@ -3109,7 +3109,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Gelişmiş Görünüm
-
+ Failed to delete sandbox %1: %2%1: %2 Korumalı alanı silinemedi
@@ -3120,17 +3120,17 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Tüm İşlemleri Sonlandır
-
+ Please enter the configuration password.Lütfen yapılandırma parolasını girin.
-
+ You are not authorized to update configuration in section '%1'Bölümdeki yapılandırmayı güncelleme yetkiniz yok '%1'
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.'%1' ve '%2' anlık görüntü dizinleri birleştirilirken hata oluştu, anlık görüntü tam olarak birleştirilmedi.
@@ -3150,12 +3150,12 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sonlandırılmışları Tut
-
+ A sandbox of the name %1 already exists%1 adında bir korumalı alan zaten var
-
+ Failed to set configuration setting %1 in section %2: %3%2: %3 bölümünde %1 yapılandırma parametresi ayarlanamadı
@@ -3300,251 +3300,251 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.Gelişmiş özelliklerin kilidini açmak için <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Sertifikanızı yükseltin</a>.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.Seçilen özellik, <b>gelişmiş</b> bir destekçi sertifikası gerektiriyor.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Seçilen özellik seti yalnızca proje destekçileri tarafından kullanılabilir. <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Proje destekçisi olmak</a> için bir <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">destekçi sertifikası</a> edinin
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!Kullanmaya çalıştığınız sertifika engellendi, yani geçersiz kılındı. Bunu kullanmaya yönelik herhangi bir girişim, kullanım şartlarının ihlali anlamına gelir!
-
+ The Certificate Signature is invalid!Sertifika İmzası geçersiz!
-
+ The Certificate is not suitable for this product.Sertifika bu ürün için uygun değildir.
-
+ The Certificate is node locked.Sertifika düğüm kilitli.
-
+ The support certificate is not valid.
Error: %1Destek sertifikası geçerli değil.
Hata: %1
-
+ The evaluation period has expired!!!Değerlendirme süresi dolmuştur!
-
-
+
+ Don't ask in futureGelecekte sorma
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?Şifreli korumalı alanlardaki tüm işlemleri sonlandırmak ve bağlantılarını kaldırmak istiyor musunuz?
-
+ No RecoveryKurtarma Yok
-
+ No MessagesMesaj Yok
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>HATA:</b> Sandboxie-Plus Yöneticisi (SandMan.exe) geçerli bir imzaya sahip değil (SandMan.exe.sig). Lütfen <a href="https://sandboxie-plus.com/go.php?to=sbie-get">resmî indirme sayfasından</a> güvenilir bir sürüm indirin.
-
+ Maintenance operation completedBakım işlemi tamamlandı
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Bu işlevsellik, Plus kullanıcı arayüzünde korumalı alan liste görünümüne entegre edilmiştir.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Alan/grup bağlam menüsünü kullanarak alanları ve grupları diğer gruplara taşıyabilirsiniz. Öğeleri hareket ettirmek için sürükle ve bırak özelliğini de kullanabilirsiniz. Alternatif olarak, öğeleri grupları içinde yukarı ve aşağı taşımak için ALT tuşunu basılı tutarken ok tuşlarını da kullanabilirsiniz.<br />Korumalı Alan menüsünden yeni alanlar ve gruplar oluşturabilirsiniz.
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Gizlenmiş mesaj kutuları dahil her şeyi (evet) veya yalnızca tüm günlük mesajlarını (hayır) sıfırlamak mı istiyorsunuz?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.Templates.ini dosyasını düzenlemek üzeresiniz, bu genellikle önerilmez. Bu dosya Sandboxie'nin bir parçasıdır ve üzerinde yapılan tüm değişiklikler Sandboxie güncellendiğinde kaybolacaktır.
-
+ The changes will be applied automatically whenever the file gets saved.Dosya her kaydedildiğinde değişiklikler otomatik olarak uygulanacaktır.
-
+ Administrator rights are required for this operation.Bu işlem için yönetici hakları gereklidir.
-
+ Failed to execute: %1%1 çalıştırılamadı
-
+ Failed to connect to the driverSürücüye bağlanılamadı
-
+ Failed to communicate with Sandboxie Service: %1Sandboxie Hizmeti ile iletişim kurulamadı: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Uyumsuz bir Sandboxie %1 bulundu. Uyumlu sürümler: %2
-
+ Can't find Sandboxie installation path.Sandboxie kurulum yolu bulunamıyor.
-
+ The sandbox name can not be longer than 32 characters.Korumalı alan adı 32 karakterden uzun olamaz.
-
+ All processes in a sandbox must be stopped before it can be renamed.Bir korumalı alanın yeniden adlandırılabilmesi için oradaki tüm işlemlerin durdurulması gerekir.
-
+ Failed to move box image '%1' to '%2''%1' korumalı alan görüntüsü '%2' konumuna taşınamadı
-
+ This Snapshot operation can not be performed while processes are still running in the box.Bu Anlık Görüntü işlemi, alan içinde işlemler çalışırken gerçekleştirilemez.
-
+ Can't remove a snapshot that is shared by multiple later snapshotsBirden çok anlık görüntü tarafından paylaşılan bir anlık görüntü kaldırılamaz
-
+ The content of an unmounted sandbox can not be deletedBağlanmamış bir korumalı alanın içeriği silinemez
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loadedİçe/Dışa Aktarma kullanılamıyor, 7z.dll yüklenemedi
-
+ Failed to create the box archiveAlan arşivi oluşturulamadı
-
+ Failed to open the 7z archive7z arşivi açılamadı
-
+ Failed to unpack the box archiveAlan arşivi açılamadı
-
+ The selected 7z file is NOT a box archiveSeçilen 7z dosyası bir alan arşivi DEĞİLDİR
-
+ Remember choice for later.Seçimi sonrası için hatırla.
-
+ Copy CellHücreyi Kopyala
-
+ Copy RowSatırı Kopyala
-
+ Copy PanelPaneli Kopyala
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p><h3>Sandboxie-Plus Hakkında</h3><p>Sürüm %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1Sandboxie'nin bu kopyası şu kişiler için sertifikalandırılmıştır: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.Sandboxie-Plus, kişisel ve ticari olmayan kullanım için ücretsizdir.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Sandboxie-Plus, Sandboxie'nin açık kaynaklı bir devamıdır.<br />Daha fazla bilgi için <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> adresini ziyaret ediniz.<br /><br />%2<br /><br />Özellikler: %3<br /><br />Kurulum: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Simgeler için <a href="https://icons8.com">icons8.com</a>
-
+ Failed to stop all Sandboxie componentsTüm Sandboxie bileşenleri durdurulamadı
-
+ Failed to start required Sandboxie componentsGerekli Sandboxie bileşenleri başlatılamadı
@@ -3570,17 +3570,17 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Kaldırılan şablonlar temizlendi...
-
+ Can not create snapshot of an empty sandboxBoş bir korumalı alanın anlık görüntüsü oluşturulamaz
-
+ A sandbox with that name already existsBu adda bir korumalı alan zaten var
-
+ Reset ColumnsSütunları Sıfırla
@@ -3595,7 +3595,7 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Bazı uyumluluk şablonları (%1) eksik, büyük olasılıkla silinmiş, bunları tüm alanlardan kaldırmak istiyor musunuz?
-
+ Do you want to terminate all processes in all sandboxes?Tüm korumalı alanlardaki tüm işlemleri sonlandırmak istiyor musunuz?
@@ -3645,12 +3645,12 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Bilinmeyen işlem '%1' komut satırı aracılığıyla istendi
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.DİKKAT: Bu Sandboxie oturumunu başka bir aracı (muhtemelen SbieCtrl.exe) zaten yönetiyor, lütfen önce onu kapatın ve devralmak için yeniden bağlanın.
-
+ The config password must not be longer than 64 charactersYapılandırma parolası 64 karakterden uzun olmamalıdır
@@ -3670,17 +3670,17 @@ This file is part of Sandboxie and all change done to it will be reverted next t
Tüm Oturumları Göster
-
+ Error Status: 0x%1 (%2)Hata Durumu: 0x%1 (%2)
-
+ UnknownBilinmeyen
-
+ Unknown Error Status: 0x%1Bilinmeyen Hata Durumu: 0x%1
@@ -3733,7 +3733,7 @@ Evet şunları seçer: %1
Hayır şunları seçer: %2
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Seçilen özellik seti yalnızca proje destekçileri tarafından kullanılabilir. Bu özellik setinin destekçi sertifikası olmadan etkinleştirildiği bir alanda başlatılan işlemler 5 dakika sonra sonlandırılacaktır.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Proje destekçisi olmak</a> için bir <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">destekçi sertifikası</a> edinin
@@ -3988,7 +3988,7 @@ Hayır şunları seçer: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-cert">Proje destekçisi olmak</a> için bir <a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">destekçi sertifikası</a> edinebilirsiniz
@@ -4010,97 +4010,97 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Windows derlemeniz %1, Sandboxie sürümünüzün bilinen mevcut destek yeteneklerini aşıyor; Sandboxie bilinen son ofsetleri kullanmaya çalışacak ve bu da sistem kararsızlığına neden olabilir.
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Lütfen Zorunlu Programlar kurallarını devre dışı bırakmak için süreyi saniye cinsinden girin.
-
+ Maintenance operation failed (%1)Bakım işlemi başarısız oldu (%1)
-
+ All sandbox processes must be stopped before the box content can be deletedAlan içeriği silinmeden önce tüm korumalı alan işlemleri durdurulmalıdır
-
+ Failed to copy box data filesAlan veri dosyaları kopyalanamadı
-
+ Failed to remove old box data filesEski alan veri dosyaları kaldırılamadı
-
+ The operation was canceled by the userİşlem kullanıcı tarafından iptal edildi
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?%1 bağlantısını korumalı alanda veya korumasız olarak Web tarayıcısında açmak istiyor musunuz?
-
+ SandboxedKorumalı
-
+ UnsandboxedKorumasız
-
+ Case SensitiveHarfe Duyarlı
-
+ RegExpDüzİfa
-
+ HighlightVurgula
-
+ CloseKapat
-
+ &Find ...&Bul ...
-
+ All columnsTüm Sütunlar
-
+ The supporter certificate is not valid for this build, please get an updated certificateBu destekçi sertifikası bu derleme için geçerli değildir, lütfen yenilenmiş bir sertifika edinin
-
+ The supporter certificate has expired%1, please get an updated certificateBu destekçi sertifikasının süresi dolmuş %1, lütfen yenilenmiş bir sertifika edinin
-
+ , but it remains valid for the current build, ancak mevcut derleme için geçerli kalır
-
+ The supporter certificate will expire in %1 days, please get an updated certificateDestekçi sertifikasının süresi %1 gün içinde dolacak, lütfen yenilenmiş bir sertifika edinin
@@ -4158,7 +4158,7 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Geçerli Yapılandırma: %1
-
+ Sandboxie config has been reloadedSandboxie yapılandırması yeniden yüklendi
@@ -5093,28 +5093,28 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.
CSettingsWindow
-
+ Please enter the new configuration password.Lütfen yeni yapılandırma parolasını girin.
-
-
+
+ Select DirectoryDizin Seç
-
+ Please enter a program file nameLütfen bir program dosyası adı girin
-
+ FolderKlasör
-
+ Processİşlem
@@ -5240,51 +5240,56 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.
+ Advanced (L)
+
+
+
+ Max LevelEn Üst Seviye
-
+ Level %1Seviye %1
-
+ Supporter certificate required for accessErişim için destekçi sertifikası gerekli
-
+ Supporter certificate required for automationOtomasyon için destekçi sertifikası gerekli
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.Bu sertifika ne yazık ki mevcut derleme için geçerli değil, yeni bir sertifika almanız veya önceki bir derlemeye geçmeniz gerekiyor.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.Bu sertifikanın süresi dolmuş olsa da, şu anda yüklü olan sürüm için Plus özellikleri etkin durumda kalır. Ancak, bundan sonraki sürümlerde uyumluluk güncellemeleri ve çevrimiçi sorun giderme veritabanı da dahil olmak üzere Sandboxie-Live hizmetlerine erişiminiz olmayacak.
-
+ This certificate has unfortunately expired, you need to get a new certificate.Bu sertifikanın süresi ne yazık ki dolmuş, yeni bir sertifika almanız gerekiyor.
-
+ <a href="check">Check Now</a><a href="check">Şimdi Denetle</a>
-
+ Please re-enter the new configuration password.Lütfen yeni yapılandırma parolasını tekrar girin.
-
+ Passwords did not match, please retry.Parolalar eşleşmedi, lütfen tekrar deneyin.
@@ -5294,7 +5299,7 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Otomatik Algıla
-
+ Thank you for supporting the development of Sandboxie-Plus.Sandboxie-Plus'ın gelişimini desteklediğiniz için teşekkür ederiz.
@@ -5503,52 +5508,52 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Ev
-
+ Run &Un-Sandboxed&Korumalı Alanın Dışında Çalıştır
-
+ Update AvailableGüncelleme Mevcut
-
+ InstalledKurulu
-
+ by %1%1 tarafından
-
+ (info website)(bilgi sitesi)
-
+ This Add-on is mandatory and can not be removed.Bu Eklenti zorunludur ve kaldırılamaz.
-
+ Please enter the template identifierLütfen şablon tanımlayıcısını girin
-
+ Error: %1Hata: %1
-
+ Do you really want to delete the selected local template(s)?Seçili yerel şablonları gerçekten silmek istiyor musunuz?
-
+ %1 (Current)%1 (Kullanılan)
@@ -5559,7 +5564,7 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.Korumalı Web Tarayıcısı
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Bu bir sertifikaya benzemiyor. Lütfen sertifikanın sadece bir kısmını değil tamamını girin.
@@ -8251,27 +8256,27 @@ The process match level has a higher priority than the specificity and describes
QPlatformTheme
-
+ OKTAMAM
-
+ ApplyUygula
-
+ Cancelİptal
-
+ &Yes&Evet
-
+ &No&Hayır
diff --git a/SandboxiePlus/SandMan/sandman_uk.ts b/SandboxiePlus/SandMan/sandman_uk.ts
index bb1353be..040a8f90 100644
--- a/SandboxiePlus/SandMan/sandman_uk.ts
+++ b/SandboxiePlus/SandMan/sandman_uk.ts
@@ -1630,8 +1630,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1645,8 +1645,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1681,7 +1681,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -1938,135 +1938,135 @@ Note: The update check is often behind the latest GitHub release to ensure that
Пісочниця для додатків
-
+ Custom icon
-
+ Version 1
-
+ Version 2
-
+ Browse for ProgramОберіть програму
-
+ Open Box Options
-
+ Browse ContentПереглянути зміст
-
+ Start File Recovery
-
+ Show Run Dialog
-
+ Indeterminate
-
+ Backup Image Header
-
+ Restore Image Header
-
+ Change PasswordЗмінити пароль
+
+
+
+ Always copy
+
+
- Always copy
+ Don't copy
- Don't copy
-
-
-
-
- Copy empty
-
+ kilobytes (%1)кілобайт (%1)
-
+ Select colorОберіть колір
-
+ Select ProgramВибрати програму
-
+ The image file does not exist
-
+ The password is wrong
-
+ Unexpected error: %1
-
+ Image Password Changed
-
+ Backup Image Header for %1
-
+ Image Header Backuped
-
+ Restore Image Header for %1
-
+ Image Header Restored
@@ -2076,18 +2076,18 @@ Note: The update check is often behind the latest GitHub release to ensure that
Будь ласка, введіть індентификатор служби
-
+ Executables (*.exe *.cmd)Виконавчі (*.exe *.cmd)
-
-
+
+ Please enter a menu titleБудь ласка, введіть назву меню
-
+ Please enter a commandБудь ласка, введіть команду
@@ -2839,22 +2839,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Очікування папки: %1
-
+ Deleting folder: %1Видалення папки: %1
-
+ Merging folders: %1 >> %2Злиття папок: %1 та %2
-
+ Finishing Snapshot Merge...Завершення злиття знімків...
@@ -2960,37 +2960,37 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Reset ColumnsСкинути налаштування стовців
-
+ Copy CellСкопіювати клітинку
-
+ Copy RowСкопіювати рядок
-
+ Copy PanelСкопіювати панель
@@ -3279,7 +3279,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusПро Sandboxie-Plus
@@ -3373,9 +3373,9 @@ Do you want to do the clean up?
-
-
-
+
+
+ Don't show this message again.Не показувати це повідомлення знову.
@@ -3505,19 +3505,19 @@ Please check if there is an update for sandboxie.
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Помилка
-
+ Failed to stop all Sandboxie componentsНе вдалося зупинити всі компоненти Sandboxie
-
+ Failed to start required Sandboxie componentsНе вдалося запустити потрібні для Sandboxie компоненти
@@ -3576,27 +3576,27 @@ No will choose: %2
Ні, Sandboxie-Plus обере: %2
-
+ A sandbox must be emptied before it can be deleted.Перед видаленням пісочницю необхідно очистити.
-
+ The supporter certificate is not valid for this build, please get an updated certificateЦей сертифікат спонсора не є дійсним для цієї збірки, будь ласка, оновіть сертифікат
-
+ The supporter certificate has expired%1, please get an updated certificateТермін дії сертифіката підтримки закінчився%1, будь ласка, отримайте оновлений сертифікат
-
+ , but it remains valid for the current build, але він залишається дісним для поточної збірки
-
+ The supporter certificate will expire in %1 days, please get an updated certificateЦей сертифікат спонсора буде вичерпаний через %1 днів, будь ласка, отримайте новий сертифікат
@@ -3631,7 +3631,7 @@ No will choose: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Ця функція доступна лише для спонсорів проєкту. Процеси, які працюють з цією функцією без сертифіката спонсора, будуть завершені через 5 хвилин.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Станьте спонсором проєкту</a>, та отримайте <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертифікат спонсора</a>
@@ -3687,22 +3687,22 @@ No will choose: %2
-
+ Only Administrators can change the config.Тільки адміністратор може змінити конфігурацію.
-
+ Please enter the configuration password.Будь ласка, введіть пароль конфігурації.
-
+ Login Failed: %1Не вдалося увійти: %1
-
+ Do you want to terminate all processes in all sandboxes?Ви дійсно хочете завершити всі процеси в всіх пісочницях?
@@ -3711,57 +3711,57 @@ No will choose: %2
Завершити без запитань
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Програму Sandboxie-Plus було запущено в портативному режимі та для цього режиму потрібно сторити необхідні служби. Це може потребувати права адміністратора.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.УВАГА: Ще один агент (можливо, SbieCtrl.exe) вже керує цим сеаносом Sandboxie, будь ласка, завершіть інший сеанс та повторно підключиться.
-
+ Executing maintenance operation, please wait...Виконання операції для технічного обслуговування, зачекайте...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Ви дійсно хочете скинути сховані вікна повідомлень (так), або тількі всі повідомлення журналу (ні)?
-
+ The changes will be applied automatically whenever the file gets saved.Зміни будуть застосовані автоматично, коли файл буде збережений.
-
+ The changes will be applied automatically as soon as the editor is closed.Зміни будуть застосовані автоматично, коли текстовий редактор буде закритий.
-
+ Error Status: 0x%1 (%2)Код помилки: 0x%1 (%2)
-
+ UnknownНевідомо
-
+ Failed to copy box data filesНе вдалося скопіювати файли пісочниці
-
+ Failed to remove old box data filesНе вдалося видалити старі файли пісочниці
-
+ Unknown Error Status: 0x%1Невідома помилка: 0x%1
@@ -3795,7 +3795,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
Sandboxie-Plus - це продовження Sandboxie з відкритим кодом.<br />Відвідайте <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> для більш детальної інформації.<br /><br />%3<br /><br />Версія драйвера: %1<br />Особливості: %2<br /><br />Зображення з <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.Для цієї дії потрібні права адміністратора.
@@ -3966,7 +3966,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Стань спонсором проекту</a>, та отримай <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">сертифікат спонсора</a>
@@ -4025,110 +4025,110 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!
-
-
+
+ Don't ask in future
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Будь ласка, введіть тривалість вимкнення правил примусових програм у секундах.
-
+ No Recovery
-
+ No Messages
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
+ Maintenance operation failed (%1)Помилка технічного обслуговування (%1)
-
+ Maintenance operation completed
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.В інтерфейсі Plus цю функцію інтегровано в головний список ізольованого програмного середовища.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Використовуючи контекстне меню пісочниці/групи, ви можете переміщувати пісочниці та групи в інші групи. Ви також можете використовувати перетягування для переміщення елементів. Крім того, ви також можете використовувати клавіші зі стрілками, утримуючи натиснутою клавішу ALT, щоб переміщувати елементи вгору та вниз у їхній групі.<br />Ви можете створювати нові поля та групи з меню "Пісочниці".
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4136,219 +4136,219 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Sandboxie config has been reloadedКонфігурацію Sandboxie перезавантажено
-
+ Failed to execute: %1Не вдалося виконати: %1
-
+ Failed to connect to the driverНе вдалося підключитись до драйвера
-
+ Failed to communicate with Sandboxie Service: %1Не вдалося підключитись до служби Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Була знайдена несумісна версія Sandboxie %1. Сумістима версія: %2
-
+ Can't find Sandboxie installation path.Не вдалося знайти місце інсталяції Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Не вдалося скопіювати конфігурацію пісочниці %1: %2
-
+ A sandbox of the name %1 already existsПісочниця з назвою %1 вже існує
-
+ Failed to delete sandbox %1: %2Не вдалося видалити пісочницю %1: %2
-
+ The sandbox name can not be longer than 32 characters.Назва пісочниці має не більше 32 символів.
-
+ The sandbox name can not be a device name.Назва пісочниці не повина містити назву пристроя.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Назва пісочниці має містити тільки літери, цифри та символи підкреслення, які будуть відображатись, як пробіли.
-
+ Failed to terminate all processesНе вдалося завершити всі процеси
-
+ Delete protection is enabled for the sandboxЗахист від видалення увімкнен для пісочниці
-
+ All sandbox processes must be stopped before the box content can be deletedУсі процеси пісочниці необхідно зупинити, перш ніж вміст контейнера можна буде видалити
-
+ Error deleting sandbox folder: %1Помилка під час видалення папки пісочниці: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move directory '%1' to '%2'Не вдалося перемістити папку '%1' до '%2'
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Ця операція зі знимком не може виконатись, коли процеси працюють в пісочниці.
-
+ Failed to create directory for new snapshotНе вдалося створити папку для нового знімку
-
+ Snapshot not foundЗнімок не знайдено
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Помилка під час злиття папок знімків '%1' та '%2', знімок був створений неповністю.
-
+ Failed to remove old snapshot directory '%1'Не вдалося видалити папку старого знімку '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsНе можливо видалити знімок, який використовується в інших знімках
-
+ You are not authorized to update configuration in section '%1'Ви не маєте прав змінювати конфігурацію в розділі '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Не вдалося застосвувати параметр %1 конфігурації в розділі %2: %3
-
+ Can not create snapshot of an empty sandboxНе можливо створити знімок у порожній пісочниці
-
+ A sandbox with that name already existsПісочниця з такою назвою вже існує
-
+ The config password must not be longer than 64 charactersПароль конфігурації не повинен містити більше 64 символів
-
+ The operation was canceled by the userОперацію скасував користувач
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded
-
+ Failed to create the box archive
-
+ Failed to open the 7z archive
-
+ Failed to unpack the box archive
-
+ The selected 7z file is NOT a box archive
-
+ Operation failed for %1 item(s).Дія не вдалась для %1 елемента(ів).
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4357,37 +4357,37 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Ви хочете відкрити %1 у веб-браузері із пісочниці (так) чи ззовні (ні)?
-
+ Remember choice for later.Запам'ятати цей вибір.
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseЗакрити
-
+ &Find ...
-
+ All columns
@@ -5748,36 +5748,41 @@ This file is part of Sandboxie and all changed done to it will be reverted next
- Max Level
+ Advanced (L)
+ Max Level
+
+
+
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
@@ -5791,12 +5796,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Термін дії цього сертифіката спонсора <font color='red'>закінчиться через %1 дн.</font>, будь ласка <a href="sbie://update/cert">отримайте оновлений сертифікат</a>.
-
+ Run &Un-SandboxedЗапустити без пісочниці (&U)
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Це не схоже на сертифікат. Будь ласка, введіть весь сертифікат, а не лише його частину.
@@ -5809,7 +5814,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Цей сертифікат, на жаль, застарів.
-
+ Thank you for supporting the development of Sandboxie-Plus.Дякуємо за підтримку розробки Sandboxie-Plus.
@@ -5818,88 +5823,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Цей сертифікат спонсора не є дійсним.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectoryОберіть каталог
-
+ <a href="check">Check Now</a>
-
+ Please enter the new configuration password.Будь ласка, введіть новий пароль конфігурації.
-
+ Please re-enter the new configuration password.Будь ласка, введіть новий пароль конфігурації ще раз.
-
+ Passwords did not match, please retry.Паролі не збігаються, будь ласка, спробуйте ще раз.
-
+ ProcessПроцес
-
+ FolderПапка
-
+ Please enter a program file nameБудь ласка, введіть назву файла програми
-
+ Please enter the template identifierБудь ласка, введіть іденфікатор шаблону
-
+ Error: %1Помилка: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)
@@ -8772,27 +8777,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OKОК
-
+ ApplyЗастосувати
-
+ CancelВідмінити
-
+ &YesТак (&Y)
-
+ &NoНі (&N)
diff --git a/SandboxiePlus/SandMan/sandman_vi.ts b/SandboxiePlus/SandMan/sandman_vi.ts
index 6ca612b3..9730ad6c 100644
--- a/SandboxiePlus/SandMan/sandman_vi.ts
+++ b/SandboxiePlus/SandMan/sandman_vi.ts
@@ -1622,8 +1622,8 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
-
+
+
@@ -1637,8 +1637,8 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
-
+
+
@@ -1673,7 +1673,7 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
-
+
@@ -1930,135 +1930,135 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Ngăn ứng dụng
-
+ Custom icon
-
+ Version 1
-
+ Version 2
-
+ Browse for ProgramDuyệt chương trình
-
+ Open Box OptionsMở tùy chọn Sandbox
-
+ Browse ContentDuyệt nội dung
-
+ Start File RecoveryBắt đầu khôi phục tệp
-
+ Show Run DialogHiển thị Hộp thoại Chạy
-
+ Indeterminate
-
+ Backup Image Header
-
+ Restore Image Header
-
+ Change PasswordĐổi mật khẩu
+
+
+
+ Always copy
+
+
- Always copy
+ Don't copy
- Don't copy
-
-
-
-
- Copy empty
-
+ kilobytes (%1)kilobytes (%1)
-
+ Select colorChọn màu
-
+ Select ProgramChọn chương trình
-
+ The image file does not exist
-
+ The password is wrong
-
+ Unexpected error: %1
-
+ Image Password Changed
-
+ Backup Image Header for %1
-
+ Image Header Backuped
-
+ Restore Image Header for %1
-
+ Image Header Restored
@@ -2068,18 +2068,18 @@ Ghi chú: Việc kiểm tra bản cập nhật thường nằm sau bản phát h
Vui lòng nhập số nhận dạng dịch vụ
-
+ Executables (*.exe *.cmd)Tệp thực thi (*.exe *.cmd)
-
-
+
+ Please enter a menu titleVui lòng nhập tiêu đề menu
-
+ Please enter a commandVui lòng nhập một lệnh
@@ -2819,22 +2819,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1Đang đợi thư mục: %1
-
+ Deleting folder: %1Xóa thư mục: %1
-
+ Merging folders: %1 >> %2Hợp nhất các thư mục: %1 >> %2
-
+ Finishing Snapshot Merge...Kết thúc Hợp nhất Bản Ghi chụp nhanh...
@@ -2920,22 +2920,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie-Plus v%1
-
+ Reset ColumnsĐặt lại cột
-
+ Copy CellSao chép ô
-
+ Copy RowSao chép hàng
-
+ Copy PanelSao chép bảng điều khiển
@@ -3211,7 +3211,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-PlusVề Sandboxie-Plus
@@ -3286,9 +3286,9 @@ Bạn có muốn dọn dẹp không?
-
-
-
+
+
+ Don't show this message again.Không hiển thị lại thông báo này.
@@ -3375,19 +3375,19 @@ Sandbox này ngăn quyền truy cập vào tất cả các vị trí dữ liệu
Cấu hình hiện tại: %1
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - Lỗi
-
+ Failed to stop all Sandboxie componentsKhông dừng được tất cả các thành phần Sandboxie
-
+ Failed to start required Sandboxie componentsKhông thể khởi động các thành phần Sandboxie bắt buộc
@@ -3496,7 +3496,7 @@ Please check if there is an update for sandboxie.
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>Bộ tính năng đã chọn chỉ có sẵn cho những người ủng hộ dự án. Các quá trình bắt đầu trong một Sandbox có bật bộ tính năng này mà không có chứng chỉ hỗ trợ sẽ bị chấm dứt sau 5 phút.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Trở thành người hỗ trợ dự án</a>, và nhận được một <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">giấy chứng nhận người ủng hộ</a>
@@ -3552,22 +3552,22 @@ Please check if there is an update for sandboxie.
-
+ Only Administrators can change the config.Chỉ Quản trị viên mới có thể thay đổi cấu hình.
-
+ Please enter the configuration password.Vui lòng nhập mật khẩu cấu hình.
-
+ Login Failed: %1Đăng nhập thất bại: %1
-
+ Do you want to terminate all processes in all sandboxes?Bạn có muốn chấm dứt tất cả các quy trình trong tất cả các hộp cát không?
@@ -3576,107 +3576,107 @@ Please check if there is an update for sandboxie.
Chấm dứt tất cả mà không cần hỏi
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus đã được khởi động ở chế độ Portable và nó cần tạo ra các dịch vụ cần thiết. Điều này sẽ nhắc nhở các đặc quyền quản trị.
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.THẬN TRỌNG: Một tác nhân khác (có thể là SbieCtrl.exe) đã quản lý phiên Sandboxie này, vui lòng đóng nó trước và kết nối lại để tiếp quản.
-
+ Executing maintenance operation, please wait...Đang thực hiện hoạt động bảo trì, vui lòng đợi...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?Bạn cũng muốn đặt lại các hộp thông báo ẩn (có), hay chỉ tất cả các thông báo nhật ký (không)?
-
+ The changes will be applied automatically whenever the file gets saved.Các thay đổi sẽ được áp dụng tự động bất cứ khi nào tệp được lưu.
-
+ The changes will be applied automatically as soon as the editor is closed.Các thay đổi sẽ được áp dụng tự động ngay khi đóng trình chỉnh sửa.
-
+ Error Status: 0x%1 (%2)Tình trạng lỗi: 0x%1 (%2)
-
+ UnknownKhông xác định
-
+ A sandbox must be emptied before it can be deleted.Sandbox phải được làm trống trước khi có thể bị xóa.
-
+ Failed to copy box data filesKhông sao chép được tệp dữ liệu từ Sandbox
-
+ Failed to remove old box data filesKhông xóa được các tệp dữ liệu Sandbox cũ
-
+ Unknown Error Status: 0x%1Trạng thái lỗi không xác định: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
-
+ Sandboxed
-
+ Unsandboxed
-
+ Case Sensitive
-
+ RegExp
-
+ Highlight
-
+ CloseĐóng
-
+ &Find ...
-
+ All columns
@@ -3698,7 +3698,7 @@ Please check if there is an update for sandboxie.
Sandboxie-Plus là phần tiếp theo mã nguồn mở của Sandboxie.<br />Ghé thăm <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> để biết thêm thông tin.<br /><br />%3<br /><br />Phiên bản trình điều khiển: %1<br />Đặc trưng: %2<br /><br />Biểu tượng từ <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.Quyền quản trị viên được yêu cầu cho hoạt động này.
@@ -3924,7 +3924,7 @@ Please check if there is an update for sandboxie.
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert"> Trở thành người hỗ trợ dự án</a>, và nhận được một <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">giấy chứng nhận người ủng hộ</a>
@@ -3983,110 +3983,110 @@ Please check if there is an update for sandboxie.
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
-
+ The selected feature requires an <b>advanced</b> supporter certificate.
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
-
+ The Certificate Signature is invalid!
-
+ The Certificate is not suitable for this product.
-
+ The Certificate is node locked.
-
+ The support certificate is not valid.
Error: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!Thời hạn đánh giá đã hết!!!
-
-
+
+ Don't ask in futureKhông hỏi trong tương lai
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.Vui lòng nhập thời lượng, tính bằng giây, để tắt các quy tắc Chương trình bắt buộc.
-
+ No RecoveryKhông có phục hồi
-
+ No MessagesKhông có tin nhắn
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
-
+ Maintenance operation failed (%1)Hoạt động bảo trì không thành công (%1)
-
+ Maintenance operation completedHoạt động bảo trì đã hoàn thành
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.Trong giao diện người dùng Plus, chức năng này đã được tích hợp vào chế độ xem danh sách Sandbox chính.
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.Sử dụng menu ngữ cảnh Sandbox/nhóm, bạn có thể di chuyển các Sandbox và nhóm sang các nhóm khác. Bạn cũng có thể sử dụng kéo và thả để di chuyển các mục xung quanh. Ngoài ra, bạn cũng có thể sử dụng các phím mũi tên trong khi giữ ALT để di chuyển các mục lên và xuống trong nhóm của chúng.<br />Bạn có thể tạo các Sandbox và nhóm mới từ menu Sandbox.
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4094,219 +4094,219 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ Sandboxie config has been reloadedCấu hình Sandboxie đã được tải lại
-
+ Failed to execute: %1Không thực hiện được: %1
-
+ Failed to connect to the driverKhông kết nối được với trình điều khiển
-
+ Failed to communicate with Sandboxie Service: %1Không kết nối được với Dịch vụ Sandboxie: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2Không tương thích Sandboxie %1 đã được tìm thấy. Các phiên bản tương thích: %2
-
+ Can't find Sandboxie installation path.Không thể tìm thấy đường dẫn cài đặt Sandboxie.
-
+ Failed to copy configuration from sandbox %1: %2Không sao chép được cấu hình từ Sandbox %1: %2
-
+ A sandbox of the name %1 already existsSandbox tên %1 đã tồn tại
-
+ Failed to delete sandbox %1: %2Không xóa được Sandbox %1: %2
-
+ The sandbox name can not be longer than 32 characters.Tên Sandbox không được dài hơn 32 ký tự.
-
+ The sandbox name can not be a device name.Tên Sandbox không được là tên thiết bị.
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.Tên Sandbox chỉ có thể chứa các chữ cái, chữ số và dấu gạch dưới được hiển thị dưới dạng dấu cách.
-
+ Failed to terminate all processesKhông thể chấm dứt tất cả các tiến trình
-
+ Delete protection is enabled for the sandboxXóa bảo vệ được bật cho Sandbox
-
+ All sandbox processes must be stopped before the box content can be deletedTất cả các quá trình Sandbox phải được dừng lại trước khi có thể xóa nội dung Sandbox
-
+ Error deleting sandbox folder: %1Lỗi khi xóa thư mục Sandbox: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.
-
+ Failed to move directory '%1' to '%2'Không di chuyển được thư mục '%1' to '%2'
-
+ Failed to move box image '%1' to '%2'
-
+ This Snapshot operation can not be performed while processes are still running in the box.Không thể thực hiện thao tác Bản ghi nhanh này trong khi các quy trình vẫn đang chạy trong Sandbox.
-
+ Failed to create directory for new snapshotKhông tạo được thư mục cho Bản ghi nhanh mới
-
+ Snapshot not foundBản ghi nhanh không tìm thấy
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.Lỗi khi hợp nhất các thư mục bản ghi nhanh '%1' với '%2', bản ghi nhanh chưa được hợp nhất hoàn toàn.
-
+ Failed to remove old snapshot directory '%1'Không xóa được thư mục bản ghi nhanh cũ '%1'
-
+ Can't remove a snapshot that is shared by multiple later snapshotsKhông thể xóa bản ghi nhanh được nhiều bản ghi nhanh sau này chia sẻ
-
+ You are not authorized to update configuration in section '%1'Bạn không được phép cập nhật cấu hình trong phần '%1'
-
+ Failed to set configuration setting %1 in section %2: %3Không đặt được cài đặt cấu hình %1 trong phần %2: %3
-
+ Can not create snapshot of an empty sandboxKhông thể tạo ảnh chụp nhanh của một Sandbox trống
-
+ A sandbox with that name already existsMột Sandbox có tên đó đã tồn tại
-
+ The config password must not be longer than 64 charactersMật khẩu cấu hình không được dài hơn 64 ký tự
-
+ The operation was canceled by the userThao tác đã bị người dùng hủy bỏ
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded
-
+ Failed to create the box archive
-
+ Failed to open the 7z archive
-
+ Failed to unpack the box archive
-
+ The selected 7z file is NOT a box archive
-
+ Operation failed for %1 item(s).Thao tác không thành công cho %1 mục.
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4315,28 +4315,28 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Bạn muốn mở %1 trong trình duyệt Web có Sandbox (có) hay không có Sandbox (không)?
-
+ Remember choice for later.Hãy nhớ lựa chọn cho sau này.
-
+ The supporter certificate is not valid for this build, please get an updated certificateChứng chỉ hỗ trợ không hợp lệ cho bản dựng này, vui lòng nhận chứng chỉ cập nhật
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificateChứng chỉ người hỗ trợ đã hết hạn %1, vui lòng nhận chứng chỉ cập nhật
-
+ , but it remains valid for the current build, nhưng nó vẫn có giá trị cho bản dựng hiện tại
-
+ The supporter certificate will expire in %1 days, please get an updated certificateChứng chỉ người hỗ trợ sẽ hết hạn sau %1 ngày, xin vui lòng nhận được một chứng chỉ cập nhật
@@ -5576,36 +5576,41 @@ This file is part of Sandboxie and all changed done to it will be reverted next
- Max Level
+ Advanced (L)
+ Max Level
+
+
+
+ Level %1
-
+ Supporter certificate required for access
-
+ Supporter certificate required for automation
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
-
+ This certificate has unfortunately expired, you need to get a new certificate.
@@ -5703,12 +5708,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Chứng chỉ hỗ trợ này sẽ <font color='red'>hết hạn trong %1 ngày</font>, làm ơn <a href="sbie://update/cert">nhận chứng chỉ cập nhật</a>.
-
+ Run &Un-SandboxedChạy ngoài Sandbox
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.Đây không giống như một chứng chỉ. Vui lòng nhập toàn bộ chứng chỉ, không chỉ một phần của nó.
@@ -5721,7 +5726,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Chứng chỉ này rất tiếc đã lỗi thời.
-
+ Thank you for supporting the development of Sandboxie-Plus.Cảm ơn bạn đã hỗ trợ sự phát triển của Sandboxie-Plus.
@@ -5730,88 +5735,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
Chứng chỉ hỗ trợ này không hợp lệ.
-
+ Update Available
-
+ Installed
-
+ by %1
-
+ (info website)
-
+ This Add-on is mandatory and can not be removed.
-
-
+
+ Select DirectoryChọn thư mục
-
+ <a href="check">Check Now</a><a href="check">Kiểm tra ngay</a>
-
+ Please enter the new configuration password.Vui lòng nhập mật khẩu cấu hình mới.
-
+ Please re-enter the new configuration password.Vui lòng nhập lại mật khẩu cấu hình mới.
-
+ Passwords did not match, please retry.Mật khẩu không khớp, vui lòng thử lại.
-
+ ProcessTiến trình
-
+ FolderThư mục
-
+ Please enter a program file nameVui lòng nhập tên tệp chương trình
-
+ Please enter the template identifierVui lòng nhập mã nhận dạng mẫu
-
+ Error: %1Lỗi: %1
-
+ Do you really want to delete the selected local template(s)?
-
+ %1 (Current)%1 (Hiện hành)
@@ -8615,27 +8620,27 @@ Xin lưu ý rằng các giá trị này hiện là dành riêng cho người dù
QPlatformTheme
-
+ OKOK
-
+ ApplyÁp dụng
-
+ CancelHủy bỏ
-
+ &Yes&Có
-
+ &No&Không
diff --git a/SandboxiePlus/SandMan/sandman_zh_CN.ts b/SandboxiePlus/SandMan/sandman_zh_CN.ts
index d3f3b00f..82f868d1 100644
--- a/SandboxiePlus/SandMan/sandman_zh_CN.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_CN.ts
@@ -1794,120 +1794,120 @@ Note: The update check is often behind the latest GitHub release to ensure that
应用隔间
-
+ Custom icon自定义图标
-
+ Version 1版本 1
-
+ Version 2版本 2
-
+ Browse for Program浏览程序
-
+ Open Box Options打开沙盒选项
-
+ Browse Content浏览内容
-
+ Start File Recovery开始恢复文件
-
+ Show Run Dialog显示运行对话框
-
+ Indeterminate不确定
-
+ Backup Image Header备份映像头
-
+ Restore Image Header恢复映像头
-
+ Change Password更改密码
-
-
+
+ Always copy始终复制
-
-
+
+ Don't copy不要复制
-
-
+
+ Copy empty复制空的副本
-
+ The image file does not exist磁盘映像文件不存在
-
+ The password is wrong输入的密码不正确
-
+ Unexpected error: %1意外错误:%1
-
+ Image Password Changed映像密码已更改
-
+ Backup Image Header for %1备份 %1 的映像头
-
+ Image Header Backuped映像头已备份
-
+ Restore Image Header for %1恢复 %1 的映像头
-
+ Image Header Restored映像头已恢复
@@ -1974,17 +1974,17 @@ Note: The update check is often behind the latest GitHub release to ensure that
部分变更未保存,您确定要关闭这个选项窗口吗?
-
+ kilobytes (%1)KB (%1)
-
+ Select color选择颜色
-
+ Select Program选择程序
@@ -1994,18 +1994,18 @@ Note: The update check is often behind the latest GitHub release to ensure that
请输入一个服务标识符
-
+ Executables (*.exe *.cmd)可执行文件 (*.exe *.cmd)
-
-
+
+ Please enter a menu title请输入一个菜单标题
-
+ Please enter a command请输入一则命令
@@ -2014,8 +2014,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -2214,8 +2214,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -2252,7 +2252,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -2942,22 +2942,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1正在等待文件夹: %1
-
+ Deleting folder: %1正在删除文件夹: %1
-
+ Merging folders: %1 >> %2正在合并文件夹: %1 >> %2
-
+ Finishing Snapshot Merge...正在完成快照合并...
@@ -3063,22 +3063,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
没有必沙程序
-
+ Reset Columns重置列
-
+ Copy Cell复制此格
-
+ Copy Row复制此行
-
+ Copy Panel复制此表
@@ -3365,7 +3365,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-Plus关于 Sandboxie-Plus
@@ -3574,9 +3574,9 @@ Do you want to do the clean up?
-
-
-
+
+
+ Don't show this message again.不再显示此消息
@@ -3676,49 +3676,49 @@ This box <a href="sbie://docs/privacy-mode">prevents access to a
安装
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - 错误
-
+ Failed to stop all Sandboxie components停止全部的 Sandboxie 组件失败
-
+ Failed to start required Sandboxie components启动所需的 Sandboxie 组件失败
-
+ Sandboxie config has been reloaded已重载沙盒配置文件
-
+ The supporter certificate is not valid for this build, please get an updated certificate此赞助者凭据对该版本沙盒无效,请获取可用的新凭据
-
+ The supporter certificate has expired%1, please get an updated certificate此赞助者凭据已过期%1,请获取可用的新凭据
-
+ , but it remains valid for the current build,但它对当前构建的沙盒版本仍然有效
-
+ The supporter certificate will expire in %1 days, please get an updated certificate此赞助者凭据将在 %1 天后过期,请获取可用的新凭据
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>选定的特性只对项目赞助者可用。如果没有赞助者凭据,在启用该特性的沙盒里启动的进程,将在 5 分钟后被终止。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成为项目赞助者</a>,以获得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">赞助者凭据</a>
@@ -3747,72 +3747,72 @@ Please check if there is an update for sandboxie.
是否要省略安装向导?
-
+ Error Status: 0x%1 (%2)错误状态: 0x%1 (%2)
-
+ Unknown未知
-
+ Failed to remove old box data files无法删除旧沙盒中的数据文件
-
+ The operation was canceled by the user该操作已被用户取消
-
+ Unknown Error Status: 0x%1未知错误状态: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?是否打开链接 %1?您可以选择是否使用沙盒中的浏览器打开。
-
+ Sandboxed沙盒中的
-
+ Unsandboxed沙盒外的
-
+ Case Sensitive区分大小写
-
+ RegExp正则表达式
-
+ Highlight高亮显示
-
+ Close关闭
-
+ &Find ...查找(&F)...
-
+ All columns所有列
@@ -3899,7 +3899,7 @@ No will choose: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成为项目赞助者</a>,以获得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">赞助者凭据</a>
@@ -3970,17 +3970,17 @@ No will choose: %2
-
+ Only Administrators can change the config.仅管理员可更改该配置
-
+ Please enter the configuration password.请输入配置保护密码
-
+ Login Failed: %1登录失败:%1
@@ -4002,7 +4002,7 @@ No will choose: %2
正在导入:%1
-
+ Do you want to terminate all processes in all sandboxes?确定要终止所有沙盒中的所有进程吗?
@@ -4011,59 +4011,59 @@ No will choose: %2
终止所有且不再询问
-
+ No Recovery没有恢复文件
-
+ No Messages没有消息
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus 正以便携模式启动,需要创建所需的服务,这将会寻求管理员权限
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.警告:另一代理程序 (可能是 SbieCtrl.exe) 已接管当前 Sandboxie 会话,请将其关闭,然后尝试重新连接以接管控制
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>错误:</b>Sandboxie Plus管理器(SandMan.exe)没有有效的签名(SandMan.exe.sig)。请从<a href="https://sandboxie-plus.com/go.php?to=sbie-get">官方下载</a>。
-
+ Maintenance operation completed维护作业完成
-
+ Executing maintenance operation, please wait...正在执行操作维护,请稍候...
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.在 Plus 视图,此功能已被整合到主沙盒列表中
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.使用“沙盒/组”右键菜单,你可以将沙盒在沙盒组之间移动
同时,你也可以通过 Alt + 方向键或鼠标拖动来整理列表
另外,你可以通过右键菜单来新建“沙盒/组”
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?请确认是否要重置已隐藏的消息框(选“是”),或者仅重置所有日志消息(选“否”)?
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4072,123 +4072,123 @@ This file is part of Sandboxie and all changed done to it will be reverted next
因为该文件是 Sandboxie 的一部分并且所有的更改会在下次更新时被重置
-
+ The changes will be applied automatically whenever the file gets saved.当文件被保存时,将自动应用更改
-
+ The changes will be applied automatically as soon as the editor is closed.编辑器被关闭后,更改将很快自动应用
-
+ Administrator rights are required for this operation.此操作需要管理员权限
-
+ Failed to execute: %1执行失败:%1
-
+ Failed to connect to the driver连接驱动程序失败
-
+ Failed to communicate with Sandboxie Service: %1无法与 Sandboxie 服务通信:%1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2发现不兼容的 Sandboxie %1,其它兼容的版本:%2
-
+ Can't find Sandboxie installation path.无法找到 Sandboxie 的安装路径
-
+ Failed to copy configuration from sandbox %1: %2复制沙盒配置 %1: %2 失败
-
+ A sandbox of the name %1 already exists名为 %1 的沙盒已存在
-
+ Failed to delete sandbox %1: %2删除沙盒 %1: %2 失败
-
+ The sandbox name can not be longer than 32 characters.沙盒名称不能超过 32 个字符
-
+ The sandbox name can not be a device name.沙盒名称不能为设备名称
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.沙盒名称只能包含字母、数字和下划线(显示为空格)
-
+ Failed to terminate all processes终止所有进程失败
-
+ Delete protection is enabled for the sandbox该沙盒已启用删除保护
-
+ All sandbox processes must be stopped before the box content can be deleted在删除沙盒内容之前,必须先停止沙盒内的所有进程
-
+ Error deleting sandbox folder: %1删除沙盒文件夹出错:%1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.必须先停止沙盒中的所有进程,然后才能对其进行重命名。
-
+ A sandbox must be emptied before it can be deleted.沙盒被删除前必须清空
-
+ Failed to move directory '%1' to '%2'移动目录 '%1' 到 '%2' 失败
-
+ Failed to move box image '%1' to '%2'无法将沙盒镜像“%1”移动到“%2”
-
+ This Snapshot operation can not be performed while processes are still running in the box.因有进程正在沙盒中运行,此快照操作无法完成
-
+ Failed to create directory for new snapshot创建新快照的目录失败
@@ -4268,187 +4268,187 @@ This file is part of Sandboxie and all changed done to it will be reverted next
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">升级您的许可证</a> 以解锁高级功能。
-
+ The selected feature requires an <b>advanced</b> supporter certificate.选择的功能需要更高级赞助许可证。
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>您所选择的特性仅适用于项目赞助者。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成为项目赞助者</a>, 获取一份 <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">赞助者凭据</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!您尝试使用的凭据已被阻止,这意味着它已因故失效。任何使用该凭据的企图都构成对使用条款的违反!
-
+ The Certificate Signature is invalid!凭据的签名无效!
-
+ The Certificate is not suitable for this product.凭据不适用于本产品。
-
+ The Certificate is node locked.凭据已被节点锁定。
-
+ The support certificate is not valid.
Error: %1赞助者凭据无效。
错误:%1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!已超过评估期限!!!
-
-
+
+ Don't ask in future此后不再询问
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?确定要终止加密沙盒中的所有进程并卸载加密沙盒吗?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.请输入「停用必沙程序规则」的持续时间 (单位: 秒)
-
+ Maintenance operation failed (%1)维护作业执行失败 (%1)
-
+ Failed to copy box data files复制沙盒数据文件失败
-
+ Snapshot not found没有找到快照
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.合并快照目录 '%1' 和 '%2' 出错,快照没有被完全合并
-
+ Failed to remove old snapshot directory '%1'移除旧快照的目录 '%1' 失败
-
+ Can't remove a snapshot that is shared by multiple later snapshots无法移除被多个后续快照所共享的快照
-
+ You are not authorized to update configuration in section '%1'您未被授权在 '%1' 更新配置
-
+ Failed to set configuration setting %1 in section %2: %3在 %2: %3 中设定配置设置 %1 失败
-
+ Can not create snapshot of an empty sandbox无法为空的沙盒创建快照
-
+ A sandbox with that name already exists已存在同名沙盒
-
+ The config password must not be longer than 64 characters配置保护密码长度不能超过 64 个字符
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted无法删除已卸载的沙盒的内容
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded导入/导出不可用,无法加载 7z.dll
-
+ Failed to create the box archive无法创建沙盒存档
-
+ Failed to open the 7z archive无法打开 7z 备份
-
+ Failed to unpack the box archive无法解压沙盒备份
-
+ The selected 7z file is NOT a box archive所选的 7z 文件不是沙盒备份
-
+ Operation failed for %1 item(s).%1 项操作失败。
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p><h3>关于 Sandboxie+</h3><p>版本 %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1本 Sandboxie+ 副本已授权为: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.Sandboxie+ 可免费用于个人和其他非商业用途。
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>Sandboxie+ 是 Sandboxie 的开源延续。<br />前往 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 了解更多信息。<br /><br />%2<br /><br />特性: %3<br /><br />已安装: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />图标来自于 <a href="https://icons8.com">icons8.com</a>
@@ -4457,7 +4457,7 @@ Error: %1
是否在沙盒中的浏览器打开链接 %1 ?
-
+ Remember choice for later.记住选择供之后使用
@@ -5783,36 +5783,41 @@ Error: %1
+ Advanced (L)
+
+
+
+ Max Level最高等级
-
+ Level %1等级 %1
-
+ Supporter certificate required for access需要赞助者凭据进行访问
-
+ Supporter certificate required for automation需要赞助者凭据进行自动化动作
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.很遗憾,此凭据对当前版本无效,您需要获取新凭据或降级到早期版本。
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.尽管此凭据已过期,但对于当前安装的版本,附加功能仍处于启用状态。但是,您将无法再访问Sandboxie Live服务,包括兼容性更新和在线疑难解答数据库。
-
+ This certificate has unfortunately expired, you need to get a new certificate.很遗憾,此凭据已过期,请获取新凭据。
@@ -5835,12 +5840,12 @@ Error: %1
需要赞助者凭据
-
+ Run &Un-Sandboxed在沙盒外运行(&U)
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.这看起来不像是一份凭据。请输入完整的凭据,而不仅仅是其中的一部分
@@ -5853,7 +5858,7 @@ Error: %1
非常抱歉,此凭据已过时
-
+ Thank you for supporting the development of Sandboxie-Plus.感谢您对 Sandboxie-Plus 开发工作的支持
@@ -5862,88 +5867,88 @@ Error: %1
此赞助者凭据无效
-
+ Update Available更新可用
-
+ Installed已安装
-
+ by %1来自 %1
-
+ (info website)(更多信息网址)
-
+ This Add-on is mandatory and can not be removed.此加载项是必需的,无法删除。
-
-
+
+ Select Directory选择目录
-
+ <a href="check">Check Now</a><a href="check">立即检查</a>
-
+ Please enter the new configuration password.请输入新的配置保护密码
-
+ Please re-enter the new configuration password.请再次输入新的配置保护密码
-
+ Passwords did not match, please retry.输入的密码不一致,请重新输入
-
+ Process进程
-
+ Folder文件夹
-
+ Please enter a program file name请输入一个程序文件名
-
+ Please enter the template identifier请输入模板标识符
-
+ Error: %1错误:%1
-
+ Do you really want to delete the selected local template(s)?你真的想删除选定的本地模板吗?
-
+ %1 (Current)%1 (当前)
@@ -8797,27 +8802,27 @@ Sandboxie 提供了针对这些情况的处理选项,可以在此页面进行
QPlatformTheme
-
+ OK确定
-
+ Apply应用
-
+ Cancel取消
-
+ &Yes是(&Y)
-
+ &No否(&N)
diff --git a/SandboxiePlus/SandMan/sandman_zh_TW.ts b/SandboxiePlus/SandMan/sandman_zh_TW.ts
index cc6813ff..e057c460 100644
--- a/SandboxiePlus/SandMan/sandman_zh_TW.ts
+++ b/SandboxiePlus/SandMan/sandman_zh_TW.ts
@@ -1717,8 +1717,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1732,8 +1732,8 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
-
+
+
@@ -1768,7 +1768,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
-
+
@@ -2026,135 +2026,135 @@ Note: The update check is often behind the latest GitHub release to ensure that
應用程式區間
-
+ Custom icon自訂圖示
-
+ Version 1版本 1
-
+ Version 2版本 2
-
+ Browse for Program瀏覽程式
-
+ Open Box Options開啟沙箱選項
-
+ Browse Content瀏覽內容
-
+ Start File Recovery開始復原檔案
-
+ Show Run Dialog顯示執行對話方塊
-
+ Indeterminate不確定
-
+ Backup Image Header備份映像標頭
-
+ Restore Image Header復原映像標頭
-
+ Change Password變更密碼
-
-
+
+ Always copy永遠複製
-
-
+
+ Don't copy不要複製
-
-
+
+ Copy empty複製空內容
-
+ kilobytes (%1)KB (%1)
-
+ Select color選擇顏色
-
+ Select Program選擇程式
-
+ The image file does not exist映像檔案不存在
-
+ The password is wrong密碼錯誤
-
+ Unexpected error: %1預期外錯誤: %1
-
+ Image Password Changed映像密碼已變更
-
+ Backup Image Header for %1為 %1 備份映像標頭
-
+ Image Header Backuped已備份映像標頭
-
+ Restore Image Header for %1為 %1 復原映像標頭
-
+ Image Header Restored已復原映像標頭
@@ -2164,18 +2164,18 @@ Note: The update check is often behind the latest GitHub release to ensure that
請輸入服務識別字元
-
+ Executables (*.exe *.cmd)可執行檔案 (*.exe *.cmd)
-
-
+
+ Please enter a menu title請輸入一個選單標題
-
+ Please enter a command請輸入一則命令
@@ -2924,22 +2924,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
CSandBox
-
+ Waiting for folder: %1正在等待資料夾: %1
-
+ Deleting folder: %1正在刪除資料夾: %1
-
+ Merging folders: %1 >> %2正在合併資料夾: %1 >> %2
-
+ Finishing Snapshot Merge...正在完成快照合併...
@@ -3025,22 +3025,22 @@ Unlike the preview channel, it does not include untested, potentially breaking,
Sandboxie-Plus v%1
-
+ Reset Columns重設欄
-
+ Copy Cell複製單元格
-
+ Copy Row複製列
-
+ Copy Panel複製表格
@@ -3303,7 +3303,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
-
+ About Sandboxie-Plus關於 Sandboxie-Plus
@@ -3389,9 +3389,9 @@ Do you want to do the clean up?
-
-
-
+
+
+ Don't show this message again.不再顯示此訊息。
@@ -3500,19 +3500,19 @@ Please check if there is an update for sandboxie.
是否略過設定精靈?
-
-
-
+
+
+ Sandboxie-Plus - ErrorSandboxie-Plus - 錯誤
-
+ Failed to stop all Sandboxie components停止所有 Sandboxie 元件失敗
-
+ Failed to start required Sandboxie components啟動所需 Sandboxie 元件失敗
@@ -3559,7 +3559,7 @@ No will choose: %2
%1 (%2):
-
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>選取的功能只對專案贊助者可用。如果沒有贊助者憑證,在啟用此功能的沙箱內啟動的處理程序,將在 5 分鐘後自動終止。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成為專案贊助者</a>,以取得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">贊助者憑證</a>
@@ -3619,22 +3619,22 @@ No will choose: %2
-
+ Only Administrators can change the config.僅管理員可變更此組態。
-
+ Please enter the configuration password.請輸入組態的密碼。
-
+ Login Failed: %1登入失敗: %1
-
+ Do you want to terminate all processes in all sandboxes?確定要終止所有沙箱中的所有處理程序嗎?
@@ -3643,107 +3643,107 @@ No will choose: %2
終止全部並不再詢問
-
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.Sandboxie-Plus 已於便攜模式中啟動,需建立必要的服務。這將需要管理員權限。
-
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.注意: 另一個代理 (可能是 SbieCtrl.exe) 已經在管理這個 Sandboxie 工作階段,請先關閉其他代理並重新連線進行接管控制。
-
+ Executing maintenance operation, please wait...正在執行維護作業,請稍候...
-
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?請確認是否要重設已隱藏的訊息框 (選「是」),或者僅重設所有日誌訊息 (選「否」)?
-
+ The changes will be applied automatically whenever the file gets saved.每當檔案儲存後更改將自動套用。
-
+ The changes will be applied automatically as soon as the editor is closed.變更將在編輯器關閉後自動提交。
-
+ Error Status: 0x%1 (%2)錯誤程式碼: 0x%1 (%2)
-
+ Unknown未知
-
+ A sandbox must be emptied before it can be deleted.刪除沙箱前必須先清空。
-
+ Failed to copy box data files複製沙箱資料檔案失敗
-
+ Failed to remove old box data files移除舊沙箱資料檔案失敗
-
+ Unknown Error Status: 0x%1未知錯誤狀態: 0x%1
-
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?是否在沙箱化或非沙箱化網路瀏覽器中開啟 %1?
-
+ Sandboxed沙箱化
-
+ Unsandboxed非沙箱化
-
+ Case Sensitive區分大小寫
-
+ RegExp正規表示式
-
+ Highlight醒目提示
-
+ Close關閉
-
+ &Find ...尋找(&F)...
-
+ All columns所有欄
@@ -3765,7 +3765,7 @@ No will choose: %2
Sandboxie-Plus 是著名程式 Sandboxie 自開源以來的一個延續。<br />造訪 <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> 來了解更多資訊。<br /><br />%3<br /><br />驅動版本: %1<br />功能: %2<br /><br />圖示來源 <a href="https://icons8.com">icons8.com</a>
-
+ Administrator rights are required for this operation.此操作需要管理員權限。
@@ -4007,7 +4007,7 @@ No will choose: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a><br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成為專案贊助者</a>,以取得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">贊助者憑證</a>
@@ -4066,111 +4066,111 @@ No will choose: %2
-
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">升級憑證</a>以解鎖進階功能。
-
+ The selected feature requires an <b>advanced</b> supporter certificate.選定的功能需要<b>進階</b>贊助者憑證。
-
+ <br />you need to be on the Great Patreon level or higher to unlock this feature.
-
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>所選功能集僅供專案贊助者使用。<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">成為專案贊助者</a >,並取得<a href="https://sandboxie-plus.com/go.php?to=sbie-cert">贊助者憑證</a>
-
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!您正在嘗試使用的憑證已被封鎖,這意味著其已因某些原因而失效。任何試圖使用它的行為都違反了使用條款!
-
+ The Certificate Signature is invalid!憑證數位簽章無效!
-
+ The Certificate is not suitable for this product.憑證不適用於此產品。
-
+ The Certificate is node locked.憑證已被節點鎖定。
-
+ The support certificate is not valid.
Error: %1贊助憑證無效。
錯誤: %1
-
+ The evaluation period has expired!!!The evaluation periode has expired!!!評估期已過!!!
-
-
+
+ Don't ask in future此後不再詢問
-
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?是否終止加密沙箱中的所有處理程序並將其卸載?
-
+ Please enter the duration, in seconds, for disabling Forced Programs rules.請輸入「停用強制沙箱程式規則」的持續時間 (單位:秒)。
-
+ No Recovery沒有復原檔案
-
+ No Messages沒有訊息
-
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.<b>錯誤:</b> Sandboxie-Plus 管理員 (SandMan.exe) 沒有有效的數位簽章 (SandMan.exe.sig)。請從<a href="https://sandboxie-plus.com/go.php?to=sbie-get">官方下載頁面</a>下載可信賴的版本。
-
+ Maintenance operation failed (%1)維護作業執行失敗 (%1)
-
+ Maintenance operation completed維護作業完成
-
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.在 Plus UI 中,此功能已被整合到主沙箱清單檢視中。
-
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.使用「沙箱/群組」右鍵選單,您可以將沙箱在沙箱群組之間移動。同時,您也可以透過 Alt + 方向鍵或滑鼠拖曳來整理清單。<br />另外,您可以透過右鍵選單來新增「沙箱/群組」。
-
+ You are about to edit the Templates.ini, this is generally not recommended.
This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.You are about to edit the Templates.ini, thsi is generally not recommeded.
@@ -4179,219 +4179,219 @@ This file is part of Sandboxie and all changed done to it will be reverted next
因為該檔案是 Sandboxie 的一部分並且所有的變更會在下次 Sandboxie 更新時被還原。
-
+ Sandboxie config has been reloaded已重新載入 Sandboxie 組態
-
+ Failed to execute: %1執行失敗: %1
-
+ Failed to connect to the driver連線驅動程式失敗
-
+ Failed to communicate with Sandboxie Service: %1無法與 Sandboxie 服務建立聯絡: %1
-
+ An incompatible Sandboxie %1 was found. Compatible versions: %2已發現不相容的 Sandboxie %1。相容版本為: %2
-
+ Can't find Sandboxie installation path.無法找到 Sandboxie 安裝路徑。
-
+ Failed to copy configuration from sandbox %1: %2複製沙箱組態 %1: %2 失敗
-
+ A sandbox of the name %1 already exists沙箱名稱 %1 已存在
-
+ Failed to delete sandbox %1: %2刪除沙箱 %1: %2 失敗
-
+ The sandbox name can not be longer than 32 characters.沙箱名稱不能超過 32 個字元。
-
+ The sandbox name can not be a device name.沙箱名稱不能為裝置名稱。
-
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.沙箱名稱不能為空白,只能包含字母、數字和下劃線。
-
+ Failed to terminate all processes終止所有處理程序失敗
-
+ Delete protection is enabled for the sandbox沙箱的刪除保護已被啟用
-
+ All sandbox processes must be stopped before the box content can be deleted在刪除沙箱內容之前,必須先停止沙箱內的所有處理程序
-
+ Error deleting sandbox folder: %1刪除沙箱資料夾錯誤: %1
-
+ All processes in a sandbox must be stopped before it can be renamed.A all processes in a sandbox must be stopped before it can be renamed.在重新命名沙箱前,所有處理程序都應被停止。
-
+ Failed to move directory '%1' to '%2'移動目錄 '%1' 到 '%2' 失敗
-
+ Failed to move box image '%1' to '%2'移動沙箱映像 '%1' 至 '%2' 失敗
-
+ This Snapshot operation can not be performed while processes are still running in the box.因處理程序正在沙箱中執行,此快照操作無法完成。
-
+ Failed to create directory for new snapshot為新快照建立目錄失敗
-
+ Snapshot not found未發現快照
-
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.合併快照目錄 '%1' 和 '%2' 錯誤,快照沒有被完全合併。
-
+ Failed to remove old snapshot directory '%1'移除舊快照的目錄 '%1' 失敗
-
+ Can't remove a snapshot that is shared by multiple later snapshots無法刪除由多個後續快照共享的快照
-
+ You are not authorized to update configuration in section '%1'您未被授權在 '%1' 更新組態
-
+ Failed to set configuration setting %1 in section %2: %3在 %2: %3 中設定組態選項 %1 失敗
-
+ Can not create snapshot of an empty sandbox無法為空的沙箱建立快照
-
+ A sandbox with that name already exists已存在同名沙箱
-
+ The config password must not be longer than 64 characters組態密碼不得超過 64 個字元
-
+ The operation was canceled by the user此操作已被使用者取消
-
+ The content of an unmounted sandbox can not be deletedThe content of an un mounted sandbox can not be deleted未被裝載的沙箱之內容不可被刪除
-
+ %1%1
-
+ Import/Export not available, 7z.dll could not be loaded匯入/匯出無法使用,無法載入 7z.dll
-
+ Failed to create the box archive無法建立沙箱封存檔案
-
+ Failed to open the 7z archive無法開啟 7z 封存檔案
-
+ Failed to unpack the box archive無法解壓縮沙箱封存檔案
-
+ The selected 7z file is NOT a box archive所選的 7z 檔案不是沙箱封存檔案
-
+ Operation failed for %1 item(s).%1 項操作失敗。
-
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>
-
+ This copy of Sandboxie-Plus is certified for: %1
-
+ Sandboxie-Plus is free for personal and non-commercial use.
-
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%2<br /><br />Features: %3<br /><br />Installation: %1<br />SbieDrv.sys: %4<br /> SbieSvc.exe: %5<br /> SbieDll.dll: %6<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
@@ -4400,28 +4400,28 @@ This file is part of Sandboxie and all changed done to it will be reverted next
是否在沙箱化網頁瀏覽器開啟連結 %1 ?
-
+ Remember choice for later.記住選擇供之後使用。
-
+ The supporter certificate is not valid for this build, please get an updated certificate此贊助者憑證對此版本沙箱無效,請取得更新的憑證
-
+ The supporter certificate has expired%1, please get an updated certificateThe supporter certificate is expired %1 days ago, please get an updated certificate此贊助者憑證已逾期%1,請取得更新的憑證
-
+ , but it remains valid for the current build,但它對目前組建的沙箱版本仍然有效
-
+ The supporter certificate will expire in %1 days, please get an updated certificate此贊助者憑證將在 %1 天後逾期,請取得更新的憑證
@@ -5651,36 +5651,41 @@ This file is part of Sandboxie and all changed done to it will be reverted next
+ Advanced (L)
+
+
+
+ Max Level最高等級
-
+ Level %1等級 %1
-
+ Supporter certificate required for access需要贊助者憑證以存取
-
+ Supporter certificate required for automation需要贊助者憑證以自動作業
-
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.不幸的是,此憑證對於目前版本無效,您需要取得新憑證或降級到早期版本。
-
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.儘管此憑證已逾期,但對於目前安裝的版本 Plus 功能仍保持啟用狀態。但是,您將無法再存取 Sandboxie-Live 服務,包括相容性更新和線上疑難排解資料庫。
-
+ This certificate has unfortunately expired, you need to get a new certificate.不幸的是,該憑證已逾期,您需要取得新憑證。
@@ -5787,12 +5792,12 @@ This file is part of Sandboxie and all changed done to it will be reverted next
需要贊助者憑證
-
+ Run &Un-Sandboxed在沙箱外執行(&U)
-
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.這看起來不像是一份憑證。請輸入完整的憑證,而不僅僅是其中的一部分。
@@ -5805,7 +5810,7 @@ This file is part of Sandboxie and all changed done to it will be reverted next
很不幸此憑證已廢止。
-
+ Thank you for supporting the development of Sandboxie-Plus.感謝您對 Sandboxie-Plus 開發工作的支持。
@@ -5814,88 +5819,88 @@ This file is part of Sandboxie and all changed done to it will be reverted next
此贊助者憑證無效。
-
+ Update Available更新可用
-
+ Installed已安裝
-
+ by %1by %1
-
+ (info website)(資訊網站)
-
+ This Add-on is mandatory and can not be removed.此附加元件具有強制性且不可被移除。
-
-
+
+ Select Directory選擇目錄
-
+ <a href="check">Check Now</a><a href="check">立即檢查</a>
-
+ Please enter the new configuration password.請輸入新組態密碼。
-
+ Please re-enter the new configuration password.請再次輸入新組態密碼。
-
+ Passwords did not match, please retry.密碼不匹配,請重新輸入。
-
+ Process處理程序
-
+ Folder資料夾
-
+ Please enter a program file name請輸入一個程式檔案名稱
-
+ Please enter the template identifier請輸入範本識別碼
-
+ Error: %1錯誤: %1
-
+ Do you really want to delete the selected local template(s)?要刪除所選取的本地範本嗎?
-
+ %1 (Current)%1 (目前)
@@ -8710,27 +8715,27 @@ Please note that this values are currently user specific and saved globally for
QPlatformTheme
-
+ OK確定
-
+ Apply套用
-
+ Cancel取消
-
+ &Yes是(&Y)
-
+ &No否(&N)