Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/Xwt
diff options
context:
space:
mode:
authorGouriKumari <gourik@microsoft.com>2019-10-28 20:43:39 +0300
committerGouriKumari <gourik@microsoft.com>2019-10-28 20:46:47 +0300
commitc914369e4209a78f3f01343bf27bb5304168069f (patch)
tree70e6752be84d4597e6f5905c40b37b0020074c6f /Xwt
parenta8ddcae5a097246d289035a448a48e4140eb777c (diff)
Revert changes to file and folder selector
Diffstat (limited to 'Xwt')
-rw-r--r--Xwt/Xwt/FileSelector.cs4
-rw-r--r--Xwt/Xwt/FolderSelector.cs4
2 files changed, 4 insertions, 4 deletions
diff --git a/Xwt/Xwt/FileSelector.cs b/Xwt/Xwt/FileSelector.cs
index 4df9aea9..2fa41322 100644
--- a/Xwt/Xwt/FileSelector.cs
+++ b/Xwt/Xwt/FileSelector.cs
@@ -169,10 +169,10 @@ namespace Xwt
var box = new HBox ();
box.Accessible.IsAccessible = true;
box.Accessible.Role = Accessibility.Role.Group;
- box.Accessible.Description = Application.TranslationCatalog.GetString("Enter File Selector");
+ box.Accessible.Title = Application.TranslationCatalog.GetString("File Selector");
entry = new TextEntry ();
- entry.Accessible.Label = Application.TranslationCatalog.GetString ("Enter File Path");
+ entry.Accessible.Label = Application.TranslationCatalog.GetString ("Path");
entry.Visible = true;
entry.Changed += (sender, e) => NotifyFileChange ();
box.PackStart (entry, true);
diff --git a/Xwt/Xwt/FolderSelector.cs b/Xwt/Xwt/FolderSelector.cs
index bf732f28..aaac9258 100644
--- a/Xwt/Xwt/FolderSelector.cs
+++ b/Xwt/Xwt/FolderSelector.cs
@@ -140,10 +140,10 @@ namespace Xwt
var box = new HBox ();
box.Accessible.IsAccessible = true;
box.Accessible.Role = Accessibility.Role.Group;
- box.Accessible.Title = Application.TranslationCatalog.GetString ("Enter Folder Selector");
+ box.Accessible.Title = Application.TranslationCatalog.GetString ("Folder Selector");
entry = new TextEntry ();
- entry.Accessible.Label = Application.TranslationCatalog.GetString ("Enter Folder Path");
+ entry.Accessible.Label = Application.TranslationCatalog.GetString ("Path");
entry.Changed += (sender, e) => NotifyFolderChange();
box.PackStart (entry, true);