From e7ac5542e5eec1844c6dbd5873d8ab91767fd0ca Mon Sep 17 00:00:00 2001 From: YUKI Hiroshi Date: Mon, 14 Apr 2014 14:31:35 +0900 Subject: [PATCH] Fix typo --- modules/window.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/window.js b/modules/window.js index 2870b7b0..d2c96f1d 100644 --- a/modules/window.js +++ b/modules/window.js @@ -1410,10 +1410,10 @@ TreeStyleTabWindow.prototype = inherit(TreeStyleTabBase, { w.focus(); var message; try { // Firefox 29 and older - message = this.tabbrowserBundle.getFormattedString('tabs.closeWarningMultipleTabs', [aTabsCount]); + message = utils.tabbrowserBundle.getFormattedString('tabs.closeWarningMultipleTabs', [aTabsCount]); } catch (ex) { // Firefox 30 and later - message = w.PluralForm.get(aTabsCount, this.tabbrowserBundle.getString('tabs.closeWarningMultiple')).replace('#1', aTabsCount); + message = w.PluralForm.get(aTabsCount, utils.tabbrowserBundle.getString('tabs.closeWarningMultiple')).replace('#1', aTabsCount); } var shouldClose = Services.prompt.confirmEx(w, utils.tabbrowserBundle.getString('tabs.closeWarningTitle'),