diff options
author | sr55 <[email protected]> | 2011-11-19 21:34:19 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-11-19 21:34:19 +0000 |
commit | 24cfd6cf3e18288052533ea385a6d0b648fac139 (patch) | |
tree | 34a4e4937f36a5a36a7230420a9030fb2b644f74 /win | |
parent | d5844b459d902f6fc19dc13b5ab35fc48e593b95 (diff) |
WinGui: Add a tooltip to the audio panel that explains it's operation a bit better.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4360 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/Controls/AudioPanel.Designer.cs | 3 | ||||
-rw-r--r-- | win/CS/Controls/AudioPanel.resx | 8 |
2 files changed, 10 insertions, 1 deletions
diff --git a/win/CS/Controls/AudioPanel.Designer.cs b/win/CS/Controls/AudioPanel.Designer.cs index 7f3c58fc9..4498f650b 100644 --- a/win/CS/Controls/AudioPanel.Designer.cs +++ b/win/CS/Controls/AudioPanel.Designer.cs @@ -35,6 +35,7 @@ namespace Handbrake.Controls private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AudioPanel));
this.audioMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.audioList_MoveToTop = new System.Windows.Forms.ToolStripMenuItem();
this.audioList_moveup = new System.Windows.Forms.ToolStripMenuItem();
@@ -265,7 +266,7 @@ namespace Handbrake.Controls this.audioList.ShowRowErrors = false;
this.audioList.Size = new System.Drawing.Size(685, 200);
this.audioList.TabIndex = 67;
- this.ToolTips.SetToolTip(this.audioList, "The audio tracks to be encoded into the output file.");
+ this.ToolTips.SetToolTip(this.audioList, resources.GetString("audioList.ToolTip"));
this.audioList.SelectionChanged += new System.EventHandler(this.audioList_SelectionChanged);
//
// Source
diff --git a/win/CS/Controls/AudioPanel.resx b/win/CS/Controls/AudioPanel.resx index 696d4eed5..25b4515c9 100644 --- a/win/CS/Controls/AudioPanel.resx +++ b/win/CS/Controls/AudioPanel.resx @@ -147,6 +147,14 @@ <metadata name="Gain.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
+ <data name="audioList.ToolTip" xml:space="preserve">
+ <value>The audio tracks to be encoded into the output file.
+
+Note: When a track is selected on this grid, the dropdown controls above will alter the selected track.
+
+If you want to add multiple tracks, you can hit the add button several times, then select each track
+and alter its settings after adding them.</value>
+ </data>
<metadata name="AddTrackMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>427, 16</value>
</metadata>
|