Fix bug 479707 - Error notification dialog: "Error number" should be "Error code". r=mschroeder

This commit is contained in:
Philipp Kewisch 2009-02-22 22:12:25 +01:00
Родитель c078ff4f00
Коммит c39a75447d
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -57,7 +57,7 @@
function loadErrorPrompt() {
var args = window.arguments[0].QueryInterface(Components.interfaces.nsIDialogParamBlock);
document.getElementById("general-text").value = args.GetString(0);
document.getElementById("error-number").value = args.GetString(1);
document.getElementById("error-code").value = args.GetString(1);
document.getElementById("error-description").value = args.GetString(2);
this.sizeToContent();
}
@ -84,8 +84,8 @@
</columns>
<rows>
<row>
<label value="&calendar.error.number;"/>
<label id="error-number" value=""/>
<label value="&calendar.error.code;"/>
<label id="error-code" value=""/>
</row>
<row flex="1">
<label value="&calendar.error.description;" control="error-description"/>

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

@ -323,6 +323,6 @@
<!-- Error reporting -->
<!ENTITY calendar.error.detail "Details…">
<!ENTITY calendar.error.number "Error number:">
<!ENTITY calendar.error.code "Error code:">
<!ENTITY calendar.error.description "Description:">
<!ENTITY calendar.error.title "An error has occurred">