Moved strings to resource (frmStartupWizard, frmTags, frmCustomVariables)

This commit is contained in:
Michael J. Seiferling
2015-12-23 20:51:54 -06:00
parent da9a1d8b53
commit 51ca315edd
8 changed files with 802 additions and 41 deletions
-2
View File
@@ -34,7 +34,6 @@ Partial Class frmSettings
Me.btnBackupFolder = New System.Windows.Forms.Button() Me.btnBackupFolder = New System.Windows.Forms.Button()
Me.lblBackupFolder = New System.Windows.Forms.Label() Me.lblBackupFolder = New System.Windows.Forms.Label()
Me.txtBackupFolder = New System.Windows.Forms.TextBox() Me.txtBackupFolder = New System.Windows.Forms.TextBox()
Me.fbBrowser = New System.Windows.Forms.FolderBrowserDialog()
Me.btnSave = New System.Windows.Forms.Button() Me.btnSave = New System.Windows.Forms.Button()
Me.btnCancel = New System.Windows.Forms.Button() Me.btnCancel = New System.Windows.Forms.Button()
Me.grpBackup = New System.Windows.Forms.GroupBox() Me.grpBackup = New System.Windows.Forms.GroupBox()
@@ -310,7 +309,6 @@ Partial Class frmSettings
Friend WithEvents grpGeneral As System.Windows.Forms.GroupBox Friend WithEvents grpGeneral As System.Windows.Forms.GroupBox
Friend WithEvents grpPaths As System.Windows.Forms.GroupBox Friend WithEvents grpPaths As System.Windows.Forms.GroupBox
Friend WithEvents txtBackupFolder As System.Windows.Forms.TextBox Friend WithEvents txtBackupFolder As System.Windows.Forms.TextBox
Friend WithEvents fbBrowser As System.Windows.Forms.FolderBrowserDialog
Friend WithEvents btnSave As System.Windows.Forms.Button Friend WithEvents btnSave As System.Windows.Forms.Button
Friend WithEvents btnCancel As System.Windows.Forms.Button Friend WithEvents btnCancel As System.Windows.Forms.Button
Friend WithEvents lblBackupFolder As System.Windows.Forms.Label Friend WithEvents lblBackupFolder As System.Windows.Forms.Label
-3
View File
@@ -117,9 +117,6 @@
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<metadata name="fbBrowser.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>32</value> <value>32</value>
</metadata> </metadata>
+39 -17
View File
@@ -1,4 +1,5 @@
Imports System.IO Imports GBM.My.Resources
Imports System.IO
Public Class frmStartUpWizard Public Class frmStartUpWizard
@@ -26,8 +27,34 @@ Public Class frmStartUpWizard
Private eCurrentStep As eSteps = eSteps.Step1 Private eCurrentStep As eSteps = eSteps.Step1
Private Sub FormInit() Private Sub SetForm()
llbManual.Links.Add(0, 26, "http://mikemaximus.github.io/gbm-web/manual.html") 'Set Form Name
Me.Text = frmStartUpWizard_FormName
'Set Form Text
btnNext.Text = frmStartUpWizard_btnNext
btnBack.Text = frmStartUpWizard_btnBack
lblStep1Instructions2.Text = frmStartUpWizard_lblStep1Instructions2
llbManual.Text = frmStartUpWizard_llbManual
lblStep1Title.Text = frmStartUpWizard_lblStep1Title
lblStep1Instructions.Text = frmStartUpWizard_lblStep1Instructions
chkSync.Text = frmStartUpWizard_chkSync
chkCreateFolder.Text = frmStartUpWizard_chkCreateFolder
lblStep2Title.Text = frmStartUpWizard_lblStep2Title
lblStep2Instructions.Text = frmStartUpWizard_lblStep2Instructions
btnFolderBrowse.Text = frmStartUpWizard_btnFolderBrowse
lblStep2Intro.Text = frmStartUpWizard_lblStep2Intro
btnOpenWizard.Text = frmStartUpWizard_btnOpenWizard
btnOpenMonitorList.Text = frmStartUpWizard_btnOpenMonitorList
btnDownloadList.Text = frmStartUpWizard_btnDownloadList
lblStep3Title.Text = frmStartUpWizard_lblStep3Title
lblStep3Intro.Text = frmStartUpWizard_lblStep3Intro
lblStep4Instructions3.Text = frmStartUpWizard_lblStep4Instructions3
lblStep4Instructions2.Text = frmStartUpWizard_lblStep4Instructions2
lblStep4Title.Text = frmStartUpWizard_lblStep4Title
lblStep4Instructions.Text = frmStartUpWizard_lblStep4Instructions
llbManual.Links.Add(0, 26, App_URLManual)
LoadGameSettings() LoadGameSettings()
StepHandler() StepHandler()
End Sub End Sub
@@ -40,7 +67,7 @@ Public Class frmStartUpWizard
'Make sure database is the latest version 'Make sure database is the latest version
oDatabase.DatabaseUpgrade() oDatabase.DatabaseUpgrade()
mgrMonitorList.SyncMonitorLists(False) mgrMonitorList.SyncMonitorLists(False)
mgrCommon.ShowMessage("Existing data was detected in the backup folder and has been imported.", MsgBoxStyle.Information) mgrCommon.ShowMessage(frmStartUpWizard_ExistingData, MsgBoxStyle.Information)
End If End If
End Sub End Sub
@@ -60,18 +87,18 @@ Public Class frmStartUpWizard
Case eSteps.Step3 Case eSteps.Step3
btnBack.Enabled = False btnBack.Enabled = False
btnNext.Enabled = True btnNext.Enabled = True
btnNext.Text = "&Next" btnNext.Text = frmStartUpWizard_btnNext
tabWizard.SelectTab(2) tabWizard.SelectTab(2)
Case eSteps.Step4 Case eSteps.Step4
btnBack.Enabled = True btnBack.Enabled = True
btnNext.Enabled = True btnNext.Enabled = True
btnNext.Text = "&Finish" btnNext.Text = frmStartUpWizard_btnNext_Finish
tabWizard.SelectTab(3) tabWizard.SelectTab(3)
End Select End Select
End Sub End Sub
Private Sub DownloadSettings() Private Sub DownloadSettings()
If mgrCommon.ShowMessage("Would you like to choose games to import from the official game list?" & vbCrLf & vbCrLf & "This require an active internet connection.", MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then If mgrCommon.ShowMessage(frmStartUpWizard_ConfirmOfficialImport, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
If mgrMonitorList.DoImport(mgrPath.OfficialImportURL) Then If mgrMonitorList.DoImport(mgrPath.OfficialImportURL) Then
oGameData = mgrMonitorList.ReadList(mgrMonitorList.eListTypes.FullList) oGameData = mgrMonitorList.ReadList(mgrMonitorList.eListTypes.FullList)
If oSettings.Sync Then mgrMonitorList.SyncMonitorLists() If oSettings.Sync Then mgrMonitorList.SyncMonitorLists()
@@ -103,19 +130,19 @@ Public Class frmStartUpWizard
Private Function ValidateBackupPath(ByVal strPath As String, ByRef sErrorMessage As String) As Boolean Private Function ValidateBackupPath(ByVal strPath As String, ByRef sErrorMessage As String) As Boolean
If strPath = String.Empty Then If strPath = String.Empty Then
sErrorMessage = "You must select a backup path to continue." sErrorMessage = frmStartUpWizard_ErrorNoFolder
txtBackupPath.Focus() txtBackupPath.Focus()
Return False Return False
End If End If
If Not Directory.Exists(strPath) Then If Not Directory.Exists(strPath) Then
sErrorMessage = "The folder you selected does not exist or is not a valid folder." sErrorMessage = frmStartUpWizard_ErrorNoFolderExists
txtBackupPath.Focus() txtBackupPath.Focus()
Return False Return False
End If End If
If Not Path.IsPathRooted(strPath) Then If Not Path.IsPathRooted(strPath) Then
sErrorMessage = "The selected path must be a full path." sErrorMessage = frmStartUpWizard_ErrorBadFolder
txtBackupPath.Focus() txtBackupPath.Focus()
Return False Return False
End If End If
@@ -180,7 +207,7 @@ Public Class frmStartUpWizard
End If End If
End If End If
sNewPath = mgrCommon.OpenFolderBrowser("Choose a backup folder:", sDefaultFolder, True) sNewPath = mgrCommon.OpenFolderBrowser(frmStartUpWizard_BrowseFolder, sDefaultFolder, True)
If sNewPath <> String.Empty Then txtBackupPath.Text = sNewPath If sNewPath <> String.Empty Then txtBackupPath.Text = sNewPath
End Sub End Sub
@@ -194,12 +221,7 @@ Public Class frmStartUpWizard
End Sub End Sub
Private Sub frmStartUpWizard_Load(sender As Object, e As EventArgs) Handles MyBase.Load Private Sub frmStartUpWizard_Load(sender As Object, e As EventArgs) Handles MyBase.Load
FormInit() SetForm()
Dim sResource As String = String.Empty
Dim sCode As String = String.Empty
mgrCommon.GetAllStrings(Me, sResource, sCode, "frmStartUpWizard")
Clipboard.SetText(sResource & vbCrLf & vbCrLf & sCode)
End Sub End Sub
Private Sub btnFolderBrowse_Click(sender As Object, e As EventArgs) Handles btnFolderBrowse.Click Private Sub btnFolderBrowse_Click(sender As Object, e As EventArgs) Handles btnFolderBrowse.Click
+22 -5
View File
@@ -1,4 +1,6 @@
Public Class frmTags Imports GBM.My.Resources
Public Class frmTags
Dim hshTagData As Hashtable Dim hshTagData As Hashtable
Private bIsDirty As Boolean = False Private bIsDirty As Boolean = False
@@ -50,7 +52,7 @@
Private Function HandleDirty() As MsgBoxResult Private Function HandleDirty() As MsgBoxResult
Dim oResult As MsgBoxResult Dim oResult As MsgBoxResult
oResult = mgrCommon.ShowMessage("There are unsaved changes on this form. Do you want to save?", MsgBoxStyle.YesNoCancel) oResult = mgrCommon.ShowMessage(App_ConfirmDirty, MsgBoxStyle.YesNoCancel)
Select Case oResult Select Case oResult
Case MsgBoxResult.Yes Case MsgBoxResult.Yes
@@ -229,7 +231,7 @@
If lstTags.SelectedItems.Count > 0 Then If lstTags.SelectedItems.Count > 0 Then
oTag = DirectCast(TagData(lstTags.SelectedItems(0).ToString), clsTag) oTag = DirectCast(TagData(lstTags.SelectedItems(0).ToString), clsTag)
If mgrCommon.ShowMessage("Are you sure you want to delete " & oTag.Name & "? This cannot be undone." & vbCrLf & vbCrLf & "All games using this tag will have it removed.", MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then If mgrCommon.ShowMessage(frmTags_ConfirmDelete, oTag.Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
mgrTags.DoTagDelete(oTag.ID) mgrTags.DoTagDelete(oTag.ID)
LoadData() LoadData()
eCurrentMode = eModes.Disabled eCurrentMode = eModes.Disabled
@@ -248,13 +250,13 @@
Private Function CoreValidatation(ByVal oTag As clsTag) As Boolean Private Function CoreValidatation(ByVal oTag As clsTag) As Boolean
If txtName.Text = String.Empty Then If txtName.Text = String.Empty Then
mgrCommon.ShowMessage("You must enter a valid tag name.", MsgBoxStyle.Exclamation) mgrCommon.ShowMessage(frmTags_ErrorValidName, MsgBoxStyle.Exclamation)
txtName.Focus() txtName.Focus()
Return False Return False
End If End If
If mgrTags.DoCheckDuplicate(oTag.Name, oTag.ID) Then If mgrTags.DoCheckDuplicate(oTag.Name, oTag.ID) Then
mgrCommon.ShowMessage("A tag with this name already exists.", MsgBoxStyle.Exclamation) mgrCommon.ShowMessage(frmTags_ErrorTagDupe, MsgBoxStyle.Exclamation)
txtName.Focus() txtName.Focus()
Return False Return False
End If End If
@@ -262,7 +264,22 @@
Return True Return True
End Function End Function
Private Sub SetForm()
'Set Form Name
Me.Text = frmTags_FormName
'Set Form Text
grpTag.Text = frmTags_grpTag
lblName.Text = frmTags_lblName
btnClose.Text = frmTags_btnClose
btnDelete.Text = frmTags_btnDelete
btnAdd.Text = frmTags_btnAdd
btnCancel.Text = frmTags_btnCancel
btnSave.Text = frmTags_btnSave
End Sub
Private Sub frmTags_Load(sender As Object, e As EventArgs) Handles MyBase.Load Private Sub frmTags_Load(sender As Object, e As EventArgs) Handles MyBase.Load
SetForm()
LoadData() LoadData()
ModeChange() ModeChange()
AssignDirtyHandlers(grpTag.Controls) AssignDirtyHandlers(grpTag.Controls)
+25 -7
View File
@@ -1,4 +1,5 @@
Imports System.IO Imports GBM.My.Resources
Imports System.IO
Public Class frmVariableManager Public Class frmVariableManager
Dim hshVariableData As Hashtable Dim hshVariableData As Hashtable
@@ -53,7 +54,7 @@ Public Class frmVariableManager
End If End If
End If End If
sNewPath = mgrCommon.OpenFolderBrowser("Choose the path the variable represents:", sDefaultFolder, False) sNewPath = mgrCommon.OpenFolderBrowser(frmVariableManager_PathBrowse, sDefaultFolder, False)
If sNewPath <> String.Empty Then txtPath.Text = sNewPath If sNewPath <> String.Empty Then txtPath.Text = sNewPath
End Sub End Sub
@@ -67,7 +68,7 @@ Public Class frmVariableManager
Private Function HandleDirty() As MsgBoxResult Private Function HandleDirty() As MsgBoxResult
Dim oResult As MsgBoxResult Dim oResult As MsgBoxResult
oResult = mgrCommon.ShowMessage("There are unsaved changes on this form. Do you want to save?", MsgBoxStyle.YesNoCancel) oResult = mgrCommon.ShowMessage(App_ConfirmDirty, MsgBoxStyle.YesNoCancel)
Select Case oResult Select Case oResult
Case MsgBoxResult.Yes Case MsgBoxResult.Yes
@@ -251,7 +252,7 @@ Public Class frmVariableManager
If lstVariables.SelectedItems.Count > 0 Then If lstVariables.SelectedItems.Count > 0 Then
oCustomVariable = DirectCast(VariableData(lstVariables.SelectedItems(0).ToString), clsPathVariable) oCustomVariable = DirectCast(VariableData(lstVariables.SelectedItems(0).ToString), clsPathVariable)
If mgrCommon.ShowMessage("Are you sure you want to delete " & oCustomVariable.Name & "? This cannot be undone.", MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then If mgrCommon.ShowMessage(frmVariableManager_ConfirmDelete, oCustomVariable.Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
mgrVariables.DoVariableDelete(oCustomVariable.ID) mgrVariables.DoVariableDelete(oCustomVariable.ID)
mgrVariables.DoPathUpdate(oCurrentVariable.FormattedName, oCurrentVariable.Path) mgrVariables.DoPathUpdate(oCurrentVariable.FormattedName, oCurrentVariable.Path)
LoadData() LoadData()
@@ -271,19 +272,19 @@ Public Class frmVariableManager
Private Function CoreValidatation(ByVal oCustomVariable As clsPathVariable) As Boolean Private Function CoreValidatation(ByVal oCustomVariable As clsPathVariable) As Boolean
If txtName.Text = String.Empty Then If txtName.Text = String.Empty Then
mgrCommon.ShowMessage("You must enter a valid path name.", MsgBoxStyle.Exclamation) mgrCommon.ShowMessage(frmVariableManager_ErrorValidName, MsgBoxStyle.Exclamation)
txtName.Focus() txtName.Focus()
Return False Return False
End If End If
If txtPath.Text = String.Empty Then If txtPath.Text = String.Empty Then
mgrCommon.ShowMessage("You must enter a valid path.", MsgBoxStyle.Exclamation) mgrCommon.ShowMessage(frmVariableManager_ErrorValidPath, MsgBoxStyle.Exclamation)
txtPath.Focus() txtPath.Focus()
Return False Return False
End If End If
If mgrVariables.DoCheckDuplicate(oCustomVariable.Name, oCustomVariable.ID) Then If mgrVariables.DoCheckDuplicate(oCustomVariable.Name, oCustomVariable.ID) Then
mgrCommon.ShowMessage("An custom variable with this name already exists.", MsgBoxStyle.Exclamation) mgrCommon.ShowMessage(frmVariableManager_ErrorVariableDupe, MsgBoxStyle.Exclamation)
txtName.Focus() txtName.Focus()
Return False Return False
End If End If
@@ -291,7 +292,24 @@ Public Class frmVariableManager
Return True Return True
End Function End Function
Private Sub SetForm()
'Set Form Name
Me.Text = frmVariableManager_FormName
'Set Form Text
btnCancel.Text = frmVariableManager_btnCancel
btnSave.Text = frmVariableManager_btnSave
grpVariable.Text = frmVariableManager_grpVariable
btnPathBrowse.Text = frmVariableManager_btnPathBrowse
lblPath.Text = frmVariableManager_lblPath
lblName.Text = frmVariableManager_lblName
btnClose.Text = frmVariableManager_btnClose
btnDelete.Text = frmVariableManager_btnDelete
btnAdd.Text = frmVariableManager_btnAdd
End Sub
Private Sub frmVariableManager_Load(sender As Object, e As EventArgs) Handles MyBase.Load Private Sub frmVariableManager_Load(sender As Object, e As EventArgs) Handles MyBase.Load
SetForm()
LoadData() LoadData()
ModeChange() ModeChange()
AssignDirtyHandlers(grpVariable.Controls) AssignDirtyHandlers(grpVariable.Controls)
+6 -5
View File
@@ -1,4 +1,5 @@
Imports System.IO Imports GBM.My.Resources
Imports System.IO
Imports System.Text.RegularExpressions Imports System.Text.RegularExpressions
Imports System.Reflection Imports System.Reflection
@@ -8,10 +9,10 @@ Public Class mgrPath
Private Shared sDBLocation As String = sSettingsRoot & "\gbm.s3db" Private Shared sDBLocation As String = sSettingsRoot & "\gbm.s3db"
Private Shared sIncludeFile As String = sSettingsRoot & "\gbm_include.txt" Private Shared sIncludeFile As String = sSettingsRoot & "\gbm_include.txt"
Private Shared sExcludeFile As String = sSettingsRoot & "\gbm_exclude.txt" Private Shared sExcludeFile As String = sSettingsRoot & "\gbm_exclude.txt"
Private Shared sOfficialWebURL As String = "http://mikemaximus.github.io/gbm-web/" Private Shared sOfficialWebURL As String = App_URLWebsite
Private Shared sOfficialImportURL As String = "http://mikemaximus.github.io/gbm-web/GBM_Official.xml" Private Shared sOfficialImportURL As String = App_URLImport
Private Shared sOfficialManualURL As String = "http://mikemaximus.github.io/gbm-web/manual.html" Private Shared sOfficialManualURL As String = App_URLManual
Private Shared sOfficialUpdatesURL As String = "https://github.com/MikeMaximus/gbm/releases" Private Shared sOfficialUpdatesURL As String = App_URLUpdates
Private Shared sRemoteDatabaseLocation As String Private Shared sRemoteDatabaseLocation As String
Private Shared hshCustomVariables As Hashtable Private Shared hshCustomVariables As Hashtable
Private Shared oReleaseType As ProcessorArchitecture = AssemblyName.GetAssemblyName(Application.ExecutablePath()).ProcessorArchitecture Private Shared oReleaseType As ProcessorArchitecture = AssemblyName.GetAssemblyName(Application.ExecutablePath()).ProcessorArchitecture
+532 -1
View File
@@ -114,6 +114,42 @@ Namespace My.Resources
End Get End Get
End Property End Property
'''<summary>
''' Looks up a localized string similar to http://mikemaximus.github.io/gbm-web/GBM_Official.xml.
'''</summary>
Friend ReadOnly Property App_URLImport() As String
Get
Return ResourceManager.GetString("App_URLImport", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to http://mikemaximus.github.io/gbm-web/manual.html.
'''</summary>
Friend ReadOnly Property App_URLManual() As String
Get
Return ResourceManager.GetString("App_URLManual", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to https://github.com/MikeMaximus/gbm/releases.
'''</summary>
Friend ReadOnly Property App_URLUpdates() As String
Get
Return ResourceManager.GetString("App_URLUpdates", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to http://mikemaximus.github.io/gbm-web/.
'''</summary>
Friend ReadOnly Property App_URLWebsite() As String
Get
Return ResourceManager.GetString("App_URLWebsite", resourceCulture)
End Get
End Property
'''<summary> '''<summary>
''' Looks up a localized string similar to &amp;Back. ''' Looks up a localized string similar to &amp;Back.
'''</summary> '''</summary>
@@ -1312,7 +1348,7 @@ Namespace My.Resources
End Property End Property
'''<summary> '''<summary>
''' 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.. ''' Looks up a localized string similar to Would you like to choose games to import from the official list?[BR][BR]This requires an active internet connection..
'''</summary> '''</summary>
Friend ReadOnly Property frmGameManager_ConfirmOfficialImport() As String Friend ReadOnly Property frmGameManager_ConfirmOfficialImport() As String
Get Get
@@ -2967,6 +3003,501 @@ Namespace My.Resources
End Get End Get
End Property End Property
'''<summary>
''' Looks up a localized string similar to Choose a backup folder:.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_BrowseFolder() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_BrowseFolder", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to &amp;Back.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_btnBack() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_btnBack", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Import from Official List.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_btnDownloadList() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_btnDownloadList", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to ....
'''</summary>
Friend ReadOnly Property frmStartUpWizard_btnFolderBrowse() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_btnFolderBrowse", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to &amp;Next.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_btnNext() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_btnNext", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to &amp;Finish.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_btnNext_Finish() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_btnNext_Finish", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Game Manager.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_btnOpenMonitorList() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_btnOpenMonitorList", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Add Game Wizard.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_btnOpenWizard() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_btnOpenWizard", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Create a sub-folder for each game.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_chkCreateFolder() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_chkCreateFolder", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Import any existing GBM data in the backup folder.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_chkSync() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_chkSync", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Would you like to choose games to import from the official list?[BR][BR]This requires an active internet connection..
'''</summary>
Friend ReadOnly Property frmStartUpWizard_ConfirmOfficialImport() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_ConfirmOfficialImport", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to The selected path must be a full path..
'''</summary>
Friend ReadOnly Property frmStartUpWizard_ErrorBadFolder() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_ErrorBadFolder", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to You must select a backup path to continue..
'''</summary>
Friend ReadOnly Property frmStartUpWizard_ErrorNoFolder() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_ErrorNoFolder", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to The folder you selected does not exist or is not a valid folder..
'''</summary>
Friend ReadOnly Property frmStartUpWizard_ErrorNoFolderExists() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_ErrorNoFolderExists", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Existing data was detected in the backup folder and has been imported..
'''</summary>
Friend ReadOnly Property frmStartUpWizard_ExistingData() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_ExistingData", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to GBM Setup.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_FormName() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_FormName", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to This guide will help you through some quick and easy steps to get started..
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep1Instructions() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep1Instructions", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to If you&apos;d like to learn about advanced features or have any other questions before you get started, there is a detailed online manual available..
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep1Instructions2() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep1Instructions2", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Welcome to GBM.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep1Title() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep1Title", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to GBM will store all your backup files along with a manifest database (gbm.s3db) in this location. .
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep2Instructions() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep2Instructions", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Choose where GBM saves your backup files:.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep2Intro() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep2Intro", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Backup Location.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep2Title() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep2Title", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Before you can start monitoring for games, they need to be configured so GBM knows what to look for and how to handle them. You can download pre-made configurations from the official list or add them all yourself using the tools below. You can also skip this step for now!.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep3Intro() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep3Intro", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Monitoring Games.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep3Title() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep3Title", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to GBM will automatically monitor and backup your games each time they are closed..
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep4Instructions() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep4Instructions", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Remember that GBM can only currently monitor one game at a time..
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep4Instructions2() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep4Instructions2", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to You can change anything you&apos;ve setup in this wizard and find more settings and features by exploring the menus. Thanks!.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep4Instructions3() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep4Instructions3", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Finished!.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_lblStep4Title() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_lblStep4Title", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Game Backup Monitor Manual.
'''</summary>
Friend ReadOnly Property frmStartUpWizard_llbManual() As String
Get
Return ResourceManager.GetString("frmStartUpWizard_llbManual", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to +.
'''</summary>
Friend ReadOnly Property frmTags_btnAdd() As String
Get
Return ResourceManager.GetString("frmTags_btnAdd", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to &amp;Cancel.
'''</summary>
Friend ReadOnly Property frmTags_btnCancel() As String
Get
Return ResourceManager.GetString("frmTags_btnCancel", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to C&amp;lose.
'''</summary>
Friend ReadOnly Property frmTags_btnClose() As String
Get
Return ResourceManager.GetString("frmTags_btnClose", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to -.
'''</summary>
Friend ReadOnly Property frmTags_btnDelete() As String
Get
Return ResourceManager.GetString("frmTags_btnDelete", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to &amp;Save.
'''</summary>
Friend ReadOnly Property frmTags_btnSave() As String
Get
Return ResourceManager.GetString("frmTags_btnSave", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Are you sure you want to delete [PARAM]? This cannot be undone.[BR][BR]All games using this tag will have it removed..
'''</summary>
Friend ReadOnly Property frmTags_ConfirmDelete() As String
Get
Return ResourceManager.GetString("frmTags_ConfirmDelete", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to A tag with this name already exists..
'''</summary>
Friend ReadOnly Property frmTags_ErrorTagDupe() As String
Get
Return ResourceManager.GetString("frmTags_ErrorTagDupe", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to You must enter a valid tag name..
'''</summary>
Friend ReadOnly Property frmTags_ErrorValidName() As String
Get
Return ResourceManager.GetString("frmTags_ErrorValidName", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Tags.
'''</summary>
Friend ReadOnly Property frmTags_FormName() As String
Get
Return ResourceManager.GetString("frmTags_FormName", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Configuration.
'''</summary>
Friend ReadOnly Property frmTags_grpTag() As String
Get
Return ResourceManager.GetString("frmTags_grpTag", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Name:.
'''</summary>
Friend ReadOnly Property frmTags_lblName() As String
Get
Return ResourceManager.GetString("frmTags_lblName", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to +.
'''</summary>
Friend ReadOnly Property frmVariableManager_btnAdd() As String
Get
Return ResourceManager.GetString("frmVariableManager_btnAdd", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to &amp;Cancel.
'''</summary>
Friend ReadOnly Property frmVariableManager_btnCancel() As String
Get
Return ResourceManager.GetString("frmVariableManager_btnCancel", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to C&amp;lose.
'''</summary>
Friend ReadOnly Property frmVariableManager_btnClose() As String
Get
Return ResourceManager.GetString("frmVariableManager_btnClose", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to -.
'''</summary>
Friend ReadOnly Property frmVariableManager_btnDelete() As String
Get
Return ResourceManager.GetString("frmVariableManager_btnDelete", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to ....
'''</summary>
Friend ReadOnly Property frmVariableManager_btnPathBrowse() As String
Get
Return ResourceManager.GetString("frmVariableManager_btnPathBrowse", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to &amp;Save.
'''</summary>
Friend ReadOnly Property frmVariableManager_btnSave() As String
Get
Return ResourceManager.GetString("frmVariableManager_btnSave", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Are you sure you want to delete [PARAM]? This cannot be undone..
'''</summary>
Friend ReadOnly Property frmVariableManager_ConfirmDelete() As String
Get
Return ResourceManager.GetString("frmVariableManager_ConfirmDelete", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to You must enter a valid variable name..
'''</summary>
Friend ReadOnly Property frmVariableManager_ErrorValidName() As String
Get
Return ResourceManager.GetString("frmVariableManager_ErrorValidName", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to You must enter a valid path..
'''</summary>
Friend ReadOnly Property frmVariableManager_ErrorValidPath() As String
Get
Return ResourceManager.GetString("frmVariableManager_ErrorValidPath", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to A custom variable with this name already exists..
'''</summary>
Friend ReadOnly Property frmVariableManager_ErrorVariableDupe() As String
Get
Return ResourceManager.GetString("frmVariableManager_ErrorVariableDupe", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Custom Variable Manager.
'''</summary>
Friend ReadOnly Property frmVariableManager_FormName() As String
Get
Return ResourceManager.GetString("frmVariableManager_FormName", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Configuration.
'''</summary>
Friend ReadOnly Property frmVariableManager_grpVariable() As String
Get
Return ResourceManager.GetString("frmVariableManager_grpVariable", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Name:.
'''</summary>
Friend ReadOnly Property frmVariableManager_lblName() As String
Get
Return ResourceManager.GetString("frmVariableManager_lblName", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Path:.
'''</summary>
Friend ReadOnly Property frmVariableManager_lblPath() As String
Get
Return ResourceManager.GetString("frmVariableManager_lblPath", resourceCulture)
End Get
End Property
'''<summary>
''' Looks up a localized string similar to Choose the path the variable represents:.
'''</summary>
Friend ReadOnly Property frmVariableManager_PathBrowse() As String
Get
Return ResourceManager.GetString("frmVariableManager_PathBrowse", resourceCulture)
End Get
End Property
'''<summary> '''<summary>
''' Looks up a localized resource of type System.Drawing.Icon similar to (Icon). ''' Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
'''</summary> '''</summary>
+178 -1
View File
@@ -554,7 +554,7 @@
<value>Are you sure you want to save the following changes to [PARAM] selected games?[BR][BR]Monitor this game: [PARAM][BR]Monitor only: [PARAM]</value> <value>Are you sure you want to save the following changes to [PARAM] selected games?[BR][BR]Monitor this game: [PARAM][BR]Monitor only: [PARAM]</value>
</data> </data>
<data name="frmGameManager_ConfirmOfficialImport" xml:space="preserve"> <data name="frmGameManager_ConfirmOfficialImport" xml:space="preserve">
<value>Would you like to choose games to import from the official game list?[BR][BR]This require an active internet connection.</value> <value>Would you like to choose games to import from the official list?[BR][BR]This requires an active internet connection.</value>
</data> </data>
<data name="frmGameManager_ConfirmRestore" xml:space="preserve"> <data name="frmGameManager_ConfirmRestore" xml:space="preserve">
<value>Are you sure you want to restore the backup for [PARAM]? This will close the form.</value> <value>Are you sure you want to restore the backup for [PARAM]? This will close the form.</value>
@@ -1048,6 +1048,18 @@
<data name="frmGameManager_grpStats" xml:space="preserve"> <data name="frmGameManager_grpStats" xml:space="preserve">
<value>Backup Information</value> <value>Backup Information</value>
</data> </data>
<data name="App_URLImport" xml:space="preserve">
<value>http://mikemaximus.github.io/gbm-web/GBM_Official.xml</value>
</data>
<data name="App_URLManual" xml:space="preserve">
<value>http://mikemaximus.github.io/gbm-web/manual.html</value>
</data>
<data name="App_URLUpdates" xml:space="preserve">
<value>https://github.com/MikeMaximus/gbm/releases</value>
</data>
<data name="App_URLWebsite" xml:space="preserve">
<value>http://mikemaximus.github.io/gbm-web/</value>
</data>
<data name="frmIncludeExclude_cmsAdd" xml:space="preserve"> <data name="frmIncludeExclude_cmsAdd" xml:space="preserve">
<value>Add Custom Item</value> <value>Add Custom Item</value>
</data> </data>
@@ -1126,4 +1138,169 @@
<data name="frmSettings_lblMinutes" xml:space="preserve"> <data name="frmSettings_lblMinutes" xml:space="preserve">
<value>minutes</value> <value>minutes</value>
</data> </data>
<data name="frmStartUpWizard_BrowseFolder" xml:space="preserve">
<value>Choose a backup folder:</value>
</data>
<data name="frmStartUpWizard_btnBack" xml:space="preserve">
<value>&amp;Back</value>
</data>
<data name="frmStartUpWizard_btnDownloadList" xml:space="preserve">
<value>Import from Official List</value>
</data>
<data name="frmStartUpWizard_btnFolderBrowse" xml:space="preserve">
<value>...</value>
</data>
<data name="frmStartUpWizard_btnNext" xml:space="preserve">
<value>&amp;Next</value>
</data>
<data name="frmStartUpWizard_btnNext_Finish" xml:space="preserve">
<value>&amp;Finish</value>
</data>
<data name="frmStartUpWizard_btnOpenMonitorList" xml:space="preserve">
<value>Game Manager</value>
</data>
<data name="frmStartUpWizard_btnOpenWizard" xml:space="preserve">
<value>Add Game Wizard</value>
</data>
<data name="frmStartUpWizard_chkCreateFolder" xml:space="preserve">
<value>Create a sub-folder for each game</value>
</data>
<data name="frmStartUpWizard_chkSync" xml:space="preserve">
<value>Import any existing GBM data in the backup folder</value>
</data>
<data name="frmStartUpWizard_ConfirmOfficialImport" xml:space="preserve">
<value>Would you like to choose games to import from the official list?[BR][BR]This requires an active internet connection.</value>
</data>
<data name="frmStartUpWizard_ErrorBadFolder" xml:space="preserve">
<value>The selected path must be a full path.</value>
</data>
<data name="frmStartUpWizard_ErrorNoFolder" xml:space="preserve">
<value>You must select a backup path to continue.</value>
</data>
<data name="frmStartUpWizard_ErrorNoFolderExists" xml:space="preserve">
<value>The folder you selected does not exist or is not a valid folder.</value>
</data>
<data name="frmStartUpWizard_ExistingData" xml:space="preserve">
<value>Existing data was detected in the backup folder and has been imported.</value>
</data>
<data name="frmStartUpWizard_FormName" xml:space="preserve">
<value>GBM Setup</value>
</data>
<data name="frmStartUpWizard_lblStep1Instructions" xml:space="preserve">
<value>This guide will help you through some quick and easy steps to get started.</value>
</data>
<data name="frmStartUpWizard_lblStep1Instructions2" xml:space="preserve">
<value>If you'd like to learn about advanced features or have any other questions before you get started, there is a detailed online manual available.</value>
</data>
<data name="frmStartUpWizard_lblStep1Title" xml:space="preserve">
<value>Welcome to GBM</value>
</data>
<data name="frmStartUpWizard_lblStep2Instructions" xml:space="preserve">
<value>GBM will store all your backup files along with a manifest database (gbm.s3db) in this location. </value>
</data>
<data name="frmStartUpWizard_lblStep2Intro" xml:space="preserve">
<value>Choose where GBM saves your backup files:</value>
</data>
<data name="frmStartUpWizard_lblStep2Title" xml:space="preserve">
<value>Backup Location</value>
</data>
<data name="frmStartUpWizard_lblStep3Intro" xml:space="preserve">
<value>Before you can start monitoring for games, they need to be configured so GBM knows what to look for and how to handle them. You can download pre-made configurations from the official list or add them all yourself using the tools below. You can also skip this step for now!</value>
</data>
<data name="frmStartUpWizard_lblStep3Title" xml:space="preserve">
<value>Monitoring Games</value>
</data>
<data name="frmStartUpWizard_lblStep4Instructions" xml:space="preserve">
<value>GBM will automatically monitor and backup your games each time they are closed.</value>
</data>
<data name="frmStartUpWizard_lblStep4Instructions2" xml:space="preserve">
<value>Remember that GBM can only currently monitor one game at a time.</value>
</data>
<data name="frmStartUpWizard_lblStep4Instructions3" xml:space="preserve">
<value>You can change anything you've setup in this wizard and find more settings and features by exploring the menus. Thanks!</value>
</data>
<data name="frmStartUpWizard_lblStep4Title" xml:space="preserve">
<value>Finished!</value>
</data>
<data name="frmStartUpWizard_llbManual" xml:space="preserve">
<value>Game Backup Monitor Manual</value>
</data>
<data name="frmTags_btnAdd" xml:space="preserve">
<value>+</value>
</data>
<data name="frmTags_btnCancel" xml:space="preserve">
<value>&amp;Cancel</value>
</data>
<data name="frmTags_btnClose" xml:space="preserve">
<value>C&amp;lose</value>
</data>
<data name="frmTags_btnDelete" xml:space="preserve">
<value>-</value>
</data>
<data name="frmTags_btnSave" xml:space="preserve">
<value>&amp;Save</value>
</data>
<data name="frmTags_ConfirmDelete" xml:space="preserve">
<value>Are you sure you want to delete [PARAM]? This cannot be undone.[BR][BR]All games using this tag will have it removed.</value>
</data>
<data name="frmTags_ErrorTagDupe" xml:space="preserve">
<value>A tag with this name already exists.</value>
</data>
<data name="frmTags_ErrorValidName" xml:space="preserve">
<value>You must enter a valid tag name.</value>
</data>
<data name="frmTags_FormName" xml:space="preserve">
<value>Tags</value>
</data>
<data name="frmTags_grpTag" xml:space="preserve">
<value>Configuration</value>
</data>
<data name="frmTags_lblName" xml:space="preserve">
<value>Name:</value>
</data>
<data name="frmVariableManager_btnAdd" xml:space="preserve">
<value>+</value>
</data>
<data name="frmVariableManager_btnCancel" xml:space="preserve">
<value>&amp;Cancel</value>
</data>
<data name="frmVariableManager_btnClose" xml:space="preserve">
<value>C&amp;lose</value>
</data>
<data name="frmVariableManager_btnDelete" xml:space="preserve">
<value>-</value>
</data>
<data name="frmVariableManager_btnPathBrowse" xml:space="preserve">
<value>...</value>
</data>
<data name="frmVariableManager_btnSave" xml:space="preserve">
<value>&amp;Save</value>
</data>
<data name="frmVariableManager_ConfirmDelete" xml:space="preserve">
<value>Are you sure you want to delete [PARAM]? This cannot be undone.</value>
</data>
<data name="frmVariableManager_ErrorValidName" xml:space="preserve">
<value>You must enter a valid variable name.</value>
</data>
<data name="frmVariableManager_ErrorValidPath" xml:space="preserve">
<value>You must enter a valid path.</value>
</data>
<data name="frmVariableManager_ErrorVariableDupe" xml:space="preserve">
<value>A custom variable with this name already exists.</value>
</data>
<data name="frmVariableManager_FormName" xml:space="preserve">
<value>Custom Variable Manager</value>
</data>
<data name="frmVariableManager_grpVariable" xml:space="preserve">
<value>Configuration</value>
</data>
<data name="frmVariableManager_lblName" xml:space="preserve">
<value>Name:</value>
</data>
<data name="frmVariableManager_lblPath" xml:space="preserve">
<value>Path:</value>
</data>
<data name="frmVariableManager_PathBrowse" xml:space="preserve">
<value>Choose the path the variable represents:</value>
</data>
</root> </root>