Moved strings to resource (frmGameTags, frmIncludeExclude, frmSettings)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
@@ -160,11 +162,21 @@
|
||||
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
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Generated
+549
@@ -807,6 +807,24 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Options.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_grpGameInfoOptions() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_grpGameInfoOptions", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Options.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_grpTagOptions() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_grpTagOptions", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Company:.
|
||||
'''</summary>
|
||||
@@ -1428,6 +1446,42 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Configuration.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameManager_grpConfig() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameManager_grpConfig", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Game Information.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameManager_grpExtra() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameManager_grpExtra", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Games Filter.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameManager_grpFilter() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameManager_grpFilter", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Backup Information.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameManager_grpStats() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameManager_grpStats", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Icon.
|
||||
'''</summary>
|
||||
@@ -1653,6 +1707,294 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to >.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameTags_btnAdd() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameTags_btnAdd", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to &Close.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameTags_btnClose() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameTags_btnClose", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Setup &Tags....
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameTags_btnOpenTags() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameTags_btnOpenTags", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to <.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameTags_btnRemove() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameTags_btnRemove", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Edit Tags for Multiple Games.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameTags_FormNameMulti() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameTags_FormNameMulti", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Edit Tags for [PARAM].
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameTags_FormNameSingle() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameTags_FormNameSingle", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Current Tags.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameTags_lblGameTags() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameTags_lblGameTags", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Available Tags.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameTags_lblTags() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameTags_lblTags", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Choose the location of the saved game folder:.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_BrowseSaveFolder() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_BrowseSaveFolder", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to >.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_btnAdd() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_btnAdd", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to ....
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_btnBrowse() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_btnBrowse", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to &Cancel.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_btnCancel() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_btnCancel", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Raw &Edit.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_btnRawEdit() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_btnRawEdit", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to <.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_btnRemove() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_btnRemove", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to &Save.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_btnSave() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_btnSave", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Add Custom Item.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_cmsAdd() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_cmsAdd", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Edit.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_cmsEdit() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_cmsEdit", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Remove.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_cmsRemove() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_cmsRemove", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Custom Item.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_CustomItem() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_CustomItem", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to An unexpected error occured while reading the file system:[BR][BR][PARAM].
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_ErrorFileSystemRead() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_ErrorFileSystemRead", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] Builder.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_FormName() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_FormName", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] Options.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_grpFileOptions() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_grpFileOptions", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] Items.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_lblItems() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_lblItems", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Saved Game Explorer.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_lblSaveFolder() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_lblSaveFolder", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to File Types.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_optFileTypes() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_optFileTypes", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Individual Files.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_optIndividualFiles() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_optIndividualFiles", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Items are semi-colon delimited..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_RawEditInfo() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_RawEditInfo", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] Raw Edit.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_RawEditTitle() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_RawEditTitle", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Click here to set the saved game folder..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_ToolTipBrowse() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_ToolTipBrowse", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Set the saved game folder using the button above..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_ToolTipFiles() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_ToolTipFiles", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to The saved game folder could not be determined or does not exist..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_ToolTipFolder() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_ToolTipFolder", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Saved Game Explorer.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmIncludeExclude_ToolTipTitle() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmIncludeExclude_ToolTipTitle", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' 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..
|
||||
'''</summary>
|
||||
@@ -2418,6 +2760,213 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Choose a backup folder:.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_BrowseFolder() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_BrowseFolder", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to ....
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_btnBackupFolder() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_btnBackupFolder", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to &Cancel.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_btnCancel() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_btnCancel", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to &Save.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_btnSave() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_btnSave", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Disable backup confirmation.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkBackupConfirm() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkBackupConfirm", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Verify backup files with a checksum.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkCheckSum() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkCheckSum", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Create a sub-folder for each game.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkCreateFolder() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkCreateFolder", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Start monitoring at launch.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkMonitorOnStartup() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkMonitorOnStartup", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Show overwrite warning.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkOverwriteWarning() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkOverwriteWarning", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Notify when there are new backup files to restore.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkRestoreOnLaunch() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkRestoreOnLaunch", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Show detection notifications.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkShowDetectionTips() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkShowDetectionTips", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Start to system tray.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkStartToTray() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkStartToTray", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Start with Windows.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkStartWindows() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkStartWindows", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Backup only when session time exceeds.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkSupressBackup() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkSupressBackup", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Sync game list data with backup folder.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkSync() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkSync", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Enable time tracking.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_chkTimeTracking() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_chkTimeTracking", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to The backup folder does not exist. Please choose a valid backup folder..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_ErrorBackupFolder() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_ErrorBackupFolder", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Settings.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_FormName() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_FormName", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Backup and Restore.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_grpBackup() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_grpBackup", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to General.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_grpGeneral() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_grpGeneral", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Paths.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_grpPaths() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_grpPaths", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Backup Folder.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_lblBackupFolder() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_lblBackupFolder", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to minutes.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSettings_lblMinutes() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSettings_lblMinutes", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
|
||||
'''</summary>
|
||||
|
||||
@@ -943,4 +943,187 @@
|
||||
<data name="frmFilter_optTag" xml:space="preserve">
|
||||
<value>Tag</value>
|
||||
</data>
|
||||
<data name="frmGameTags_btnAdd" xml:space="preserve">
|
||||
<value>></value>
|
||||
</data>
|
||||
<data name="frmGameTags_btnClose" xml:space="preserve">
|
||||
<value>&Close</value>
|
||||
</data>
|
||||
<data name="frmGameTags_btnOpenTags" xml:space="preserve">
|
||||
<value>Setup &Tags...</value>
|
||||
</data>
|
||||
<data name="frmGameTags_btnRemove" xml:space="preserve">
|
||||
<value><</value>
|
||||
</data>
|
||||
<data name="frmGameTags_FormNameMulti" xml:space="preserve">
|
||||
<value>Edit Tags for Multiple Games</value>
|
||||
</data>
|
||||
<data name="frmGameTags_FormNameSingle" xml:space="preserve">
|
||||
<value>Edit Tags for [PARAM]</value>
|
||||
</data>
|
||||
<data name="frmGameTags_lblGameTags" xml:space="preserve">
|
||||
<value>Current Tags</value>
|
||||
</data>
|
||||
<data name="frmGameTags_lblTags" xml:space="preserve">
|
||||
<value>Available Tags</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_BrowseSaveFolder" xml:space="preserve">
|
||||
<value>Choose the location of the saved game folder:</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_btnAdd" xml:space="preserve">
|
||||
<value>></value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_btnBrowse" xml:space="preserve">
|
||||
<value>...</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_btnCancel" xml:space="preserve">
|
||||
<value>&Cancel</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_btnRawEdit" xml:space="preserve">
|
||||
<value>Raw &Edit</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_btnRemove" xml:space="preserve">
|
||||
<value><</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_btnSave" xml:space="preserve">
|
||||
<value>&Save</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_CustomItem" xml:space="preserve">
|
||||
<value>Custom Item</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_ErrorFileSystemRead" xml:space="preserve">
|
||||
<value>An unexpected error occured while reading the file system:[BR][BR][PARAM]</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_FormName" xml:space="preserve">
|
||||
<value>[PARAM] Builder</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_grpFileOptions" xml:space="preserve">
|
||||
<value>[PARAM] Options</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_lblItems" xml:space="preserve">
|
||||
<value>[PARAM] Items</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_lblSaveFolder" xml:space="preserve">
|
||||
<value>Saved Game Explorer</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_optFileTypes" xml:space="preserve">
|
||||
<value>File Types</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_optIndividualFiles" xml:space="preserve">
|
||||
<value>Individual Files</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_RawEditInfo" xml:space="preserve">
|
||||
<value>Items are semi-colon delimited.</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_RawEditTitle" xml:space="preserve">
|
||||
<value>[PARAM] Raw Edit</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_ToolTipBrowse" xml:space="preserve">
|
||||
<value>Click here to set the saved game folder.</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_ToolTipFiles" xml:space="preserve">
|
||||
<value>Set the saved game folder using the button above.</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_ToolTipFolder" xml:space="preserve">
|
||||
<value>The saved game folder could not be determined or does not exist.</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_ToolTipTitle" xml:space="preserve">
|
||||
<value>Saved Game Explorer</value>
|
||||
</data>
|
||||
<data name="frmFilter_grpGameInfoOptions" xml:space="preserve">
|
||||
<value>Options</value>
|
||||
</data>
|
||||
<data name="frmFilter_grpTagOptions" xml:space="preserve">
|
||||
<value>Options</value>
|
||||
</data>
|
||||
<data name="frmGameManager_grpConfig" xml:space="preserve">
|
||||
<value>Configuration</value>
|
||||
</data>
|
||||
<data name="frmGameManager_grpExtra" xml:space="preserve">
|
||||
<value>Game Information</value>
|
||||
</data>
|
||||
<data name="frmGameManager_grpFilter" xml:space="preserve">
|
||||
<value>Games Filter</value>
|
||||
</data>
|
||||
<data name="frmGameManager_grpStats" xml:space="preserve">
|
||||
<value>Backup Information</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_cmsAdd" xml:space="preserve">
|
||||
<value>Add Custom Item</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_cmsEdit" xml:space="preserve">
|
||||
<value>Edit</value>
|
||||
</data>
|
||||
<data name="frmIncludeExclude_cmsRemove" xml:space="preserve">
|
||||
<value>Remove</value>
|
||||
</data>
|
||||
<data name="frmSettings_BrowseFolder" xml:space="preserve">
|
||||
<value>Choose a backup folder:</value>
|
||||
</data>
|
||||
<data name="frmSettings_btnBackupFolder" xml:space="preserve">
|
||||
<value>...</value>
|
||||
</data>
|
||||
<data name="frmSettings_btnCancel" xml:space="preserve">
|
||||
<value>&Cancel</value>
|
||||
</data>
|
||||
<data name="frmSettings_btnSave" xml:space="preserve">
|
||||
<value>&Save</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkBackupConfirm" xml:space="preserve">
|
||||
<value>Disable backup confirmation</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkCheckSum" xml:space="preserve">
|
||||
<value>Verify backup files with a checksum</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkCreateFolder" xml:space="preserve">
|
||||
<value>Create a sub-folder for each game</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkMonitorOnStartup" xml:space="preserve">
|
||||
<value>Start monitoring at launch</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkOverwriteWarning" xml:space="preserve">
|
||||
<value>Show overwrite warning</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkRestoreOnLaunch" xml:space="preserve">
|
||||
<value>Notify when there are new backup files to restore</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkShowDetectionTips" xml:space="preserve">
|
||||
<value>Show detection notifications</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkStartToTray" xml:space="preserve">
|
||||
<value>Start to system tray</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkStartWindows" xml:space="preserve">
|
||||
<value>Start with Windows</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkSupressBackup" xml:space="preserve">
|
||||
<value>Backup only when session time exceeds</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkSync" xml:space="preserve">
|
||||
<value>Sync game list data with backup folder</value>
|
||||
</data>
|
||||
<data name="frmSettings_chkTimeTracking" xml:space="preserve">
|
||||
<value>Enable time tracking</value>
|
||||
</data>
|
||||
<data name="frmSettings_ErrorBackupFolder" xml:space="preserve">
|
||||
<value>The backup folder does not exist. Please choose a valid backup folder.</value>
|
||||
</data>
|
||||
<data name="frmSettings_FormName" xml:space="preserve">
|
||||
<value>Settings</value>
|
||||
</data>
|
||||
<data name="frmSettings_grpBackup" xml:space="preserve">
|
||||
<value>Backup and Restore</value>
|
||||
</data>
|
||||
<data name="frmSettings_grpGeneral" xml:space="preserve">
|
||||
<value>General</value>
|
||||
</data>
|
||||
<data name="frmSettings_grpPaths" xml:space="preserve">
|
||||
<value>Paths</value>
|
||||
</data>
|
||||
<data name="frmSettings_lblBackupFolder" xml:space="preserve">
|
||||
<value>Backup Folder</value>
|
||||
</data>
|
||||
<data name="frmSettings_lblMinutes" xml:space="preserve">
|
||||
<value>minutes</value>
|
||||
</data>
|
||||
</root>
|
||||
Reference in New Issue
Block a user