/* 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/. */ /* * The format for each error message is: * * MSG_DEF(, , ) * * where * * is a legal C++ identifer that will be used in the source. * * is an integer literal specifying the total number of * replaceable arguments in the following format string. * * is a string literal, containing sequences * {X} where X is an integer representing the argument number that will * be replaced with a string value when the error is reported. */ MSG_DEF(MSG_INVALID_ENUM_VALUE, 2, "Value '{0}' is not a valid value for enumeration '{1}'.") MSG_DEF(MSG_MISSING_ARGUMENTS, 1, "Not enough arguments to {0}.")