[Libreoffice-commits] core.git: i18nlangtag/source i18npool/CustomTarget_collator.mk i18npool/Library_localedata_others.mk i18npool/source include/i18nlangtag svtools/source

Aleksandr Andreev aleksandr.andreev at gmail.com
Wed Apr 29 06:04:58 PDT 2015


 i18nlangtag/source/isolang/isolang.cxx        |    1 
 i18npool/CustomTarget_collator.mk             |    1 
 i18npool/Library_localedata_others.mk         |    1 
 i18npool/source/collator/collator_unicode.cxx |   10 
 i18npool/source/collator/data/cu_charset.txt  |   37 ++
 i18npool/source/localedata/data/cu_RU.xml     |  429 ++++++++++++++++++++++++++
 i18npool/source/localedata/localedata.cxx     |    3 
 include/i18nlangtag/lang.h                    |    1 
 svtools/source/misc/langtab.src               |    1 
 9 files changed, 483 insertions(+), 1 deletion(-)

New commits:
commit c9af632056fedcf9327ba23aafbe4b0300b1abae
Author: Aleksandr Andreev <aleksandr.andreev at gmail.com>
Date:   Mon Apr 20 18:45:28 2015 +0300

    tdf#90802 add Church Slavic [cu-RU] locale
    
    Change-Id: Id8322661f79f4d500fd59c19fc04b13e82c7126d
    Reviewed-on: https://gerrit.libreoffice.org/15540
    Reviewed-by: Eike Rathke <erack at redhat.com>
    Tested-by: Eike Rathke <erack at redhat.com>

diff --git a/i18nlangtag/source/isolang/isolang.cxx b/i18nlangtag/source/isolang/isolang.cxx
index 6b0dedf..d4cbef0 100644
--- a/i18nlangtag/source/isolang/isolang.cxx
+++ b/i18nlangtag/source/isolang/isolang.cxx
@@ -648,6 +648,7 @@ static IsoLanguageCountryEntry const aImplIsoLangEntries[] =
     { LANGUAGE_USER_FRENCH_NIGER,           "fr", "NE", 0     },
     { LANGUAGE_USER_FRENCH_TOGO,            "fr", "TG", 0     },
     { LANGUAGE_USER_KVEN_FINNISH,          "fkv", "NO", 0     },
+    { LANGUAGE_USER_CHURCH_SLAVIC,          "cu", "RU", 0     },
     { LANGUAGE_MULTIPLE,                   "mul", ""  , 0     },    // multiple languages, many languages are used
     { LANGUAGE_UNDETERMINED,               "und", ""  , 0     },    // undetermined language, language cannot be identified
     { LANGUAGE_NONE,                       "zxx", ""  , 0     },    // added to ISO 639-2 on 2006-01-11: Used to declare the absence of linguistic information
diff --git a/i18npool/CustomTarget_collator.mk b/i18npool/CustomTarget_collator.mk
index c620730..ccecfab 100644
--- a/i18npool/CustomTarget_collator.mk
+++ b/i18npool/CustomTarget_collator.mk
@@ -11,6 +11,7 @@ $(eval $(call gb_CustomTarget_CustomTarget,i18npool/collator))
 
 i18npool_CODIR := $(call gb_CustomTarget_get_workdir,i18npool/collator)
 i18npool_COTXTS := \
