Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Belim committed Sep 19, 2020
1 parent 984a083 commit 3a9cba9
Show file tree
Hide file tree
Showing 5 changed files with 1,372 additions and 224 deletions.
7 changes: 4 additions & 3 deletions src/Privatezilla/MainWindow.cs
Expand Up @@ -4,20 +4,21 @@
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Drawing;
using System.Globalization; // Localization
using System.IO;
using System.Linq;
using System.Management.Automation;
using System.Net;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading; // Localization
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Privatezilla
{
public partial class MainWindow : Form
{

// Setting progress
private int _progress = 0;

Expand Down Expand Up @@ -95,6 +96,8 @@ public void Globalization()

public MainWindow()
{
// Uncomment lower line and add lang code to run localization test
// Thread.CurrentThread.CurrentUICulture = new CultureInfo("de");

InitializeComponent();

Expand All @@ -109,8 +112,6 @@ public MainWindow()

// GUI localization
Globalization();


}

public void InitializeSettings()
Expand Down

0 comments on commit 3a9cba9

Please sign in to comment.