From 96ca94a3aca49e9656e4581742c1c614214426c6 Mon Sep 17 00:00:00 2001 From: "Michael J. Seiferling" Date: Tue, 22 Dec 2015 13:31:15 -0600 Subject: [PATCH] Moved strings to resource (frmAddWizard) --- GBM/Forms/frmAddWizard.vb | 100 ++- GBM/Forms/frmAdvancedImport.vb | 5 + GBM/Managers/mgrCommon.vb | 8 +- GBM/My Project/Resources.Designer.vb | 951 +++++++++++++++++++++------ GBM/My Project/Resources.resx | 185 +++++- 5 files changed, 1009 insertions(+), 240 deletions(-) diff --git a/GBM/Forms/frmAddWizard.vb b/GBM/Forms/frmAddWizard.vb index 70ad246..fbaeb0d 100644 --- a/GBM/Forms/frmAddWizard.vb +++ b/GBM/Forms/frmAddWizard.vb @@ -1,4 +1,5 @@ -Imports System.IO +Imports GBM.My.Resources +Imports System.IO Public Class frmAddWizard @@ -26,7 +27,44 @@ Public Class frmAddWizard Private eCurrentStep As eSteps = eSteps.Step1 - Private Sub FormInit() + Private Sub SetForm() + 'Set Form Name + Me.Text = frmAddWizard_FormName + + 'Set Form Text + btnCancel.Text = frmAddWizard_btnCancel + btnNext.Text = frmAddWizard_btnNext + btnBack.Text = frmAddWizard_btnBack + lblStep1Title.Text = frmAddWizard_lblStep1Title + lblDrag1.Text = frmAddWizard_lblDrag1 + lblStep1Instructions.Text = frmAddWizard_lblStep1Instructions + lblStep1Intro.Text = frmAddWizard_lblStep1Intro + lblStep2Title.Text = frmAddWizard_lblStep2Title + lblStep2Instructions.Text = frmAddWizard_lblStep2Instructions + lblDrag2.Text = frmAddWizard_lblDrag2 + btnProcessBrowse.Text = frmAddWizard_btnProcessBrowse + lblStep2Intro.Text = frmAddWizard_lblStep2Intro + lblStep3Title.Text = frmAddWizard_lblStep3Title + lblStep3Instructions.Text = frmAddWizard_lblStep3Instructions + chkTimeStamp.Text = frmAddWizard_chkTimeStamp + chkFolderSave.Text = frmAddWizard_chkFolderSave + btnSaveBrowse.Text = frmAddWizard_btnSaveBrowse + lblStep3Intro.Text = frmAddWizard_lblStep3Intro + lblIncludePathTitle.Text = frmAddWizard_lblIncludePathTitle + lblIncludePath.Text = frmAddWizard_lblIncludePath + lblFileTypes.Text = frmAddWizard_ItemsSelectedNone + btnInclude.Text = frmAddWizard_btnInclude + lblStep3aTitle.Text = frmAddWizard_lblStep3aTitle + lblStep3aInstructions.Text = frmAddWizard_lblStep3aInstructions + lblExcludePathTitle.Text = frmAddWizard_lblExcludePathTitle + lblExcludePath.Text = frmAddWizard_lblExcludePath + lblExclude.Text = frmAddWizard_ItemsSelectedNone + btnExclude.Text = frmAddWizard_btnExclude + lblStep4Title.Text = frmAddWizard_lblStep4Title + lblStep4Instructions.Text = frmAddWizard_lblStep4Instructions + lblStep5Intro.Text = frmAddWizard_lblStep5Intro + lblStep5Title.Text = frmAddWizard_lblStep5Title + chkFolderSave.Checked = True chkTimeStamp.Checked = False StepHandler() @@ -34,7 +72,7 @@ Public Class frmAddWizard Private Function StringEmptyText(ByVal sString As String) As String If sString = String.Empty Then - Return "None" + Return frmAddWizard_None Else Return sString End If @@ -69,7 +107,7 @@ Public Class frmAddWizard lstSummary.Columns(0).Width = 95 lstSummary.Columns(1).Width = 210 - sItems = {"Name", "Process", "Absolute Path", "Save Path", "Folder Backup", "Time Stamp", "Included Items", "Excluded Items"} + sItems = {frmAddWizard_Summary_Name, frmAddWizard_Summary_Process, frmAddWizard_Summary_AbsolutePath, frmAddWizard_Summary_SavePath, frmAddWizard_Summary_FolderSave, frmAddWizard_Summary_Timestamp, frmAddWizard_Summary_Include, frmAddWizard_Summary_Exclude} sValues = {sName, sProcessSummaryText, mgrCommon.BooleanYesNo(bIsAbsolute), sSavePath, mgrCommon.BooleanYesNo(bFolderBackup), mgrCommon.BooleanYesNo(bTimeStamp), StringEmptyText(sFileType), StringEmptyText(sExcludeList)} For i = 0 To sItems.Length - 1 @@ -112,11 +150,11 @@ Public Class frmAddWizard Case eSteps.Step4 btnBack.Enabled = True btnNext.Enabled = True - btnNext.Text = "&Next" + btnNext.Text = frmAddWizard_btnNext tabWizard.SelectTab(4) Case eSteps.Step5 btnBack.Enabled = True - btnNext.Text = "&Finish" + btnNext.Text = frmAddWizard_btnNext_Finish tabWizard.SelectTab(5) End Select End Sub @@ -126,7 +164,7 @@ Public Class frmAddWizard txtName.Text = mgrPath.ValidateForFileSystem(txtName.Text) Return True Else - sErrorMessage = "You must enter a valid game name." + sErrorMessage = frmAddWizard_ErrorValidName txtName.Focus() Return False End If @@ -135,25 +173,25 @@ Public Class frmAddWizard Private Function ValidateProcessPath(ByVal strPath As String, ByRef sErrorMessage As String) As Boolean If strPath = String.Empty Then - sErrorMessage = "You must select the game's executable file (.exe) to continue." + sErrorMessage = frmAddWizard_ErrorValidProcess txtProcessPath.Focus() Return False End If If Path.GetExtension(strPath.ToLower) <> ".exe" Then - sErrorMessage = "The file you selected is not an executable file." + sErrorMessage = frmAddWizard_ErrorNotAProcess txtProcessPath.Focus() Return False End If If Not Path.IsPathRooted(strPath) Then - sErrorMessage = "The path to the executable must be a full path." + sErrorMessage = frmAddWizard_ErrorBadProcessPath txtProcessPath.Focus() Return False End If If Not File.Exists(strPath) Then - sErrorMessage = "The selected executable file does not exist." + sErrorMessage = frmAddWizard_ErrorProcessNotExist txtProcessPath.Focus() Return False End If @@ -163,19 +201,19 @@ Public Class frmAddWizard Private Function ValidateSavePath(ByVal strPath As String, ByRef sErrorMessage As String) As Boolean If strPath = String.Empty Then - sErrorMessage = "You must select the game's save file path to continue." + sErrorMessage = frmAddWizard_ErrorValidSavePath txtSavePath.Focus() Return False End If If Not Directory.Exists(strPath) Then - sErrorMessage = "The folder you selected does not exist or is not a valid folder." + sErrorMessage = frmAddWizard_ErrorSavePathNotExist txtSavePath.Focus() Return False End If If Not Path.IsPathRooted(strPath) Then - sErrorMessage = "The selected path must be a full path." + sErrorMessage = frmAddWizard_ErrorBadSavePath txtSavePath.Focus() Return False End If @@ -185,7 +223,7 @@ Public Class frmAddWizard Private Function ValidateSaveType(ByVal strSaveType As String, ByRef sErrorMessage As String) If strSaveType = String.Empty Then - sErrorMessage = "You must choose items to include in the backup, or choose to save the entire folder." + sErrorMessage = frmAddWizard_ErrorValidSaveType txtFileTypes.Focus() Return False End If @@ -202,11 +240,10 @@ Public Class frmAddWizard Next If hshDupeCheck.Contains(sNewGame) Then - mgrCommon.ShowMessage("A game with this exact name and process already exists.", MsgBoxStyle.Exclamation) + mgrCommon.ShowMessage(frmAddWizard_ErrorGameDupe, MsgBoxStyle.Exclamation) Else mgrMonitorList.DoListAdd(oGameToSave) - If mgrCommon.ShowMessage(oGameToSave.Name & " has been saved." & vbCrLf & vbCrLf & - "Would you like to add tags for " & oGameToSave.Name & "?", MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then + If mgrCommon.ShowMessage(frmAddWizard_ConfirmSaveTags, New String() {oGameToSave.Name, oGameToSave.Name}, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then OpenTags(oGameToSave) End If Me.Close() @@ -330,14 +367,14 @@ Public Class frmAddWizard ReadShortcut(sTemp) File.Delete(sTemp) Catch e2 As Exception - mgrCommon.ShowMessage("An error occured working with the shortcut file." & vbCrLf & vbCrLf & e2.Message, MsgBoxStyle.Critical) + mgrCommon.ShowMessage(frmAddWizard_ErrorWithShortcut, e2.Message, MsgBoxStyle.Critical) End Try Else - mgrCommon.ShowMessage("An error occured reading the shortcut file." & vbCrLf & vbCrLf & e1.Message, MsgBoxStyle.Critical) + mgrCommon.ShowMessage(frmAddWizard_ErrorWithShortcut, e1.Message, MsgBoxStyle.Critical) End If End Try Else - mgrCommon.ShowMessage("This file is not a shorcut.", MsgBoxStyle.Information) + mgrCommon.ShowMessage(frmAddWizard_ErrorNotAShortcut, MsgBoxStyle.Information) End If End Sub @@ -353,8 +390,8 @@ Public Class frmAddWizard End If End If - sNewPath = mgrCommon.OpenFileBrowser("Choose exe file that starts the game", "exe", _ - "Executable", sDefaultFolder, False) + sNewPath = mgrCommon.OpenFileBrowser(frmAddWizard_ChooseProcess, "exe", + frmAddWizard_Executable, sDefaultFolder, False) If sNewPath <> String.Empty Then txtProcessPath.Text = sNewPath End Sub @@ -370,7 +407,7 @@ Public Class frmAddWizard End If End If - sNewPath = mgrCommon.OpenFolderBrowser("Choose the game save folder:", sDefaultFolder, False) + sNewPath = mgrCommon.OpenFolderBrowser(frmAddWizard_ChooseSavePath, sDefaultFolder, False) If sNewPath <> String.Empty Then txtSavePath.Text = sNewPath End Sub @@ -379,9 +416,9 @@ Public Class frmAddWizard Dim iCount As Integer = sBuilderString.Split(":").Length If sBuilderString <> String.Empty And iCount > 0 Then - lbl.Text = iCount & " item(s) selected" + lbl.Text = mgrCommon.FormatString(frmAddWizard_ItemsSelectedMulti, iCount) Else - lbl.Text = "0 Item(s) selected" + lbl.Text = frmAddWizard_ItemsSelectedNone End If End Sub @@ -419,12 +456,7 @@ Public Class frmAddWizard End Sub Private Sub frmAddWizard_Load(sender As Object, e As EventArgs) Handles MyBase.Load - FormInit() - - 'Dim sResource As String = String.Empty - 'Dim sCode As String = String.Empty - 'mgrCommon.GetAllStrings(Me, sResource, sCode, "frmAddWizard") - 'Clipboard.SetText(sResource & vbCrLf & vbCrLf & sCode) + SetForm() End Sub Private Sub DropTarget_DragEnter(sender As Object, e As DragEventArgs) Handles lblDrag1.DragEnter, lblDrag2.DragEnter, txtName.DragEnter, txtProcessPath.DragEnter @@ -461,12 +493,12 @@ Public Class frmAddWizard End Sub Private Sub btnInclude_Click(sender As Object, e As EventArgs) Handles btnInclude.Click - OpenBuilder("Include", txtFileTypes) + OpenBuilder(frmAddWizard_Include, txtFileTypes) UpdateBuilderLabel(txtFileTypes.Text, lblFileTypes) End Sub Private Sub btnExclude_Click(sender As Object, e As EventArgs) Handles btnExclude.Click - OpenBuilder("Exclude", txtExcludeList) + OpenBuilder(frmAddWizard_Exclude, txtExcludeList) UpdateBuilderLabel(txtExcludeList.Text, lblExclude) End Sub End Class \ No newline at end of file diff --git a/GBM/Forms/frmAdvancedImport.vb b/GBM/Forms/frmAdvancedImport.vb index 3198a36..32fc37c 100644 --- a/GBM/Forms/frmAdvancedImport.vb +++ b/GBM/Forms/frmAdvancedImport.vb @@ -61,6 +61,11 @@ LoadData() SelectToggle() bIsLoading = False + + Dim sResource As String = String.Empty + Dim sCode As String = String.Empty + mgrCommon.GetAllStrings(Me, sResource, sCode, "frmAdvancedImport") + Clipboard.SetText(sResource & vbCrLf & vbCrLf & sCode) End Sub Private Sub chkSelectAll_CheckedChanged(sender As Object, e As EventArgs) Handles chkSelectAll.CheckedChanged diff --git a/GBM/Managers/mgrCommon.vb b/GBM/Managers/mgrCommon.vb index a6be23c..772b1aa 100644 --- a/GBM/Managers/mgrCommon.vb +++ b/GBM/Managers/mgrCommon.vb @@ -188,16 +188,16 @@ Public Class mgrCommon Next ElseIf TypeOf ctl Is Label Then sResource &= sFormName & "_" & ctl.Name & vbTab & ctl.Text & vbCrLf - sCode &= ctl.Name & ".Text = My.Resources." & sFormName & "_" & ctl.Name & vbCrLf + sCode &= ctl.Name & ".Text = " & sFormName & "_" & ctl.Name & vbCrLf ElseIf TypeOf ctl Is Button Then sResource &= sFormName & "_" & ctl.Name & vbTab & ctl.Text & vbCrLf - sCode &= ctl.Name & ".Text = My.Resources." & sFormName & "_" & ctl.Name & vbCrLf + sCode &= ctl.Name & ".Text = " & sFormName & "_" & ctl.Name & vbCrLf ElseIf TypeOf ctl Is RadioButton Then sResource &= sFormName & "_" & ctl.Name & vbTab & ctl.Text & vbCrLf - sCode &= ctl.Name & ".Text = My.Resources." & sFormName & "_" & ctl.Name & vbCrLf + sCode &= ctl.Name & ".Text = " & sFormName & "_" & ctl.Name & vbCrLf ElseIf TypeOf ctl Is CheckBox Then sResource &= sFormName & "_" & ctl.Name & vbTab & ctl.Text & vbCrLf - sCode &= ctl.Name & ".Text = My.Resources." & sFormName & "_" & ctl.Name & vbCrLf + sCode &= ctl.Name & ".Text = " & sFormName & "_" & ctl.Name & vbCrLf End If Next End Sub diff --git a/GBM/My Project/Resources.Designer.vb b/GBM/My Project/Resources.Designer.vb index b61b14e..719bd00 100644 --- a/GBM/My Project/Resources.Designer.vb +++ b/GBM/My Project/Resources.Designer.vb @@ -68,7 +68,7 @@ Namespace My.Resources Return ResourceManager.GetString("App_ConfirmDirty", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to 2015 Michael J. Seiferling. ''' @@ -77,7 +77,7 @@ Namespace My.Resources Return ResourceManager.GetString("App_Copyright", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] KB. ''' @@ -86,7 +86,7 @@ Namespace My.Resources Return ResourceManager.GetString("App_KB", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] MB. ''' @@ -95,7 +95,7 @@ Namespace My.Resources Return ResourceManager.GetString("App_MB", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Game Backup Monitor. ''' @@ -104,16 +104,565 @@ Namespace My.Resources Return ResourceManager.GetString("App_NameLong", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to GBM. ''' - Friend ReadOnly Property AppNameShort() As String + Friend ReadOnly Property App_NameShort() As String Get - Return ResourceManager.GetString("AppNameShort", resourceCulture) + Return ResourceManager.GetString("App_NameShort", resourceCulture) End Get End Property - + + ''' + ''' Looks up a localized string similar to &Back. + ''' + Friend ReadOnly Property frmAddWizard_btnBack() As String + Get + Return ResourceManager.GetString("frmAddWizard_btnBack", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to &Cancel. + ''' + Friend ReadOnly Property frmAddWizard_btnCancel() As String + Get + Return ResourceManager.GetString("frmAddWizard_btnCancel", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Choose items to e&xclude.... + ''' + Friend ReadOnly Property frmAddWizard_btnExclude() As String + Get + Return ResourceManager.GetString("frmAddWizard_btnExclude", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Choose items to in&clude.... + ''' + Friend ReadOnly Property frmAddWizard_btnInclude() As String + Get + Return ResourceManager.GetString("frmAddWizard_btnInclude", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to &Next. + ''' + Friend ReadOnly Property frmAddWizard_btnNext() As String + Get + Return ResourceManager.GetString("frmAddWizard_btnNext", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to &Finish. + ''' + Friend ReadOnly Property frmAddWizard_btnNext_Finish() As String + Get + Return ResourceManager.GetString("frmAddWizard_btnNext_Finish", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to .... + ''' + Friend ReadOnly Property frmAddWizard_btnProcessBrowse() As String + Get + Return ResourceManager.GetString("frmAddWizard_btnProcessBrowse", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to .... + ''' + Friend ReadOnly Property frmAddWizard_btnSaveBrowse() As String + Get + Return ResourceManager.GetString("frmAddWizard_btnSaveBrowse", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Save Entire Folder. + ''' + Friend ReadOnly Property frmAddWizard_chkFolderSave() As String + Get + Return ResourceManager.GetString("frmAddWizard_chkFolderSave", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Time Stamp Backup. + ''' + Friend ReadOnly Property frmAddWizard_chkTimeStamp() As String + Get + Return ResourceManager.GetString("frmAddWizard_chkTimeStamp", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Choose exe file that starts the game. + ''' + Friend ReadOnly Property frmAddWizard_ChooseProcess() As String + Get + Return ResourceManager.GetString("frmAddWizard_ChooseProcess", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Choose the game save folder:. + ''' + Friend ReadOnly Property frmAddWizard_ChooseSavePath() As String + Get + Return ResourceManager.GetString("frmAddWizard_ChooseSavePath", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to [PARAM] has been saved.[BR][BR]Would you like to add tags for [PARAM]?. + ''' + Friend ReadOnly Property frmAddWizard_ConfirmSaveTags() As String + Get + Return ResourceManager.GetString("frmAddWizard_ConfirmSaveTags", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to The path to the executable must be a full path.. + ''' + Friend ReadOnly Property frmAddWizard_ErrorBadProcessPath() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorBadProcessPath", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to The selected path must be a full path.. + ''' + Friend ReadOnly Property frmAddWizard_ErrorBadSavePath() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorBadSavePath", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to A game with this exact name and process already exists.. + ''' + Friend ReadOnly Property frmAddWizard_ErrorGameDupe() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorGameDupe", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to The file you selected is not an executable file.. + ''' + Friend ReadOnly Property frmAddWizard_ErrorNotAProcess() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorNotAProcess", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to This file is not a shorcut.. + ''' + Friend ReadOnly Property frmAddWizard_ErrorNotAShortcut() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorNotAShortcut", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to The selected executable file does not exist.. + ''' + Friend ReadOnly Property frmAddWizard_ErrorProcessNotExist() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorProcessNotExist", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to The folder you selected does not exist or is not a valid folder.. + ''' + Friend ReadOnly Property frmAddWizard_ErrorSavePathNotExist() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorSavePathNotExist", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to You must enter a valid game name.. + ''' + Friend ReadOnly Property frmAddWizard_ErrorValidName() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorValidName", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to You must select the game's executable file (.exe) to continue.. + ''' + Friend ReadOnly Property frmAddWizard_ErrorValidProcess() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorValidProcess", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to You must select the game's save file path to continue. + ''' + Friend ReadOnly Property frmAddWizard_ErrorValidSavePath() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorValidSavePath", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to You must choose items to include in the backup, or choose to save the entire folder.. + ''' + Friend ReadOnly Property frmAddWizard_ErrorValidSaveType() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorValidSaveType", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to An error occured working with the shortcut file.[BR][BR][PARAM]. + ''' + Friend ReadOnly Property frmAddWizard_ErrorWithShortcut() As String + Get + Return ResourceManager.GetString("frmAddWizard_ErrorWithShortcut", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Exclude. + ''' + Friend ReadOnly Property frmAddWizard_Exclude() As String + Get + Return ResourceManager.GetString("frmAddWizard_Exclude", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Executable. + ''' + Friend ReadOnly Property frmAddWizard_Executable() As String + Get + Return ResourceManager.GetString("frmAddWizard_Executable", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Add Game Wizard. + ''' + Friend ReadOnly Property frmAddWizard_FormName() As String + Get + Return ResourceManager.GetString("frmAddWizard_FormName", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Include. + ''' + Friend ReadOnly Property frmAddWizard_Include() As String + Get + Return ResourceManager.GetString("frmAddWizard_Include", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to [PARAM] item(s) selected. + ''' + Friend ReadOnly Property frmAddWizard_ItemsSelectedMulti() As String + Get + Return ResourceManager.GetString("frmAddWizard_ItemsSelectedMulti", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to 0 item(s) selected. + ''' + Friend ReadOnly Property frmAddWizard_ItemsSelectedNone() As String + Get + Return ResourceManager.GetString("frmAddWizard_ItemsSelectedNone", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Drag a shortcut here to complete this step.. + ''' + Friend ReadOnly Property frmAddWizard_lblDrag1() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblDrag1", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Drag a shortcut here to complete this step.. + ''' + Friend ReadOnly Property frmAddWizard_lblDrag2() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblDrag2", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Save Path. + ''' + Friend ReadOnly Property frmAddWizard_lblExcludePath() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblExcludePath", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Saved Game Folder:. + ''' + Friend ReadOnly Property frmAddWizard_lblExcludePathTitle() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblExcludePathTitle", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Save Path. + ''' + Friend ReadOnly Property frmAddWizard_lblIncludePath() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblIncludePath", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Saved Game Folder:. + ''' + Friend ReadOnly Property frmAddWizard_lblIncludePathTitle() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblIncludePathTitle", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to The name will be automatically filtered for length and invalid characters. . + ''' + Friend ReadOnly Property frmAddWizard_lblStep1Instructions() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep1Instructions", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Enter the name of the game to monitor:. + ''' + Friend ReadOnly Property frmAddWizard_lblStep1Intro() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep1Intro", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Game Name. + ''' + Friend ReadOnly Property frmAddWizard_lblStep1Title() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep1Title", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Some games use launchers. Do not monitor launchers, be sure to choose the game's actual exe file.. + ''' + Friend ReadOnly Property frmAddWizard_lblStep2Instructions() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep2Instructions", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Choose the game's executable file or shortcut:. + ''' + Friend ReadOnly Property frmAddWizard_lblStep2Intro() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep2Intro", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Process to Monitor. + ''' + Friend ReadOnly Property frmAddWizard_lblStep2Title() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep2Title", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Choose any file types, specific files or folders you wish to include in the backup. If you're unsure, go back a step and choose to save the entire folder. . + ''' + Friend ReadOnly Property frmAddWizard_lblStep3aInstructions() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep3aInstructions", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Choose Files to Backup. + ''' + Friend ReadOnly Property frmAddWizard_lblStep3aTitle() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep3aTitle", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to If you're unsure of exactly which files to backup, make sure Save Entire Folder is checked. You can also time stamp your backup files to make incremental backups.. + ''' + Friend ReadOnly Property frmAddWizard_lblStep3Instructions() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep3Instructions", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Choose the location of your game's save files:. + ''' + Friend ReadOnly Property frmAddWizard_lblStep3Intro() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep3Intro", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Game Backup Path. + ''' + Friend ReadOnly Property frmAddWizard_lblStep3Title() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep3Title", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Choose any file types, specific files or folders you wish to exclude from the backup. You may choose multiple items to exclude. This step can be skipped.. + ''' + Friend ReadOnly Property frmAddWizard_lblStep4Instructions() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep4Instructions", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Exclude Files or Folders. + ''' + Friend ReadOnly Property frmAddWizard_lblStep4Title() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep4Title", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Verify your settings below and click Finish to save.. + ''' + Friend ReadOnly Property frmAddWizard_lblStep5Intro() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep5Intro", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Summary of your Game. + ''' + Friend ReadOnly Property frmAddWizard_lblStep5Title() As String + Get + Return ResourceManager.GetString("frmAddWizard_lblStep5Title", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to None. + ''' + Friend ReadOnly Property frmAddWizard_None() As String + Get + Return ResourceManager.GetString("frmAddWizard_None", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Absolute Path. + ''' + Friend ReadOnly Property frmAddWizard_Summary_AbsolutePath() As String + Get + Return ResourceManager.GetString("frmAddWizard_Summary_AbsolutePath", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Excluded Items. + ''' + Friend ReadOnly Property frmAddWizard_Summary_Exclude() As String + Get + Return ResourceManager.GetString("frmAddWizard_Summary_Exclude", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Folder Save. + ''' + Friend ReadOnly Property frmAddWizard_Summary_FolderSave() As String + Get + Return ResourceManager.GetString("frmAddWizard_Summary_FolderSave", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Included Items. + ''' + Friend ReadOnly Property frmAddWizard_Summary_Include() As String + Get + Return ResourceManager.GetString("frmAddWizard_Summary_Include", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Name. + ''' + Friend ReadOnly Property frmAddWizard_Summary_Name() As String + Get + Return ResourceManager.GetString("frmAddWizard_Summary_Name", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Process. + ''' + Friend ReadOnly Property frmAddWizard_Summary_Process() As String + Get + Return ResourceManager.GetString("frmAddWizard_Summary_Process", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Save Path. + ''' + Friend ReadOnly Property frmAddWizard_Summary_SavePath() As String + Get + Return ResourceManager.GetString("frmAddWizard_Summary_SavePath", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Timestamp. + ''' + Friend ReadOnly Property frmAddWizard_Summary_Timestamp() As String + Get + Return ResourceManager.GetString("frmAddWizard_Summary_Timestamp", resourceCulture) + End Get + End Property + ''' ''' Looks up a localized string similar to [PARAM] by [PARAM]. ''' @@ -122,7 +671,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_BackupTimeAndName", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to +. ''' @@ -131,7 +680,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnAdd", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to .... ''' @@ -140,7 +689,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnAppPathBrowse", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Backup. ''' @@ -149,7 +698,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnBackup", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Cancel. ''' @@ -158,7 +707,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnCancel", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to C&lose. ''' @@ -167,7 +716,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnClose", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to -. ''' @@ -176,7 +725,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnDelete", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Delete Backup. ''' @@ -185,7 +734,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnDeleteBackup", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to E&xclude Items.... ''' @@ -194,7 +743,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnExclude", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Export. ''' @@ -203,7 +752,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnExport", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to .... ''' @@ -212,7 +761,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnIconBrowse", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Import. ''' @@ -221,7 +770,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnImport", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to In&clude Items.... ''' @@ -230,7 +779,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnInclude", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Mark as Restored. ''' @@ -239,7 +788,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnMarkAsRestored", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Open Backup File. ''' @@ -248,7 +797,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnOpenBackupFile", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to O&pen Restore Path. ''' @@ -257,7 +806,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnOpenRestorePath", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to .... ''' @@ -266,7 +815,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnProcessBrowse", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Restore. ''' @@ -275,7 +824,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnRestore", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Save. ''' @@ -284,7 +833,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnSave", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to .... ''' @@ -293,7 +842,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnSavePathBrowse", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Tags.... ''' @@ -302,7 +851,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_btnTags", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Monitor this game. ''' @@ -311,7 +860,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_chkEnabled", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Save entire folder. ''' @@ -320,7 +869,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_chkFolderSave", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Monitor only. ''' @@ -329,7 +878,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_chkMonitorOnly", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Timestamp each backup. ''' @@ -338,7 +887,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_chkTimeStamp", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Choose a custom icon for the game. ''' @@ -347,7 +896,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ChooseCustomIcon", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Choose exe file that starts the application. ''' @@ -356,7 +905,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ChooseExe", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Choose the location of application's exe file:. ''' @@ -365,7 +914,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ChooseExePath", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Choose a location for the export file. ''' @@ -374,7 +923,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ChooseExportXML", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Choose a valid xml file to import. ''' @@ -383,7 +932,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ChooseImportXML", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Choose the saved game folder:. ''' @@ -392,7 +941,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ChooseSaveFolder", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &File.... ''' @@ -401,7 +950,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_cmsFile", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Official List.... ''' @@ -410,7 +959,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_cmsOfficial", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Are you sure you want to run a backup for [PARAM]? This will close the form.. ''' @@ -419,7 +968,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmBackup", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to This will delete the backup file and all records of this backup. This cannot be undone. [BR][BR]Do you want to remove the data for [PARAM]?. ''' @@ -428,7 +977,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmBackupDelete", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to The backup folder [PARAM] still contains [PARAM] directories and [PARAM] files.[BR][BR]Do you want to delete the contents and remove the sub-folder for this game?. ''' @@ -437,7 +986,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmBackupFolderDelete", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Are you sure you want to delete [PARAM]? This cannot be undone.[BR][BR]This will not delete any backup files that already exist for this game.. ''' @@ -446,7 +995,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmGameDelete", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Do you want to mark [PARAM] as restored? This cannot be undone.. ''' @@ -455,7 +1004,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmMark", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Are you sure you want to run a backup for [PARAM] games? This will close the form.. ''' @@ -464,7 +1013,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmMultiBackup", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Are you sure you want to delete the [PARAM] selected games? This cannot be undone.. ''' @@ -473,7 +1022,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmMultiGameDelete", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Do you want to mark [PARAM] games as restored? This cannot be undone.. ''' @@ -482,7 +1031,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmMultiMark", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Are you sure you want to restore the backups for [PARAM] games? This will close the form.. ''' @@ -491,7 +1040,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmMultiRestore", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Are you sure you want to save the following changes to [PARAM] selected games?[BR][BR]Monitor this game: [PARAM][BR]Monitor only: [PARAM]. ''' @@ -500,7 +1049,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmMultiSave", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Would you like to choose games to import from the official game list?[BR][BR]This require an active internet connection.. ''' @@ -509,7 +1058,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmOfficialImport", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Are you sure you want to restore the backup for [PARAM]? This will close the form.. ''' @@ -518,7 +1067,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmRestore", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] is already up to date.[BR][BR]Would you like to restore this backup anyway?. ''' @@ -527,7 +1076,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ConfirmRestoreAnyway", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to A game with this exact name and process already exists.. ''' @@ -536,7 +1085,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ErrorGameDupe", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to The selected game(s) have no backup data.. ''' @@ -545,7 +1094,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ErrorNoBackupData", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to The backup file does not exist.. ''' @@ -554,7 +1103,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ErrorNoBackupExists", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to You must choose items to include in the backup, or choose to save the entire folder.. ''' @@ -563,7 +1112,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ErrorNoItems", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to The restore path does not exist.. ''' @@ -572,7 +1121,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ErrorNoRestorePathExists", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] uses a relative path and the game path has not been set.. ''' @@ -581,7 +1130,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ErrorPathNotSet", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to You must enter a valid game name.. ''' @@ -590,7 +1139,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ErrorValidName", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to You must enter a valid process name.. ''' @@ -599,7 +1148,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ErrorValidProcess", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Exclude. ''' @@ -608,7 +1157,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_Exclude", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to E&xclude. ''' @@ -617,7 +1166,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ExcludeShortcut", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Executable. ''' @@ -626,7 +1175,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_Executable", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Game Manager. ''' @@ -635,7 +1184,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_FormName", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Icon. ''' @@ -644,7 +1193,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_Icon", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Include. ''' @@ -653,7 +1202,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_Include", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to In&clude. ''' @@ -662,7 +1211,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_IncludeShortcut", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Items.... ''' @@ -671,7 +1220,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_Items", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Items... ([PARAM]). ''' @@ -680,7 +1229,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_ItemsExist", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Company:. ''' @@ -689,7 +1238,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblCompany", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Current Backup:. ''' @@ -698,7 +1247,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblCurrentBackup", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Backup Size:. ''' @@ -707,7 +1256,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblFileSize", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Game Path:. ''' @@ -716,7 +1265,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblGamePath", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Hours:. ''' @@ -725,7 +1274,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblHours", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Icon:. ''' @@ -734,7 +1283,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblIcon", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Local Backup:. ''' @@ -743,7 +1292,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblLastBackup", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Name:. ''' @@ -752,7 +1301,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblName", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Process:. ''' @@ -761,7 +1310,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblProcess", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Restore Path:. ''' @@ -770,7 +1319,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblRestorePath", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Save Path:. ''' @@ -779,7 +1328,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblSavePath", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Version:. ''' @@ -788,7 +1337,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_lblVersion", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Never. ''' @@ -797,7 +1346,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_Never", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to All. ''' @@ -806,7 +1355,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_optAllGames", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Backups Only. ''' @@ -815,7 +1364,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_optBackupData", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Custom. ''' @@ -824,7 +1373,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_optCustom", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to New Saves Pending. ''' @@ -833,7 +1382,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_optPendingRestores", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Out of Sync. ''' @@ -842,7 +1391,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_OutofSync", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Up to Date!. ''' @@ -851,7 +1400,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_UpToDate", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to XML. ''' @@ -860,7 +1409,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmGameManager_XML", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Game Backup Monitor[BR]Version: [PARAM] Beta ([PARAM])[BR]Build: [PARAM][BR][PARAM][BR][BR]This program comes with ABSOLUTELY NO WARRANTY.[BR]This is free software, and you are welcome to redistribute it under certain conditions.[BR][BR]See gpl-3.0.html in the program folder for details.. ''' @@ -869,7 +1418,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_About", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Backup in Progress.... ''' @@ -878,7 +1427,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_BackupInProgress", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Cancel. ''' @@ -887,7 +1436,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_btnCancelOperation", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Hide &Log. ''' @@ -896,7 +1445,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_btnToggleLog_Hide", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Show &Log. ''' @@ -905,7 +1454,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_btnToggleLog_Show", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Choose icon for [PARAM]. ''' @@ -914,7 +1463,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ChooseIcon", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Do you wish to backup data from [PARAM]?. ''' @@ -923,7 +1472,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ConfirmBackup", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to This tool removes orphaned backup information from the local manifest based on the current backup folder. Data can become orphaned when backups are deleted by various computers that share the same backup folder on a cloud or network.[BR][BR]When alternating between different backup folders you should NOT use this tool.[BR][BR]Do you wish to proceed?. ''' @@ -932,7 +1481,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ConfirmManifestClean", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Do you wish to cancel the monitoring of [PARAM]?[BR][BR]Warning: When monitoring is cancelled, session time is NOT saved.. ''' @@ -941,7 +1490,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ConfirmMonitorCancel", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to This will rebuild all databases and shrink them to an optimal size.[BR]This should only be used if your gbm.s3db files are becoming very large.[BR][BR]Do you wish to continue?. ''' @@ -950,7 +1499,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ConfirmRebuild", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Do you want to restart Game Backup Monitor as Administrator?. ''' @@ -959,7 +1508,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ConfirmRunAsAdmin", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] is a 64-bit game, GBM cannot detect the required information to save your backup.. ''' @@ -968,7 +1517,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_Error64Backup", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to 7-Zip was not found in the Game Backup Monitor utilities folder. The application cannot continue.. ''' @@ -977,7 +1526,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_Error7zip", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] is running as Administrator and GBM is not, GBM cannot detect the required information to save your backup.. ''' @@ -986,7 +1535,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorAdminBackup", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] is running as Administrator and GBM is not.[BR]You cannot cancel monitoring at this time.[BR][BR]Run GBM as Administrator to prevent this issue.. ''' @@ -995,7 +1544,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorAdminDetect", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Game Backup Monitor is already running as Administrator.. ''' @@ -1004,7 +1553,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorAlreadyAdmin", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to GBM is running from a new location, the Windows startup entry has been updated.. ''' @@ -1013,7 +1562,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorAppLocationChanged", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] backup was cancelled.. ''' @@ -1022,7 +1571,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorBackupCancel", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] backup was cancelled due to session length.. ''' @@ -1031,7 +1580,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorBackupSessionLength", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] backup was cancelled due to unknown path.. ''' @@ -1040,7 +1589,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorBackupUnknownPath", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to The following monitored game(s) contain a custom path variable that is not set.[BR][PARAM][BR][BR]You will encounter backup/restore errors with these games until the variables are set.. ''' @@ -1049,7 +1598,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorCustomVariable", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Your local GBM data (Version [PARAM]) is too new for your version of GBM (Version [PARAM]).[BR][BR]Please upgrade GBM or restore the database file appropriate for your version. The application cannot proceed.. ''' @@ -1058,7 +1607,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorDBVerLocal", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to The GBM data (Version [PARAM]) in your backup folder is too new for your version of GBM (Version [PARAM])[BR][BR]All computers sharing a backup folder must use the same version of GBM. The application cannot proceed.. ''' @@ -1067,7 +1616,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorDBVerRemote", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Multiple possible 64-bit games have been detected, GBM cannot detect the path to identify your game or save your backup.[BR][BR]Please install the 64-bit version of GBM to detect and backup this game properly.. ''' @@ -1076,7 +1625,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorMulti64", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Multiple possible games have been detected running as Administrator and GBM is not, GBM cannot detect the path to identify your game or save your backup.[BR][BR]Please run GBM as Administrator to properly detect and backup this game.. ''' @@ -1085,7 +1634,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorMultiAdmin", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] uses a relative path and has never been detected on this computer.. ''' @@ -1094,7 +1643,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorRelativePath", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] restore was cancelled due to a restore path issue.. ''' @@ -1103,7 +1652,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorRestorePath", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to An error occured creating application settings folder. The application cannot proceed.[BR][BR][PARAM]. ''' @@ -1112,7 +1661,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ErrorSettingsFolder", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] (Executable Path). ''' @@ -1121,7 +1670,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ExePath", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Are you sure you want to exit? Your games will no longer be monitored.. ''' @@ -1130,7 +1679,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_Exit", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] Detected. ''' @@ -1139,7 +1688,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_GameDetected", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] has ended.. ''' @@ -1148,7 +1697,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_GameEnded", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Game List ([PARAM]) Loaded.. ''' @@ -1157,7 +1706,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_GameListLoaded", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &File. ''' @@ -1166,7 +1715,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonFile", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Exit. ''' @@ -1175,7 +1724,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonFileExit", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Cancel &Monitoring. ''' @@ -1184,7 +1733,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonFileMonitor_Cancel", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Start &Monitoring. ''' @@ -1193,7 +1742,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonFileMonitor_Start", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Stop &Monitoring. ''' @@ -1202,7 +1751,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonFileMonitor_Stop", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Settings.... ''' @@ -1211,7 +1760,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonFileSettings", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Help. ''' @@ -1220,7 +1769,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonHelp", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &About Game Backup Monitor. ''' @@ -1229,7 +1778,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonHelpAbout", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Check for Updates.... ''' @@ -1238,7 +1787,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonHelpCheckForUpdates", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Online &Manual.... ''' @@ -1247,7 +1796,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonHelpManual", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Official Web Site.... ''' @@ -1256,7 +1805,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonHelpWebSite", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Setup. ''' @@ -1265,7 +1814,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonSetup", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Add Game &Wizard.... ''' @@ -1274,7 +1823,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonSetupAddWizard", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Custom &Path Variables.... ''' @@ -1283,7 +1832,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonSetupCustomVariables", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Game Manager.... ''' @@ -1292,7 +1841,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonSetupGameManager", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Tags.... ''' @@ -1301,7 +1850,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonSetupTags", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Monitor Status:. ''' @@ -1310,7 +1859,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonStripStatusButton", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Click to toggle monitoring on or off.. ''' @@ -1319,7 +1868,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonStripStatusButtonToolTip", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Tools. ''' @@ -1328,7 +1877,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonTools", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Clea&n Local Manifest. ''' @@ -1337,7 +1886,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonToolsCleanMan", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to &Compact Databases. ''' @@ -1346,7 +1895,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonToolsCompact", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Show / Hide. ''' @@ -1355,7 +1904,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_gMonTrayShow", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Icon files (*.ico)|*.ico. ''' @@ -1364,7 +1913,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_IconFilter", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Last Game: [PARAM]. ''' @@ -1373,7 +1922,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_LastGame", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Last Action:. ''' @@ -1382,7 +1931,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_lblLastActionTitle", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Local Database Vacuum Completed: [PARAM] KB. ''' @@ -1391,7 +1940,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_LocalCompactComplete", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Local Database Vacuum Initialized: [PARAM] KB. ''' @@ -1400,7 +1949,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_LocalCompactInit", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to The local manifest is clean.. ''' @@ -1409,7 +1958,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ManifestAreadyClean", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] entry was removed from local manfiest.. ''' @@ -1418,7 +1967,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ManifestRemovedEntry", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] entries were removed from the local manifest.. ''' @@ -1427,7 +1976,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ManifestTotalRemoved", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to A manaul backup of [PARAM] was triggered.. ''' @@ -1436,7 +1985,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_ManualBackup", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to The master game list has been changed by a program other than GBM.. ''' @@ -1445,7 +1994,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_MasterListChanged", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Monitoring of [PARAM] was cancelled.. ''' @@ -1454,7 +2003,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_MonitorCancel", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] monitoring ended.. ''' @@ -1463,7 +2012,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_MonitorEnded", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Multiple Games. ''' @@ -1472,7 +2021,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_MultipleGames", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Multiple Games Detected. ''' @@ -1481,7 +2030,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_MultipleGamesDetected", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] New Saves Pending. ''' @@ -1490,7 +2039,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_NewSaveNotificationMulti", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] New Save Pending. ''' @@ -1499,7 +2048,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_NewSaveNotificationSingle", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Game details are unavailable.. ''' @@ -1508,7 +2057,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_NoDetails", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to No Game Detected. ''' @@ -1517,7 +2066,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_NoGameDetected", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to N/A. ''' @@ -1526,7 +2075,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_NotAvailable", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Not Scanning. ''' @@ -1535,7 +2084,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_NotScanning", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Remote Database Vacuum Completed: [PARAM] KB. ''' @@ -1544,7 +2093,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_RemoteCompactComplete", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Remote Database Vacuum Initialized: [PARAM] KB. ''' @@ -1553,7 +2102,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_RemoteCompactInit", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Restore in progress.... ''' @@ -1562,7 +2111,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_RestoreInProgress", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to GBM is running with Administrator privileges.. ''' @@ -1571,7 +2120,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_RunningAsAdmin", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to GBM is running with normal privileges. Click to restart as Administrator.. ''' @@ -1580,7 +2129,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_RunningAsNormal", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] hours. ''' @@ -1589,7 +2138,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_SessionHours", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to [PARAM] minutes. ''' @@ -1598,7 +2147,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_SessionMinutes", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to the unidentified game. ''' @@ -1607,7 +2156,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_UnknownGame", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to The unidentified game has ended.. ''' @@ -1616,7 +2165,7 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_UnknownGameEnded", resourceCulture) End Get End Property - + ''' ''' Looks up a localized string similar to Updated by [PARAM] on [PARAM]. ''' @@ -1625,134 +2174,134 @@ Namespace My.Resources Return ResourceManager.GetString("frmMain_UpdatedBy", resourceCulture) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Icon similar to (Icon). ''' Friend ReadOnly Property GBM_Tray_Detected() As System.Drawing.Icon Get Dim obj As Object = ResourceManager.GetObject("GBM_Tray_Detected", resourceCulture) - Return CType(obj, System.Drawing.Icon) + Return CType(obj,System.Drawing.Icon) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Icon similar to (Icon). ''' Friend ReadOnly Property GBM_Tray_Ready() As System.Drawing.Icon Get Dim obj As Object = ResourceManager.GetObject("GBM_Tray_Ready", resourceCulture) - Return CType(obj, System.Drawing.Icon) + Return CType(obj,System.Drawing.Icon) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Icon similar to (Icon). ''' Friend ReadOnly Property GBM_Tray_Stopped() As System.Drawing.Icon Get Dim obj As Object = ResourceManager.GetObject("GBM_Tray_Stopped", resourceCulture) - Return CType(obj, System.Drawing.Icon) + Return CType(obj,System.Drawing.Icon) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Bitmap. ''' Friend ReadOnly Property Icon_Admin() As System.Drawing.Bitmap Get Dim obj As Object = ResourceManager.GetObject("Icon_Admin", resourceCulture) - Return CType(obj, System.Drawing.Bitmap) + Return CType(obj,System.Drawing.Bitmap) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Bitmap. ''' Friend ReadOnly Property Icon_Clock() As System.Drawing.Bitmap Get Dim obj As Object = ResourceManager.GetObject("Icon_Clock", resourceCulture) - Return CType(obj, System.Drawing.Bitmap) + Return CType(obj,System.Drawing.Bitmap) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Bitmap. ''' Friend ReadOnly Property Icon_Detected() As System.Drawing.Bitmap Get Dim obj As Object = ResourceManager.GetObject("Icon_Detected", resourceCulture) - Return CType(obj, System.Drawing.Bitmap) + Return CType(obj,System.Drawing.Bitmap) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Bitmap. ''' Friend ReadOnly Property Icon_Inbox() As System.Drawing.Bitmap Get Dim obj As Object = ResourceManager.GetObject("Icon_Inbox", resourceCulture) - Return CType(obj, System.Drawing.Bitmap) + Return CType(obj,System.Drawing.Bitmap) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Bitmap. ''' Friend ReadOnly Property Icon_Ready() As System.Drawing.Bitmap Get Dim obj As Object = ResourceManager.GetObject("Icon_Ready", resourceCulture) - Return CType(obj, System.Drawing.Bitmap) + Return CType(obj,System.Drawing.Bitmap) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Bitmap. ''' Friend ReadOnly Property Icon_Searching() As System.Drawing.Bitmap Get Dim obj As Object = ResourceManager.GetObject("Icon_Searching", resourceCulture) - Return CType(obj, System.Drawing.Bitmap) + Return CType(obj,System.Drawing.Bitmap) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Bitmap. ''' Friend ReadOnly Property Icon_Stopped() As System.Drawing.Bitmap Get Dim obj As Object = ResourceManager.GetObject("Icon_Stopped", resourceCulture) - Return CType(obj, System.Drawing.Bitmap) + Return CType(obj,System.Drawing.Bitmap) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Bitmap. ''' Friend ReadOnly Property Icon_Unknown() As System.Drawing.Bitmap Get Dim obj As Object = ResourceManager.GetObject("Icon_Unknown", resourceCulture) - Return CType(obj, System.Drawing.Bitmap) + Return CType(obj,System.Drawing.Bitmap) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Bitmap. ''' Friend ReadOnly Property Icon_User() As System.Drawing.Bitmap Get Dim obj As Object = ResourceManager.GetObject("Icon_User", resourceCulture) - Return CType(obj, System.Drawing.Bitmap) + Return CType(obj,System.Drawing.Bitmap) End Get End Property - + ''' ''' Looks up a localized resource of type System.Drawing.Bitmap. ''' Friend ReadOnly Property Icon_Working() As System.Drawing.Bitmap Get Dim obj As Object = ResourceManager.GetObject("Icon_Working", resourceCulture) - Return CType(obj, System.Drawing.Bitmap) + Return CType(obj,System.Drawing.Bitmap) End Get End Property End Module diff --git a/GBM/My Project/Resources.resx b/GBM/My Project/Resources.resx index e1ea825..0690b58 100644 --- a/GBM/My Project/Resources.resx +++ b/GBM/My Project/Resources.resx @@ -154,7 +154,7 @@ Game Backup Monitor - + GBM @@ -679,4 +679,187 @@ &Official List... + + &Back + + + &Cancel + + + Choose items to e&xclude... + + + Choose items to in&clude... + + + &Next + + + &Finish + + + ... + + + ... + + + Save Entire Folder + + + Time Stamp Backup + + + Choose exe file that starts the game + + + Choose the game save folder: + + + [PARAM] has been saved.[BR][BR]Would you like to add tags for [PARAM]? + + + The path to the executable must be a full path. + + + The selected path must be a full path. + + + A game with this exact name and process already exists. + + + The file you selected is not an executable file. + + + This file is not a shorcut. + + + The selected executable file does not exist. + + + The folder you selected does not exist or is not a valid folder. + + + You must enter a valid game name. + + + You must select the game's executable file (.exe) to continue. + + + You must select the game's save file path to continue + + + You must choose items to include in the backup, or choose to save the entire folder. + + + An error occured working with the shortcut file.[BR][BR][PARAM] + + + Exclude + + + Executable + + + Add Game Wizard + + + Include + + + [PARAM] item(s) selected + + + 0 item(s) selected + + + Drag a shortcut here to complete this step. + + + Drag a shortcut here to complete this step. + + + Save Path + + + Saved Game Folder: + + + Save Path + + + Saved Game Folder: + + + The name will be automatically filtered for length and invalid characters. + + + Enter the name of the game to monitor: + + + Game Name + + + Some games use launchers. Do not monitor launchers, be sure to choose the game's actual exe file. + + + Choose the game's executable file or shortcut: + + + Process to Monitor + + + Choose any file types, specific files or folders you wish to include in the backup. If you're unsure, go back a step and choose to save the entire folder. + + + Choose Files to Backup + + + If you're unsure of exactly which files to backup, make sure Save Entire Folder is checked. You can also time stamp your backup files to make incremental backups. + + + Choose the location of your game's save files: + + + Game Backup Path + + + Choose any file types, specific files or folders you wish to exclude from the backup. You may choose multiple items to exclude. This step can be skipped. + + + Exclude Files or Folders + + + Verify your settings below and click Finish to save. + + + Summary of your Game + + + None + + + Absolute Path + + + Excluded Items + + + Folder Save + + + Included Items + + + Name + + + Process + + + Save Path + + + Timestamp + \ No newline at end of file