6064b33821
tdf#115007 fix missing currency of en-BZ, en-DK, en-IL, en-LK,
en-ZM, en-ZW; es-PA, es-SV, es-VE; and ga (Irish).
tdf#148672 fix of transliteration of parenthesized words of hu-Hung.
– remove EmptyString.patch1 wich was merged up-stream;
– add test for hu_Hung transliteration of parenthesized words;
– add new Persian (Farsi) module;
– fixes for Czech, English, Irish, Romanian, Russian, Slovenian,
Spanish and Ukrainian.
Follow-up to commit 2a1d2d42af
"tdf#115007 add NatNum12 number format list items, fix title case".
Change-Id: I24aa32ad28c853e4c97a10dc8039ca6232eaed4c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142657
Reviewed-by: László Németh <nemeth@numbertext.org>
Tested-by: László Németh <nemeth@numbertext.org>
129 lines
4.4 KiB
Text
129 lines
4.4 KiB
Text
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* 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/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* 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 .
|
|
*/
|
|
|
|
module com { module sun { module star { module linguistic2 {
|
|
|
|
/** This interface allows to spell out numbers and money amounts
|
|
|
|
<p> The current set of supported languages is:
|
|
<ul>
|
|
<li>af : Afrikaans</li>
|
|
<li>bg : Bulgarian</li>
|
|
<li>ca : Catalan</li>
|
|
<li>cs : Czech</li>
|
|
<li>da : Danish</li>
|
|
<li>de : German</li>
|
|
<li>de-CH : Swiss Standard German</li>
|
|
<li>de-LI : Swiss Standard German</li>
|
|
<li>el : Greek</li>
|
|
<li>en : English</li>
|
|
<li>en-AU : Australian English</li>
|
|
<li>en-GB : British English</li>
|
|
<li>en-IE : Irish English</li>
|
|
<li>en-NZ : New Zealand English</li>
|
|
<li>eo : Esperanto</li>
|
|
<li>es : Spanish</li>
|
|
<li>et : Estonian</li>
|
|
<li>fa : Persian (Farsi)</li>
|
|
<li>fi : Finnish</li>
|
|
<li>fr : French</li>
|
|
<li>fr-BE : Belgian French</li>
|
|
<li>fr-CH : Swiss French</li>
|
|
<li>ga : Irish</li>
|
|
<li>gl : Galician</li>
|
|
<li>he : Hebrew</li>
|
|
<li>hr : Croatian</li>
|
|
<li>hu : Hungarian</li>
|
|
<li>hu-Hung : Old Hungarian</li>
|
|
<li>id : Indonesian</li>
|
|
<li>is : Icelandic</li>
|
|
<li>it : Italian</li>
|
|
<li>ja : Japanese</li>
|
|
<li>ko-KP : North-Korean</li>
|
|
<li>ko-KR : South-Korean</li>
|
|
<li>lb : Luxembourgish</li>
|
|
<li>lg : Luganda</li>
|
|
<li>lt : Lithuanian</li>
|
|
<li>lv : Latvian</li>
|
|
<li>mr : Marathi</li>
|
|
<li>ms : Malay</li>
|
|
<li>mt : Maltese</li>
|
|
<li>mul : multiple languages (footnote numbering styles)</li>
|
|
<li>nb : Bokmål (Norwegian)</li>
|
|
<li>nl : Dutch</li>
|
|
<li>nn : Nynorsk (Norwegian)</li>
|
|
<li>no : Norwegian (Bokmål)</li>
|
|
<li>pl : Polish</li>
|
|
<li>pt-BR : Portuguese (Brasilian)</li>
|
|
<li>pt-PT : Portuguese (Portugal)</li>
|
|
<li>ro : Romanian</li>
|
|
<li>Roman : Roman numbers</li>
|
|
<li>ru : Russian</li>
|
|
<li>sh : Serbian (written with latin characters)</li>
|
|
<li>sl : Slovenian</li>
|
|
<li>sq : Albanian</li>
|
|
<li>sr : Serbian (written with cyrillic characters) (added with OOo 3.4)</li>
|
|
<li>Suzhou : Suzhou numerals</li>
|
|
<li>sv : Swedish</li>
|
|
<li>th : Thai</li>
|
|
<li>tr : Turkish</li>
|
|
<li>uk : Ukrainian</li>
|
|
<li>vi : Vietnamese</li>
|
|
<li>zh : Chinese</li>
|
|
</ul>
|
|
|
|
</p>
|
|
|
|
@since LibreOffice 6.1
|
|
*/
|
|
interface XNumberText
|
|
{
|
|
/** spell out numbers and money amounts
|
|
|
|
<p>Please note that text argument can contain prefixes separated by space,
|
|
for example "ordinal" for ordinal numbers, "ordinal-number" for ordinal
|
|
indicators and ISO 4217 currency codes.
|
|
|
|
Language modules list the supported prefixes by the input text "help".</p>
|
|
|
|
@returns
|
|
the result of the number name conversion.
|
|
|
|
@param aText
|
|
all the text including the part that should converted.
|
|
|
|
@param aLocale
|
|
the locale for the target language of the number name conversion.
|
|
|
|
@see com::sun::star::lang::Locale
|
|
*/
|
|
string getNumberText(
|
|
[in] string aText,
|
|
[in] com::sun::star::lang::Locale aLocale )
|
|
raises( com::sun::star::lang::IllegalArgumentException );
|
|
|
|
/** returns a list of all supported languages.
|
|
*/
|
|
sequence< com::sun::star::lang::Locale > getAvailableLanguages();
|
|
|
|
};
|
|
|
|
}; }; }; };
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|