diff options
author | jungshik@google.com <jungshik@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-03 21:30:51 +0000 |
---|---|---|
committer | jungshik@google.com <jungshik@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-03 21:30:51 +0000 |
commit | 243ed6775d053407531a16ce1bf986f1df697f62 (patch) | |
tree | 5d8b46fa35fcf4c2dcf65652488fc914a4235ecf /chrome/browser/dom_ui/new_tab_ui.cc | |
parent | 1c370c041ab3333d091efdfbbc814853934d574d (diff) | |
download | chromium_src-243ed6775d053407531a16ce1bf986f1df697f62.zip chromium_src-243ed6775d053407531a16ce1bf986f1df697f62.tar.gz chromium_src-243ed6775d053407531a16ce1bf986f1df697f62.tar.bz2 |
Make the font family and the font size used in dom UI localizable. This is a part 1 of the fix for bug 7319 and will be followed by part 2 for non-DOM UI.
For some Indian languages (Malayalam, Bengali and Telugu), we have to
use a bigger size and a font family for that script on Windows.
This is because Windows' stock fonts for those scripts are smaller
than fonts for other scripts at a given size.
I removed 'WEB' style in chrome_font.h because it's not used anywhere any more
after our switch to the html UI. In addition, IDS_WEB_FONT_FAMILY is
recycled to localize the font family (or the list of font families) for html UI.
I also back-ported the support for setting 'style.fooBar' property to our copy
of Jstemplate (JstProcessor.prototype.jstValues_).
BUG=7319
Review URL: http://codereview.chromium.org/57025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13114 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/dom_ui/new_tab_ui.cc')
-rw-r--r-- | chrome/browser/dom_ui/new_tab_ui.cc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/chrome/browser/dom_ui/new_tab_ui.cc b/chrome/browser/dom_ui/new_tab_ui.cc index 6250f10..15bbaa6 100644 --- a/chrome/browser/dom_ui/new_tab_ui.cc +++ b/chrome/browser/dom_ui/new_tab_ui.cc @@ -255,9 +255,7 @@ void NewTabHTMLSource::StartDataRequest(const std::string& path, localized_strings.SetString(L"closedwindow", l10n_util::GetString(IDS_NEW_TAB_RECENTLY_CLOSED_WINDOW)); - localized_strings.SetString(L"textdirection", - (l10n_util::GetTextDirection() == l10n_util::RIGHT_TO_LEFT) ? - kRTLHtmlTextDirection : kDefaultHtmlTextDirection); + SetFontAndTextDirection(&localized_strings); // Let the tab know whether it's the first tab being viewed. localized_strings.SetString(L"firstview", @@ -316,9 +314,7 @@ void IncognitoTabHTMLSource::StartDataRequest(const std::string& path, l10n_util::GetStringF(IDS_NEW_TAB_OTR_MESSAGE, l10n_util::GetString(IDS_LEARN_MORE_INCOGNITO_URL))); - localized_strings.SetString(L"textdirection", - (l10n_util::GetTextDirection() == l10n_util::RIGHT_TO_LEFT) ? - kRTLHtmlTextDirection : kDefaultHtmlTextDirection); + SetFontAndTextDirection(&localized_strings); static const StringPiece incognito_tab_html( ResourceBundle::GetSharedInstance().GetRawDataResource( |