2001-08-18 03:27:20 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-08-18 03:27:20 +04:00
|
|
|
|
|
|
|
#ifndef nsParserMsgUtils_h
|
|
|
|
#define nsParserMsgUtils_h
|
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
|
2005-03-08 20:21:36 +03:00
|
|
|
#define XMLPARSER_PROPERTIES \
|
|
|
|
"chrome://global/locale/layout/xmlparser.properties"
|
2001-08-18 03:27:20 +04:00
|
|
|
|
2019-11-04 19:56:27 +03:00
|
|
|
#define XMLPARSER_PROPERTIES_en_US \
|
|
|
|
"resource://gre/res/locale/layout/xmlparser.properties"
|
|
|
|
|
2001-08-18 03:27:20 +04:00
|
|
|
class nsParserMsgUtils {
|
|
|
|
nsParserMsgUtils(); // Currently this is not meant to be created, use the
|
|
|
|
// static methods
|
|
|
|
~nsParserMsgUtils(); // If perf required, change this to cache values etc.
|
|
|
|
public:
|
|
|
|
static nsresult GetLocalizedStringByName(const char* aPropFileName,
|
|
|
|
const char* aKey, nsString& aVal);
|
2012-08-22 19:56:38 +04:00
|
|
|
static nsresult GetLocalizedStringByID(const char* aPropFileName,
|
|
|
|
uint32_t aID, nsString& aVal);
|
2001-08-18 03:27:20 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|