From da9a1d8b53cac00d5c35af8c495627257b90df20 Mon Sep 17 00:00:00 2001 From: "Michael J. Seiferling" Date: Wed, 23 Dec 2015 19:54:45 -0600 Subject: [PATCH] Moved strings to resource (frmGameTags, frmIncludeExclude, frmSettings) --- GBM/Forms/frmFilter.vb | 2 + GBM/Forms/frmGameManager.vb | 4 + GBM/Forms/frmGameTags.vb | 22 +- GBM/Forms/frmIncludeExclude.vb | 50 ++- GBM/Forms/frmSettings.vb | 44 ++- GBM/Forms/frmStartUpWizard.vb | 7 +- GBM/Managers/mgrCommon.vb | 2 + GBM/My Project/Resources.Designer.vb | 549 +++++++++++++++++++++++++++ GBM/My Project/Resources.resx | 183 +++++++++ 9 files changed, 835 insertions(+), 28 deletions(-) diff --git a/GBM/Forms/frmFilter.vb b/GBM/Forms/frmFilter.vb index 83d2421..f7a2c55 100644 --- a/GBM/Forms/frmFilter.vb +++ b/GBM/Forms/frmFilter.vb @@ -157,6 +157,7 @@ Public Class frmFilter lblCompany.Text = frmFilter_lblCompany lblProcess.Text = frmFilter_lblProcess lblName.Text = frmFilter_lblName + grpGameInfoOptions.Text = frmFilter_grpGameInfoOptions optAll.Text = frmFilter_optAll optAny.Text = frmFilter_optAny lblGameTags.Text = frmFilter_lblGameTags @@ -164,6 +165,7 @@ Public Class frmFilter btnRemove.Text = frmFilter_btnRemove btnAdd.Text = frmFilter_btnAdd btnOK.Text = frmFilter_btnOK + grpTagOptions.Text = frmFilter_grpTagOptions optTag.Text = frmFilter_optTag optGameInfo.Text = frmFilter_optGameInfo End Sub diff --git a/GBM/Forms/frmGameManager.vb b/GBM/Forms/frmGameManager.vb index a3c7533..9e8face 100644 --- a/GBM/Forms/frmGameManager.vb +++ b/GBM/Forms/frmGameManager.vb @@ -1227,6 +1227,10 @@ Public Class frmGameManager Me.Name = frmGameManager_FormName 'Set Form text + grpFilter.Text = frmGameManager_grpFilter + grpConfig.Text = frmGameManager_grpConfig + grpExtra.Text = frmGameManager_grpExtra + grpStats.Text = frmGameManager_grpStats btnExport.Text = frmGameManager_btnExport btnImport.Text = frmGameManager_btnImport optCustom.Text = frmGameManager_optCustom diff --git a/GBM/Forms/frmGameTags.vb b/GBM/Forms/frmGameTags.vb index a025236..0f58d0d 100644 --- a/GBM/Forms/frmGameTags.vb +++ b/GBM/Forms/frmGameTags.vb @@ -1,4 +1,6 @@ -Public Class frmGameTags +Imports GBM.My.Resources + +Public Class frmGameTags Dim sMonitorIDs As List(Of String) Dim sGameName As String = String.Empty @@ -31,7 +33,7 @@ oData = lstTags.SelectedItems(0) oGameTags = New List(Of clsGameTag) - For Each sID As String In IDList + For Each sID As String In IDList oGameTag = New clsGameTag oGameTag.MonitorID = sID oGameTag.TagID = oData.Key @@ -160,14 +162,24 @@ End Sub Private Sub SetForm() + 'Set Form Name If IDList.Count > 1 Then - Me.Text = "Edit Tags for Multiple Games" + Me.Text = frmGameTags_FormNameMulti Else - Me.Text = "Edit Tags for " & GameName + Me.Text = mgrCommon.FormatString(frmGameTags_FormNameSingle, GameName) End If + + 'Set Form Text + btnOpenTags.Text = frmGameTags_btnOpenTags + btnClose.Text = frmGameTags_btnClose + lblGameTags.Text = frmGameTags_lblGameTags + lblTags.Text = frmGameTags_lblTags + btnRemove.Text = frmGameTags_btnRemove + btnAdd.Text = frmGameTags_btnAdd + End Sub - Private Sub frmGameTags_Load(sender As Object, e As EventArgs) Handles MyBase.Load + Private Sub frmGameTags_Load(sender As Object, e As EventArgs) Handles MyBase.Load LoadData() SetForm() End Sub diff --git a/GBM/Forms/frmIncludeExclude.vb b/GBM/Forms/frmIncludeExclude.vb index 1125388..c466b10 100644 --- a/GBM/Forms/frmIncludeExclude.vb +++ b/GBM/Forms/frmIncludeExclude.vb @@ -1,8 +1,9 @@ -Imports System.IO +Imports GBM.My.Resources +Imports System.IO Public Class frmIncludeExclude - Dim sFormName As String = "Builder" + Dim sFormName As String = String.Empty Dim sRootFolder As String = String.Empty Dim sBuilderString As String @@ -72,7 +73,7 @@ Public Class frmIncludeExclude Catch uaex As UnauthorizedAccessException 'Do Nothing Catch ex As Exception - mgrCommon.ShowMessage("An unexpected error occured while reading the file system: " & vbCrLf & vbCrLf & ex.Message, MsgBoxStyle.Critical) + mgrCommon.ShowMessage(frmIncludeExclude_ErrorFileSystemRead, ex.Message, MsgBoxStyle.Critical) Finally treFiles.EndUpdate() Cursor.Current = Cursors.Default @@ -107,7 +108,7 @@ Public Class frmIncludeExclude End If End If - sNewPath = mgrCommon.OpenFolderBrowser("Choose the location of the saved game folder:", sDefaultFolder, False) + sNewPath = mgrCommon.OpenFolderBrowser(frmIncludeExclude_BrowseSaveFolder, sDefaultFolder, False) If sNewPath <> String.Empty Then txtRootFolder.Text = sNewPath End Sub @@ -222,30 +223,51 @@ Public Class frmIncludeExclude Private Sub OpenRawEdit() Dim sCurrentString As String = CreateNewBuilderString() Dim sNewString As String - sNewString = InputBox("Items are semi-colon delimited.", FormName & " Raw Edit", sCurrentString) + sNewString = InputBox(frmIncludeExclude_RawEditInfo, mgrCommon.FormatString(frmIncludeExclude_RawEditTitle, FormName), sCurrentString) If sNewString <> String.Empty Then ParseBuilderString(sNewString) End If End Sub - Private Sub frmIncludeExclude_Load(sender As Object, e As EventArgs) Handles MyBase.Load - Me.Text = FormName & " Builder" + Private Sub SetForm() + 'Set Form Name + Me.Text = mgrCommon.FormatString(frmIncludeExclude_FormName, FormName) + + 'Set Form Text + lblSaveFolder.Text = frmIncludeExclude_lblSaveFolder + btnRawEdit.Text = frmIncludeExclude_btnRawEdit + lblItems.Text = mgrCommon.FormatString(frmIncludeExclude_lblItems, FormName) + grpFileOptions.Text = mgrCommon.FormatString(frmIncludeExclude_grpFileOptions, FormName) + optFileTypes.Text = frmIncludeExclude_optFileTypes + optIndividualFiles.Text = frmIncludeExclude_optIndividualFiles + btnRemove.Text = frmIncludeExclude_btnRemove + btnAdd.Text = frmIncludeExclude_btnAdd + btnBrowse.Text = frmIncludeExclude_btnBrowse + btnCancel.Text = frmIncludeExclude_btnCancel + btnSave.Text = frmIncludeExclude_btnSave + cmsAdd.Text = frmIncludeExclude_cmsAdd + cmsEdit.Text = frmIncludeExclude_cmsEdit + cmsRemove.Text = frmIncludeExclude_cmsRemove + + 'Set Defaults txtRootFolder.Text = RootFolder optFileTypes.Checked = True - lblItems.Text = FormName & " Items" - grpFileOptions.Text = FormName & " Options" If BuilderString <> String.Empty Then ParseBuilderString(BuilderString) If txtRootFolder.Text <> String.Empty Then BuildTrunk() End Sub + Private Sub frmIncludeExclude_Load(sender As Object, e As EventArgs) Handles MyBase.Load + SetForm() + End Sub + Private Sub frmIncludeExclude_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown treFiles.Select() If Not treFiles.SelectedNode Is Nothing Then treFiles.SelectedNode.Expand() If txtRootFolder.Text = String.Empty Then - ttWarning.ToolTipTitle = "Saved Game Explorer" - ttWarning.SetToolTip(treFiles, "Set the saved game folder using the button above.") - ttWarning.SetToolTip(txtRootFolder, "The saved game folder could not be determined or does not exist.") - ttWarning.SetToolTip(btnBrowse, "Click here to set the saved game folder.") + ttWarning.ToolTipTitle = frmIncludeExclude_ToolTipTitle + ttWarning.SetToolTip(treFiles, frmIncludeExclude_ToolTipFiles) + ttWarning.SetToolTip(txtRootFolder, frmIncludeExclude_ToolTipFolder) + ttWarning.SetToolTip(btnBrowse, frmIncludeExclude_ToolTipBrowse) End If End Sub @@ -305,7 +327,7 @@ Public Class frmIncludeExclude End Sub Private Sub cmsAdd_Click(sender As Object, e As EventArgs) Handles cmsAdd.Click - Dim oNewItem As New ListViewItem("Custom Item", 1) + Dim oNewItem As New ListViewItem(frmIncludeExclude_CustomItem, 1) oNewItem.Selected = True lstBuilder.Items.Add(oNewItem) lstBuilder.SelectedItems(0).BeginEdit() diff --git a/GBM/Forms/frmSettings.vb b/GBM/Forms/frmSettings.vb index c2b9a41..520a366 100644 --- a/GBM/Forms/frmSettings.vb +++ b/GBM/Forms/frmSettings.vb @@ -1,4 +1,6 @@ -Public Class frmSettings +Imports GBM.My.Resources + +Public Class frmSettings Dim bShutdown As Boolean = False Dim bBackupLocationChanged As Boolean = False Dim bCheckSumDisabled As Boolean = False @@ -47,7 +49,7 @@ oSettings.StartWithWindows = chkStartWindows.Checked oSettings.MonitorOnStartup = chkMonitorOnStartup.Checked - oSettings.StartToTray = chkStartToTray.Checked + oSettings.StartToTray = chkStartToTray.Checked oSettings.ShowDetectionToolTips = chkShowDetectionTips.Checked oSettings.DisableConfirmation = chkBackupConfirm.Checked oSettings.CreateSubFolder = chkCreateFolder.Checked @@ -75,7 +77,7 @@ End If oSettings.BackupFolder = txtBackupFolder.Text Else - mgrCommon.ShowMessage("The backup folder does not exist. Please choose a valid backup folder.", MsgBoxStyle.Exclamation) + mgrCommon.ShowMessage(frmSettings_ErrorBackupFolder, MsgBoxStyle.Exclamation) Return False End If @@ -108,7 +110,6 @@ chkTimeTracking.Checked = oSettings.TimeTracking chkSupressBackup.Checked = oSettings.SupressBackup nudSupressBackupThreshold.Value = oSettings.SupressBackupThreshold - nudSupressBackupThreshold.Enabled = chkSupressBackup.Checked End Sub @@ -130,15 +131,42 @@ End If End Sub + Private Sub SetForm() + 'Set Form Name + Me.Text = frmSettings_FormName + + 'Set Form Text + grpBackup.Text = frmSettings_grpBackup + lblMinutes.Text = frmSettings_lblMinutes + chkSupressBackup.Text = frmSettings_chkSupressBackup + chkCheckSum.Text = frmSettings_chkCheckSum + chkRestoreOnLaunch.Text = frmSettings_chkRestoreOnLaunch + chkOverwriteWarning.Text = frmSettings_chkOverwriteWarning + chkCreateFolder.Text = frmSettings_chkCreateFolder + chkBackupConfirm.Text = frmSettings_chkBackupConfirm + btnCancel.Text = frmSettings_btnCancel + btnSave.Text = frmSettings_btnSave + grpPaths.Text = frmSettings_grpPaths + btnBackupFolder.Text = frmSettings_btnBackupFolder + lblBackupFolder.Text = frmSettings_lblBackupFolder + grpGeneral.Text = frmSettings_grpGeneral + chkTimeTracking.Text = frmSettings_chkTimeTracking + chkStartWindows.Text = frmSettings_chkStartWindows + chkSync.Text = frmSettings_chkSync + chkShowDetectionTips.Text = frmSettings_chkShowDetectionTips + chkStartToTray.Text = frmSettings_chkStartToTray + chkMonitorOnStartup.Text = frmSettings_chkMonitorOnStartup + End Sub + Private Sub frmSettings_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load + SetForm() LoadSettings() End Sub Private Sub btnBackupFolder_Click(sender As System.Object, e As System.EventArgs) Handles btnBackupFolder.Click - fbBrowser.SelectedPath = oSettings.BackupFolder - If fbBrowser.ShowDialog() = Windows.Forms.DialogResult.OK Then - txtBackupFolder.Text = fbBrowser.SelectedPath - End If + Dim sNewFolder As String + sNewFolder = mgrCommon.OpenFolderBrowser(frmSettings_BrowseFolder, oSettings.BackupFolder, True) + If sNewFolder <> String.Empty Then txtBackupFolder.Text = sNewFolder End Sub Private Sub chkSupressBackup_CheckedChanged(sender As Object, e As EventArgs) Handles chkSupressBackup.CheckedChanged diff --git a/GBM/Forms/frmStartUpWizard.vb b/GBM/Forms/frmStartUpWizard.vb index 8de66a7..2c7dae3 100644 --- a/GBM/Forms/frmStartUpWizard.vb +++ b/GBM/Forms/frmStartUpWizard.vb @@ -180,7 +180,7 @@ Public Class frmStartUpWizard End If End If - sNewPath = mgrCommon.OpenFolderBrowser("Choose GBM backup folder:", sDefaultFolder, False) + sNewPath = mgrCommon.OpenFolderBrowser("Choose a backup folder:", sDefaultFolder, True) If sNewPath <> String.Empty Then txtBackupPath.Text = sNewPath End Sub @@ -195,6 +195,11 @@ Public Class frmStartUpWizard Private Sub frmStartUpWizard_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, "frmStartUpWizard") + Clipboard.SetText(sResource & vbCrLf & vbCrLf & sCode) End Sub Private Sub btnFolderBrowse_Click(sender As Object, e As EventArgs) Handles btnFolderBrowse.Click diff --git a/GBM/Managers/mgrCommon.vb b/GBM/Managers/mgrCommon.vb index 772b1aa..4fb8112 100644 --- a/GBM/Managers/mgrCommon.vb +++ b/GBM/Managers/mgrCommon.vb @@ -181,6 +181,8 @@ Public Class mgrCommon Public Shared Sub GetAllStrings(ByVal ctlParent As Control, ByRef sResource As String, ByRef sCode As String, ByVal sFormName As String) For Each ctl As Control In ctlParent.Controls If TypeOf ctl Is GroupBox Then + sResource &= sFormName & "_" & ctl.Name & vbTab & ctl.Text & vbCrLf + sCode &= ctl.Name & ".Text = " & sFormName & "_" & ctl.Name & vbCrLf GetAllStrings(ctl, sResource, sCode, sFormName) ElseIf TypeOf ctl Is TabControl Then For Each tb As TabPage In ctl.Controls diff --git a/GBM/My Project/Resources.Designer.vb b/GBM/My Project/Resources.Designer.vb index ea1c7b1..8b11e4b 100644 --- a/GBM/My Project/Resources.Designer.vb +++ b/GBM/My Project/Resources.Designer.vb @@ -807,6 +807,24 @@ Namespace My.Resources End Get End Property + ''' + ''' Looks up a localized string similar to Options. + ''' + Friend ReadOnly Property frmFilter_grpGameInfoOptions() As String + Get + Return ResourceManager.GetString("frmFilter_grpGameInfoOptions", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Options. + ''' + Friend ReadOnly Property frmFilter_grpTagOptions() As String + Get + Return ResourceManager.GetString("frmFilter_grpTagOptions", resourceCulture) + End Get + End Property + ''' ''' Looks up a localized string similar to Company:. ''' @@ -1428,6 +1446,42 @@ Namespace My.Resources End Get End Property + ''' + ''' Looks up a localized string similar to Configuration. + ''' + Friend ReadOnly Property frmGameManager_grpConfig() As String + Get + Return ResourceManager.GetString("frmGameManager_grpConfig", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Game Information. + ''' + Friend ReadOnly Property frmGameManager_grpExtra() As String + Get + Return ResourceManager.GetString("frmGameManager_grpExtra", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Games Filter. + ''' + Friend ReadOnly Property frmGameManager_grpFilter() As String + Get + Return ResourceManager.GetString("frmGameManager_grpFilter", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Backup Information. + ''' + Friend ReadOnly Property frmGameManager_grpStats() As String + Get + Return ResourceManager.GetString("frmGameManager_grpStats", resourceCulture) + End Get + End Property + ''' ''' Looks up a localized string similar to Icon. ''' @@ -1653,6 +1707,294 @@ Namespace My.Resources End Get End Property + ''' + ''' Looks up a localized string similar to >. + ''' + Friend ReadOnly Property frmGameTags_btnAdd() As String + Get + Return ResourceManager.GetString("frmGameTags_btnAdd", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to &Close. + ''' + Friend ReadOnly Property frmGameTags_btnClose() As String + Get + Return ResourceManager.GetString("frmGameTags_btnClose", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Setup &Tags.... + ''' + Friend ReadOnly Property frmGameTags_btnOpenTags() As String + Get + Return ResourceManager.GetString("frmGameTags_btnOpenTags", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to <. + ''' + Friend ReadOnly Property frmGameTags_btnRemove() As String + Get + Return ResourceManager.GetString("frmGameTags_btnRemove", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Edit Tags for Multiple Games. + ''' + Friend ReadOnly Property frmGameTags_FormNameMulti() As String + Get + Return ResourceManager.GetString("frmGameTags_FormNameMulti", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Edit Tags for [PARAM]. + ''' + Friend ReadOnly Property frmGameTags_FormNameSingle() As String + Get + Return ResourceManager.GetString("frmGameTags_FormNameSingle", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Current Tags. + ''' + Friend ReadOnly Property frmGameTags_lblGameTags() As String + Get + Return ResourceManager.GetString("frmGameTags_lblGameTags", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Available Tags. + ''' + Friend ReadOnly Property frmGameTags_lblTags() As String + Get + Return ResourceManager.GetString("frmGameTags_lblTags", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Choose the location of the saved game folder:. + ''' + Friend ReadOnly Property frmIncludeExclude_BrowseSaveFolder() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_BrowseSaveFolder", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to >. + ''' + Friend ReadOnly Property frmIncludeExclude_btnAdd() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_btnAdd", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to .... + ''' + Friend ReadOnly Property frmIncludeExclude_btnBrowse() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_btnBrowse", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to &Cancel. + ''' + Friend ReadOnly Property frmIncludeExclude_btnCancel() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_btnCancel", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Raw &Edit. + ''' + Friend ReadOnly Property frmIncludeExclude_btnRawEdit() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_btnRawEdit", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to <. + ''' + Friend ReadOnly Property frmIncludeExclude_btnRemove() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_btnRemove", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to &Save. + ''' + Friend ReadOnly Property frmIncludeExclude_btnSave() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_btnSave", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Add Custom Item. + ''' + Friend ReadOnly Property frmIncludeExclude_cmsAdd() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_cmsAdd", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Edit. + ''' + Friend ReadOnly Property frmIncludeExclude_cmsEdit() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_cmsEdit", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Remove. + ''' + Friend ReadOnly Property frmIncludeExclude_cmsRemove() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_cmsRemove", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Custom Item. + ''' + Friend ReadOnly Property frmIncludeExclude_CustomItem() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_CustomItem", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to An unexpected error occured while reading the file system:[BR][BR][PARAM]. + ''' + Friend ReadOnly Property frmIncludeExclude_ErrorFileSystemRead() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_ErrorFileSystemRead", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to [PARAM] Builder. + ''' + Friend ReadOnly Property frmIncludeExclude_FormName() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_FormName", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to [PARAM] Options. + ''' + Friend ReadOnly Property frmIncludeExclude_grpFileOptions() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_grpFileOptions", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to [PARAM] Items. + ''' + Friend ReadOnly Property frmIncludeExclude_lblItems() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_lblItems", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Saved Game Explorer. + ''' + Friend ReadOnly Property frmIncludeExclude_lblSaveFolder() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_lblSaveFolder", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to File Types. + ''' + Friend ReadOnly Property frmIncludeExclude_optFileTypes() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_optFileTypes", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Individual Files. + ''' + Friend ReadOnly Property frmIncludeExclude_optIndividualFiles() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_optIndividualFiles", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Items are semi-colon delimited.. + ''' + Friend ReadOnly Property frmIncludeExclude_RawEditInfo() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_RawEditInfo", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to [PARAM] Raw Edit. + ''' + Friend ReadOnly Property frmIncludeExclude_RawEditTitle() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_RawEditTitle", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Click here to set the saved game folder.. + ''' + Friend ReadOnly Property frmIncludeExclude_ToolTipBrowse() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_ToolTipBrowse", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Set the saved game folder using the button above.. + ''' + Friend ReadOnly Property frmIncludeExclude_ToolTipFiles() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_ToolTipFiles", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to The saved game folder could not be determined or does not exist.. + ''' + Friend ReadOnly Property frmIncludeExclude_ToolTipFolder() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_ToolTipFolder", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Saved Game Explorer. + ''' + Friend ReadOnly Property frmIncludeExclude_ToolTipTitle() As String + Get + Return ResourceManager.GetString("frmIncludeExclude_ToolTipTitle", 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.. ''' @@ -2418,6 +2760,213 @@ Namespace My.Resources End Get End Property + ''' + ''' Looks up a localized string similar to Choose a backup folder:. + ''' + Friend ReadOnly Property frmSettings_BrowseFolder() As String + Get + Return ResourceManager.GetString("frmSettings_BrowseFolder", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to .... + ''' + Friend ReadOnly Property frmSettings_btnBackupFolder() As String + Get + Return ResourceManager.GetString("frmSettings_btnBackupFolder", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to &Cancel. + ''' + Friend ReadOnly Property frmSettings_btnCancel() As String + Get + Return ResourceManager.GetString("frmSettings_btnCancel", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to &Save. + ''' + Friend ReadOnly Property frmSettings_btnSave() As String + Get + Return ResourceManager.GetString("frmSettings_btnSave", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Disable backup confirmation. + ''' + Friend ReadOnly Property frmSettings_chkBackupConfirm() As String + Get + Return ResourceManager.GetString("frmSettings_chkBackupConfirm", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Verify backup files with a checksum. + ''' + Friend ReadOnly Property frmSettings_chkCheckSum() As String + Get + Return ResourceManager.GetString("frmSettings_chkCheckSum", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Create a sub-folder for each game. + ''' + Friend ReadOnly Property frmSettings_chkCreateFolder() As String + Get + Return ResourceManager.GetString("frmSettings_chkCreateFolder", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Start monitoring at launch. + ''' + Friend ReadOnly Property frmSettings_chkMonitorOnStartup() As String + Get + Return ResourceManager.GetString("frmSettings_chkMonitorOnStartup", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Show overwrite warning. + ''' + Friend ReadOnly Property frmSettings_chkOverwriteWarning() As String + Get + Return ResourceManager.GetString("frmSettings_chkOverwriteWarning", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Notify when there are new backup files to restore. + ''' + Friend ReadOnly Property frmSettings_chkRestoreOnLaunch() As String + Get + Return ResourceManager.GetString("frmSettings_chkRestoreOnLaunch", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Show detection notifications. + ''' + Friend ReadOnly Property frmSettings_chkShowDetectionTips() As String + Get + Return ResourceManager.GetString("frmSettings_chkShowDetectionTips", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Start to system tray. + ''' + Friend ReadOnly Property frmSettings_chkStartToTray() As String + Get + Return ResourceManager.GetString("frmSettings_chkStartToTray", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Start with Windows. + ''' + Friend ReadOnly Property frmSettings_chkStartWindows() As String + Get + Return ResourceManager.GetString("frmSettings_chkStartWindows", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Backup only when session time exceeds. + ''' + Friend ReadOnly Property frmSettings_chkSupressBackup() As String + Get + Return ResourceManager.GetString("frmSettings_chkSupressBackup", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Sync game list data with backup folder. + ''' + Friend ReadOnly Property frmSettings_chkSync() As String + Get + Return ResourceManager.GetString("frmSettings_chkSync", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Enable time tracking. + ''' + Friend ReadOnly Property frmSettings_chkTimeTracking() As String + Get + Return ResourceManager.GetString("frmSettings_chkTimeTracking", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to The backup folder does not exist. Please choose a valid backup folder.. + ''' + Friend ReadOnly Property frmSettings_ErrorBackupFolder() As String + Get + Return ResourceManager.GetString("frmSettings_ErrorBackupFolder", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Settings. + ''' + Friend ReadOnly Property frmSettings_FormName() As String + Get + Return ResourceManager.GetString("frmSettings_FormName", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Backup and Restore. + ''' + Friend ReadOnly Property frmSettings_grpBackup() As String + Get + Return ResourceManager.GetString("frmSettings_grpBackup", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to General. + ''' + Friend ReadOnly Property frmSettings_grpGeneral() As String + Get + Return ResourceManager.GetString("frmSettings_grpGeneral", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Paths. + ''' + Friend ReadOnly Property frmSettings_grpPaths() As String + Get + Return ResourceManager.GetString("frmSettings_grpPaths", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to Backup Folder. + ''' + Friend ReadOnly Property frmSettings_lblBackupFolder() As String + Get + Return ResourceManager.GetString("frmSettings_lblBackupFolder", resourceCulture) + End Get + End Property + + ''' + ''' Looks up a localized string similar to minutes. + ''' + Friend ReadOnly Property frmSettings_lblMinutes() As String + Get + Return ResourceManager.GetString("frmSettings_lblMinutes", resourceCulture) + End Get + End Property + ''' ''' Looks up a localized resource of type System.Drawing.Icon similar to (Icon). ''' diff --git a/GBM/My Project/Resources.resx b/GBM/My Project/Resources.resx index 7c75be4..fcda4f0 100644 --- a/GBM/My Project/Resources.resx +++ b/GBM/My Project/Resources.resx @@ -943,4 +943,187 @@ Tag + + > + + + &Close + + + Setup &Tags... + + + < + + + Edit Tags for Multiple Games + + + Edit Tags for [PARAM] + + + Current Tags + + + Available Tags + + + Choose the location of the saved game folder: + + + > + + + ... + + + &Cancel + + + Raw &Edit + + + < + + + &Save + + + Custom Item + + + An unexpected error occured while reading the file system:[BR][BR][PARAM] + + + [PARAM] Builder + + + [PARAM] Options + + + [PARAM] Items + + + Saved Game Explorer + + + File Types + + + Individual Files + + + Items are semi-colon delimited. + + + [PARAM] Raw Edit + + + Click here to set the saved game folder. + + + Set the saved game folder using the button above. + + + The saved game folder could not be determined or does not exist. + + + Saved Game Explorer + + + Options + + + Options + + + Configuration + + + Game Information + + + Games Filter + + + Backup Information + + + Add Custom Item + + + Edit + + + Remove + + + Choose a backup folder: + + + ... + + + &Cancel + + + &Save + + + Disable backup confirmation + + + Verify backup files with a checksum + + + Create a sub-folder for each game + + + Start monitoring at launch + + + Show overwrite warning + + + Notify when there are new backup files to restore + + + Show detection notifications + + + Start to system tray + + + Start with Windows + + + Backup only when session time exceeds + + + Sync game list data with backup folder + + + Enable time tracking + + + The backup folder does not exist. Please choose a valid backup folder. + + + Settings + + + Backup and Restore + + + General + + + Paths + + + Backup Folder + + + minutes + \ No newline at end of file