Closed
Bug 31740
Opened 26 years ago
Closed 26 years ago
Implement L10n workaround for "About Netscape" problem
Categories
(Core :: Internationalization: Localization, defect, P3)
Tracking
()
VERIFIED
FIXED
People
(Reporter: momoi, Assigned: rchen)
References
Details
** Observed with 3/7/2000 Win32 build **
This is the L10n counterpart for Bug 31464.
If we don't get that bug resolved, we should put in the following
workaround for:
chrome: global: content: default: GlobalOverlay.js
Change:
var aboutStrName = aboutName + " " + BrandName;
to
var aboutStrName = BrandName + " " + aboutName;
---
Per discssion with Tao, none of the various possibile workarounds
are satisfactory and the above seems to be the only viable alternative
left for JA Beta 1
If the other bug is fixed for Beta 1, then L10ncan ignore this one.
| Reporter | ||
Comment 1•26 years ago
|
||
Bug 31464 has been marked for PDT-.
Unless something changes there, I think we should
go with this workaround. The effect will be as if the
other bug has been fixed. This workaround needs to be removed
post JaBeta1.
| Reporter | ||
Comment 2•26 years ago
|
||
Tao, Ray, "About Netscape" is present in 3 windows.
Browser, Mail, and Composer.
if we reverse the order of aboutName and BrandName, this is
OK with Browser and Mail window.
On Composer window, there is a core bug and even on the Enlgish
side, it currently shows only "About".
We can leave it alone and live with this in Japanese for Composer but
the effect is much worse than in English because the equivalent
of "About" in Japanese cannot begin a phrase or sentence while you
can do so with "About" in English.
So another suggestion would be something like this:
1. var aboutStrName = aboutName + " " + BrandName;
to
var aboutStrName = aboutName;
2. Then translate "About" into "About Netscape" in Japanese.
This way you get "About Netscape" in Composer window, too.
The only thing with this idea is that we need to make sure that
this change will be limited to "About Netscape/Mozilla" string.
| Reporter | ||
Comment 3•26 years ago
|
||
Matt, will changing "var aboutStrName = aboutName + " " + BrandName;"
in globalOverlay.js affect only the "About BrandName" menu and
nothing else?
The problem with that solution is
that it is not easy to change the from mozilla to netscape
if i understand you right.
The right solution is to add
aboutBrandName=About Mozilla(in mozilla.org)
and
aboutBandName=About Netscape (in commerial)
in the brand.properites file.
Then use that string for the about string.
Sorry thought this was the other bug.
Yes that only affects the help menu.
Fixed
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•