Closed
Bug 1255542
Opened 10 years ago
Closed 9 years ago
[markup panel] "Show All %S Nodes" (markupView.more.showAll) should use a proper plural form
Categories
(DevTools :: Inspector, defect, P2)
DevTools
Inspector
Tracking
(firefox49 fixed)
RESOLVED
FIXED
Firefox 49
| Tracking | Status | |
|---|---|---|
| firefox49 | --- | fixed |
People
(Reporter: safa1996alfulaij, Assigned: mkohler, Mentored)
Details
(Whiteboard: [btpp-fix-later][good first bug][lang=js])
Attachments
(1 file, 2 obsolete files)
|
2.62 KB,
patch
|
pbro
:
review+
flod
:
feedback+
|
Details | Diff | Splinter Review |
The bug https://bugzilla.mozilla.org/show_bug.cgi?id=796006 introduced a new string that is "Show all %S nodes", but it's not marked as a plural string which makes translating it impossible and the translation will look bad.
See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
Comment 1•10 years ago
|
||
Confirming the issue (this is also probably a good candidate for a first bug).
Status: UNCONFIRMED → NEW
Ever confirmed: true
Summary: [markup panel] "Show nodes" string isn't pluralized → [markup panel] "Show All %S Nodes" (markupView.more.showAll) should use a proper plural form
Updated•10 years ago
|
Mentor: pbrosset
Priority: -- → P2
Whiteboard: [btpp-fix-later][good first bug][lang=js]
| Assignee | ||
Comment 2•10 years ago
|
||
Comment 3•10 years ago
|
||
Comment on attachment 8730020 [details] [diff] [review]
0001-Bug-1255542-markupView.more.showAll-should-use-a-pro.patch
Review of attachment 8730020 [details] [diff] [review]:
-----------------------------------------------------------------
This looks good to me! Thanks.
::: devtools/client/locales/en-US/inspector.properties
@@ +47,5 @@
> # When there are too many nodes to load at once, we will offer to
> # show all the nodes.
> # Keyboard shortcut for DOM and Style Inspector will shown inside brackets.
> markupView.more.showing=Some nodes were hidden.
> +markupView.more.showAll=Show #1 node;Show All #1 nodes
I guess the #1 placeholder isn't even needed in the singular case, right?
So the string could be:
Show one more node;Show all #1 nodes
Attachment #8730020 -
Flags: review?(pbrosset) → review+
Comment 4•10 years ago
|
||
Comment on attachment 8730020 [details] [diff] [review]
0001-Bug-1255542-markupView.more.showAll-should-use-a-pro.patch
Review of attachment 8730020 [details] [diff] [review]:
-----------------------------------------------------------------
::: devtools/client/locales/en-US/inspector.properties
@@ +47,5 @@
> # When there are too many nodes to load at once, we will offer to
> # show all the nodes.
> # Keyboard shortcut for DOM and Style Inspector will shown inside brackets.
> markupView.more.showing=Some nodes were hidden.
> +markupView.more.showAll=Show #1 node;Show All #1 nodes
Two issues.
1) The comment about the plural form needs to be right before the string (the parser it's quite hackish).
2) You need a new string ID, you can't change the existing string like that
https://developer.mozilla.org/en-US/docs/Mozilla/Localization/Localization_content_best_practices#Changing_existing_strings
Example:
# LOCALIZATION NOTE (markupView.more.showAllNodes): Semi-colon list of plural forms.
# See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
markupView.more.showAllNodes=Show #1 node;Show All #1 nodes
I also wonder if the case is correct, it should either be "Show All X Nodes", or "Show all x nodes".
Attachment #8730020 -
Flags: feedback-
| Assignee | ||
Comment 5•10 years ago
|
||
Attachment #8730020 -
Attachment is obsolete: true
Attachment #8730907 -
Flags: review?(pbrosset)
Attachment #8730907 -
Flags: feedback?(francesco.lodolo)
Comment 6•10 years ago
|
||
Comment on attachment 8730907 [details] [diff] [review]
0002-Bug-1255542-markupView.more.showAll-should-use-a-pro.patch
Review of attachment 8730907 [details] [diff] [review]:
-----------------------------------------------------------------
Couple of nits on the comments but the properties file looks good.
::: devtools/client/locales/en-US/inspector.properties
@@ +48,3 @@
> markupView.more.showing=Some nodes were hidden.
> +
> +# LOCALIZATION NOTE (markupView.more.showAllNodes): Semi-colon list of plural forms.
showAllNodes -> showAll2 since that's the string ID you used
@@ +51,5 @@
> +# See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
> +markupView.more.showAll2=Show one more node;Show all #1 nodes
> +
> +# LOCALIZATION NOTE (inspector.tooltip2)
> +# Keyboard shortcut for DOM and Style Inspector will shown inside brackets.
Either "will show" or "will be shown"
Attachment #8730907 -
Flags: feedback?(francesco.lodolo) → feedback+
| Assignee | ||
Comment 7•10 years ago
|
||
Attachment #8730907 -
Attachment is obsolete: true
Attachment #8730907 -
Flags: review?(pbrosset)
Attachment #8730912 -
Flags: review?(pbrosset)
Updated•10 years ago
|
Attachment #8730912 -
Flags: feedback+
Comment 8•10 years ago
|
||
Comment on attachment 8730912 [details] [diff] [review]
0003-Bug-1255542-markupView.more.showAll-should-use-a-pro.patch
Review of attachment 8730912 [details] [diff] [review]:
-----------------------------------------------------------------
Looks good, thanks!
And thank you Francesco for helping with the string changes!
Attachment #8730912 -
Flags: review?(pbrosset) → review+
| Assignee | ||
Updated•9 years ago
|
Keywords: checkin-needed
Keywords: checkin-needed
Comment 10•9 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
status-firefox49:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → Firefox 49
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•