Factored string bundles out of necko. Fixes bug 42107 - need to fix string bundle init workaround. Also bug 40506 - nsIWebProgressListener needs status text. Status messages now work in mozilla and viewer with internationalized and parameterized text! Added temporary error architecture until bug 13423 can be fixed. Extended nsIStringBundleService to provide method to format status message. r=valeski,jband,tao. verified=mstoltz

This commit is contained in:
warren@netscape.com
2000-07-25 05:45:56 +00:00
parent 7998a8435c
commit dc6e48adee
90 changed files with 954 additions and 558 deletions

View File

@@ -120,19 +120,19 @@ nsErrorService::GetErrorStringBundle(PRInt16 errorModule, char **result)
NS_IMETHODIMP
nsErrorService::RegisterErrorStringBundleKey(nsresult error, const char *stringBundleKey)
{
return mErrorStringBundleKeyMap.Put(NS_ERROR_GET_CODE(error), stringBundleKey);
return mErrorStringBundleKeyMap.Put(error, stringBundleKey);
}
NS_IMETHODIMP
nsErrorService::UnregisterErrorStringBundleKey(nsresult error)
{
return mErrorStringBundleKeyMap.Remove(NS_ERROR_GET_CODE(error));
return mErrorStringBundleKeyMap.Remove(error);
}
NS_IMETHODIMP
nsErrorService::GetErrorStringBundleKey(nsresult error, char **result)
{
char* value = mErrorStringBundleKeyMap.Get(NS_ERROR_GET_CODE(error));
char* value = mErrorStringBundleKeyMap.Get(error);
if (value == nsnull)
return NS_ERROR_OUT_OF_MEMORY;
*result = value;