Bug 1147311 - Migrate x-central-euro, x-baltic and tr to x-western in the font.language.group pref. r=mak.

--HG--
extra : rebase_source : 2aba312abd1db6618008d68852f77bea8a07c859
This commit is contained in:
Henri Sivonen 2015-03-26 11:29:28 +02:00
Родитель 87675e5075
Коммит 7ecae9aca8
1 изменённых файлов: 16 добавлений и 1 удалений

Просмотреть файл

@ -1661,7 +1661,7 @@ BrowserGlue.prototype = {
},
_migrateUI: function BG__migrateUI() {
const UI_VERSION = 28;
const UI_VERSION = 29;
const BROWSER_DOCURL = "chrome://browser/content/browser.xul";
let currentUIVersion = 0;
try {
@ -2016,6 +2016,21 @@ BrowserGlue.prototype = {
Services.prefs.clearUserPref("browser.devedition.showCustomizeButton");
}
if (currentUIVersion < 29) {
let group = null;
try {
group = Services.prefs.getComplexValue("font.language.group",
Ci.nsIPrefLocalizedString);
} catch (ex) {}
if (group &&
["tr", "x-baltic", "x-central-euro"].some(g => g == group.data)) {
// Latin groups were consolidated.
group.data = "x-western";
Services.prefs.setComplexValue("font.language.group",
Ci.nsIPrefLocalizedString, group);
}
}
// Update the migration version.
Services.prefs.setIntPref("browser.migration.version", UI_VERSION);
},