blob: 9a002afdfcc652766b0bcc186d312b7e9e9bd605 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#include "oox/xls/numberformatsbuffer.hxx"
#include <com/sun/star/container/XNameAccess.hpp>
#include <com/sun/star/i18n/NumberFormatIndex.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/util/XNumberFormatTypes.hpp>
#include <com/sun/star/util/XNumberFormats.hpp>
#include <com/sun/star/util/XNumberFormatsSupplier.hpp>
#include <rtl/strbuf.hxx>
#include <rtl/string.hxx>
#include <osl/thread.h>
#include <rtl/ustrbuf.hxx>
#include "oox/core/filterbase.hxx"
#include "oox/helper/attributelist.hxx"
#include "oox/helper/propertymap.hxx"
#include "oox/xls/biffinputstream.hxx"
namespace oox {
namespace xls {
// ============================================================================
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::util;
using ::rtl::OString;
using ::rtl::OStringBuffer;
using ::rtl::OStringToOUString;
using ::rtl::OUString;
using ::rtl::OUStringBuffer;
// ============================================================================
namespace {
/** Stores the number format used in Calc for an Excel built-in number format. */
struct BuiltinFormat
{
sal_Int32 mnNumFmtId; /// Built-in number format index.
const sal_Char* mpcFmtCode; /// Format string, UTF-8, may be 0 (mnPredefId is used then).
sal_Int16 mnPredefId; /// Predefined format index, if mpcFmtCode is 0.
sal_Int32 mnReuseId; /// Use this format, if mpcFmtCode is 0 and mnPredefId is -1.
};
/** Defines a literal built-in number format. */
#define NUMFMT_STRING( INDEX, FORMATCODE ) \
{ INDEX, FORMATCODE, -1, -1 }
/** Defines a built-in number format that maps to an own predefined format. */
#define NUMFMT_PREDEF( INDEX, PREDEFINED ) \
{ INDEX, 0, ::com::sun::star::i18n::NumberFormatIndex::PREDEFINED, -1 }
/** Defines a built-in number format that is the same as the specified in nReuseId. */
#define NUMFMT_REUSE( INDEX, REUSED_INDEX ) \
{ INDEX, 0, -1, REUSED_INDEX }
/** Terminates a built-in number format table. */
#define NUMFMT_ENDTABLE() \
{ -1, 0, -1, -1 }
/** Defines builtin date and time formats 14...22.
@param SYSTEMDATE Complete short system date (for formats 14 and 22).
@param DAY Day format (for formats 15 and 16).
@param DAYSEP Separator between day and month (for formats 15 and 16).
@param MONTH Month format (for formats 15...17).
@param MONTHSEP Separator between month and year (for formats 15 and 17).
@param YEAR Year format (for formats 15 and 17).
@param HOUR12 Hour format for 12-hour AM/PM formats (formats 18 and 19).
@param HOUR24 Hour format for 24-hour formats (formats 20...22). */
#define NUMFMT_ALLDATETIMES( SYSTEMDATE, DAY, DAYSEP, MONTH, MONTHSEP, YEAR, HOUR12, HOUR24 ) \
NUMFMT_STRING( 14, SYSTEMDATE ), \
NUMFMT_STRING( 15, DAY DAYSEP MONTH MONTHSEP YEAR ), \
NUMFMT_STRING( 16, DAY DAYSEP MONTH ), \
NUMFMT_STRING( 17, MONTH MONTHSEP YEAR ), \
NUMFMT_STRING( 18, HOUR12 ":mm AM/PM" ), \
NUMFMT_STRING( 19, HOUR12 ":mm:ss AM/PM" ), \
NUMFMT_STRING( 20, HOUR24 ":mm" ), \
NUMFMT_STRING( 21, HOUR24 ":mm:ss" ), \
NUMFMT_STRING( 22, SYSTEMDATE " " HOUR24 ":mm" )
/** Defines builtin time formats INDEX and INDEX+1 for CJK locales.
@param INDEX First number format index.
@param HOURFORMAT Hour format.
@param HOUR Hour symbol.
@param MINUTE Minute symbol.
@param SECOND Second symbol. */
#define NUMFMT_TIME_CJK( INDEX, HOURFORMAT, HOUR, MINUTE, SECOND ) \
NUMFMT_STRING( INDEX + 0, HOURFORMAT "\"" HOUR "\"mm\"" MINUTE "\"" ), \
NUMFMT_STRING( INDEX + 1, HOURFORMAT "\"" HOUR "\"mm\"" MINUTE "\"ss\"" SECOND "\"" )
/** Defines builtin time formats 32...35 for CJK locales.
@param HOUR12 Hour format for 12-hour AM/PM formats (formats 34 and 35).
@param HOUR24 Hour format for 24-hour formats (formats 32 and 33).
@param HOUR Hour symbol.
@param MINUTE Minute symbol.
@param SECOND Second symbol. */
#define NUMFMT_ALLTIMES_CJK( HOUR12, HOUR24, HOUR, MINUTE, SECOND ) \
NUMFMT_TIME_CJK( 32, HOUR24, HOUR, MINUTE, SECOND ), \
NUMFMT_TIME_CJK( 34, "AM/PM" HOUR12, HOUR, MINUTE, SECOND )
/** Defines builtin currency formats INDEX...INDEX+3 in the following format:
"symbol, [minus], number".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number.
@param MODIF Leading modifier for each portion (e.g. "t" for Thai formats). */
#define NUMFMT_CURRENCY_SYMBOL_MINUS_NUMBER( INDEX, SYMBOL, SPACE, MODIF ) \
NUMFMT_STRING( INDEX + 0, MODIF SYMBOL SPACE "#,##0;" MODIF SYMBOL SPACE "-#,##0" ), \
NUMFMT_STRING( INDEX + 1, MODIF SYMBOL SPACE "#,##0;" "[RED]" MODIF SYMBOL SPACE "-#,##0" ), \
NUMFMT_STRING( INDEX + 2, MODIF SYMBOL SPACE "#,##0.00;" MODIF SYMBOL SPACE "-#,##0.00" ), \
NUMFMT_STRING( INDEX + 3, MODIF SYMBOL SPACE "#,##0.00;" "[RED]" MODIF SYMBOL SPACE "-#,##0.00" )
/** Defines builtin accounting formats INDEX...INDEX+3 in the following format:
"symbol, [minus], number".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number. */
#define NUMFMT_ACCOUNTING_SYMBOL_MINUS_NUMBER( INDEX, SYMBOL, SPACE ) \
NUMFMT_STRING( INDEX + 0, "_ " "* #,##0_ ;" "_ " "* -#,##0_ ;" "_ " "* \"-\"_ ;" "_ @_ " ), \
NUMFMT_STRING( INDEX + 1, "_ " SYMBOL SPACE "* #,##0_ ;" "_ " SYMBOL SPACE "* -#,##0_ ;" "_ " SYMBOL SPACE "* \"-\"_ ;" "_ @_ " ), \
NUMFMT_STRING( INDEX + 2, "_ " "* #,##0.00_ ;" "_ " "* -#,##0.00_ ;" "_ " "* \"-\"?\?_ ;" "_ @_ " ), \
NUMFMT_STRING( INDEX + 3, "_ " SYMBOL SPACE "* #,##0.00_ ;" "_ " SYMBOL SPACE "* -#,##0.00_ ;" "_ " SYMBOL SPACE "* \"-\"?\?_ ;" "_ @_ " )
/** Defines builtin currency formats 5...8 (with currency symbol), 37...40
(blind currency symbol), and 41...44 (accounting), in the following format:
"symbol, [minus], number".
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number. */
#define NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( SYMBOL, SPACE ) \
NUMFMT_CURRENCY_SYMBOL_MINUS_NUMBER( 5, SYMBOL, SPACE, "" ), \
NUMFMT_CURRENCY_SYMBOL_MINUS_NUMBER( 37, "", "", "" ), \
NUMFMT_ACCOUNTING_SYMBOL_MINUS_NUMBER( 41, SYMBOL, SPACE )
/** Defines builtin currency formats INDEX...INDEX+3 in the following format:
"symbol, number, [minus]".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number.
@param MODIF Leading modifier for each portion (e.g. "t" for Thai formats). */
#define NUMFMT_CURRENCY_SYMBOL_NUMBER_MINUS( INDEX, SYMBOL, SPACE, MODIF ) \
NUMFMT_STRING( INDEX + 0, MODIF SYMBOL SPACE "#,##0_-;" MODIF SYMBOL SPACE "#,##0-" ), \
NUMFMT_STRING( INDEX + 1, MODIF SYMBOL SPACE "#,##0_-;" "[RED]" MODIF SYMBOL SPACE "#,##0-" ), \
NUMFMT_STRING( INDEX + 2, MODIF SYMBOL SPACE "#,##0.00_-;" MODIF SYMBOL SPACE "#,##0.00-" ), \
NUMFMT_STRING( INDEX + 3, MODIF SYMBOL SPACE "#,##0.00_-;" "[RED]" MODIF SYMBOL SPACE "#,##0.00-" )
/** Defines builtin accounting formats INDEX...INDEX+3 in the following format:
"symbol, number, [minus]".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number. */
#define NUMFMT_ACCOUNTING_SYMBOL_NUMBER_MINUS( INDEX, SYMBOL, SPACE ) \
NUMFMT_STRING( INDEX + 0, "_-" "* #,##0_-;" "_-" "* #,##0-;" "_-" "* \"-\"_-;" "_-@_-" ), \
NUMFMT_STRING( INDEX + 1, "_-" SYMBOL SPACE "* #,##0_-;" "_-" SYMBOL SPACE "* #,##0-;" "_-" SYMBOL SPACE "* \"-\"_-;" "_-@_-" ), \
NUMFMT_STRING( INDEX + 2, "_-" "* #,##0.00_-;" "_-" "* #,##0.00-;" "_-" "* \"-\"?\?_-;" "_-@_-" ), \
NUMFMT_STRING( INDEX + 3, "_-" SYMBOL SPACE "* #,##0.00_-;" "_-" SYMBOL SPACE "* #,##0.00-;" "_-" SYMBOL SPACE "* \"-\"?\?_-;" "_-@_-" )
/** Defines builtin currency formats 5...8 (with currency symbol), 37...40
(blind currency symbol), and 41...44 (accounting), in the following format:
"symbol, number, [minus]".
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number. */
#define NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( SYMBOL, SPACE ) \
NUMFMT_CURRENCY_SYMBOL_NUMBER_MINUS( 5, SYMBOL, SPACE, "" ), \
NUMFMT_CURRENCY_SYMBOL_NUMBER_MINUS( 37, "", "", "" ), \
NUMFMT_ACCOUNTING_SYMBOL_NUMBER_MINUS( 41, SYMBOL, SPACE )
/** Defines builtin currency formats INDEX...INDEX+3 in the following format:
"number, symbol, [minus]".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between number and currency symbol.
@param MODIF Leading modifier for each portion (e.g. "t" for Thai formats). */
#define NUMFMT_CURRENCY_NUMBER_SYMBOL_MINUS( INDEX, SYMBOL, SPACE, MODIF ) \
NUMFMT_STRING( INDEX + 0, MODIF "#,##0" SPACE SYMBOL "_-;" MODIF "#,##0" SPACE SYMBOL "-" ), \
NUMFMT_STRING( INDEX + 1, MODIF "#,##0" SPACE SYMBOL "_-;" "[RED]" MODIF "#,##0" SPACE SYMBOL "-" ), \
NUMFMT_STRING( INDEX + 2, MODIF "#,##0.00" SPACE SYMBOL "_-;" MODIF "#,##0.00" SPACE SYMBOL "-" ), \
NUMFMT_STRING( INDEX + 3, MODIF "#,##0.00" SPACE SYMBOL "_-;" "[RED]" MODIF "#,##0.00" SPACE SYMBOL "-" )
/** Defines builtin accounting formats INDEX...INDEX+3 in the following format:
"number, symbol, [minus]".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param BLINDS Blind currency symbol.
@param SPACE Space character(s) between number and currency symbol. */
#define NUMFMT_ACCOUNTING_NUMBER_SYMBOL_MINUS( INDEX, SYMBOL, BLINDS, SPACE ) \
NUMFMT_STRING( INDEX + 0, "_-* #,##0" SPACE BLINDS "_-;_-* #,##0" SPACE BLINDS "-;_-* \"-\"" SPACE BLINDS "_-;_-@_-" ), \
NUMFMT_STRING( INDEX + 1, "_-* #,##0" SPACE SYMBOL "_-;_-* #,##0" SPACE SYMBOL "-;_-* \"-\"" SPACE SYMBOL "_-;_-@_-" ), \
NUMFMT_STRING( INDEX + 2, "_-* #,##0.00" SPACE BLINDS "_-;_-* #,##0.00" SPACE BLINDS "-;_-* \"-\"?\?" SPACE BLINDS "_-;_-@_-" ), \
NUMFMT_STRING( INDEX + 3, "_-* #,##0.00" SPACE SYMBOL "_-;_-* #,##0.00" SPACE SYMBOL "-;_-* \"-\"?\?" SPACE SYMBOL "_-;_-@_-" )
/** Defines builtin currency formats 5...8 (with currency symbol), 37...40
(blind currency symbol), and 41...44 (accounting), in the following format:
"number, symbol, [minus]".
@param SYMBOL Currency symbol.
@param BLINDS Blind currency symbol.
@param SPACE Space character(s) between number and currency symbol. */
#define NUMFMT_ALLCURRENCIES_NUMBER_SYMBOL_MINUS( SYMBOL, BLINDS, SPACE ) \
NUMFMT_CURRENCY_NUMBER_SYMBOL_MINUS( 5, SYMBOL, SPACE, "" ), \
NUMFMT_CURRENCY_NUMBER_SYMBOL_MINUS( 37, BLINDS, SPACE, "" ), \
NUMFMT_ACCOUNTING_NUMBER_SYMBOL_MINUS( 41, SYMBOL, BLINDS, SPACE )
/** Defines builtin currency formats INDEX...INDEX+3 in the following format:
"[minus], symbol, number".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number.
@param MODIF Leading modifier for each portion (e.g. "t" for Thai formats). */
#define NUMFMT_CURRENCY_MINUS_SYMBOL_NUMBER( INDEX, SYMBOL, SPACE, MODIF ) \
NUMFMT_STRING( INDEX + 0, MODIF SYMBOL SPACE "#,##0;" MODIF "-" SYMBOL SPACE "#,##0" ), \
NUMFMT_STRING( INDEX + 1, MODIF SYMBOL SPACE "#,##0;" "[RED]" MODIF "-" SYMBOL SPACE "#,##0" ), \
NUMFMT_STRING( INDEX + 2, MODIF SYMBOL SPACE "#,##0.00;" MODIF "-" SYMBOL SPACE "#,##0.00" ), \
NUMFMT_STRING( INDEX + 3, MODIF SYMBOL SPACE "#,##0.00;" "[RED]" MODIF "-" SYMBOL SPACE "#,##0.00" )
/** Defines builtin accounting formats INDEX...INDEX+3 in the following order:
"[minus], symbol, number".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number. */
#define NUMFMT_ACCOUNTING_MINUS_SYMBOL_NUMBER( INDEX, SYMBOL, SPACE ) \
NUMFMT_STRING( INDEX + 0, "_-" "* #,##0_-;" "-" "* #,##0_-;" "_-" "* \"-\"_-;" "_-@_-" ), \
NUMFMT_STRING( INDEX + 1, "_-" SYMBOL SPACE "* #,##0_-;" "-" SYMBOL SPACE "* #,##0_-;" "_-" SYMBOL SPACE "* \"-\"_-;" "_-@_-" ), \
NUMFMT_STRING( INDEX + 2, "_-" "* #,##0.00_-;" "-" "* #,##0.00_-;" "_-" "* \"-\"?\?_-;" "_-@_-" ), \
NUMFMT_STRING( INDEX + 3, "_-" SYMBOL SPACE "* #,##0.00_-;" "-" SYMBOL SPACE "* #,##0.00_-;" "_-" SYMBOL SPACE "* \"-\"?\?_-;" "_-@_-" )
/** Defines builtin currency formats 5...8 (with currency symbol), 37...40
(blind currency symbol), and 41...44 (accounting), in the following order:
"[minus], symbol, number".
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number. */
#define NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( SYMBOL, SPACE ) \
NUMFMT_CURRENCY_MINUS_SYMBOL_NUMBER( 5, SYMBOL, SPACE, "" ), \
NUMFMT_CURRENCY_MINUS_SYMBOL_NUMBER( 37, "", "", "" ), \
NUMFMT_ACCOUNTING_MINUS_SYMBOL_NUMBER( 41, SYMBOL, SPACE )
/** Defines builtin currency formats INDEX...INDEX+3 in the following format:
"[minus], number, symbol".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between number and currency symbol.
@param MODIF Leading modifier for each portion (e.g. "t" for Thai formats). */
#define NUMFMT_CURRENCY_MINUS_NUMBER_SYMBOL( INDEX, SYMBOL, SPACE, MODIF ) \
NUMFMT_STRING( INDEX + 0, MODIF "#,##0" SPACE SYMBOL ";" MODIF "-#,##0" SPACE SYMBOL ), \
NUMFMT_STRING( INDEX + 1, MODIF "#,##0" SPACE SYMBOL ";" "[RED]" MODIF "-#,##0" SPACE SYMBOL ), \
NUMFMT_STRING( INDEX + 2, MODIF "#,##0.00" SPACE SYMBOL ";" MODIF "-#,##0.00" SPACE SYMBOL ), \
NUMFMT_STRING( INDEX + 3, MODIF "#,##0.00" SPACE SYMBOL ";" "[RED]" MODIF "-#,##0.00" SPACE SYMBOL )
/** Defines builtin accounting formats INDEX...INDEX+3 in the following format:
"[minus], number, symbol".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param BLINDS Blind currency symbol.
@param SPACE Space character(s) between number and currency symbol. */
#define NUMFMT_ACCOUNTING_MINUS_NUMBER_SYMBOL( INDEX, SYMBOL, BLINDS, SPACE ) \
NUMFMT_STRING( INDEX + 0, "_-* #,##0" SPACE BLINDS "_-;-* #,##0" SPACE BLINDS "_-;_-* \"-\"" SPACE BLINDS "_-;_-@_-" ), \
NUMFMT_STRING( INDEX + 1, "_-* #,##0" SPACE SYMBOL "_-;-* #,##0" SPACE SYMBOL "_-;_-* \"-\"" SPACE SYMBOL "_-;_-@_-" ), \
NUMFMT_STRING( INDEX + 2, "_-* #,##0.00" SPACE BLINDS "_-;-* #,##0.00" SPACE BLINDS "_-;_-* \"-\"?\?" SPACE BLINDS "_-;_-@_-" ), \
NUMFMT_STRING( INDEX + 3, "_-* #,##0.00" SPACE SYMBOL "_-;-* #,##0.00" SPACE SYMBOL "_-;_-* \"-\"?\?" SPACE SYMBOL "_-;_-@_-" )
/** Defines builtin currency formats 5...8 (with currency symbol), 37...40
(blind currency symbol), and 41...44 (accounting), in the following format:
"[minus], number, symbol".
@param SYMBOL Currency symbol.
@param BLINDS Blind currency symbol.
@param SPACE Space character(s) between number and currency symbol. */
#define NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( SYMBOL, BLINDS, SPACE ) \
NUMFMT_CURRENCY_MINUS_NUMBER_SYMBOL( 5, SYMBOL, SPACE, "" ), \
NUMFMT_CURRENCY_MINUS_NUMBER_SYMBOL( 37, BLINDS, SPACE, "" ), \
NUMFMT_ACCOUNTING_MINUS_NUMBER_SYMBOL( 41, SYMBOL, BLINDS, SPACE )
/** Defines builtin currency formats INDEX...INDEX+3 in the following format:
"[opening parenthesis], symbol, number, [closing parenthesis].".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number.
@param MODIF Leading modifier for each portion (e.g. "t" for Thai formats). */
#define NUMFMT_CURRENCY_OPEN_SYMBOL_NUMBER_CLOSE( INDEX, SYMBOL, SPACE, MODIF ) \
NUMFMT_STRING( INDEX + 0, MODIF SYMBOL SPACE "#,##0_);" MODIF "(" SYMBOL SPACE "#,##0)" ), \
NUMFMT_STRING( INDEX + 1, MODIF SYMBOL SPACE "#,##0_);" "[RED]" MODIF "(" SYMBOL SPACE "#,##0)" ), \
NUMFMT_STRING( INDEX + 2, MODIF SYMBOL SPACE "#,##0.00_);" MODIF "(" SYMBOL SPACE "#,##0.00)" ), \
NUMFMT_STRING( INDEX + 3, MODIF SYMBOL SPACE "#,##0.00_);" "[RED]" MODIF "(" SYMBOL SPACE "#,##0.00)" )
/** Defines builtin accounting formats INDEX...INDEX+3 in the following format:
"[opening parenthesis], symbol, number, [closing parenthesis].".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number. */
#define NUMFMT_ACCOUNTING_OPEN_SYMBOL_NUMBER_CLOSE( INDEX, SYMBOL, SPACE ) \
NUMFMT_STRING( INDEX + 0, "_(" "* #,##0_);" "_(" "* (#,##0);" "_(" "* \"-\"_);" "_(@_)" ), \
NUMFMT_STRING( INDEX + 1, "_(" SYMBOL SPACE "* #,##0_);" "_(" SYMBOL SPACE "* (#,##0);" "_(" SYMBOL SPACE "* \"-\"_);" "_(@_)" ), \
NUMFMT_STRING( INDEX + 2, "_(" "* #,##0.00_);" "_(" "* (#,##0.00);" "_(" "* \"-\"?\?_);" "_(@_)" ), \
NUMFMT_STRING( INDEX + 3, "_(" SYMBOL SPACE "* #,##0.00_);" "_(" SYMBOL SPACE "* (#,##0.00);" "_(" SYMBOL SPACE "* \"-\"?\?_);" "_(@_)" )
/** Defines builtin currency formats 5...8 (with currency symbol), 37...40
(blind currency symbol), and 41...44 (accounting), in the following format:
"[opening parenthesis], symbol, number, [closing parenthesis].".
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between currency symbol and number. */
#define NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( SYMBOL, SPACE ) \
NUMFMT_CURRENCY_OPEN_SYMBOL_NUMBER_CLOSE( 5, SYMBOL, SPACE, "" ), \
NUMFMT_CURRENCY_OPEN_SYMBOL_NUMBER_CLOSE( 37, "", "", "" ), \
NUMFMT_ACCOUNTING_OPEN_SYMBOL_NUMBER_CLOSE( 41, SYMBOL, SPACE )
/** Defines builtin currency formats INDEX...INDEX+3 in the following format:
"[opening parenthesis], number, symbol, [closing parenthesis].".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param SPACE Space character(s) between number and currency symbol.
@param MODIF Leading modifier for each portion (e.g. "t" for Thai formats). */
#define NUMFMT_CURRENCY_OPEN_NUMBER_SYMBOL_CLOSE( INDEX, SYMBOL, SPACE, MODIF ) \
NUMFMT_STRING( INDEX + 0, MODIF "#,##0" SPACE SYMBOL "_);" MODIF "(#,##0" SPACE SYMBOL ")" ), \
NUMFMT_STRING( INDEX + 1, MODIF "#,##0" SPACE SYMBOL "_);" "[RED]" MODIF "(#,##0" SPACE SYMBOL ")" ), \
NUMFMT_STRING( INDEX + 2, MODIF "#,##0.00" SPACE SYMBOL "_);" MODIF "(#,##0.00" SPACE SYMBOL ")" ), \
NUMFMT_STRING( INDEX + 3, MODIF "#,##0.00" SPACE SYMBOL "_);" "[RED]" MODIF "(#,##0.00" SPACE SYMBOL ")" )
/** Defines builtin accounting formats INDEX...INDEX+3 in the following format:
"[opening parenthesis], number, symbol, [closing parenthesis].".
@param INDEX First number format index.
@param SYMBOL Currency symbol.
@param BLINDS Blind currency symbol.
@param SPACE Space character(s) between number and currency symbol. */
#define NUMFMT_ACCOUNTING_OPEN_NUMBER_SYMBOL_CLOSE( INDEX, SYMBOL, BLINDS, SPACE ) \
NUMFMT_STRING( INDEX + 0, "_ * #,##0_)" SPACE BLINDS "_ ;_ * (#,##0)" SPACE BLINDS "_ ;_ * \"-\"_)" SPACE BLINDS "_ ;_ @_ " ), \
NUMFMT_STRING( INDEX + 1, "_ * #,##0_)" SPACE SYMBOL "_ ;_ * (#,##0)" SPACE SYMBOL "_ ;_ * \"-\"_)" SPACE SYMBOL "_ ;_ @_ " ), \
NUMFMT_STRING( INDEX + 2, "_ * #,##0.00_)" SPACE BLINDS "_ ;_ * (#,##0.00)" SPACE BLINDS "_ ;_ * \"-\"?\?_)" SPACE BLINDS "_ ;_ @_ " ), \
NUMFMT_STRING( INDEX + 3, "_ * #,##0.00_)" SPACE SYMBOL "_ ;_ * (#,##0.00)" SPACE SYMBOL "_ ;_ * \"-\"?\?_)" SPACE SYMBOL "_ ;_ @_ " )
/** Defines builtin currency formats 5...8 (with currency symbol), 37...40
(blind currency symbol), and 41...44 (accounting), in the following format:
"[opening parenthesis], number, symbol, [closing parenthesis].".
@param SYMBOL Currency symbol.
@param BLINDS Blind currency symbol.
@param SPACE Space character(s) between number and currency symbol. */
#define NUMFMT_ALLCURRENCIES_OPEN_NUMBER_SYMBOL_CLOSE( SYMBOL, BLINDS, SPACE ) \
NUMFMT_CURRENCY_OPEN_NUMBER_SYMBOL_CLOSE( 5, SYMBOL, SPACE, "" ), \
NUMFMT_CURRENCY_OPEN_NUMBER_SYMBOL_CLOSE( 37, BLINDS, SPACE, "" ), \
NUMFMT_ACCOUNTING_OPEN_NUMBER_SYMBOL_CLOSE( 41, SYMBOL, BLINDS, SPACE )
// currency unit characters
#define UTF8_BAHT "\340\270\277"
#define UTF8_COLON "\342\202\241"
#define UTF8_CURR_AR_AE "\330\257.\330\245."
#define UTF8_CURR_AR_BH "\330\257.\330\250."
#define UTF8_CURR_AR_DZ "\330\257.\330\254."
#define UTF8_CURR_AR_EG "\330\254.\331\205."
#define UTF8_CURR_AR_IQ "\330\257.\330\271."
#define UTF8_CURR_AR_JO "\330\257.\330\247."
#define UTF8_CURR_AR_KW "\330\257.\331\203."
#define UTF8_CURR_AR_LB "\331\204.\331\204."
#define UTF8_CURR_AR_LY "\330\257.\331\204."
#define UTF8_CURR_AR_MA "\330\257.\331\205."
#define UTF8_CURR_AR_OM "\330\261.\330\271."
#define UTF8_CURR_AR_QA "\330\261.\331\202."
#define UTF8_CURR_AR_SA "\330\261.\330\263."
#define UTF8_CURR_AR_SY "\331\204.\330\263."
#define UTF8_CURR_AR_TN "\330\257.\330\252."
#define UTF8_CURR_AR_YE "\330\261.\331\212."
#define UTF8_CURR_BN_IN "\340\246\237\340\246\276"
#define UTF8_CURR_FA_IR "\330\261\331\212\330\247\331\204"
#define UTF8_CURR_GU_IN "\340\252\260\340\253\202"
#define UTF8_CURR_HI_IN "\340\244\260\340\245\201"
#define UTF8_CURR_KN_IN "\340\262\260\340\263\202"
#define UTF8_CURR_ML_IN "\340\264\225"
#define UTF8_CURR_PA_IN "\340\250\260\340\251\201"
#define UTF8_CURR_TA_IN "\340\256\260\340\257\202"
#define UTF8_CURR_TE_IN "\340\260\260\340\261\202"
#define UTF8_DONG "\342\202\253"
#define UTF8_EURO "\342\202\254"
#define UTF8_POUND_GB "\302\243"
#define UTF8_RUFIYAA "\336\203"
#define UTF8_SHEQEL "\342\202\252"
#define UTF8_TUGRUG "\342\202\256"
#define UTF8_WON "\342\202\251"
#define UTF8_YEN_CN "\357\277\245"
#define UTF8_YEN_JP "\302\245"
// Unicode characters for currency units
#define UTF8_CCARON_LC "\304\215"
#define UTF8_LSTROKE_LC "\305\202"
// Armenian
#define UTF8_HY_DA_LC "\325\244"
#define UTF8_HY_REH_LC "\326\200"
// Cyrillic
#define UTF8_CYR_G_LC "\320\263"
#define UTF8_CYR_L_LC "\320\273"
#define UTF8_CYR_M_LC "\320\274"
#define UTF8_CYR_N_LC "\320\275"
#define UTF8_CYR_O_LC "\320\276"
#define UTF8_CYR_R_LC "\321\200"
#define UTF8_CYR_S_LC "\321\201"
#define UTF8_CYR_W_LC "\320\262"
// Japanese/Chinese date/time characters
#define UTF8_CJ_YEAR "\345\271\264"
#define UTF8_CJ_MON "\346\234\210"
#define UTF8_CJ_DAY "\346\227\245"
#define UTF8_CJ_HOUR "\346\231\202"
#define UTF8_CJ_MIN "\345\210\206"
#define UTF8_CJ_SEC "\347\247\222"
// Chinese Simplified date/time characters
#define UTF8_CS_YEAR "\345\271\264"
#define UTF8_CS_MON "\346\234\210"
#define UTF8_CS_DAY "\346\227\245"
#define UTF8_CS_HOUR "\346\227\266"
#define UTF8_CS_MIN "\345\210\206"
#define UTF8_CS_SEC "\347\247\222"
// Korean date/time characters
#define UTF8_KO_YEAR "\353\205\204"
#define UTF8_KO_MON "\354\233\224"
#define UTF8_KO_DAY "\354\235\274"
#define UTF8_KO_HOUR "\354\213\234"
#define UTF8_KO_MIN "\353\266\204"
#define UTF8_KO_SEC "\354\264\210"
// ----------------------------------------------------------------------------
/** Default number format table. Last parent of all other tables, used for unknown locales. */
static const BuiltinFormat spBuiltinFormats_BASE[] =
{
// 0..13 numeric and currency formats
NUMFMT_PREDEF( 0, NUMBER_STANDARD ), // General
NUMFMT_PREDEF( 1, NUMBER_INT ), // 0
NUMFMT_PREDEF( 2, NUMBER_DEC2 ), // 0.00
NUMFMT_PREDEF( 3, NUMBER_1000INT ), // #,##0
NUMFMT_PREDEF( 4, NUMBER_1000DEC2 ), // #,##0.00
NUMFMT_PREDEF( 5, CURRENCY_1000INT ), // #,##0[symbol]
NUMFMT_PREDEF( 6, CURRENCY_1000INT_RED ), // #,##0[symbol];[RED]-#,##0[symbol]
NUMFMT_PREDEF( 7, CURRENCY_1000DEC2 ), // #,##0.00[symbol]
NUMFMT_PREDEF( 8, CURRENCY_1000DEC2_RED ), // #,##0.00[symbol];[RED]-#,##0.00[symbol]
NUMFMT_PREDEF( 9, PERCENT_INT ), // 0%
NUMFMT_PREDEF( 10, PERCENT_DEC2 ), // 0.00%
NUMFMT_PREDEF( 11, SCIENTIFIC_000E00 ), // 0.00E+00
NUMFMT_PREDEF( 12, FRACTION_1 ), // # ?/?
NUMFMT_PREDEF( 13, FRACTION_2 ), // # ??/??
// 14...22 date and time formats
NUMFMT_PREDEF( 14, DATE_SYS_DDMMYYYY ),
NUMFMT_PREDEF( 15, DATE_SYS_DMMMYY ),
NUMFMT_PREDEF( 16, DATE_SYS_DDMMM ),
NUMFMT_PREDEF( 17, DATE_SYS_MMYY ),
NUMFMT_PREDEF( 18, TIME_HHMMAMPM ),
NUMFMT_PREDEF( 19, TIME_HHMMSSAMPM ),
NUMFMT_PREDEF( 20, TIME_HHMM ),
NUMFMT_PREDEF( 21, TIME_HHMMSS ),
NUMFMT_PREDEF( 22, DATETIME_SYSTEM_SHORT_HHMM ),
// 23...36 international formats
NUMFMT_REUSE( 23, 0 ),
NUMFMT_REUSE( 24, 0 ),
NUMFMT_REUSE( 25, 0 ),
NUMFMT_REUSE( 26, 0 ),
NUMFMT_REUSE( 27, 14 ),
NUMFMT_REUSE( 28, 14 ),
NUMFMT_REUSE( 29, 14 ),
NUMFMT_REUSE( 30, 14 ),
NUMFMT_REUSE( 31, 14 ),
NUMFMT_REUSE( 32, 21 ),
NUMFMT_REUSE( 33, 21 ),
NUMFMT_REUSE( 34, 21 ),
NUMFMT_REUSE( 35, 21 ),
NUMFMT_REUSE( 36, 14 ),
// 37...44 accounting formats, defaults without currency symbol here
NUMFMT_CURRENCY_MINUS_SYMBOL_NUMBER( 37, "", "", "" ),
NUMFMT_ACCOUNTING_MINUS_SYMBOL_NUMBER( 41, "", "" ),
// 45...49 more special formats
NUMFMT_STRING( 45, "mm:ss" ),
NUMFMT_STRING( 46, "[h]:mm:ss" ),
NUMFMT_STRING( 47, "mm:ss.0" ),
NUMFMT_STRING( 48, "##0.0E+0" ),
NUMFMT_PREDEF( 49, TEXT ),
// 50...81 international formats
NUMFMT_REUSE( 50, 14 ),
NUMFMT_REUSE( 51, 14 ),
NUMFMT_REUSE( 52, 14 ),
NUMFMT_REUSE( 53, 14 ),
NUMFMT_REUSE( 54, 14 ),
NUMFMT_REUSE( 55, 14 ),
NUMFMT_REUSE( 56, 14 ),
NUMFMT_REUSE( 57, 14 ),
NUMFMT_REUSE( 58, 14 ),
NUMFMT_REUSE( 59, 1 ),
NUMFMT_REUSE( 60, 2 ),
NUMFMT_REUSE( 61, 3 ),
NUMFMT_REUSE( 62, 4 ),
NUMFMT_REUSE( 63, 5 ),
NUMFMT_REUSE( 64, 6 ),
NUMFMT_REUSE( 65, 7 ),
NUMFMT_REUSE( 66, 8 ),
NUMFMT_REUSE( 67, 9 ),
NUMFMT_REUSE( 68, 10 ),
NUMFMT_REUSE( 69, 12 ),
NUMFMT_REUSE( 70, 13 ),
NUMFMT_REUSE( 71, 14 ),
NUMFMT_REUSE( 72, 14 ),
NUMFMT_REUSE( 73, 15 ),
NUMFMT_REUSE( 74, 16 ),
NUMFMT_REUSE( 75, 17 ),
NUMFMT_REUSE( 76, 20 ),
NUMFMT_REUSE( 77, 21 ),
NUMFMT_REUSE( 78, 22 ),
NUMFMT_REUSE( 79, 45 ),
NUMFMT_REUSE( 80, 46 ),
NUMFMT_REUSE( 81, 47 ),
// 82...163 not used, must not occur in a file (Excel may crash)
NUMFMT_ENDTABLE()
};
// ----------------------------------------------------------------------------
/** Arabic, U.A.E. */
static const BuiltinFormat spBuiltinFormats_ar_AE[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_AE "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Bahrain. */
static const BuiltinFormat spBuiltinFormats_ar_BH[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_BH "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Algeria. */
static const BuiltinFormat spBuiltinFormats_ar_DZ[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_DZ "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Egypt. */
static const BuiltinFormat spBuiltinFormats_ar_EG[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_EG "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Iraq. */
static const BuiltinFormat spBuiltinFormats_ar_IQ[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_IQ "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Jordan. */
static const BuiltinFormat spBuiltinFormats_ar_JO[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_JO "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Kuwait. */
static const BuiltinFormat spBuiltinFormats_ar_KW[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_KW "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Lebanon. */
static const BuiltinFormat spBuiltinFormats_ar_LB[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_LB "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Libya. */
static const BuiltinFormat spBuiltinFormats_ar_LY[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_LY "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Morocco. */
static const BuiltinFormat spBuiltinFormats_ar_MA[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_MA "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Oman. */
static const BuiltinFormat spBuiltinFormats_ar_OM[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_OM "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Qatar. */
static const BuiltinFormat spBuiltinFormats_ar_QA[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_QA "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Saudi Arabia. */
static const BuiltinFormat spBuiltinFormats_ar_SA[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_SA "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Syria. */
static const BuiltinFormat spBuiltinFormats_ar_SY[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_SY "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Tunisia. */
static const BuiltinFormat spBuiltinFormats_ar_TN[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_TN "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Arabic, Yemen. */
static const BuiltinFormat spBuiltinFormats_ar_YE[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_AR_YE "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Belarusian, Belarus. */
static const BuiltinFormat spBuiltinFormats_be_BY[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"" UTF8_CYR_R_LC ".\"", "_" UTF8_CYR_R_LC "_.", "\\ " ),
NUMFMT_ENDTABLE()
};
/** Bulgarian, Bulgaria. */
static const BuiltinFormat spBuiltinFormats_bg_BG[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD.M.YYYY", "DD", ".", "MMM", ".", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"" UTF8_CYR_L_LC UTF8_CYR_W_LC "\"", "_" UTF8_CYR_L_LC "_" UTF8_CYR_W_LC, "\\ " ),
NUMFMT_ENDTABLE()
};
/** Bengali, India. */
static const BuiltinFormat spBuiltinFormats_bn_IN[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"" UTF8_CURR_BN_IN "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Czech, Czech Republic. */
static const BuiltinFormat spBuiltinFormats_cs_CZ[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "D.M.YYYY", "D", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"K" UTF8_CCARON_LC "\"", "_K_" UTF8_CCARON_LC, "\\ " ),
NUMFMT_ENDTABLE()
};
/** Danish, Denmark. */
static const BuiltinFormat spBuiltinFormats_da_DK[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YYYY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"kr\"", " " ),
NUMFMT_ENDTABLE()
};
/** German, Austria. */
static const BuiltinFormat spBuiltinFormats_de_AT[] =
{
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( UTF8_EURO, " " ),
NUMFMT_ENDTABLE()
};
/** German, Switzerland. */
static const BuiltinFormat spBuiltinFormats_de_CH[] =
{
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ". ", "MMM", " ", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"SFr.\"", " " ),
NUMFMT_ENDTABLE()
};
/** German, Germany. */
static const BuiltinFormat spBuiltinFormats_de_DE[] =
{
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ". ", "MMM", " ", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, " " ),
NUMFMT_ENDTABLE()
};
/** German, Liechtenstein. */
static const BuiltinFormat spBuiltinFormats_de_LI[] =
{
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ". ", "MMM", " ", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"CHF\"", " " ),
NUMFMT_ENDTABLE()
};
/** German, Luxembourg. */
static const BuiltinFormat spBuiltinFormats_de_LU[] =
{
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, " " ),
NUMFMT_ENDTABLE()
};
/** Divehi, Maldives. */
static const BuiltinFormat spBuiltinFormats_div_MV[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_NUMBER_SYMBOL_MINUS( "\"" UTF8_RUFIYAA ".\"", "_" UTF8_RUFIYAA "_.", " " ),
NUMFMT_ENDTABLE()
};
/** Greek, Greece. */
static const BuiltinFormat spBuiltinFormats_el_GR[] =
{
NUMFMT_ALLDATETIMES( "D/M/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, " " ),
NUMFMT_ENDTABLE()
};
/** English, Australia. */
static const BuiltinFormat spBuiltinFormats_en_AU[] =
{
NUMFMT_ALLDATETIMES( "D/MM/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( "$", "" ),
NUMFMT_ENDTABLE()
};
/** English, Belize. */
static const BuiltinFormat spBuiltinFormats_en_BZ[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"BZ$\"", "" ),
NUMFMT_ENDTABLE()
};
/** English, Canada. */
static const BuiltinFormat spBuiltinFormats_en_CA[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( "$", "" ),
NUMFMT_ENDTABLE()
};
/** English, Caribbean. */
static const BuiltinFormat spBuiltinFormats_en_CB[] =
{
NUMFMT_ALLDATETIMES( "MM/DD/YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( "$", "" ),
NUMFMT_ENDTABLE()
};
/** English, United Kingdom. */
static const BuiltinFormat spBuiltinFormats_en_GB[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( UTF8_POUND_GB, "" ),
NUMFMT_ENDTABLE()
};
/** English, Ireland. */
static const BuiltinFormat spBuiltinFormats_en_IE[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( UTF8_EURO, "" ),
NUMFMT_ENDTABLE()
};
/** English, Jamaica. */
static const BuiltinFormat spBuiltinFormats_en_JM[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( "\"J$\"", "" ),
NUMFMT_ENDTABLE()
};
/** English, New Zealand. */
static const BuiltinFormat spBuiltinFormats_en_NZ[] =
{
NUMFMT_ALLDATETIMES( "D/MM/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( "$", "" ),
NUMFMT_ENDTABLE()
};
/** English, Philippines. */
static const BuiltinFormat spBuiltinFormats_en_PH[] =
{
NUMFMT_ALLDATETIMES( "M/D/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"Php\"", "" ),
NUMFMT_ENDTABLE()
};
/** English, Trinidad and Tobago. */
static const BuiltinFormat spBuiltinFormats_en_TT[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"TT$\"", "" ),
NUMFMT_ENDTABLE()
};
/** English, USA. */
static const BuiltinFormat spBuiltinFormats_en_US[] =
{
NUMFMT_ALLDATETIMES( "M/D/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "$", "" ),
NUMFMT_ENDTABLE()
};
/** English, South Africa. */
static const BuiltinFormat spBuiltinFormats_en_ZA[] =
{
NUMFMT_ALLDATETIMES( "YYYY/MM/DD", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\\R", " " ),
NUMFMT_ENDTABLE()
};
/** English, Zimbabwe. */
static const BuiltinFormat spBuiltinFormats_en_ZW[] =
{
NUMFMT_ALLDATETIMES( "M/D/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"Z$\"", "" ),
NUMFMT_ENDTABLE()
};
/** Spanish, Argentina. */
static const BuiltinFormat spBuiltinFormats_es_AR[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "$", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Bolivia. */
static const BuiltinFormat spBuiltinFormats_es_BO[] =
{
// slashes must be quoted to prevent conversion to minus
NUMFMT_ALLDATETIMES( "DD\\/MM\\/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"$b\"", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Chile. */
static const BuiltinFormat spBuiltinFormats_es_CL[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( "$", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Colombia. */
static const BuiltinFormat spBuiltinFormats_es_CO[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "$", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Costa Rica. */
static const BuiltinFormat spBuiltinFormats_es_CR[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( UTF8_COLON, "" ),
NUMFMT_ENDTABLE()
};
/** Spanish, Dominican Republic. */
static const BuiltinFormat spBuiltinFormats_es_DO[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"RD$\"", "" ),
NUMFMT_ENDTABLE()
};
/** Spanish, Ecuador. */
static const BuiltinFormat spBuiltinFormats_es_EC[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "$", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Spain. */
static const BuiltinFormat spBuiltinFormats_es_ES[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Guatemala. */
static const BuiltinFormat spBuiltinFormats_es_GT[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\\Q", "" ),
NUMFMT_ENDTABLE()
};
/** Spanish, Honduras. */
static const BuiltinFormat spBuiltinFormats_es_HN[] =
{
// slashes must be quoted to prevent conversion to minus
NUMFMT_ALLDATETIMES( "DD\\/MM\\/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"L.\"", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Mexico. */
static const BuiltinFormat spBuiltinFormats_es_MX[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( "$", "" ),
NUMFMT_ENDTABLE()
};
/** Spanish, Nicaragua. */
static const BuiltinFormat spBuiltinFormats_es_NI[] =
{
// slashes must be quoted to prevent conversion to minus
NUMFMT_ALLDATETIMES( "DD\\/MM\\/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"C$\"", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Panama. */
static const BuiltinFormat spBuiltinFormats_es_PA[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"B/.\"", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Peru. */
static const BuiltinFormat spBuiltinFormats_es_PE[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"S/.\"", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Puerto Rico. */
static const BuiltinFormat spBuiltinFormats_es_PR[] =
{
// slashes must be quoted to prevent conversion to minus
NUMFMT_ALLDATETIMES( "DD\\/MM\\/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "$", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Paraguay. */
static const BuiltinFormat spBuiltinFormats_es_PY[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"Gs\"", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, El Salvador. */
static const BuiltinFormat spBuiltinFormats_es_SV[] =
{
// slashes must be quoted to prevent conversion to minus
NUMFMT_ALLDATETIMES( "DD\\/MM\\/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "$", "" ),
NUMFMT_ENDTABLE()
};
/** Spanish, Uruguay. */
static const BuiltinFormat spBuiltinFormats_es_UY[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"$U\"", " " ),
NUMFMT_ENDTABLE()
};
/** Spanish, Venezuela. */
static const BuiltinFormat spBuiltinFormats_es_VE[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "Bs", " " ),
NUMFMT_ENDTABLE()
};
/** Estonian, Estonia. */
static const BuiltinFormat spBuiltinFormats_et_EE[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "D.MM.YYYY", "D", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"kr\"", "_k_r", "\\ " ),
NUMFMT_ENDTABLE()
};
/** Farsi, Iran. */
static const BuiltinFormat spBuiltinFormats_fa_IR[] =
{
NUMFMT_ALLDATETIMES( "YYYY/MM/DD", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"" UTF8_CURR_FA_IR "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Finnish, Finland. */
static const BuiltinFormat spBuiltinFormats_fi_FI[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_STRING( 9, "0\\ %" ),
NUMFMT_STRING( 10, "0.00\\ %" ),
NUMFMT_ALLDATETIMES( "D.M.YYYY", "D", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, "\\ " ),
NUMFMT_ENDTABLE()
};
/** Faroese, Faroe Islands. */
static const BuiltinFormat spBuiltinFormats_fo_FO[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YYYY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"kr\"", " " ),
NUMFMT_ENDTABLE()
};
/** French, Belgium. */
static const BuiltinFormat spBuiltinFormats_fr_BE[] =
{
NUMFMT_ALLDATETIMES( "D/MM/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, " " ),
NUMFMT_ENDTABLE()
};
/** French, Canada. */
static const BuiltinFormat spBuiltinFormats_fr_CA[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "YYYY-MM-DD", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_NUMBER_SYMBOL_CLOSE( "$", "_$", "\\ " ),
NUMFMT_ENDTABLE()
};
/** French, Switzerland. */
static const BuiltinFormat spBuiltinFormats_fr_CH[] =
{
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"SFr.\"", " " ),
NUMFMT_ENDTABLE()
};
/** French, France. */
static const BuiltinFormat spBuiltinFormats_fr_FR[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, "\\ " ),
NUMFMT_ENDTABLE()
};
/** French, Luxembourg. */
static const BuiltinFormat spBuiltinFormats_fr_LU[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, "\\ " ),
NUMFMT_ENDTABLE()
};
/** French, Monaco. */
static const BuiltinFormat spBuiltinFormats_fr_MC[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, "\\ " ),
NUMFMT_ENDTABLE()
};
/** Galizian, Spain. */
static const BuiltinFormat spBuiltinFormats_gl_ES[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( UTF8_EURO, " " ),
NUMFMT_ENDTABLE()
};
/** Gujarati, India. */
static const BuiltinFormat spBuiltinFormats_gu_IN[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"" UTF8_CURR_GU_IN "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Hebrew, Israel. */
static const BuiltinFormat spBuiltinFormats_he_IL[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( UTF8_SHEQEL, " " ),
NUMFMT_ENDTABLE()
};
/** Hindi, India. */
static const BuiltinFormat spBuiltinFormats_hi_IN[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YYYY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"" UTF8_CURR_HI_IN "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Croatian, Bosnia and Herzegowina. */
static const BuiltinFormat spBuiltinFormats_hr_BA[] =
{
NUMFMT_ALLDATETIMES( "D.M.YYYY", "D", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"KM\"", "_K_M", " " ),
NUMFMT_ENDTABLE()
};
/** Croatian, Croatia. */
static const BuiltinFormat spBuiltinFormats_hr_HR[] =
{
NUMFMT_ALLDATETIMES( "D.M.YYYY", "D", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"kn\"", "_k_n", " " ),
NUMFMT_ENDTABLE()
};
/** Hungarian, Hungary. */
static const BuiltinFormat spBuiltinFormats_hu_HU[] =
{
// space character is group separator, literal spaces must be quoted
// MMM is rendered differently in Calc and Excel (see #i41488#)
NUMFMT_ALLDATETIMES( "YYYY.MM.DD", "DD", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"Ft\"", "_F_t", "\\ " ),
NUMFMT_ENDTABLE()
};
/** Armenian, Armenia. */
static const BuiltinFormat spBuiltinFormats_hy_AM[] =
{
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"" UTF8_HY_DA_LC UTF8_HY_REH_LC ".\"", "_" UTF8_HY_DA_LC "_" UTF8_HY_REH_LC "_.", " " ),
NUMFMT_ENDTABLE()
};
/** Indonesian, Indonesia. */
static const BuiltinFormat spBuiltinFormats_id_ID[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"Rp\"", "" ),
NUMFMT_ENDTABLE()
};
/** Icelandic, Iceland. */
static const BuiltinFormat spBuiltinFormats_is_IS[] =
{
NUMFMT_ALLDATETIMES( "D.M.YYYY", "D", ".", "MMM", ".", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"kr.\"", "_k_r_.", " " ),
NUMFMT_ENDTABLE()
};
/** Italian, Switzerland. */
static const BuiltinFormat spBuiltinFormats_it_CH[] =
{
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"SFr.\"", " " ),
NUMFMT_ENDTABLE()
};
/** Italian, Italy. */
static const BuiltinFormat spBuiltinFormats_it_IT[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( UTF8_EURO, " " ),
NUMFMT_ENDTABLE()
};
/** Georgian, Georgia. */
static const BuiltinFormat spBuiltinFormats_ka_GE[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"Lari\"", "_L_a_r_i", "\\ " ),
NUMFMT_ENDTABLE()
};
/** Kazakh, Kazakhstan. */
static const BuiltinFormat spBuiltinFormats_kk_KZ[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( "\\T", "" ),
NUMFMT_ENDTABLE()
};
/** Kannada, India. */
static const BuiltinFormat spBuiltinFormats_kn_IN[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"" UTF8_CURR_KN_IN "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Kyrgyz, Kyrgyzstan. */
static const BuiltinFormat spBuiltinFormats_ky_KG[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD.MM.YY", "DD", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"" UTF8_CYR_S_LC UTF8_CYR_O_LC UTF8_CYR_M_LC "\"", "_" UTF8_CYR_S_LC "_" UTF8_CYR_O_LC "_" UTF8_CYR_M_LC, "\\ " ),
NUMFMT_ENDTABLE()
};
/** Lithuanian, Lithuania. */
static const BuiltinFormat spBuiltinFormats_lt_LT[] =
{
NUMFMT_ALLDATETIMES( "YYYY.MM.DD", "DD", ".", "MMM", ".", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"Lt\"", "_L_t", " " ),
NUMFMT_ENDTABLE()
};
/** Latvian, Latvia. */
static const BuiltinFormat spBuiltinFormats_lv_LV[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "YYYY.MM.DD", "DD", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( "\"Ls\"", "\\ " ),
NUMFMT_ENDTABLE()
};
/** Malayalam, India. */
static const BuiltinFormat spBuiltinFormats_ml_IN[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"" UTF8_CURR_ML_IN "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Mongolian, Mongolia. */
static const BuiltinFormat spBuiltinFormats_mn_MN[] =
{
NUMFMT_ALLDATETIMES( "YY.MM.DD", "DD", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_TUGRUG, "_" UTF8_TUGRUG, "" ),
NUMFMT_ENDTABLE()
};
/** Malay, Brunei Darussalam. */
static const BuiltinFormat spBuiltinFormats_ms_BN[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "$", "" ),
NUMFMT_ENDTABLE()
};
/** Malay, Malaysia. */
static const BuiltinFormat spBuiltinFormats_ms_MY[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\\R", "" ),
NUMFMT_ENDTABLE()
};
/** Maltese, Malta. */
static const BuiltinFormat spBuiltinFormats_mt_MT[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( "\"Lm\"", "" ),
NUMFMT_ENDTABLE()
};
/** Dutch, Belgium. */
static const BuiltinFormat spBuiltinFormats_nl_BE[] =
{
// slashes must be quoted to prevent conversion to minus
NUMFMT_ALLDATETIMES( "D\\/MM\\/YYYY", "D", "\\/", "MMM", "\\/", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, " " ),
NUMFMT_ENDTABLE()
};
/** Dutch, Netherlands. */
static const BuiltinFormat spBuiltinFormats_nl_NL[] =
{
NUMFMT_ALLDATETIMES( "D-M-YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( UTF8_EURO, " " ),
NUMFMT_ENDTABLE()
};
/** Norwegian (Bokmal and Nynorsk), Norway. */
static const BuiltinFormat spBuiltinFormats_no_NO[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"kr\"", "\\ " ),
NUMFMT_ENDTABLE()
};
/** Punjabi, India. */
static const BuiltinFormat spBuiltinFormats_pa_IN[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YY", "DD", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"" UTF8_CURR_PA_IN "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Polish, Poland. */
static const BuiltinFormat spBuiltinFormats_pl_PL[] =
{
// space character is group separator, literal spaces must be quoted
// MMM is rendered differently in Calc and Excel (see #i72300#)
NUMFMT_ALLDATETIMES( "YYYY-MM-DD", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"z" UTF8_LSTROKE_LC "\"", "_z_" UTF8_LSTROKE_LC, "\\ " ),
NUMFMT_ENDTABLE()
};
/** Portugese, Brazil. */
static const BuiltinFormat spBuiltinFormats_pt_BR[] =
{
NUMFMT_ALLDATETIMES( "D/M/YYYY", "D", "/", "MMM", "/", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"R$\"", " " ),
NUMFMT_ENDTABLE()
};
/** Portugese, Portugal. */
static const BuiltinFormat spBuiltinFormats_pt_PT[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, " " ),
NUMFMT_ENDTABLE()
};
/** Romanian, Romania. */
static const BuiltinFormat spBuiltinFormats_ro_RO[] =
{
// space character is group separator, literal spaces must be quoted (but see #i75367#)
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"lei\"", "_l_e_i", "\\ " ),
NUMFMT_ENDTABLE()
};
/** Russian, Russian Federation. */
static const BuiltinFormat spBuiltinFormats_ru_RU[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"" UTF8_CYR_R_LC ".\"", "_" UTF8_CYR_R_LC "_.", "" ),
NUMFMT_ENDTABLE()
};
/** Slovak, Slovakia. */
static const BuiltinFormat spBuiltinFormats_sk_SK[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "D.M.YYYY", "D", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"Sk\"", "_S_k", "\\ " ),
NUMFMT_ENDTABLE()
};
/** Slovenian, Slovenia. */
static const BuiltinFormat spBuiltinFormats_sl_SI[] =
{
NUMFMT_ALLDATETIMES( "D.M.YYYY", "D", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"SIT\"", "_S_I_T", " " ),
NUMFMT_ENDTABLE()
};
/** Swedish, Finland. */
static const BuiltinFormat spBuiltinFormats_sv_FI[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_STRING( 9, "0\\ %" ),
NUMFMT_STRING( 10, "0.00\\ %" ),
NUMFMT_ALLDATETIMES( "D.M.YYYY", "D", ".", "MMM", ".", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_EURO, "_" UTF8_EURO, "\\ " ),
NUMFMT_ENDTABLE()
};
/** Swedish, Sweden. */
static const BuiltinFormat spBuiltinFormats_sv_SE[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "YYYY-MM-DD", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"kr\"", "_k_r", "\\ " ),
NUMFMT_ENDTABLE()
};
/** Swahili, Tanzania. */
static const BuiltinFormat spBuiltinFormats_sw_TZ[] =
{
NUMFMT_ALLDATETIMES( "M/D/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\\S", "" ),
NUMFMT_ENDTABLE()
};
/** Tamil, India. */
static const BuiltinFormat spBuiltinFormats_ta_IN[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YYYY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"" UTF8_CURR_TA_IN "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Telugu, India. */
static const BuiltinFormat spBuiltinFormats_te_IN[] =
{
NUMFMT_ALLDATETIMES( "DD-MM-YY", "DD", "-", "MMM", "-", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( "\"" UTF8_CURR_TE_IN "\"", " " ),
NUMFMT_ENDTABLE()
};
/** Thai, Thailand. */
static const BuiltinFormat spBuiltinFormats_th_TH[] =
{
NUMFMT_ALLDATETIMES( "D/M/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( UTF8_BAHT, "" ),
NUMFMT_CURRENCY_OPEN_SYMBOL_NUMBER_CLOSE( 63, UTF8_BAHT, "", "t" ),
NUMFMT_STRING( 59, "t0" ),
NUMFMT_STRING( 60, "t0.00" ),
NUMFMT_STRING( 61, "t#,##0" ),
NUMFMT_STRING( 62, "t#,##0.00" ),
NUMFMT_STRING( 67, "t0%" ),
NUMFMT_STRING( 68, "t0.00%" ),
NUMFMT_STRING( 69, "t# ?/?" ),
NUMFMT_STRING( 70, "t# ?\?/?\?" ),
NUMFMT_STRING( 71, "tD/M/EE" ),
NUMFMT_STRING( 72, "tD-MMM-E" ),
NUMFMT_STRING( 73, "tD-MMM" ),
NUMFMT_STRING( 74, "tMMM-E" ),
NUMFMT_STRING( 75, "th:mm" ),
NUMFMT_STRING( 76, "th:mm:ss" ),
NUMFMT_STRING( 77, "tD/M/EE h:mm" ),
NUMFMT_STRING( 78, "tmm:ss" ),
NUMFMT_STRING( 79, "t[h]:mm:ss" ),
NUMFMT_STRING( 80, "tmm:ss.0" ),
NUMFMT_STRING( 81, "D/M/E" ),
NUMFMT_ENDTABLE()
};
/** Turkish, Turkey. */
static const BuiltinFormat spBuiltinFormats_tr_TR[] =
{
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"TL\"", "_T_L", " " ),
NUMFMT_ENDTABLE()
};
/** Tatar, Russian Federation. */
static const BuiltinFormat spBuiltinFormats_tt_RU[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"" UTF8_CYR_R_LC ".\"", "_" UTF8_CYR_R_LC "_.", "\\ " ),
NUMFMT_ENDTABLE()
};
/** Ukrainian, Ukraine. */
static const BuiltinFormat spBuiltinFormats_uk_UA[] =
{
// space character is group separator, literal spaces must be quoted
NUMFMT_ALLDATETIMES( "DD.MM.YYYY", "DD", ".", "MMM", ".", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( "\"" UTF8_CYR_G_LC UTF8_CYR_R_LC UTF8_CYR_N_LC ".\"", "_" UTF8_CYR_G_LC "_" UTF8_CYR_R_LC "_" UTF8_CYR_N_LC "_.", "\\ " ),
NUMFMT_ENDTABLE()
};
/** Urdu, Pakistan. */
static const BuiltinFormat spBuiltinFormats_ur_PK[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_SYMBOL_NUMBER_MINUS( "\"Rs\"", "" ),
NUMFMT_ENDTABLE()
};
/** Vietnamese, Viet Nam. */
static const BuiltinFormat spBuiltinFormats_vi_VN[] =
{
NUMFMT_ALLDATETIMES( "DD/MM/YYYY", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_NUMBER_SYMBOL( UTF8_DONG, "_" UTF8_DONG, " " ),
NUMFMT_ENDTABLE()
};
// CJK ------------------------------------------------------------------------
/** Base table for CJK locales. */
static const BuiltinFormat spBuiltinFormats_CJK[] =
{
NUMFMT_REUSE( 29, 28 ),
NUMFMT_REUSE( 36, 27 ),
NUMFMT_REUSE( 50, 27 ),
NUMFMT_REUSE( 51, 28 ),
NUMFMT_REUSE( 52, 34 ),
NUMFMT_REUSE( 53, 35 ),
NUMFMT_REUSE( 54, 28 ),
NUMFMT_REUSE( 55, 34 ),
NUMFMT_REUSE( 56, 35 ),
NUMFMT_REUSE( 57, 27 ),
NUMFMT_REUSE( 58, 28 ),
NUMFMT_ENDTABLE()
};
/** Japanese, Japan. */
static const BuiltinFormat spBuiltinFormats_ja_JP[] =
{
NUMFMT_ALLDATETIMES( "YYYY/MM/DD", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( UTF8_YEN_JP, "" ),
NUMFMT_CURRENCY_OPEN_SYMBOL_NUMBER_CLOSE( 23, "$", "", "" ),
NUMFMT_STRING( 27, "[$-411]GE.MM.DD" ),
NUMFMT_STRING( 28, "[$-411]GGGE\"" UTF8_CJ_YEAR "\"MM\"" UTF8_CJ_MON "\"DD\"" UTF8_CJ_DAY "\"" ),
NUMFMT_STRING( 30, "MM/DD/YY" ),
NUMFMT_STRING( 31, "YYYY\"" UTF8_CJ_YEAR "\"MM\"" UTF8_CJ_MON "\"DD\"" UTF8_CJ_DAY "\"" ),
NUMFMT_TIME_CJK( 32, "h", UTF8_CJ_HOUR, UTF8_CJ_MIN, UTF8_CJ_SEC ),
NUMFMT_STRING( 34, "YYYY\"" UTF8_CJ_YEAR "\"MM\"" UTF8_CJ_MON "\"" ),
NUMFMT_STRING( 35, "MM\"" UTF8_CJ_MON "\"DD\"" UTF8_CJ_DAY "\"" ),
NUMFMT_ENDTABLE()
};
/** Korean, South Korea. */
static const BuiltinFormat spBuiltinFormats_ko_KR[] =
{
NUMFMT_ALLDATETIMES( "YYYY-MM-DD", "DD", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( UTF8_WON, "" ),
NUMFMT_CURRENCY_OPEN_SYMBOL_NUMBER_CLOSE( 23, "$", "", "" ),
NUMFMT_STRING( 27, "YYYY" UTF8_CJ_YEAR " MM" UTF8_CJ_MON " DD" UTF8_CJ_DAY ),
NUMFMT_STRING( 28, "MM-DD" ),
NUMFMT_STRING( 30, "MM-DD-YY" ),
NUMFMT_STRING( 31, "YYYY" UTF8_KO_YEAR " MM" UTF8_KO_MON " DD" UTF8_KO_DAY ),
NUMFMT_TIME_CJK( 32, "h", UTF8_KO_HOUR, UTF8_KO_MIN, UTF8_KO_SEC ),
// slashes must be quoted to prevent conversion to minus
NUMFMT_STRING( 34, "YYYY\\/MM\\/DD" ),
NUMFMT_REUSE( 35, 14 ),
NUMFMT_ENDTABLE()
};
/** Chinese, China. */
static const BuiltinFormat spBuiltinFormats_zh_CN[] =
{
NUMFMT_ALLDATETIMES( "YYYY-M-D", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_SYMBOL_MINUS_NUMBER( UTF8_YEN_CN, "" ),
NUMFMT_ALLTIMES_CJK( "h", "h", UTF8_CS_HOUR, UTF8_CS_MIN, UTF8_CS_SEC ),
NUMFMT_CURRENCY_OPEN_SYMBOL_NUMBER_CLOSE( 23, "$", "", "" ),
NUMFMT_STRING( 27, "YYYY\"" UTF8_CS_YEAR "\"M\"" UTF8_CS_MON "\"" ),
NUMFMT_STRING( 28, "M\"" UTF8_CS_MON "\"D\"" UTF8_CS_DAY "\"" ),
NUMFMT_STRING( 30, "M-D-YY" ),
NUMFMT_STRING( 31, "YYYY\"" UTF8_CS_YEAR "\"M\"" UTF8_CS_MON "\"D\"" UTF8_CS_DAY "\"" ),
NUMFMT_REUSE( 52, 27 ),
NUMFMT_REUSE( 53, 28 ),
NUMFMT_ENDTABLE()
};
/** Chinese, Hong Kong. */
static const BuiltinFormat spBuiltinFormats_zh_HK[] =
{
NUMFMT_ALLDATETIMES( "D/M/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\"HK$\"", "" ),
NUMFMT_ALLTIMES_CJK( "h", "h", UTF8_CJ_HOUR, UTF8_CJ_MIN, UTF8_CJ_SEC ),
NUMFMT_CURRENCY_OPEN_SYMBOL_NUMBER_CLOSE( 23, "\"US$\"", "", "" ),
NUMFMT_STRING( 27, "[$-404]D/M/E" ),
NUMFMT_STRING( 28, "[$-404]D\"" UTF8_CJ_DAY "\"M\"" UTF8_CJ_MON "\"E\"" UTF8_CJ_YEAR "\"" ),
NUMFMT_STRING( 30, "M/D/YY" ),
NUMFMT_STRING( 31, "D\"" UTF8_CJ_DAY "\"M\"" UTF8_CJ_MON "\"YYYY\"" UTF8_CJ_YEAR "\"" ),
NUMFMT_ENDTABLE()
};
/** Chinese, Macau. */
static const BuiltinFormat spBuiltinFormats_zh_MO[] =
{
NUMFMT_ALLDATETIMES( "D/M/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "\\P", "" ),
NUMFMT_ALLTIMES_CJK( "h", "h", UTF8_CJ_HOUR, UTF8_CJ_MIN, UTF8_CJ_SEC ),
NUMFMT_CURRENCY_OPEN_SYMBOL_NUMBER_CLOSE( 23, "\"US$\"", "", "" ),
NUMFMT_STRING( 27, "[$-404]D/M/E" ),
NUMFMT_STRING( 28, "[$-404]D\"" UTF8_CJ_DAY "\"M\"" UTF8_CJ_MON "\"E\"" UTF8_CJ_YEAR "\"" ),
NUMFMT_STRING( 30, "M/D/YY" ),
NUMFMT_STRING( 31, "D\"" UTF8_CJ_DAY "\"M\"" UTF8_CJ_MON "\"YYYY\"" UTF8_CJ_YEAR "\"" ),
NUMFMT_ENDTABLE()
};
/** Chinese, Singapore. */
static const BuiltinFormat spBuiltinFormats_zh_SG[] =
{
NUMFMT_ALLDATETIMES( "D/M/YYYY", "D", "-", "MMM", "-", "YY", "h", "h" ),
NUMFMT_ALLCURRENCIES_OPEN_SYMBOL_NUMBER_CLOSE( "$", "" ),
NUMFMT_ALLTIMES_CJK( "h", "h", UTF8_CS_HOUR, UTF8_CS_MIN, UTF8_CS_SEC ),
NUMFMT_CURRENCY_OPEN_SYMBOL_NUMBER_CLOSE( 23, "$", "", "" ),
NUMFMT_STRING( 27, "YYYY\"" UTF8_CS_YEAR "\"M\"" UTF8_CS_MON "\"" ),
NUMFMT_STRING( 28, "M\"" UTF8_CS_MON "\"D\"" UTF8_CS_DAY "\"" ),
NUMFMT_STRING( 30, "M/D/YY" ),
NUMFMT_STRING( 31, "D\"" UTF8_CS_DAY "\"M\"" UTF8_CS_MON "\"YYYY\"" UTF8_CS_YEAR "\"" ),
NUMFMT_ENDTABLE()
};
/** Chinese, Taiwan. */
static const BuiltinFormat spBuiltinFormats_zh_TW[] =
{
NUMFMT_ALLDATETIMES( "YYYY/M/D", "D", "-", "MMM", "-", "YY", "hh", "hh" ),
NUMFMT_ALLCURRENCIES_MINUS_SYMBOL_NUMBER( "$", "" ),
NUMFMT_ALLTIMES_CJK( "hh", "hh", UTF8_CJ_HOUR, UTF8_CJ_MIN, UTF8_CJ_SEC ),
NUMFMT_CURRENCY_OPEN_SYMBOL_NUMBER_CLOSE( 23, "\"US$\"", "", "" ),
NUMFMT_STRING( 27, "[$-404]E/M/D" ),
NUMFMT_STRING( 28, "[$-404]E\"" UTF8_CJ_YEAR "\"M\"" UTF8_CJ_MON "\"D\"" UTF8_CJ_DAY "\"" ),
NUMFMT_STRING( 30, "M/D/YY" ),
NUMFMT_STRING( 31, "YYYY\"" UTF8_CJ_YEAR "\"M\"" UTF8_CJ_MON "\"D\"" UTF8_CJ_DAY "\"" ),
NUMFMT_ENDTABLE()
};
// ----------------------------------------------------------------------------
/** Specifies a built-in number format table for a specific locale. */
struct BuiltinFormatTable
{
const sal_Char* mpcLocale; /// The locale for this table.
const sal_Char* mpcParent; /// The locale of the parent table.
const BuiltinFormat* mpFormats; /// The number format table (may be 0, if equal to parent).
};
static const BuiltinFormatTable spBuiltinFormatTables[] =
{ // locale parent format table
{ "*", "", spBuiltinFormats_BASE }, // Base table
{ "af-ZA", "*", spBuiltinFormats_en_ZA }, // Afrikaans, South Africa
{ "ar-AE", "*", spBuiltinFormats_ar_AE }, // Arabic, U.A.E.
{ "ar-BH", "*", spBuiltinFormats_ar_BH }, // Arabic, Bahrain
{ "ar-DZ", "*", spBuiltinFormats_ar_DZ }, // Arabic, Algeria
{ "ar-EG", "*", spBuiltinFormats_ar_EG }, // Arabic, Egypt
{ "ar-IQ", "*", spBuiltinFormats_ar_IQ }, // Arabic, Iraq
{ "ar-JO", "*", spBuiltinFormats_ar_JO }, // Arabic, Jordan
{ "ar-KW", "*", spBuiltinFormats_ar_KW }, // Arabic, Kuwait
{ "ar-LB", "*", spBuiltinFormats_ar_LB }, // Arabic, Lebanon
{ "ar-LY", "*", spBuiltinFormats_ar_LY }, // Arabic, Libya
{ "ar-MA", "*", spBuiltinFormats_ar_MA }, // Arabic, Morocco
{ "ar-OM", "*", spBuiltinFormats_ar_OM }, // Arabic, Oman
{ "ar-QA", "*", spBuiltinFormats_ar_QA }, // Arabic, Qatar
{ "ar-SA", "*", spBuiltinFormats_ar_SA }, // Arabic, Saudi Arabia
{ "ar-SY", "*", spBuiltinFormats_ar_SY }, // Arabic, Syria
{ "ar-TN", "*", spBuiltinFormats_ar_TN }, // Arabic, Tunisia
{ "ar-YE", "*", spBuiltinFormats_ar_YE }, // Arabic, Yemen
{ "be-BY", "*", spBuiltinFormats_be_BY }, // Belarusian, Belarus
{ "bg-BG", "*", spBuiltinFormats_bg_BG }, // Bulgarian, Bulgaria
{ "bn-IN", "*", spBuiltinFormats_bn_IN }, // Bengali, India
{ "ca-ES", "*", spBuiltinFormats_es_ES }, // Catalan, Spain
{ "cs-CZ", "*", spBuiltinFormats_cs_CZ }, // Czech, Czech Republic
{ "cy-GB", "*", spBuiltinFormats_en_GB }, // Welsh, United Kingdom
{ "da-DK", "*", spBuiltinFormats_da_DK }, // Danish, Denmark
{ "de-AT", "*", spBuiltinFormats_de_AT }, // German, Austria
{ "de-CH", "*", spBuiltinFormats_de_CH }, // German, Switzerland
{ "de-DE", "*", spBuiltinFormats_de_DE }, // German, Germany
{ "de-LI", "*", spBuiltinFormats_de_LI }, // German, Liechtenstein
{ "de-LU", "*", spBuiltinFormats_de_LU }, // German, Luxembourg
{ "div-MV", "*", spBuiltinFormats_div_MV }, // Divehi, Maldives
{ "el-GR", "*", spBuiltinFormats_el_GR }, // Greek, Greece
{ "en-AU", "*", spBuiltinFormats_en_AU }, // English, Australia
{ "en-BZ", "*", spBuiltinFormats_en_BZ }, // English, Belize
{ "en-CA", "*", spBuiltinFormats_en_CA }, // English, Canada
{ "en-CB", "*", spBuiltinFormats_en_CB }, // English, Caribbean
{ "en-GB", "*", spBuiltinFormats_en_GB }, // English, United Kingdom
{ "en-IE", "*", spBuiltinFormats_en_IE }, // English, Ireland
{ "en-JM", "*", spBuiltinFormats_en_JM }, // English, Jamaica
{ "en-NZ", "*", spBuiltinFormats_en_NZ }, // English, New Zealand
{ "en-PH", "*", spBuiltinFormats_en_PH }, // English, Philippines
{ "en-TT", "*", spBuiltinFormats_en_TT }, // English, Trinidad and Tobago
{ "en-US", "*", spBuiltinFormats_en_US }, // English, USA
{ "en-ZA", "*", spBuiltinFormats_en_ZA }, // English, South Africa
{ "en-ZW", "*", spBuiltinFormats_en_ZW }, // English, Zimbabwe
{ "es-AR", "*", spBuiltinFormats_es_AR }, // Spanish, Argentina
{ "es-BO", "*", spBuiltinFormats_es_BO }, // Spanish, Bolivia
{ "es-CL", "*", spBuiltinFormats_es_CL }, // Spanish, Chile
{ "es-CO", "*", spBuiltinFormats_es_CO }, // Spanish, Colombia
{ "es-CR", "*", spBuiltinFormats_es_CR }, // Spanish, Costa Rica
{ "es-DO", "*", spBuiltinFormats_es_DO }, // Spanish, Dominican Republic
{ "es-EC", "*", spBuiltinFormats_es_EC }, // Spanish, Ecuador
{ "es-ES", "*", spBuiltinFormats_es_ES }, // Spanish, Spain
{ "es-GT", "*", spBuiltinFormats_es_GT }, // Spanish, Guatemala
{ "es-HN", "*", spBuiltinFormats_es_HN }, // Spanish, Honduras
{ "es-MX", "*", spBuiltinFormats_es_MX }, // Spanish, Mexico
{ "es-NI", "*", spBuiltinFormats_es_NI }, // Spanish, Nicaragua
{ "es-PA", "*", spBuiltinFormats_es_PA }, // Spanish, Panama
{ "es-PE", "*", spBuiltinFormats_es_PE }, // Spanish, Peru
{ "es-PR", "*", spBuiltinFormats_es_PR }, // Spanish, Puerto Rico
{ "es-PY", "*", spBuiltinFormats_es_PY }, // Spanish, Paraguay
{ "es-SV", "*", spBuiltinFormats_es_SV }, // Spanish, El Salvador
{ "es-UY", "*", spBuiltinFormats_es_UY }, // Spanish, Uruguay
{ "es-VE", "*", spBuiltinFormats_es_VE }, // Spanish, Venezuela
{ "et-EE", "*", spBuiltinFormats_et_EE }, // Estonian, Estonia
{ "fa-IR", "*", spBuiltinFormats_fa_IR }, // Farsi, Iran
{ "fi-FI", "*", spBuiltinFormats_fi_FI }, // Finnish, Finland
{ "fo-FO", "*", spBuiltinFormats_fo_FO }, // Faroese, Faroe Islands
{ "fr-BE", "*", spBuiltinFormats_fr_BE }, // French, Belgium
{ "fr-CA", "*", spBuiltinFormats_fr_CA }, // French, Canada
{ "fr-CH", "*", spBuiltinFormats_fr_CH }, // French, Switzerland
{ "fr-FR", "*", spBuiltinFormats_fr_FR }, // French, France
{ "fr-LU", "*", spBuiltinFormats_fr_LU }, // French, Luxembourg
{ "fr-MC", "*", spBuiltinFormats_fr_MC }, // French, Monaco
{ "gl-ES", "*", spBuiltinFormats_gl_ES }, // Galizian, Spain
{ "gu-IN", "*", spBuiltinFormats_gu_IN }, // Gujarati, India
{ "he-IL", "*", spBuiltinFormats_he_IL }, // Hebrew, Israel
{ "hi-IN", "*", spBuiltinFormats_hi_IN }, // Hindi, India
{ "hr-BA", "*", spBuiltinFormats_hr_BA }, // Croatian, Bosnia and Herzegowina
{ "hr-HR", "*", spBuiltinFormats_hr_HR }, // Croatian, Croatia
{ "hu-HU", "*", spBuiltinFormats_hu_HU }, // Hungarian, Hungary
{ "hy-AM", "*", spBuiltinFormats_hy_AM }, // Armenian, Armenia
{ "id-ID", "*", spBuiltinFormats_id_ID }, // Indonesian, Indonesia
{ "is-IS", "*", spBuiltinFormats_is_IS }, // Icelandic, Iceland
{ "it-CH", "*", spBuiltinFormats_it_CH }, // Italian, Switzerland
{ "it-IT", "*", spBuiltinFormats_it_IT }, // Italian, Italy
{ "ka-GE", "*", spBuiltinFormats_ka_GE }, // Georgian, Georgia
{ "kk-KZ", "*", spBuiltinFormats_kk_KZ }, // Kazakh, Kazakhstan
{ "kn-IN", "*", spBuiltinFormats_kn_IN }, // Kannada, India
{ "kok-IN", "*", spBuiltinFormats_hi_IN }, // Konkani, India
{ "ky-KG", "*", spBuiltinFormats_ky_KG }, // Kyrgyz, Kyrgyzstan
{ "lt-LT", "*", spBuiltinFormats_lt_LT }, // Lithuanian, Lithuania
{ "lv-LV", "*", spBuiltinFormats_lv_LV }, // Latvian, Latvia
{ "mi-NZ", "*", spBuiltinFormats_en_NZ }, // Maori, New Zealand
{ "ml-IN", "*", spBuiltinFormats_ml_IN }, // Malayalam, India
{ "mn-MN", "*", spBuiltinFormats_mn_MN }, // Mongolian, Mongolia
{ "mr-IN", "*", spBuiltinFormats_hi_IN }, // Marathi, India
{ "ms-BN", "*", spBuiltinFormats_ms_BN }, // Malay, Brunei Darussalam
{ "ms-MY", "*", spBuiltinFormats_ms_MY }, // Malay, Malaysia
{ "mt-MT", "*", spBuiltinFormats_mt_MT }, // Maltese, Malta
{ "nb-NO", "*", spBuiltinFormats_no_NO }, // Norwegian Bokmal, Norway
{ "nl-BE", "*", spBuiltinFormats_nl_BE }, // Dutch, Belgium
{ "nl-NL", "*", spBuiltinFormats_nl_NL }, // Dutch, Netherlands
{ "nn-NO", "*", spBuiltinFormats_no_NO }, // Norwegian Nynorsk, Norway
{ "nso-ZA", "*", spBuiltinFormats_en_ZA }, // Northern Sotho, South Africa
{ "pa-IN", "*", spBuiltinFormats_pa_IN }, // Punjabi, India
{ "pl-PL", "*", spBuiltinFormats_pl_PL }, // Polish, Poland
{ "pt-BR", "*", spBuiltinFormats_pt_BR }, // Portugese, Brazil
{ "pt-PT", "*", spBuiltinFormats_pt_PT }, // Portugese, Portugal
{ "qu-BO", "*", spBuiltinFormats_es_BO }, // Quechua, Bolivia
{ "qu-EC", "*", spBuiltinFormats_es_EC }, // Quechua, Ecuador
{ "qu-PE", "*", spBuiltinFormats_es_PE }, // Quechua, Peru
{ "ro-RO", "*", spBuiltinFormats_ro_RO }, // Romanian, Romania
{ "ru-RU", "*", spBuiltinFormats_ru_RU }, // Russian, Russian Federation
{ "sa-IN", "*", spBuiltinFormats_hi_IN }, // Sanskrit, India
{ "se-FI", "*", spBuiltinFormats_fi_FI }, // Sami, Finland
{ "se-NO", "*", spBuiltinFormats_no_NO }, // Sami, Norway
{ "se-SE", "*", spBuiltinFormats_sv_SE }, // Sami, Sweden
{ "sk-SK", "*", spBuiltinFormats_sk_SK }, // Slovak, Slovakia
{ "sl-SI", "*", spBuiltinFormats_sl_SI }, // Slovenian, Slovenia
{ "sv-FI", "*", spBuiltinFormats_sv_FI }, // Swedish, Finland
{ "sv-SE", "*", spBuiltinFormats_sv_SE }, // Swedish, Sweden
{ "sw-TZ", "*", spBuiltinFormats_sw_TZ }, // Swahili, Tanzania
{ "syr-SY", "*", spBuiltinFormats_ar_SY }, // Syriac, Syria
{ "syr-TR", "*", spBuiltinFormats_tr_TR }, // Syriac, Turkey
{ "ta-IN", "*", spBuiltinFormats_ta_IN }, // Tamil, India
{ "te-IN", "*", spBuiltinFormats_te_IN }, // Telugu, India
{ "th-TH", "*", spBuiltinFormats_th_TH }, // Thai, Thailand
{ "tn-ZA", "*", spBuiltinFormats_en_ZA }, // Tswana, South Africa
{ "tr-TR", "*", spBuiltinFormats_tr_TR }, // Turkish, Turkey
{ "tt-RU", "*", spBuiltinFormats_tt_RU }, // Tatar, Russian Federation
{ "uk-UA", "*", spBuiltinFormats_uk_UA }, // Ukrainian, Ukraine
{ "ur-PK", "*", spBuiltinFormats_ur_PK }, // Urdu, Pakistan
{ "vi-VN", "*", spBuiltinFormats_vi_VN }, // Vietnamese, Viet Nam
{ "xh-ZA", "*", spBuiltinFormats_en_ZA }, // Xhosa, South Africa
{ "zu-ZA", "*", spBuiltinFormats_en_ZA }, // Zulu, South Africa
{ "*CJK", "*", spBuiltinFormats_CJK }, // CJK base table
{ "ja-JP", "*CJK", spBuiltinFormats_ja_JP }, // Japanese, Japan
{ "ko-KR", "*CJK", spBuiltinFormats_ko_KR }, // Korean, South Korea
{ "zh-CN", "*CJK", spBuiltinFormats_zh_CN }, // Chinese, China
{ "zh-HK", "*CJK", spBuiltinFormats_zh_HK }, // Chinese, Hong Kong
{ "zh-MO", "*CJK", spBuiltinFormats_zh_MO }, // Chinese, Macau
{ "zh-SG", "*CJK", spBuiltinFormats_zh_SG }, // Chinese, Singapore
{ "zh-TW", "*CJK", spBuiltinFormats_zh_TW } // Chinese, Taiwan
};
} // namespace
// ============================================================================
NumFmtModel::NumFmtModel() :
mnPredefId( -1 )
{
}
// ----------------------------------------------------------------------------
ApiNumFmtData::ApiNumFmtData() :
mnIndex( 0 )
{
}
// ----------------------------------------------------------------------------
namespace {
sal_Int32 lclCreatePredefinedFormat( const Reference< XNumberFormats >& rxNumFmts,
sal_Int16 nPredefId, const Locale& rToLocale )
{
sal_Int32 nIndex = 0;
try
{
Reference< XNumberFormatTypes > xNumFmtTypes( rxNumFmts, UNO_QUERY_THROW );
nIndex = (nPredefId >= 0) ?
xNumFmtTypes->getFormatIndex( nPredefId, rToLocale ) :
xNumFmtTypes->getStandardIndex( rToLocale );
}
catch( Exception& )
{
OSL_ENSURE( false,
OStringBuffer( "lclCreatePredefinedFormat - cannot create predefined number format " ).
append( OString::valueOf( static_cast< sal_Int32 >( nPredefId ) ) ).getStr() );
}
return nIndex;
}
sal_Int32 lclCreateFormat( const Reference< XNumberFormats >& rxNumFmts,
const OUString& rFmtCode, const Locale& rToLocale, const Locale& rFromLocale )
{
sal_Int32 nIndex = 0;
try
{
nIndex = rxNumFmts->addNewConverted( rFmtCode, rFromLocale, rToLocale );
}
catch( Exception& )
{
// BIFF2-BIFF4 stores standard format explicitly in stream
if( rFmtCode.equalsIgnoreAsciiCaseAsciiL( RTL_CONSTASCII_STRINGPARAM( "general" ) ) )
{
nIndex = lclCreatePredefinedFormat( rxNumFmts, 0, rToLocale );
}
else
{
// do not assert fractional number formats with fixed denominator
OSL_ENSURE( rFmtCode.matchAsciiL( RTL_CONSTASCII_STRINGPARAM( "#\\ ?/" ) ) ||
rFmtCode.matchAsciiL( RTL_CONSTASCII_STRINGPARAM( "#\\ ?\?/" ) ) ||
rFmtCode.matchAsciiL( RTL_CONSTASCII_STRINGPARAM( "#\\ ?\?\?/" ) ),
OStringBuffer( "lclCreateFormat - cannot create number format '" ).
append( OUStringToOString( rFmtCode, osl_getThreadTextEncoding() ) ).
append( '\'' ).getStr() );
}
}
return nIndex;
}
// ----------------------------------------------------------------------------
/** Functor for converting an XML number format to an API number format index. */
class NumberFormatFinalizer
{
public:
explicit NumberFormatFinalizer( const WorkbookHelper& rHelper );
inline bool is() const { return mxNumFmts.is(); }
inline void operator()( NumberFormat& rNumFmt ) const
{ rNumFmt.finalizeImport( mxNumFmts, maEnUsLocale ); }
private:
Reference< XNumberFormats > mxNumFmts;
Locale maEnUsLocale;
};
NumberFormatFinalizer::NumberFormatFinalizer( const WorkbookHelper& rHelper ) :
maEnUsLocale( CREATE_OUSTRING( "en" ), CREATE_OUSTRING( "US" ), OUString() )
{
try
{
Reference< XNumberFormatsSupplier > xNumFmtsSupp( rHelper.getDocument(), UNO_QUERY_THROW );
mxNumFmts = xNumFmtsSupp->getNumberFormats();
}
catch( Exception& )
{
}
OSL_ENSURE( mxNumFmts.is(), "NumberFormatFinalizer::NumberFormatFinalizer - cannot get number formats" );
}
} // namespace
// ----------------------------------------------------------------------------
NumberFormat::NumberFormat( const WorkbookHelper& rHelper ) :
WorkbookHelper( rHelper )
{
}
void NumberFormat::setFormatCode( const OUString& rFmtCode )
{
maModel.maFmtCode = rFmtCode;
}
void NumberFormat::setFormatCode( const Locale& rLocale, const sal_Char* pcFmtCode )
{
maModel.maLocale = rLocale;
maModel.maFmtCode = OStringToOUString( OString( pcFmtCode ), RTL_TEXTENCODING_UTF8 );
maModel.mnPredefId = -1;
}
void NumberFormat::setPredefinedId( const Locale& rLocale, sal_Int16 nPredefId )
{
maModel.maLocale = rLocale;
maModel.maFmtCode = OUString();
maModel.mnPredefId = nPredefId;
}
sal_Int32 NumberFormat::finalizeImport( const Reference< XNumberFormats >& rxNumFmts, const Locale& rFromLocale )
{
if( rxNumFmts.is() && (maModel.maFmtCode.getLength() > 0) )
maApiData.mnIndex = lclCreateFormat( rxNumFmts, maModel.maFmtCode, maModel.maLocale, rFromLocale );
else
maApiData.mnIndex = lclCreatePredefinedFormat( rxNumFmts, maModel.mnPredefId, maModel.maLocale );
return maApiData.mnIndex;
}
void NumberFormat::writeToPropertyMap( PropertyMap& rPropMap ) const
{
rPropMap[ PROP_NumberFormat ] <<= maApiData.mnIndex;
}
// ============================================================================
NumberFormatsBuffer::NumberFormatsBuffer( const WorkbookHelper& rHelper ) :
WorkbookHelper( rHelper ),
mnNextBiffIndex( 0 )
{
// get the current locale
try
{
Reference< XMultiServiceFactory > xConfigProv( getBaseFilter().getServiceFactory()->createInstance(
CREATE_OUSTRING( "com.sun.star.configuration.ConfigurationProvider" ) ), UNO_QUERY_THROW );
// try user-defined locale setting
Sequence< Any > aArgs( 1 );
aArgs[ 0 ] <<= CREATE_OUSTRING( "org.openoffice.Setup/L10N/" );
Reference< XNameAccess > xConfigNA( xConfigProv->createInstanceWithArguments(
CREATE_OUSTRING( "com.sun.star.configuration.ConfigurationAccess" ), aArgs ), UNO_QUERY_THROW );
xConfigNA->getByName( CREATE_OUSTRING( "ooSetupSystemLocale" ) ) >>= maLocaleStr;
// if set to "use system", get locale from system
if( maLocaleStr.getLength() == 0 )
{
aArgs[ 0 ] <<= CREATE_OUSTRING( "org.openoffice.System/L10N/" );
xConfigNA.set( xConfigProv->createInstanceWithArguments(
CREATE_OUSTRING( "com.sun.star.configuration.ConfigurationAccess" ), aArgs ), UNO_QUERY_THROW );
xConfigNA->getByName( CREATE_OUSTRING( "Locale" ) ) >>= maLocaleStr;
}
}
catch( Exception& )
{
OSL_ENSURE( false, "NumberFormatsBuffer::NumberFormatsBuffer - cannot get system locale" );
}
// create built-in formats for current locale
insertBuiltinFormats();
}
NumberFormatRef NumberFormatsBuffer::createNumFmt( sal_Int32 nNumFmtId, const OUString& rFmtCode )
{
NumberFormatRef xNumFmt;
if( nNumFmtId >= 0 )
{
xNumFmt.reset( new NumberFormat( *this ) );
maNumFmts[ nNumFmtId ] = xNumFmt;
xNumFmt->setFormatCode( rFmtCode );
}
return xNumFmt;
}
NumberFormatRef NumberFormatsBuffer::importNumFmt( const AttributeList& rAttribs )
{
sal_Int32 nNumFmtId = rAttribs.getInteger( XML_numFmtId, -1 );
OUString aFmtCode = rAttribs.getXString( XML_formatCode, OUString() );
return createNumFmt( nNumFmtId, aFmtCode );
}
void NumberFormatsBuffer::importNumFmt( SequenceInputStream& rStrm )
{
sal_Int32 nNumFmtId = rStrm.readuInt16();
OUString aFmtCode = BiffHelper::readString( rStrm );
createNumFmt( nNumFmtId, aFmtCode );
}
void NumberFormatsBuffer::importFormat( BiffInputStream& rStrm )
{
OUString aFmtCode;
switch( getBiff() )
{
case BIFF2:
case BIFF3:
aFmtCode = rStrm.readByteStringUC( false, getTextEncoding() );
break;
case BIFF4:
rStrm.skip( 2 ); // in BIFF4 the index field exists, but is undefined
aFmtCode = rStrm.readByteStringUC( false, getTextEncoding() );
break;
case BIFF5:
mnNextBiffIndex = rStrm.readuInt16();
aFmtCode = rStrm.readByteStringUC( false, getTextEncoding() );
break;
case BIFF8:
mnNextBiffIndex = rStrm.readuInt16();
aFmtCode = rStrm.readUniString();
break;
case BIFF_UNKNOWN: break;
}
createNumFmt( mnNextBiffIndex, aFmtCode );
++mnNextBiffIndex;
}
void NumberFormatsBuffer::finalizeImport()
{
maNumFmts.forEach( NumberFormatFinalizer( *this ) );
}
void NumberFormatsBuffer::writeToPropertyMap( PropertyMap& rPropMap, sal_Int32 nNumFmtId ) const
{
if( const NumberFormat* pNumFmt = maNumFmts.get( nNumFmtId ).get() )
pNumFmt->writeToPropertyMap( rPropMap );
}
void NumberFormatsBuffer::insertBuiltinFormats()
{
// build a map containing pointers to all tables
typedef ::std::map< OUString, const BuiltinFormatTable* > BuiltinMap;
BuiltinMap aBuiltinMap;
for( const BuiltinFormatTable* pTable = spBuiltinFormatTables;
pTable != STATIC_ARRAY_END( spBuiltinFormatTables ); ++pTable )
aBuiltinMap[ OUString::createFromAscii( pTable->mpcLocale ) ] = pTable;
// convert locale string to locale struct
Locale aSysLocale;
sal_Int32 nDashPos = maLocaleStr.indexOf( '-' );
if( nDashPos < 0 ) nDashPos = maLocaleStr.getLength();
aSysLocale.Language = maLocaleStr.copy( 0, nDashPos );
if( nDashPos + 1 < maLocaleStr.getLength() )
aSysLocale.Country = maLocaleStr.copy( nDashPos + 1 );
// build a list of table pointers for the current locale, with all parent tables
typedef ::std::vector< const BuiltinFormatTable* > BuiltinVec;
BuiltinVec aBuiltinVec;
BuiltinMap::const_iterator aMIt = aBuiltinMap.find( maLocaleStr ), aMEnd = aBuiltinMap.end();
OSL_ENSURE( aMIt != aMEnd,
OStringBuffer( "NumberFormatsBuffer::insertBuiltinFormats - locale '" ).
append( OUStringToOString( maLocaleStr, RTL_TEXTENCODING_ASCII_US ) ).
append( "' not supported (#i29949#)" ).getStr() );
// start with default table, if no table has been found
if( aMIt == aMEnd )
aMIt = aBuiltinMap.find( CREATE_OUSTRING( "*" ) );
OSL_ENSURE( aMIt != aMEnd, "NumberFormatsBuffer::insertBuiltinFormats - default map not found" );
// insert all tables into the vector
for( ; aMIt != aMEnd; aMIt = aBuiltinMap.find( OUString::createFromAscii( aMIt->second->mpcParent ) ) )
aBuiltinVec.push_back( aMIt->second );
// insert the default formats in the format map (in reverse order from default table to system locale)
typedef ::std::map< sal_Int32, sal_Int32 > ReuseMap;
ReuseMap aReuseMap;
for( BuiltinVec::reverse_iterator aVIt = aBuiltinVec.rbegin(), aVEnd = aBuiltinVec.rend(); aVIt != aVEnd; ++aVIt )
{
// do not put the current system locale for default table
Locale aLocale;
if( (*aVIt)->mpcLocale[ 0 ] != '\0' )
aLocale = aSysLocale;
for( const BuiltinFormat* pBuiltin = (*aVIt)->mpFormats; pBuiltin && (pBuiltin->mnNumFmtId >= 0); ++pBuiltin )
{
NumberFormatRef& rxNumFmt = maNumFmts[ pBuiltin->mnNumFmtId ];
rxNumFmt.reset( new NumberFormat( *this ) );
bool bReuse = false;
if( pBuiltin->mpcFmtCode )
rxNumFmt->setFormatCode( aLocale, pBuiltin->mpcFmtCode );
else if( pBuiltin->mnPredefId >= 0 )
rxNumFmt->setPredefinedId( aLocale, pBuiltin->mnPredefId );
else
bReuse = pBuiltin->mnReuseId >= 0;
if( bReuse )
aReuseMap[ pBuiltin->mnNumFmtId ] = pBuiltin->mnReuseId;
else
aReuseMap.erase( pBuiltin->mnNumFmtId );
}
}
// copy reused number formats
for( ReuseMap::const_iterator aRIt = aReuseMap.begin(), aREnd = aReuseMap.end(); aRIt != aREnd; ++aRIt )
maNumFmts[ aRIt->first ] = maNumFmts[ aRIt->second ];
}
// ============================================================================
} // namespace xls
} // namespace oox