Closed
Bug 1068380
Opened 11 years ago
Closed 8 years ago
Improve the manifest.webapp localization to use ep's name/desc if localization is not available
Categories
(Firefox OS Graveyard :: Gaia::L10n, defect)
Firefox OS Graveyard
Gaia::L10n
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: zbraniecki, Unassigned)
References
Details
Currently when we localize manifest.webapp, and entry point's l10n is empty, we populate an empty object. Instead, we should use default name/desc.
Current result:
{
name: "Foo",
desc: "Foo",
locales: {
en-US: {},
fr: {}
}
}
expected result:
{
name: "Foo",
desc: "Foo",
locales: {
en-US: {name: "Foo", desc: "Foo"},
fr: {name: "Foo", desc: "Foo"}
}
}
I believe that the whole localizeManifest function could be written better, and this feature gives us an excuse to do that.
Comment 1•8 years ago
|
||
Firefox OS is not being worked on
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•