Add files via upload
This commit is contained in:
parent
a410c33423
commit
fe7d69669d
2 changed files with 19 additions and 9 deletions
|
@ -97,7 +97,7 @@ namespace Privatezilla
|
|||
public MainWindow()
|
||||
{
|
||||
// Uncomment lower line and add lang code to run localization test
|
||||
// Thread.CurrentThread.CurrentUICulture = new CultureInfo("de");
|
||||
// Thread.CurrentThread.CurrentUICulture = new CultureInfo("es");
|
||||
|
||||
InitializeComponent();
|
||||
|
||||
|
@ -214,7 +214,7 @@ namespace Privatezilla
|
|||
});
|
||||
|
||||
// Settings > Microsoft Edge
|
||||
TreeNode edge = new TreeNode(Properties.Resources.rootSettingsDefender, new TreeNode[] {
|
||||
TreeNode edge = new TreeNode(Properties.Resources.rootSettingsEdge, new TreeNode[] {
|
||||
new SettingNode(new Setting.Edge.DisableAutoFillCredits()),
|
||||
new SettingNode(new Setting.Edge.EdgeBackground()),
|
||||
new SettingNode(new Setting.Edge.DisableSync()),
|
||||
|
@ -354,12 +354,12 @@ namespace Privatezilla
|
|||
|
||||
if (shouldPerform)
|
||||
{
|
||||
state.SubItems.Add(Properties.Resources.statusFailedConfigure);
|
||||
state.SubItems.Add(Properties.Resources.statusFailedConfigure); // Not configured
|
||||
state.BackColor = Color.LavenderBlush;
|
||||
}
|
||||
else
|
||||
{
|
||||
state.SubItems.Add(Properties.Resources.statusSuccessConfigure);
|
||||
state.SubItems.Add(Properties.Resources.statusSuccessConfigure); // Configured
|
||||
state.BackColor = Color.Honeydew;
|
||||
}
|
||||
|
||||
|
@ -400,12 +400,12 @@ namespace Privatezilla
|
|||
var listItem = new ListViewItem(setting.ID());
|
||||
if (result)
|
||||
{
|
||||
listItem.SubItems.Add(Properties.Resources.statusSuccessApply);
|
||||
listItem.SubItems.Add(Properties.Resources.statusSuccessApply); // Applied
|
||||
listItem.BackColor = Color.Honeydew;
|
||||
}
|
||||
else
|
||||
{
|
||||
listItem.SubItems.Add(Properties.Resources.statusFailedApply);
|
||||
listItem.SubItems.Add(Properties.Resources.statusFailedApply); // Not applied
|
||||
listItem.BackColor = Color.LavenderBlush;
|
||||
}
|
||||
|
||||
|
@ -441,12 +441,12 @@ namespace Privatezilla
|
|||
var listItem = new ListViewItem(setting.ID());
|
||||
if (result)
|
||||
{
|
||||
listItem.SubItems.Add(Properties.Resources.statusSuccessApply);
|
||||
listItem.SubItems.Add(Properties.Resources.statusSuccessApply); // Applied
|
||||
listItem.BackColor = Color.Honeydew;
|
||||
}
|
||||
else
|
||||
{
|
||||
listItem.SubItems.Add(Properties.Resources.statusFailedApply);
|
||||
listItem.SubItems.Add(Properties.Resources.statusFailedApply); // Not applied
|
||||
listItem.BackColor = Color.LavenderBlush;
|
||||
}
|
||||
|
||||
|
|
|
@ -143,9 +143,11 @@
|
|||
</data>
|
||||
<data name="columnSetting" xml:space="preserve">
|
||||
<value>Setting</value>
|
||||
<comment>TreeView</comment>
|
||||
</data>
|
||||
<data name="columnState" xml:space="preserve">
|
||||
<value>State</value>
|
||||
<comment>TreeView</comment>
|
||||
</data>
|
||||
<data name="CommunityPkg" xml:space="preserve">
|
||||
<value>Get community package</value>
|
||||
|
@ -181,6 +183,8 @@ You can also follow me on
|
|||
\ttwitter.com/builtbybel
|
||||
|
||||
(C#) 2020, Builtbybel</value>
|
||||
<comment>About the app
|
||||
Add translation credits here!</comment>
|
||||
</data>
|
||||
<data name="LblPS" xml:space="preserve">
|
||||
<value>Scripts</value>
|
||||
|
@ -203,15 +207,19 @@ You can also follow me on
|
|||
</data>
|
||||
<data name="msgPSSave" xml:space="preserve">
|
||||
<value>Please switch to code view.</value>
|
||||
<comment>Scripts (optional)</comment>
|
||||
</data>
|
||||
<data name="msgPSSelect" xml:space="preserve">
|
||||
<value>Please select a script.</value>
|
||||
<comment>Scripts (optional)</comment>
|
||||
</data>
|
||||
<data name="msgPSSuccess" xml:space="preserve">
|
||||
<value>has been successfully executed</value>
|
||||
<comment>Scripts (optional)</comment>
|
||||
</data>
|
||||
<data name="PSBack" xml:space="preserve">
|
||||
<value>Back</value>
|
||||
<comment>GUI</comment>
|
||||
</data>
|
||||
<data name="PSImport" xml:space="preserve">
|
||||
<value>Import script</value>
|
||||
|
@ -219,6 +227,7 @@ You can also follow me on
|
|||
</data>
|
||||
<data name="PSInfo" xml:space="preserve">
|
||||
<value>What does this template/script do?\r\n</value>
|
||||
<comment>Scripting menu</comment>
|
||||
</data>
|
||||
<data name="PSMarketplace" xml:space="preserve">
|
||||
<value>Visit Marketplace</value>
|
||||
|
@ -230,6 +239,7 @@ You can also follow me on
|
|||
</data>
|
||||
<data name="PSViewCode" xml:space="preserve">
|
||||
<value>View code</value>
|
||||
<comment>GUI</comment>
|
||||
</data>
|
||||
<data name="releaseUnofficial" xml:space="preserve">
|
||||
<value>You are using an unoffical version of Privatezilla.</value>
|
||||
|
@ -728,6 +738,6 @@ Select a script to view it's description.
|
|||
To check the code for vulnerabilities click on "View code".
|
||||
|
||||
To obtain new objects (templates, scripts etc.) visit the Marketplace in the upper right menu. Privatezilla uses the Marketplace of the app "SharpApp". Since this app is from the same developer and the scripting is based upon Powershell, they are also compatible with each other.</value>
|
||||
<comment>GUI</comment>
|
||||
<comment>GUI </comment>
|
||||
</data>
|
||||
</root>
|
Loading…
Add table
Reference in a new issue