Title: [commits] (bkirsch) [15928] fixes bug 11201 by uppercasing the dialog title strings.
Revision
15928
Author
bkirsch
Date
2007-11-27 16:03:54 -0800 (Tue, 27 Nov 2007)

Log Message

fixes bug 11201 by uppercasing the dialog title strings. r=heikki

Modified Paths

Diff

Modified: trunk/chandler/application/dialogs/GetPasswordDialog.py (15927 => 15928)

--- trunk/chandler/application/dialogs/GetPasswordDialog.py	2007-11-27 23:59:38 UTC (rev 15927)
+++ trunk/chandler/application/dialogs/GetPasswordDialog.py	2007-11-28 00:03:54 UTC (rev 15928)
@@ -28,9 +28,9 @@
 
         pre = wx.PreDialog()
         if create:
-            title = _(u"Create repository password")
+            title = _(u"Create Repository Password")
         else:
-            title = _(u"Enter repository password")
+            title = _(u"Enter Repository Password")
 
         pre.Create(None, -1, title, wx.DefaultPosition, wx.DefaultSize,
                    wx.DEFAULT_DIALOG_STYLE)




_______________________________________________
Commits mailing list
[email protected]
http://lists.osafoundation.org/mailman/listinfo/commits

Reply via email to