| Index: chrome/common/extensions/extension_constants.cc
|
| ===================================================================
|
| --- chrome/common/extensions/extension_constants.cc (revision 23230)
|
| +++ chrome/common/extensions/extension_constants.cc (working copy)
|
| @@ -9,6 +9,7 @@
|
| const wchar_t* kBackground = L"background_page";
|
| const wchar_t* kContentScripts = L"content_scripts";
|
| const wchar_t* kCss = L"css";
|
| +const wchar_t* kDefaultLocale = L"default_locale";
|
| const wchar_t* kDescription = L"description";
|
| const wchar_t* kIcons = L"icons";
|
| const wchar_t* kJs = L"js";
|
| @@ -137,6 +138,12 @@
|
| "Invalid value for theme images - tints must be decimal numbers.";
|
| const char* kInvalidUpdateURL =
|
| "Invalid value for update url: '[*]'.";
|
| +const char* kInvalidDefaultLocale =
|
| + "Invalid value for default locale - locale name must be a string.";
|
| const char* kThemesCannotContainExtensions =
|
| "A theme cannot contain extensions code.";
|
| +const char* kLocalesNoDefaultLocaleSpecified =
|
| + "Localization used, but default_locale wasn't specified in the manifest.";
|
| +const char* kLocalesNoValidLocaleNamesListed =
|
| + "No valid locale name could be found in _locales directory.";
|
| } // namespace extension_manifest_errors
|
|
|
| Property changes on: chrome\common\extensions\extension_constants.cc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|