Exemplo n.º 1
0
        public RestoreForm(InternalStorage storage):this()
        {
            _storage = storage;

            this.Text = Utils.LanguageSupport.Instance.GetTranslation(STR_TITLE);
            label1.Text = Utils.LanguageSupport.Instance.GetTranslation(STR_BACKUPFOLDER);
            label2.Text = Utils.LanguageSupport.Instance.GetTranslation(STR_BACKUPS);
            label3.Text = Utils.LanguageSupport.Instance.GetTranslation(STR_RESTOREFOLDER);
            button2.Text = Utils.LanguageSupport.Instance.GetTranslation(STR_OK);
            listView1.Columns[0].Text = Utils.LanguageSupport.Instance.GetTranslation(STR_FILE);
            listView1.Columns[1].Text = Utils.LanguageSupport.Instance.GetTranslation(STR_DATE);
            listView1.Columns[2].Text = Utils.LanguageSupport.Instance.GetTranslation(STR_PATH);

            textBox1.Text = PluginSettings.Instance.BackupFolder ?? "";
        }
Exemplo n.º 2
0
        public RestoreForm(InternalStorage storage) : this()
        {
            _storage = storage;

            this.Text    = Utils.LanguageSupport.Instance.GetTranslation(STR_TITLE);
            label1.Text  = Utils.LanguageSupport.Instance.GetTranslation(STR_BACKUPFOLDER);
            label2.Text  = Utils.LanguageSupport.Instance.GetTranslation(STR_BACKUPS);
            label3.Text  = Utils.LanguageSupport.Instance.GetTranslation(STR_RESTOREFOLDER);
            button2.Text = Utils.LanguageSupport.Instance.GetTranslation(STR_OK);
            listView1.Columns[0].Text = Utils.LanguageSupport.Instance.GetTranslation(STR_FILE);
            listView1.Columns[1].Text = Utils.LanguageSupport.Instance.GetTranslation(STR_DATE);
            listView1.Columns[2].Text = Utils.LanguageSupport.Instance.GetTranslation(STR_PATH);

            textBox1.Text = PluginSettings.Instance.BackupFolder ?? "";
        }