Add files via upload

This commit is contained in:
Belim 2020-09-18 23:54:26 +02:00 committed by GitHub
parent b97a2cf352
commit fda935ac5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 40 additions and 11 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 828 B

View file

@ -36,6 +36,9 @@ namespace Privatezilla
private readonly string _psSuccess = Properties.Resources.msgPSSuccess; private readonly string _psSuccess = Properties.Resources.msgPSSuccess;
private readonly string _psSave = Properties.Resources.msgPSSave; private readonly string _psSave = Properties.Resources.msgPSSave;
private readonly string _infoApp = "Privatezilla" + "\nVersion " + Program.GetCurrentVersionTostring() + " (Phoenix)\r\n" +
Properties.Resources.infoApp.Replace("\\t", "\t");
// Setting progress // Setting progress
private int _progress = 0; private int _progress = 0;
@ -501,14 +504,7 @@ namespace Privatezilla
private void Info_Click(object sender, EventArgs e) private void Info_Click(object sender, EventArgs e)
{ {
MessageBox.Show("Privatezilla" + "\nVersion " + Program.GetCurrentVersionTostring() + " (Phoenix)" + MessageBox.Show(_infoApp, "Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
"\n\nThe open source Windows 10 privacy settings app.\n\nThis is in no way related to Microsoft and a completely independent project.\r\n\n" +
"All infos and credits about this project on\n" +
"\tgithub.com/builtbybel/privatezilla\r\n\n" +
"You can also follow me on\n" +
"\ttwitter.com/builtbybel\r\n\n" +
"(C#) 2020, Builtbybel",
"Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
} }
private void LblMainMenu_Click(object sender, EventArgs e) private void LblMainMenu_Click(object sender, EventArgs e)

View file

@ -38,7 +38,7 @@
<ApplicationManifest>app.manifest</ApplicationManifest> <ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<ApplicationIcon>privatezilla.ico</ApplicationIcon> <ApplicationIcon>AppIcon.ico</ApplicationIcon>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'x64|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'x64|AnyCPU'">
<OutputPath>bin\x64\</OutputPath> <OutputPath>bin\x64\</OutputPath>
@ -176,9 +176,8 @@
<ItemGroup> <ItemGroup>
<None Include="App.config" /> <None Include="App.config" />
</ItemGroup> </ItemGroup>
<ItemGroup />
<ItemGroup> <ItemGroup>
<Content Include="privatezilla.ico" /> <Content Include="AppIcon.ico" />
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project> </Project>

View file

@ -172,6 +172,26 @@ namespace Privatezilla.Properties {
} }
} }
/// <summary>
/// Sucht eine lokalisierte Zeichenfolge, die
///The open source Windows 10 privacy settings app.
///
///This is in no way related to Microsoft and a completely independent project.
///
///All infos and credits about this project on
///\tgithub.com/builtbybel/privatezilla
///
///You can also follow me on
///\ttwitter.com/builtbybel
///
///(C#) 2020, Builtbybel ähnelt.
/// </summary>
internal static string infoApp {
get {
return ResourceManager.GetString("infoApp", resourceCulture);
}
}
/// <summary> /// <summary>
/// Sucht eine lokalisierte Zeichenfolge, die Scripts ähnelt. /// Sucht eine lokalisierte Zeichenfolge, die Scripts ähnelt.
/// </summary> /// </summary>

View file

@ -168,6 +168,20 @@
<value>Info</value> <value>Info</value>
<comment>Main menu</comment> <comment>Main menu</comment>
</data> </data>
<data name="infoApp" xml:space="preserve">
<value>
The open source Windows 10 privacy settings app.
This is in no way related to Microsoft and a completely independent project.
All infos and credits about this project on
\tgithub.com/builtbybel/privatezilla
You can also follow me on
\ttwitter.com/builtbybel
(C#) 2020, Builtbybel</value>
</data>
<data name="LblPS" xml:space="preserve"> <data name="LblPS" xml:space="preserve">
<value>Scripts</value> <value>Scripts</value>
<comment>GUI</comment> <comment>GUI</comment>