Closed
Bug 250177
Opened 21 years ago
Closed 19 years ago
Filepicker needs accesskey for dirTextInputLabel
Categories
(SeaMonkey :: UI Design, defect)
SeaMonkey
UI Design
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: Martijn.Ras, Assigned: MatsPalmgren_bugz)
Details
(Keywords: fixed-seamonkey1.1b)
Attachments
(2 files)
|
5.36 KB,
patch
|
neil
:
review+
neil
:
superreview+
|
Details | Diff | Splinter Review |
|
5.33 KB,
patch
|
csthomas
:
approval-seamonkey1.1b+
|
Details | Diff | Splinter Review |
The filepicker is initialized using the values of textInput.label and
textInput.accesskey from filepicker.dtd:
<!ENTITY textInput.label "File name:">
<!ENTITY textInput.accesskey "n">
In case it is used to pick a directory instead of a file, the filepicker replace
s the value of textInput.label with the value of dirTextInputLabel from
filepicker.properties:
dirTextInputLabel=Directory name:
After translation this may mean that the accesskey becomes invalid when using
the filepicker to select a directory:
<!ENTITY textInput.label "Bestandsnaam:">
<!ENTITY textInput.accesskey "B">
dirTextInputLabel=Mapnaam:
I'd like to have an string added to the languagepack to be able to specify the
accesskey to be used with the dirTextInputLabel.
--- filepicker.original.properties Wed Jul 7 15:24:47 2004
+++ filepicker.properties Wed Jul 7 15:25:00 2004
@@ -17,0 +18 @@
+accesskeydirTextInputLabel=n
--- filepicker.original.js Wed Jul 7 14:30:23 2004
+++ filepicker.js Wed Jul 7 14:32:47 2004
@@ -90,0 +91 @@
+textInputLabel.setAttribute('accesskey',gFilePickerBundle.getString("accesskeydirTextInputLabel"));
Updated•21 years ago
|
Product: MailNews → Core
| Assignee | ||
Updated•19 years ago
|
Severity: normal → minor
Component: MailNews: Attachments → XP Toolkit/Widgets: XUL
| Assignee | ||
Comment 1•19 years ago
|
||
Attachment #231652 -
Flags: superreview?(neil)
Attachment #231652 -
Flags: review?(neil)
Comment 2•19 years ago
|
||
Comment on attachment 231652 [details] [diff] [review]
Patch rev. 1
> textInputLabel.value = gFilePickerBundle.getString("dirTextInputLabel");
>+ textInputLabel.setAttribute('accesskey', gFilePickerBundle.getString("dirTextInputAccesskey"));
Nit: use the .accessKey property. r+sr=me with this fixed.
Attachment #231652 -
Flags: superreview?(neil)
Attachment #231652 -
Flags: superreview+
Attachment #231652 -
Flags: review?(neil)
Attachment #231652 -
Flags: review+
| Assignee | ||
Updated•19 years ago
|
Assignee: sspitzer → mats.palmgren
| Assignee | ||
Comment 3•19 years ago
|
||
Checked in to trunk at 2006-08-05 20:11 PDT.
-> FIXED
| Assignee | ||
Updated•19 years ago
|
Status: NEW → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
Updated•19 years ago
|
Component: XP Toolkit/Widgets: XUL → XP Apps: GUI Features
Product: Core → Mozilla Application Suite
Updated•19 years ago
|
Attachment #232395 -
Flags: approval-seamonkey1.1b?
Attachment #232395 -
Flags: approval-seamonkey1.1b? → approval-seamonkey1.1b+
Comment 4•19 years ago
|
||
Mats, I checked in the XPFE part of the patch to the branch for SeaMonkey 1.1
Keywords: fixed-seamonkey1.1b
You need to log in
before you can comment on or make changes to this bug.
Description
•