add shared template selection
The number of available shared templates has been increased to 10. You can now select from a broader range using the shared template selection list. To update the names displayed in the list, simply adjust the "Tmpl.Title" setting within each template.
This commit is contained in:
parent
4f64b14ee6
commit
9191417a68
|
@ -13,6 +13,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
- added a question box to ask for Sandbox Import Location for [#4169](https://github.com/sandboxie-plus/Sandboxie/issues/4169)
|
||||
- added UI option to configure DropConHostIntegrity
|
||||
- added "HideNetworkAdapterMAC"(bool) return random value when applications tries to get network adapter mac address
|
||||
- added shared template selection to the Shared Template feature in the advanced options of the New Box Wizard [#4199](https://github.com/sandboxie-plus/Sandboxie/issues/4199)
|
||||
- The number of available shared templates has been increased to 10
|
||||
- To update the names displayed in the list, simply adjust the "Tmpl.Title" setting within each template
|
||||
|
||||
### Fixed
|
||||
- fixed and improved HideDiskSerialNumber option causes applications to crash [#4185](https://github.com/sandboxie-plus/Sandboxie/issues/4185)
|
||||
|
|
|
@ -100,12 +100,18 @@ SB_STATUS CNewBoxWizard::TryToCreateBox()
|
|||
// SharedTemplate
|
||||
QElapsedTimer timer;
|
||||
timer.start();
|
||||
const QString templateName = "SharedTemplate";
|
||||
|
||||
int SharedTemplateIndex = field("sharedTemplateIndex").toInt();
|
||||
const QString templateName = (SharedTemplateIndex == 0)
|
||||
? QString("SharedTemplate")
|
||||
: QString("SharedTemplate_%1").arg(SharedTemplateIndex);
|
||||
const QString templateFullName = "Template_Local_" + templateName;
|
||||
const QString templateSettings = theAPI->SbieIniGetEx(templateFullName, "");
|
||||
const QStringList templateSettingsLines = templateSettings.split(QRegularExpression(QStringLiteral("[\r\n]")), Qt::SkipEmptyParts);
|
||||
const QString templateComment = tr("Add your settings after this line.");
|
||||
const QString templateTitle = tr("Shared Template");
|
||||
const QString templateTitle = (SharedTemplateIndex == 0)
|
||||
? tr("Shared Template")
|
||||
: tr("Shared Template") + " " + QString::number(SharedTemplateIndex);
|
||||
const QString boxSettings = theAPI->SbieIniGetEx(BoxName, "");
|
||||
const QStringList boxSettingsLines = boxSettings.split(QRegularExpression(QStringLiteral("[\r\n]")), Qt::SkipEmptyParts);
|
||||
const QStringList SPECIAL_SETTINGS = { "BorderColor", "BoxIcon", "ConfigLevel", "CopyLimitKb" };
|
||||
|
@ -896,22 +902,68 @@ CAdvancedPage::CAdvancedPage(QWidget *parent)
|
|||
QString SharedTemplateTip1 = tr("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.");
|
||||
QString SharedTemplateTip2 = tr("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.");
|
||||
QString SharedTemplateTip3 = tr("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.");
|
||||
QComboBox* pSharedTemplate = new QComboBox();
|
||||
pSharedTemplate->addItem(tr("Disabled"));
|
||||
pSharedTemplate->setItemData(0, SharedTemplateTip0, Qt::ToolTipRole);
|
||||
pSharedTemplate->addItem(tr("Use as a template"));
|
||||
pSharedTemplate->setItemData(1, SharedTemplateTip1, Qt::ToolTipRole);
|
||||
pSharedTemplate->addItem(tr("Append to the configuration"));
|
||||
pSharedTemplate->setItemData(2, SharedTemplateTip2, Qt::ToolTipRole);
|
||||
pSharedTemplate->addItem(tr("Remove defaults if set"));
|
||||
pSharedTemplate->setItemData(3, SharedTemplateTip3, Qt::ToolTipRole);
|
||||
layout->addWidget(pSharedTemplate, row++, 2);
|
||||
pSharedTemplate->setCurrentIndex(theConf->GetInt("BoxDefaults/SharedTemplate", 0));
|
||||
m_pSharedTemplate = new QComboBox();
|
||||
m_pSharedTemplate->addItem(tr("Disabled"));
|
||||
m_pSharedTemplate->setItemData(0, SharedTemplateTip0, Qt::ToolTipRole);
|
||||
m_pSharedTemplate->addItem(tr("Use as a template"));
|
||||
m_pSharedTemplate->setItemData(1, SharedTemplateTip1, Qt::ToolTipRole);
|
||||
m_pSharedTemplate->addItem(tr("Append to the configuration"));
|
||||
m_pSharedTemplate->setItemData(2, SharedTemplateTip2, Qt::ToolTipRole);
|
||||
m_pSharedTemplate->addItem(tr("Remove defaults if set"));
|
||||
m_pSharedTemplate->setItemData(3, SharedTemplateTip3, Qt::ToolTipRole);
|
||||
layout->addWidget(m_pSharedTemplate, row++, 2);
|
||||
m_pSharedTemplate->setCurrentIndex(theConf->GetInt("BoxDefaults/SharedTemplate", 0));
|
||||
layout->addItem(new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum), 0, 4, 1, 1);
|
||||
registerField("sharedTemplate", pSharedTemplate);
|
||||
registerField("sharedTemplate", m_pSharedTemplate);
|
||||
|
||||
QLabel* pSharedTemplateIndexLbl = new QLabel(tr("Shared template selection"), this);
|
||||
layout->addWidget(pSharedTemplateIndexLbl, row, 1);
|
||||
|
||||
m_pSharedTemplateIndex = new QComboBox();
|
||||
QStringList templateOptions;
|
||||
QStringList templateToolTips;
|
||||
|
||||
for (int i = 0; i <= 9; ++i) {
|
||||
QString templateName = (i == 0)
|
||||
? QString("SharedTemplate")
|
||||
: QString("SharedTemplate_%1").arg(i);
|
||||
QString templateFullName = "Template_Local_" + templateName;
|
||||
QString templateTitle = theAPI->SbieIniGetEx(templateFullName, "Tmpl.Title");
|
||||
|
||||
// Determine the template name, including the index if not zero
|
||||
QString templateNameCustom = templateTitle.isEmpty()
|
||||
? (i == 0 ? SharedTemplateName : SharedTemplateName + " " + QString::number(i))
|
||||
: templateTitle;
|
||||
|
||||
templateOptions << templateNameCustom;
|
||||
|
||||
// Set tooltip text using the combined template name
|
||||
QString toolTipText = tr("This option specifies the template to be used in shared template mode. (%1)").arg(templateFullName);
|
||||
templateToolTips << toolTipText;
|
||||
}
|
||||
|
||||
// Set options to the combobox
|
||||
m_pSharedTemplateIndex->addItems(templateOptions);
|
||||
|
||||
// Set tooltips for each item
|
||||
for (int i = 0; i < templateOptions.size(); ++i) {
|
||||
m_pSharedTemplateIndex->setItemData(i, templateToolTips[i], Qt::ToolTipRole);
|
||||
}
|
||||
|
||||
layout->addWidget(m_pSharedTemplateIndex, row++, 2);
|
||||
m_pSharedTemplateIndex->setCurrentIndex(theConf->GetInt("BoxDefaults/SharedTemplateIndex", 0));
|
||||
registerField("sharedTemplateIndex", m_pSharedTemplateIndex);
|
||||
|
||||
|
||||
setLayout(layout);
|
||||
|
||||
// Connect the combo box signal to the slot
|
||||
connect(m_pSharedTemplate, qOverload<int>(&QComboBox::currentIndexChanged),
|
||||
this, &CAdvancedPage::OnSharedTemplateIndexChanged);
|
||||
|
||||
// Initial call to set the state based on the default index
|
||||
OnSharedTemplateIndexChanged(m_pSharedTemplate->currentIndex());
|
||||
|
||||
|
||||
int size = 16.0;
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
|
@ -920,6 +972,14 @@ CAdvancedPage::CAdvancedPage(QWidget *parent)
|
|||
AddIconToLabel(pBoxLabel, CSandMan::GetIcon("Advanced").pixmap(size,size));
|
||||
}
|
||||
|
||||
void CAdvancedPage::OnSharedTemplateIndexChanged(int index)
|
||||
{
|
||||
if (m_pSharedTemplateIndex) {
|
||||
bool enable = (index != 0);
|
||||
m_pSharedTemplateIndex->setEnabled(enable);
|
||||
}
|
||||
}
|
||||
|
||||
int CAdvancedPage::nextId() const
|
||||
{
|
||||
return CNewBoxWizard::Page_Summary;
|
||||
|
@ -1035,6 +1095,7 @@ bool CSummaryPage::validatePage()
|
|||
theConf->SetValue("BoxDefaults/ImagesProtection", field("imagesProtection").toBool());
|
||||
theConf->SetValue("BoxDefaults/CoverBoxedWindows", field("coverBoxedWindows").toBool());
|
||||
theConf->SetValue("BoxDefaults/SharedTemplate", field("sharedTemplate").toInt());
|
||||
theConf->SetValue("BoxDefaults/SharedTemplateIndex", field("sharedTemplateIndex").toInt());
|
||||
}
|
||||
|
||||
theConf->SetValue("Options/InstantBoxWizard", m_pSetInstant->isChecked());
|
||||
|
|
|
@ -145,7 +145,12 @@ public:
|
|||
void initializePage() override;
|
||||
bool validatePage() override;
|
||||
|
||||
private slots:
|
||||
void OnSharedTemplateIndexChanged(int index);
|
||||
|
||||
private:
|
||||
QComboBox* m_pSharedTemplate;
|
||||
QComboBox* m_pSharedTemplateIndex;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -131,42 +131,42 @@
|
|||
<context>
|
||||
<name>CAdvancedPage</name>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="861"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="867"/>
|
||||
<source>Advanced Sandbox options</source>
|
||||
<translation>Gelişmiş Korumalı Alan Seçenekleri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="862"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="868"/>
|
||||
<source>On this page advanced sandbox options can be configured.</source>
|
||||
<translation>Bu sayfada gelişmiş korumalı alan seçenekleri yapılandırılabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="874"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="880"/>
|
||||
<source>Prevent sandboxed programs on the host from loading sandboxed DLLs</source>
|
||||
<translation>Sistemde yüklü korumalı alanda çalışan işlemlerin alan içinden DLL yüklemesini önle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="875"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="881"/>
|
||||
<source>This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.</source>
|
||||
<translation>Bu özellik, korumalı alan konumundan çalışan işlemlerin ana sistem konumundan çalışan işlemlere veri yazmasını ve hatta onları başlatmasını da engellediği için uyumluluğu azaltabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="882"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="888"/>
|
||||
<source>This feature can cause a decline in the user experience because it also prevents normal screenshots.</source>
|
||||
<translation>Bu özellik, normal ekran görüntüsü işlevselliğini de engelleyerek kullanıcı deneyimini potansiyel olarak olumsuz etkileyebilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="887"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="893"/>
|
||||
<source>Shared Template</source>
|
||||
<translation>Paylaşımlı Şablon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="888"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="894"/>
|
||||
<source>Shared template mode</source>
|
||||
<translation>Paylaşımlı şablon modu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="889"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="895"/>
|
||||
<source>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.
|
||||
|
@ -174,52 +174,62 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
|
|||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="895"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="901"/>
|
||||
<source>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.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="896"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="902"/>
|
||||
<source>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.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="897"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="903"/>
|
||||
<source>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.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="898"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="904"/>
|
||||
<source>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.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="906"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="912"/>
|
||||
<source>Remove defaults if set</source>
|
||||
<translation>Ayarlıysa varsayılanları kaldır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="900"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="919"/>
|
||||
<source>Shared template selection</source>
|
||||
<translation>Paylaşımlı şablon seçimi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="941"/>
|
||||
<source>This option specifies the template to be used in shared template mode. (%1)</source>
|
||||
<translation>Bu seçenek, paylaşımlı şablon modunda kullanılacak şablonu belirtir. (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="906"/>
|
||||
<source>Disabled</source>
|
||||
<translation>Devre dışı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="867"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="873"/>
|
||||
<source>Advanced Options</source>
|
||||
<translation>Gelişmiş Seçenekler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="881"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="887"/>
|
||||
<source>Prevent sandboxed windows from being captured</source>
|
||||
<translation>Korumalı alandaki pencerelerin yakalanmasını önle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="902"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="908"/>
|
||||
<source>Use as a template</source>
|
||||
<translation>Şablon olarak kullan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="904"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="910"/>
|
||||
<source>Append to the configuration</source>
|
||||
<translation>Yapılandırmaya ekle</translation>
|
||||
</message>
|
||||
|
@ -369,38 +379,38 @@ Leet (L337) Konuşma değişikliklerinin uygulanmasıyla 512 bit'e çıkar
|
|||
<context>
|
||||
<name>CBoxTypePage</name>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="313"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="319"/>
|
||||
<source>Create new Sandbox</source>
|
||||
<translation>Yeni Korumalı Alan Oluştur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="325"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="331"/>
|
||||
<source>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. </source>
|
||||
<translation>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. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="328"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="334"/>
|
||||
<source>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.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="339"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="345"/>
|
||||
<source>Enter box name:</source>
|
||||
<translatorcomment>'Sandbox' için 'Korumalı Alan' kullanıldığından dolayı 'Box' için de 'Alan' kullanıldı.</translatorcomment>
|
||||
<translation>Alan adı girin:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="354"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="360"/>
|
||||
<source>Select box type:</source>
|
||||
<translation>Alan türü seçin:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="394"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="400"/>
|
||||
<source><a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a></source>
|
||||
<translation><a href="sbie://docs/privacy-mode">Veri Korumalı</a> <a href="sbie://docs/security-mode">Güçlendirilmiş</a> Alan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="395"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="401"/>
|
||||
<source>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.</source>
|
||||
|
@ -409,58 +419,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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="398"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="404"/>
|
||||
<source><a href="sbie://docs/security-mode">Security Hardened</a> Sandbox</source>
|
||||
<translation><a href="sbie://docs/security-mode">Güvenliği Güçlendirilmiş</a> Alan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="399"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="405"/>
|
||||
<source>This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="400"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="406"/>
|
||||
<source>Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a></source>
|
||||
<translation><a href="sbie://docs/privacy-mode">Veri Korumalı</a> Alan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="401"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="407"/>
|
||||
<source>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.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="403"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="409"/>
|
||||
<source>Standard Sandbox</source>
|
||||
<translation>Standart Korumalı Alan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="404"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="410"/>
|
||||
<source>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.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="406"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="412"/>
|
||||
<source><a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a></source>
|
||||
<translation><a href="sbie://docs/privacy-mode">Veri Korumalı</a> <a href="sbie://docs/compartment-mode">Uygulama Bölmesi</a> Alanı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="407"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="410"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="413"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="416"/>
|
||||
<source>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.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="409"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="415"/>
|
||||
<source><a href="sbie://docs/compartment-mode">Application Compartment</a> Box</source>
|
||||
<translation><a href="sbie://docs/compartment-mode">Uygulama Bölmesi</a> Alanı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="419"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="425"/>
|
||||
<source>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.</source>
|
||||
|
@ -469,62 +479,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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="441"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="447"/>
|
||||
<source>Hardened Sandbox with Data Protection</source>
|
||||
<translation>Veri Korumalı Güçlendirilmiş Alan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="442"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="448"/>
|
||||
<source>Security Hardened Sandbox</source>
|
||||
<translation>Güvenliği Güçlendirilmiş Alan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="443"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="449"/>
|
||||
<source>Sandbox with Data Protection</source>
|
||||
<translation>Veri Korumalı Alan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="444"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="450"/>
|
||||
<source>Standard Isolation Sandbox (Default)</source>
|
||||
<translation>Standart Yalıtımlı Korumalı Alan (Varsayılan)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="446"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="452"/>
|
||||
<source>Application Compartment with Data Protection</source>
|
||||
<translation>Veri Korumalı Uygulama Bölmesi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="447"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="453"/>
|
||||
<source>Application Compartment Box</source>
|
||||
<translation>Uygulama Bölmesi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="448"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="454"/>
|
||||
<source>Confidential Encrypted Box</source>
|
||||
<translation>Gizli Şifreli Alan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="573"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="579"/>
|
||||
<source>To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?</source>
|
||||
<translation>Şifreli alanları kullanmak için ImDisk sürücüsünü yüklemeniz gerekir. Şimdi indirip yüklemek ister misiniz?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="466"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="472"/>
|
||||
<source>Remove after use</source>
|
||||
<translation>Kullanıldıktan sonra kaldır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="418"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="424"/>
|
||||
<source><a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a></source>
|
||||
<translation>Alan içeriğini <a href="sbie://docs/boxencryption">Şifrele</a> ve <a href="sbie://docs/black-box">Gizle</a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="467"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="473"/>
|
||||
<source>After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.</source>
|
||||
<translation>Alandaki son işlem sona erdikten sonra alandaki tüm verilerle birlikte alanın kendisi de kaldırılacaktır.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="472"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="478"/>
|
||||
<source>Configure advanced options</source>
|
||||
<translation>Gelişmiş seçenekleri yapılandır</translation>
|
||||
</message>
|
||||
|
@ -884,74 +894,74 @@ Bu sihirbazı kapatmak için Son'a tıklayabilirsiniz.</translation>
|
|||
<context>
|
||||
<name>CFilesPage</name>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="591"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="597"/>
|
||||
<source>Sandbox location and behavior</source>
|
||||
<translation>Korumalı Alan Konumu ve Davranışı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="592"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="598"/>
|
||||
<source>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.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="597"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="603"/>
|
||||
<source>Sandboxed Files</source>
|
||||
<translation>Korumalı Alan Dosyaları</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="620"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="626"/>
|
||||
<source>Select Directory</source>
|
||||
<translation>Dizin Seç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="628"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="634"/>
|
||||
<source>Virtualization scheme</source>
|
||||
<translation>Sanallaştırma şeması</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="632"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="638"/>
|
||||
<source>Version 1</source>
|
||||
<translation>Sürüm 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="633"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="639"/>
|
||||
<source>Version 2</source>
|
||||
<translation>Sürüm 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="639"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="645"/>
|
||||
<source>Separate user folders</source>
|
||||
<translation>Ayrı kullanıcı klasörleri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="644"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="650"/>
|
||||
<source>Use volume serial numbers for drives</source>
|
||||
<translation>Sürücüler için birim seri numaralarını kullan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="649"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="655"/>
|
||||
<source>Auto delete content when last process terminates</source>
|
||||
<translation>Son işlem sona erdiğinde içeriği otomatik olarak sil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="656"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="662"/>
|
||||
<source>Enable Immediate Recovery of files from recovery locations</source>
|
||||
<translation>Kurtarma konumlarındaki dosyalar için Anında Kurtarmayı etkinleştir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="691"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="697"/>
|
||||
<source>The selected box location is not a valid path.</source>
|
||||
<translation>Seçilen alan konumu geçerli bir yol değildir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="696"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="702"/>
|
||||
<source>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?</source>
|
||||
<translation>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?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="701"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="707"/>
|
||||
<source>The selected box location is not placed on a currently available drive.</source>
|
||||
<translation>Seçilen alan konumu şu anda kullanılabilir bir sürücüde bulunmuyor.</translation>
|
||||
</message>
|
||||
|
@ -1086,83 +1096,83 @@ Her kullanıcının korumalı alanını kendi klasörüne kaydetmek için %USER%
|
|||
<context>
|
||||
<name>CIsolationPage</name>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="717"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="723"/>
|
||||
<source>Sandbox Isolation options</source>
|
||||
<translation>Korumalı Alan Yalıtımı Seçenekleri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="718"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="724"/>
|
||||
<source>On this page sandbox isolation options can be configured.</source>
|
||||
<translation>Bu sayfada korumalı alan yalıtım seçenekleri yapılandırılabilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="723"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="729"/>
|
||||
<source>Network Access</source>
|
||||
<translation>Ağ Erişimi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="731"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="737"/>
|
||||
<source>Allow network/internet access</source>
|
||||
<translation>Ağ/internet erişimine izin ver</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="732"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="738"/>
|
||||
<source>Block network/internet by denying access to Network devices</source>
|
||||
<translation>Ağ cihazlarına erişimi reddederek ağı/interneti engelleyin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="734"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="740"/>
|
||||
<source>Block network/internet using Windows Filtering Platform</source>
|
||||
<translation>Windows Filtreleme Platformunu kullanarak ağı/interneti engelle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="740"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="746"/>
|
||||
<source>Allow access to network files and folders</source>
|
||||
<translation>Ağ dosyalarına ve klasörlerine erişime izin ver</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="741"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="768"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="747"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="774"/>
|
||||
<source>This option is not recommended for Hardened boxes</source>
|
||||
<translation>Güçlendirilmiş alanlar için bu seçenek önerilmez</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="746"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="752"/>
|
||||
<source>Prompt user whether to allow an exemption from the blockade</source>
|
||||
<translation>Ağ engellemesinden muafiyete izin verilip verilmeyeceğini sor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="752"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="758"/>
|
||||
<source>Admin Options</source>
|
||||
<translation>Yönetici Seçenekleri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="756"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="762"/>
|
||||
<source>Drop rights from Administrators and Power Users groups</source>
|
||||
<translation>Yöneticiler ve Yetkili Kullanıcılar grupları haklarını bırak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="762"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="768"/>
|
||||
<source>Make applications think they are running elevated</source>
|
||||
<translation>Uygulamaların yetkilendirilmiş çalıştıklarını düşünmelerini sağla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="767"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="773"/>
|
||||
<source>Allow MSIServer to run with a sandboxed system token</source>
|
||||
<translation>MSIServer'ın korumalı alan sistem belirteci ile çalışmasına izin ver</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="774"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="780"/>
|
||||
<source>Box Options</source>
|
||||
<translation>Alan Seçenekleri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="778"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="784"/>
|
||||
<source>Use a Sandboxie login instead of an anonymous token</source>
|
||||
<translation>Anonim kullanıcı yerine Sandboxie oturum açma belirteci kullan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="779"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="785"/>
|
||||
<source>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.</source>
|
||||
<translation>Ö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.</translation>
|
||||
</message>
|
||||
|
@ -1221,23 +1231,24 @@ Her kullanıcının korumalı alanını kendi klasörüne kaydetmek için %USER%
|
|||
<translation>Bu korumalı alanın içeriği şifrelenmiş bir konteyner dosyasına yerleştirilecektir. Lütfen konteyner dosyasında oluşabilecek herhangi bir bozulmanın içeriğin tamamını kalıcı olarak erişilemez hale getireceğini unutmayın. Bu bozulma bir BSOD (Mavi Ekran), bir depolama donanım yazılımı arızası veya kötü amaçlı bir uygulamanın rastgele dosyaların üzerine yazması sonucunda meydana gelebilir. Bu özellik katı bir <b>Yedekleme Yoksa Merhamet Yok</b> politikası kapsamında sağlanır. Şifrelenmiş bir alana kaydettiğiniz verilerden kullanıcı olarak SİZ KENDİNİZ sorumlusunuz. <br /><br />VERİLERİNİZİN TAM SORUMLULUĞUNU ALMAYI KABUL EDİYORSANIZ [EVET]'E TIKLAYIN, AKSİ TAKDİRDE [HAYIR]'A TIKLAYIN.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="107"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="111"/>
|
||||
<source>Add your settings after this line.</source>
|
||||
<translation>Bu satırdan sonra ayarlarınızı ekleyin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="108"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="113"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="114"/>
|
||||
<source>Shared Template</source>
|
||||
<translation>Paylaşımlı Şablon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="282"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="288"/>
|
||||
<source>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.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="82"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="285"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="291"/>
|
||||
<source>Don't show this message again.</source>
|
||||
<translation>Bu mesajı bir daha gösterme.</translation>
|
||||
</message>
|
||||
|
@ -6045,76 +6056,76 @@ Günlük eklemeden göndermeyi deneyin.</translation>
|
|||
<context>
|
||||
<name>CSummaryPage</name>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="945"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1005"/>
|
||||
<source>Create the new Sandbox</source>
|
||||
<translation>Yeni Korumalı Alanı Oluştur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="956"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1016"/>
|
||||
<source>Almost complete, click Finish to create a new sandbox and conclude the wizard.</source>
|
||||
<translation>Neredeyse tamamlandı, yeni bir korumalı alan oluşturmak ve sihirbazı tamamlamak için Bitiş'e tıklayın.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="965"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1025"/>
|
||||
<source>Save options as new defaults</source>
|
||||
<translation>Seçenekleri yeni varsayılanlar olarak kaydet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="976"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1036"/>
|
||||
<source>Skip this summary page when advanced options are not set</source>
|
||||
<translation>Gelişmiş seçenekler ayarlanmadığında bu özet sayfasını atla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="995"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1055"/>
|
||||
<source>
|
||||
This Sandbox will be saved to: %1</source>
|
||||
<translation>
|
||||
Bu Korumalı Alan şuraya kaydedilecek: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="998"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1058"/>
|
||||
<source>
|
||||
This box's content will be DISCARDED when it's closed, and the box will be removed.</source>
|
||||
<translation>
|
||||
Bu alandaki son işlem sona erdikten sonra alanın içeriği ATILACAKTIR ve alan kaldırılacaktır.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1000"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1060"/>
|
||||
<source>
|
||||
This box will DISCARD its content when its closed, its suitable only for temporary data.</source>
|
||||
<translation>
|
||||
Bu alan kapandığında kendi içeriğini ATACAKTIR, yalnızca geçici veriler için uygundur.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1002"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1062"/>
|
||||
<source>
|
||||
Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.</source>
|
||||
<translation>
|
||||
Bu alandaki işlemler internete veya yerel ağa erişemez, böylece erişilen tüm verilerin gizli kalmasını sağlar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1004"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1064"/>
|
||||
<source>
|
||||
This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.</source>
|
||||
<translation>
|
||||
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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1006"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1066"/>
|
||||
<source>
|
||||
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.</source>
|
||||
<translation>
|
||||
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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1008"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1068"/>
|
||||
<source>
|
||||
Processes in this box will be running with a custom process token indicating the sandbox they belong to.</source>
|
||||
<translation>
|
||||
Bu alandaki işlemler, ait oldukları korumalı alanı belirten özel bir işlem belirteci ile çalışacaktır.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1046"/>
|
||||
<location filename="Wizards/NewBoxWizard.cpp" line="1107"/>
|
||||
<source>Failed to create new box: %1</source>
|
||||
<translation>Yeni alan oluşturulamadı: %1</translation>
|
||||
</message>
|
||||
|
@ -7840,7 +7851,7 @@ Kısmen işaretli: Yeni oluşturulan korumalı alan belirtecine hiçbir grup ekl
|
|||
<message>
|
||||
<location filename="Forms/OptionsWindow.ui" line="1940"/>
|
||||
<source>Drop ConHost.exe Process Integrity Level</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>ConHost.exe İşlem Bütünlüğü Düzeyini Bırak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Forms/OptionsWindow.ui" line="2211"/>
|
||||
|
@ -8234,7 +8245,7 @@ Bir işlemi belirtmek için yol olarak '$:program.exe' kullanın.</tra
|
|||
<message>
|
||||
<location filename="Forms/OptionsWindow.ui" line="4939"/>
|
||||
<source>Hide Network Adapter MAC Address</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ağ Bağdaştırıcısı MAC Adresini Gizle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Forms/OptionsWindow.ui" line="5156"/>
|
||||
|
|
Loading…
Reference in New Issue