Bug 1233524 - The Create Profile Wizard says "Click Done ..." when the button is called "Finish" and "Click Finish ..." when the button is called "Done r=jimm

This commit is contained in:
Philip Chee 2015-12-23 01:23:47 +08:00
Родитель 78ce72037d
Коммит aa83e1f85f
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -120,10 +120,10 @@ function checkCurrentInput(currentInput)
if (!errorMessage) {
finishText.className = "";
if (AppConstants.platform == "macosx") {
finishText.firstChild.data = gProfileManagerBundle.getString("profileFinishText");
finishText.firstChild.data = gProfileManagerBundle.getString("profileFinishTextMac");
}
else {
finishText.firstChild.data = gProfileManagerBundle.getString("profileFinishTextMac");
finishText.firstChild.data = gProfileManagerBundle.getString("profileFinishText");
}
canAdvance = true;
}