Added description to FolderBrowserDialog

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1864 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
JKlingen 2012-05-17 13:59:02 +00:00
parent 6c3369cc99
commit df84ae5aef

View file

@ -76,6 +76,9 @@ namespace GreenshotLanguageEditor {
public EntriesEditorWindow() { public EntriesEditorWindow() {
var dialog = new System.Windows.Forms.FolderBrowserDialog(); var dialog = new System.Windows.Forms.FolderBrowserDialog();
dialog.Description = "Select the directory containing the translation files for Greenshot. " +
"Please get the latest files first: " +
"https://greenshot.svn.sourceforge.net/svnroot/greenshot/trunk/Greenshot/Languages/";
dialog.ShowNewFolderButton = false; dialog.ShowNewFolderButton = false;
System.Windows.Forms.DialogResult result = dialog.ShowDialog(); System.Windows.Forms.DialogResult result = dialog.ShowDialog();
string languagePath; string languagePath;