Closed
Bug 761268
Opened 13 years ago
Closed 13 years ago
GCLI has hard-coded strings (e.g. "Available commands:", "Commands starting with:")
Categories
(DevTools :: Console, defect, P2)
DevTools
Console
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 16
People
(Reporter: flod, Assigned: jwalker)
Details
Attachments
(1 file)
5.79 KB,
patch
|
dcamp
:
review+
flod
:
feedback+
|
Details | Diff | Splinter Review |
http://mxr.mozilla.org/mozilla-central/source/browser/devtools/commandline/gcli.jsm#7937
getHeading: function() {
return args.search == null ?
'Available Commands:' :
'Commands starting with \'' + args.search + '\':';
}
Those strings shouldn't be hard-coded.
Assignee | ||
Updated•13 years ago
|
Priority: -- → P2
Target Milestone: --- → Firefox 16
Assignee | ||
Comment 1•13 years ago
|
||
Also fixed; a couple of other strings that I found while looking for similar problems, and an updated 'not found' message.
Assignee: nobody → jwalker
Status: NEW → ASSIGNED
Attachment #631879 -
Flags: review?(francesco.lodolo)
Attachment #631879 -
Flags: review?(dcamp)
Assignee | ||
Comment 2•13 years ago
|
||
Reporter | ||
Comment 3•13 years ago
|
||
Comment on attachment 631879 [details] [diff] [review]
Upload 1
Review of attachment 631879 [details] [diff] [review]:
-----------------------------------------------------------------
Strings and l10n comments look good to me (changing from review to approval since I'm not really entitled to do a review ;-))
Attachment #631879 -
Flags: review?(francesco.lodolo) → feedback+
Reporter | ||
Comment 4•13 years ago
|
||
> changing from review to approval
approval -> feedback
Updated•13 years ago
|
Attachment #631879 -
Flags: review?(dcamp) → review+
Assignee | ||
Comment 5•13 years ago
|
||
Comment 6•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•