+	cu_charset.txt \
     $(call gb_Helper_optional_locale,ca, \
         ca_charset.txt) \
     $(call gb_Helper_optional_locale,dz, \
diff --git a/i18npool/Library_localedata_others.mk b/i18npool/Library_localedata_others.mk
index ea706b8..fe4f152 100644
--- a/i18npool/Library_localedata_others.mk
+++ b/i18npool/Library_localedata_others.mk
@@ -37,6 +37,7 @@ $(eval $(call gb_Library_add_generated_exception_objects,localedata_others,\
 	CustomTarget/i18npool/localedata/localedata_bo_CN \
 	CustomTarget/i18npool/localedata/localedata_bo_IN \
 	CustomTarget/i18npool/localedata/localedata_bvx_CG \
+	CustomTarget/i18npool/localedata/localedata_cu_RU \
 	CustomTarget/i18npool/localedata/localedata_dde_CG \
 	CustomTarget/i18npool/localedata/localedata_dz_BT \
 	CustomTarget/i18npool/localedata/localedata_ebo_CG \
diff --git a/i18npool/source/collator/collator_unicode.cxx b/i18npool/source/collator/collator_unicode.cxx
index a2b110c..9bf3355 100644
--- a/i18npool/source/collator/collator_unicode.cxx
+++ b/i18npool/source/collator/collator_unicode.cxx
@@ -64,6 +64,7 @@ extern "C" {
 // get_zh_pinyin for instance.
 
 const sal_uInt8* get_collator_data_ca_charset();
+const sal_uInt8* get_collator_data_cu_charset();
 const sal_uInt8* get_collator_data_dz_charset();
 const sal_uInt8* get_collator_data_hu_charset();
 const sal_uInt8* get_collator_data_ja_charset();
@@ -85,6 +86,7 @@ const sal_uInt8* get_collator_data_zh_stroke();
 const sal_uInt8* get_collator_data_zh_zhuyin();
 
 size_t get_collator_data_ca_charset_length();
+size_t get_collator_data_cu_charset_length();
 size_t get_collator_data_dz_charset_length();
 size_t get_collator_data_hu_charset_length();
 size_t get_collator_data_ja_charset_length();
@@ -198,6 +200,14 @@ Collator_Unicode::loadCollatorAlgorithm(const OUString& rAlgorithm, const lang::
                     funclen = get_collator_data_ca_charset_length;
                 }
 #endif
+#if WITH_LOCALE_ALL || WITH_LOCALE_cu
+            } else if ( rLocale.language == "cu" ) {
+                if ( rAlgorithm == "charset" )
+                {
+                    func = get_collator_data_cu_charset;
+                    funclen = get_collator_data_cu_charset_length;
+                }
+#endif
 #if WITH_LOCALE_ALL || WITH_LOCALE_dz
             } else if ( rLocale.Language == "dz" || rLocale.Language == "bo" ) {
                 // 'bo' Tibetan uses the same collation rules as 'dz' Dzongkha
diff --git a/i18npool/source/collator/data/cu_charset.txt b/i18npool/source/collator/data/cu_charset.txt
new file mode 100644
index 0000000..73c1b42
--- /dev/null
+++ b/i18npool/source/collator/data/cu_charset.txt
@@ -0,0 +1,37 @@
+#
+# 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/.
+#
+
+#
+# Collation of Church Slavic letters
+# 
+[caseLevel on]
+[caseFirst upper]
+[backwards 2]
+& [first primary ignorable] = \; = \: = \\ = \. = \- = \, = \* = – = — = \_ = ꙳ = ҂ =  ⃝ =  ҈ =  ҉=  ꙰=  ꙱=  ꙲ = ✠
+& [first secondary ignorable] =   ҇ =  ꙼ = ꙾ <<  ҅ << ҆ <<  ́ << ̀ << ̑ <<  ҃ <<  ̆ <<  ̈ =  ̏ << ⷶ << ⷠ <<  ⷡ <<  ⷢ <<  ⷣ <<  ⷷ <<  ꙴ << ⷤ <<  ⷥ <<  ꙵ <<  ꙶ <<  ⷦ <<  ⷧ <<  ⷨ <<  ⷩ <<  ⷪ <<  ꙻ <<  ⷫ <<  ⷬ <<  ⷭ <<  ⷮ <<  ⷹ <<  ꙷ << ꚞ <<   ⷯ <<  ⷰ <<  ⷱ <<  ⷲ <<  ⷳ <<  ̾ =  ꙸ =  ⸯ <<  ꙹ <<  ꙿ =  ꙽ =  ꙺ <<  ⷺ <<  ⷻ <<  ⷾ <<  ⷼ <<  ⷽ  <<  ⷴ
+& ⷭⷮ = ⷵ
+& д = ᲁ
+& е <<< Е <<< є <<< Є
+& ж <<<  Ж < ѕ <<< Ѕ < з = ꙁ <<<  З = Ꙁ
+& и <<< И < і <<< І
+& и = й / ̆
+& И = Й / ̆
+& і = ї  / ̈
+& І = Ї / ̈
+& н <<< Н < ѻ <<< Ѻ <<<  о = ᲂ <<< О <<< ѡ <<< Ѡ <<< ꙍ <<< Ꙍ
+& Ꙍ҆̑ = Ѽ
+& ꙍ҆̑ = ѽ
+& Ѡт = Ѿ
+& ѡт = ѿ
+& т <<< Т  < ѹ = оу = ᲂу <<< Ѹ = Оу = ОУ <<< ꙋ <<< Ꙋ <<< у <<< У
+& э <<< Э <  ѣ <<< Ѣ
+& ю <<< Ю < ѫ  <<< Ѫ < я <<< Я < ꙗ <<< Ꙗ <<< ѧ <<< Ѧ < ѯ <<< Ѯ < ѱ <<< Ѱ < ѳ <<< Ѳ < ѵ <<< Ѵ
+& ѵ = ѷ / ̏
+& Ѵ = Ѷ / ̏
+& 🕀 < 🕁 < 🕂 < 🕃 < 🕄
+
diff --git a/i18npool/source/localedata/data/cu_RU.xml b/i18npool/source/localedata/data/cu_RU.xml
new file mode 100644
index 0000000..5d4f1d6
--- /dev/null
+++ b/i18npool/source/localedata/data/cu_RU.xml
@@ -0,0 +1,429 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE Locale SYSTEM 'locale.dtd'>
+<!--
+ * 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 .
+-->
+<Locale versionDTD="2.0.3" allowUpdateFromCLDR="no" version="1.2">
+  <LC_INFO>
+    <Language>
+      <LangID>cu</LangID>
+      <DefaultName>Church Slavic</DefaultName>
+    </Language>
+    <Country>
+      <CountryID>RU</CountryID>
+      <DefaultName>Russia</DefaultName>
+    </Country>
+  </LC_INFO>
+  <LC_CTYPE>
+    <Separators>
+      <DateSeparator>.</DateSeparator>
+      <ThousandSeparator> </ThousandSeparator>
+      <DecimalSeparator>,</DecimalSeparator>
+      <TimeSeparator>:</TimeSeparator>
+      <Time100SecSeparator>,</Time100SecSeparator>
+      <ListSeparator>;</ListSeparator>
+      <LongDateDayOfWeekSeparator>, </LongDateDayOfWeekSeparator>
+      <LongDateDaySeparator>, </LongDateDaySeparator>
+      <LongDateMonthSeparator> </LongDateMonthSeparator>
+      <LongDateYearSeparator> л.</LongDateYearSeparator>
+    </Separators>
+    <Markers>
+      <QuotationStart>‘</QuotationStart>
+      <QuotationEnd>’</QuotationEnd>
+      <DoubleQuotationStart>«</DoubleQuotationStart>
+      <DoubleQuotationEnd>»</DoubleQuotationEnd>
+    </Markers>
+    <TimeAM>до по́лꙋд.</TimeAM>
+    <TimePM>по по́лꙋд.</TimePM>
+    <MeasurementSystem>metric</MeasurementSystem>
+  </LC_CTYPE>
+  <LC_FORMAT>
+    <DateAcceptancePattern>D.M.</DateAcceptancePattern>
+    <DateAcceptancePattern>D/M/</DateAcceptancePattern>
+    <FormatElement msgid="FixedFormatskey1" default="true" type="medium" usage="FIXED_NUMBER" formatindex="0">
+      <FormatCode>Standard</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="FixedFormatskey2" default="true" type="short" usage="FIXED_NUMBER" formatindex="1">
+      <FormatCode>0</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="FixedFormatskey3" default="false" type="medium" usage="FIXED_NUMBER" formatindex="2">
+      <FormatCode>0,00</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="FixedFormatskey4" default="false" type="short" usage="FIXED_NUMBER" formatindex="3">
+      <FormatCode># ##0</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="FixedFormatskey5" default="false" type="medium" usage="FIXED_NUMBER" formatindex="4">
+      <FormatCode># ##0,00</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="FixedFormatskey6" default="false" type="medium" usage="FIXED_NUMBER" formatindex="5">
+      <FormatCode># ###,00</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="ScientificFormatskey1" default="false" type="medium" usage="SCIENTIFIC_NUMBER" formatindex="6">
+      <FormatCode>0,00E+000</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="ScientificFormatskey2" default="true" type="medium" usage="SCIENTIFIC_NUMBER" formatindex="7">
+      <FormatCode>0,00E+00</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="ScientificFormatskey3" default="false" type="medium" usage="SCIENTIFIC_NUMBER" formatindex="78">
+      <FormatCode>##0,00E+00</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="PercentFormatskey1" default="true" type="short" usage="PERCENT_NUMBER" formatindex="8">
+      <FormatCode>0%</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="PercentFormatskey2" default="true" type="long" usage="PERCENT_NUMBER" formatindex="9">
+      <FormatCode>0,00%</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="CurrencyFormatskey1" default="true" type="short" usage="CURRENCY" formatindex="12">
+      <FormatCode># ##0 [$р.-694];-# ##0 [$р.-694]</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="CurrencyFormatskey2" default="false" type="medium" usage="CURRENCY" formatindex="13">
+      <FormatCode># ##0,00 [$р.-694];-# ##0,00 [$р.-694]</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="CurrencyFormatskey3" default="false" type="medium" usage="CURRENCY" formatindex="14">
+      <FormatCode># ##0 [$р.-694];[RED]-# ##0 [$р.-694]</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="CurrencyFormatskey4" default="true" type="medium" usage="CURRENCY" formatindex="15">
+      <FormatCode># ##0,00 [$р.-694];[RED]-# ##0,00 [$р.-694]</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="CurrencyFormatskey5" default="false" type="medium" usage="CURRENCY" formatindex="16">
+      <FormatCode># ##0,00 CCC</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="CurrencyFormatskey6" default="false" type="medium" usage="CURRENCY" formatindex="17">
+      <FormatCode># ##0,-- [$р.-694];[RED]-# ##0,-- [$р.-694]</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey1" default="true" type="short" usage="DATE" formatindex="18">
+      <FormatCode>D.M.YY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey9" default="true" type="long" usage="DATE" formatindex="19">
+      <FormatCode>NNNNDD MMMM, YYYY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey8" default="true" type="medium" usage="DATE" formatindex="20">
+      <FormatCode>DD.MM.YY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey7" default="false" type="medium" usage="DATE" formatindex="21">
+      <FormatCode>DD.MM.YYYY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey10" default="false" type="long" usage="DATE" formatindex="22">
+      <FormatCode>D MMM, YY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey11" default="false" type="long" usage="DATE" formatindex="23">
+      <FormatCode>D MMM, YYYY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey16" default="false" type="long" usage="DATE" formatindex="24">
+      <FormatCode>D. MMM. YYYY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey12" default="false" type="long" usage="DATE" formatindex="25">
+      <FormatCode>D MMMM, YYYY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey17" default="false" type="long" usage="DATE" formatindex="26">
+      <FormatCode>D. MMMM YYYY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey13" default="false" type="long" usage="DATE" formatindex="27">
+      <FormatCode>NN, D MMM, YY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey2" default="false" type="medium" usage="DATE" formatindex="28">
+      <FormatCode>NN DD.MMM YY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey14" default="false" type="long" usage="DATE" formatindex="29">
+      <FormatCode>NN, D MMMM, YYYY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey15" default="false" type="long" usage="DATE" formatindex="30">
+      <FormatCode>NNNND MMMM, YYYY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey18" default="false" type="short" usage="DATE" formatindex="31">
+      <FormatCode>MM-DD</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey19" default="false" type="medium" usage="DATE" formatindex="32">
+      <FormatCode>YY-MM-DD</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey20" default="false" type="medium" usage="DATE" formatindex="33">
+      <FormatCode>YYYY-MM-DD</FormatCode>
+      <DefaultName>ISO 8601</DefaultName>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey3" default="false" type="medium" usage="DATE" formatindex="34">
+      <FormatCode>MM.YY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey4" default="false" type="medium" usage="DATE" formatindex="35">
+      <FormatCode>DD.MMM</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey5" default="false" type="medium" usage="DATE" formatindex="36">
+      <FormatCode>MMMM</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey6" default="false" type="medium" usage="DATE" formatindex="37">
+      <FormatCode>QQ YY</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateFormatskey21" default="false" type="medium" usage="DATE" formatindex="38">
+      <FormatCode>WW</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="TimeFormatskey1" default="true" type="short" usage="TIME" formatindex="39">
+      <FormatCode>HH:MM</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="TimeFormatskey2" default="true" type="medium" usage="TIME" formatindex="40">
+      <FormatCode>HH:MM:SS</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="TimeFormatskey3" default="false" type="short" usage="TIME" formatindex="41">
+      <FormatCode>HH:MM AM/PM</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="TimeFormatskey4" default="false" type="medium" usage="TIME" formatindex="42">
+      <FormatCode>HH:MM:SS AM/PM</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="TimeFormatskey5" default="false" type="medium" usage="TIME" formatindex="43">
+      <FormatCode>[HH]:MM:SS</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="TimeFormatskey6" default="false" type="short" usage="TIME" formatindex="44">
+      <FormatCode>MM:SS,00</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="TimeFormatskey7" default="false" type="medium" usage="TIME" formatindex="45">
+      <FormatCode>[HH]:MM:SS,00</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateTimeFormatskey1" default="true" type="medium" usage="DATE_TIME" formatindex="46">
+      <FormatCode>DD.MM.YY HH:MM</FormatCode>
+    </FormatElement>
+    <FormatElement msgid="DateTimeFormatskey2" default="false" type="medium" usage="DATE_TIME" formatindex="47">
+      <FormatCode>DD.MM.YYYY HH:MM:SS</FormatCode>
+    </FormatElement>
+  </LC_FORMAT>
+  <LC_COLLATION>
+    <Collator unoid="charset" default="true"/>
+    <CollationOptions>
+      <TransliterationModules>IGNORE_CASE</TransliterationModules>
+    </CollationOptions>
+  </LC_COLLATION>
+  <LC_SEARCH ref="en_US"/>
+  <LC_INDEX>
+    <IndexKey phonetic="false" default="true" unoid="alphanumeric">А-Д Є Ж Ѕ З И І К-Т Ꙋ  Ф Х Ѿ Ц-Ь Ѣ Ю Ꙗ Ѧ Ѯ Ѱ Ѳ Ѵ</IndexKey>
+    <UnicodeScript>8</UnicodeScript>
+    <FollowPageWord>ли́стъ</FollowPageWord>
+    <FollowPageWord>листы̀</FollowPageWord>
+  </LC_INDEX>
+  <LC_CALENDAR>
+    <Calendar unoid="gregorian" default="true">
+      <DaysOfWeek>
+        <Day>
+          <DayID>sun</DayID>
+          <DefaultAbbrvName>нд</DefaultAbbrvName>
+          <DefaultFullName>недѣ́лѧ</DefaultFullName>
+        </Day>
+        <Day>
+          <DayID>mon</DayID>
+          <DefaultAbbrvName>пн</DefaultAbbrvName>
+          <DefaultFullName>понедѣ́льникъ</DefaultFullName>
+          </Day>
+        <Day>
+          <DayID>tue</DayID>
+          <DefaultAbbrvName>вт</DefaultAbbrvName>
+          <DefaultFullName>вто́рникъ</DefaultFullName>
+        </Day>
+        <Day>
+          <DayID>wed</DayID>
+          <DefaultAbbrvName>ср</DefaultAbbrvName>
+          <DefaultFullName>среда̀</DefaultFullName>
+        </Day>
+        <Day>
+          <DayID>thu</DayID>
+          <DefaultAbbrvName>чт</DefaultAbbrvName>
+          <DefaultFullName>четверто́къ</DefaultFullName>
+        </Day>
+        <Day>
+          <DayID>fri</DayID>
+          <DefaultAbbrvName>пт</DefaultAbbrvName>
+          <DefaultFullName>пѧто́къ</DefaultFullName>
+        </Day>
+        <Day>
+          <DayID>sat</DayID>
+          <DefaultAbbrvName>сб</DefaultAbbrvName>
+          <DefaultFullName>сꙋббѡ́та</DefaultFullName>
+        </Day>
+      </DaysOfWeek>
+      <MonthsOfYear>
+        <Month>
+          <MonthID>jan</MonthID>
+          <DefaultAbbrvName>і҆ан.</DefaultAbbrvName>
+          <DefaultFullName>і҆аннꙋа́рїй</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>feb</MonthID>
+          <DefaultAbbrvName>февр.</DefaultAbbrvName>
+          <DefaultFullName>феврꙋа́рїй</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>mar</MonthID>
+          <DefaultAbbrvName>ма́ртъ</DefaultAbbrvName>
+          <DefaultFullName>ма́ртъ</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>apr</MonthID>
+          <DefaultAbbrvName>а҆пр.</DefaultAbbrvName>
+          <DefaultFullName>а҆прі́лїй</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>may</MonthID>
+          <DefaultAbbrvName>ма́їй</DefaultAbbrvName>
+          <DefaultFullName>ма́їй</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>jun</MonthID>
+          <DefaultAbbrvName>і҆ꙋ́нїй</DefaultAbbrvName>
+          <DefaultFullName>і҆ꙋ́нїй</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>jul</MonthID>
+          <DefaultAbbrvName>і҆ꙋ́лїй</DefaultAbbrvName>
+          <DefaultFullName>і҆ꙋ́лїй</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>aug</MonthID>
+          <DefaultAbbrvName>а҆́ѵг.</DefaultAbbrvName>
+          <DefaultFullName>а҆́ѵгꙋстъ</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>sep</MonthID>
+          <DefaultAbbrvName>септ.</DefaultAbbrvName>
+          <DefaultFullName>септе́мврїй</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>oct</MonthID>
+          <DefaultAbbrvName>ѻ҆кт.</DefaultAbbrvName>
+          <DefaultFullName>ѻ҆ктѡ́врїй</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>nov</MonthID>
+          <DefaultAbbrvName>ное́м.</DefaultAbbrvName>
+          <DefaultFullName>ное́мврїй</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>dec</MonthID>
+          <DefaultAbbrvName>дек.</DefaultAbbrvName>
+          <DefaultFullName>деке́мврїй</DefaultFullName>
+        </Month>
+      </MonthsOfYear>
+      <GenitiveMonths>
+        <Month>
+          <MonthID>jan</MonthID>
+          <DefaultAbbrvName>і҆ан.</DefaultAbbrvName>
+          <DefaultFullName>і҆аннꙋа́рїа</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>feb</MonthID>
+          <DefaultAbbrvName>февр.</DefaultAbbrvName>
+          <DefaultFullName>феврꙋа́рїа</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>mar</MonthID>
+          <DefaultAbbrvName>ма́рта</DefaultAbbrvName>
+          <DefaultFullName>ма́рта</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>apr</MonthID>
+          <DefaultAbbrvName>а҆пр.</DefaultAbbrvName>
+          <DefaultFullName>а҆прі́лїа</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>may</MonthID>
+          <DefaultAbbrvName>ма́їа</DefaultAbbrvName>
+          <DefaultFullName>ма́їа</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>jun</MonthID>
+          <DefaultAbbrvName>і҆ꙋ́нїа</DefaultAbbrvName>
+          <DefaultFullName>і҆ꙋ́нїа</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>jul</MonthID>
+          <DefaultAbbrvName>і҆ꙋ́лїа</DefaultAbbrvName>
+          <DefaultFullName>і҆ꙋ́лїа</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>aug</MonthID>
+          <DefaultAbbrvName>а҆́ѵг.</DefaultAbbrvName>
+          <DefaultFullName>а҆́ѵгꙋста</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>sep</MonthID>
+          <DefaultAbbrvName>септ.</DefaultAbbrvName>
+          <DefaultFullName>септе́мврїа</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>oct</MonthID>
+          <DefaultAbbrvName>ѻ҆кт.</DefaultAbbrvName>
+          <DefaultFullName>ѻ҆ктѡ́врїа</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>nov</MonthID>
+          <DefaultAbbrvName>ное́м.</DefaultAbbrvName>
+          <DefaultFullName>ное́мврїа</DefaultFullName>
+        </Month>
+        <Month>
+          <MonthID>dec</MonthID>
+          <DefaultAbbrvName>дек.</DefaultAbbrvName>
+          <DefaultFullName>деке́мврїа</DefaultFullName>
+        </Month>
+      </GenitiveMonths>
+      <Eras>
+        <Era>
+          <EraID>bc</EraID>
+          <DefaultAbbrvName>п. Р.Х.</DefaultAbbrvName>
+          <DefaultFullName>пред̾ ржⷭ҇тво́мъ хрⷭ҇то́вымъ</DefaultFullName>
+        </Era>
+        <Era>
+          <EraID>ad</EraID>
+          <DefaultAbbrvName>ѿ Р.Х.</DefaultAbbrvName>
+          <DefaultFullName>ѿ ржⷭ҇тва̀ хрⷭ҇то́ва</DefaultFullName>
+        </Era>
+      </Eras>
+      <StartDayOfWeek>
+        <DayID>sun</DayID>
+      </StartDayOfWeek>
+      <MinimalDaysInFirstWeek>1</MinimalDaysInFirstWeek>
+    </Calendar>
+  </LC_CALENDAR>
+  <LC_CURRENCY>
+    <Currency default="true" usedInCompatibleFormatCodes="false">
+      <CurrencyID>RUB</CurrencyID>
+      <CurrencySymbol>рꙋб.</CurrencySymbol>
+      <BankSymbol>RUB</BankSymbol>
+      <CurrencyName>рꙋ́бль рѡссі́йскїй</CurrencyName>
+      <DecimalPlaces>2</DecimalPlaces>
+    </Currency>
+    <Currency default="false" usedInCompatibleFormatCodes="true">
+      <CurrencyID>RUR</CurrencyID>
+      <CurrencySymbol>р.</CurrencySymbol>
+      <BankSymbol>RUR</BankSymbol>
+      <CurrencyName>рꙋ́бль рѡссі́йскїй (҂ацч҃а-҂ацч҃и)</CurrencyName>
+      <DecimalPlaces>2</DecimalPlaces>
+    </Currency>
+  </LC_CURRENCY>
+  <LC_TRANSLITERATION ref="en_US"/>
+  <LC_MISC>
+    <ReservedWords>
+      <trueWord>вѣ́рнѡ</trueWord>
+      <falseWord>ло́жнѡ</falseWord>
+      <quarter1Word>пе́рваѧ че́тверть</quarter1Word>
+      <quarter2Word>втора́ѧ че́тверть</quarter2Word>
+      <quarter3Word>тре́тїѧ че́тверть</quarter3Word>
+      <quarter4Word>четве́ртаѧ че́тверть</quarter4Word>
+      <aboveWord>вы́ше</aboveWord>
+      <belowWord>ни́же</belowWord>
+      <quarter1Abbreviation>чт. а҃</quarter1Abbreviation>
+      <quarter2Abbreviation>чт. в҃</quarter2Abbreviation>
+      <quarter3Abbreviation>чт. г҃</quarter3Abbreviation>
+      <quarter4Abbreviation>чт. д҃</quarter4Abbreviation>
+    </ReservedWords>
+  </LC_MISC>
+  <LC_NumberingLevel ref="en_US"/>
+  <LC_OutLineNumberingLevel ref="en_US"/>
+</Locale>
diff --git a/i18npool/source/localedata/localedata.cxx b/i18npool/source/localedata/localedata.cxx
index ecef8a3..7fe719c 100644
--- a/i18npool/source/localedata/localedata.cxx
+++ b/i18npool/source/localedata/localedata.cxx
@@ -299,7 +299,8 @@ static const struct {
     { "bm_ML",  lcl_DATA_OTHERS },
     { "pui_CO", lcl_DATA_OTHERS },
     { "lgr_SB", lcl_DATA_OTHERS },
-    { "mos_BF", lcl_DATA_OTHERS }
+    { "mos_BF", lcl_DATA_OTHERS },
+    { "cu_RU",  lcl_DATA_OTHERS }
 };
 
 #else
diff --git a/include/i18nlangtag/lang.h b/include/i18nlangtag/lang.h
index 8bd8572..21318f8 100644
--- a/include/i18nlangtag/lang.h
+++ b/include/i18nlangtag/lang.h
@@ -702,6 +702,7 @@ typedef unsigned short LanguageType;
 #define LANGUAGE_USER_FRENCH_NIGER          0x880C  /* makeLangID( 0x22, getPrimaryLanguage( LANGUAGE_FRENCH)) */
 #define LANGUAGE_USER_FRENCH_TOGO           0x8C0C  /* makeLangID( 0x23, getPrimaryLanguage( LANGUAGE_FRENCH)) */
 #define LANGUAGE_USER_KVEN_FINNISH          0x0693
+#define LANGUAGE_USER_CHURCH_SLAVIC         0x0694
 
 
 /* Primary language ID range for on-the-fly assignment. */
diff --git a/svtools/source/misc/langtab.src b/svtools/source/misc/langtab.src
index f3a4ae9..771c386 100644
--- a/svtools/source/misc/langtab.src
+++ b/svtools/source/misc/langtab.src
@@ -76,6 +76,7 @@ StringArray STR_ARR_SVT_LANGUAGE_TABLE
         < "Chinese (Hong Kong)" ; LANGUAGE_CHINESE_HONGKONG ; > ;
         < "Chinese (Singapore)" ; LANGUAGE_CHINESE_SINGAPORE ; > ;
         < "Chinese (Macau)" ; LANGUAGE_CHINESE_MACAU ; > ;
+        < "Church Slavic" ; LANGUAGE_USER_CHURCH_SLAVIC ; > ;
         < "Croatian" ; LANGUAGE_CROATIAN ; > ;
         < "Czech" ; LANGUAGE_CZECH ; > ;
         < "Danish" ; LANGUAGE_DANISH ; > ;


More information about the Libreoffice-commits mailing list