This commit is contained in:
DavidXanatos 2022-09-22 17:56:24 +02:00
parent aadd97d81f
commit 105ec7594c
2 changed files with 5 additions and 2 deletions

View File

@ -7,6 +7,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.3.5 / 5.58.5] - 2022-09-19
### Added
- added localization to windows 11 shell menu [#2229](https://github.com/sandboxie-plus/Sandboxie/issues/2229)
### Changed
- improved recovery window behavioure [#2266](https://github.com/sandboxie-plus/Sandboxie/issues/2266)

View File

@ -367,8 +367,8 @@ void CSettingsWindow__AddContextMenu(bool bAlwaysClassic)
if (CurrentVersion.value("CurrentBuild").toInt() >= 22000 && !bAlwaysClassic) // Windows 11
{
QSettings MyReg("HKEY_CURRENT_USER\\SOFTWARE\\Xanasoft\\Sandboxie-Plus\\SbieShellExt\\Lang", QSettings::NativeFormat);
MyReg.setValue("Open Sandboxed", CSettingsWindow::tr("Open Sandboxed"));
MyReg.setValue("Explore Sandboxed", CSettingsWindow::tr("Explore Sandboxed"));
MyReg.setValue("Open Sandboxed", CSettingsWindow::tr("Run &Sandboxed"));
MyReg.setValue("Explore Sandboxed", CSettingsWindow::tr("Run &Sandboxed"));
QDir::setCurrent(QCoreApplication::applicationDirPath());
QProcess Proc;