[Libreoffice-commits] .: i18npool/source

2012-04-17 Thread Tor Lillqvist
 i18npool/source/localedata/genstaticheader.pl |   83 ++
 1 file changed, 83 insertions(+)

New commits:
commit 815cee8bd2d96b40b018f96cf3a9096c7691ed7b
Author: Tor Lillqvist t...@iki.fi
Date:   Wed Apr 18 08:18:35 2012 +0300

Add the genstaticheader.pl script

diff --git a/i18npool/source/localedata/genstaticheader.pl 
b/i18npool/source/localedata/genstaticheader.pl
new file mode 100644
index 000..adba340
--- /dev/null
+++ b/i18npool/source/localedata/genstaticheader.pl
@@ -0,0 +1,83 @@
+#!/usr/bin/perl -w # -*- tab-width: 4; indent-tabs-mode: nil;
+
+# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+#
+# The contents of this file are subject to the Mozilla Public License Version
+# 1.1 (the License); you may not use this file except in compliance with
+# the License or as specified alternatively below. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an AS IS basis,
+# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+# for the specific language governing rights and limitations under the
+# License.
+#
+# Major Contributor(s):
+# Copyright (C) 2012 Tor Lillqvist t...@iki.fi (initial developer)
+# Copyright (C) 2012 SUSE Linux http://suse.com (initial developer's employer)
+#
+# All Rights Reserved.
+#
+# For minor contributions see the git repository.
+#
+# Alternatively, the contents of this file may be used under the terms of
+# either the GNU General Public License Version 3 or later (the GPLv3+), or
+# the GNU Lesser General Public License Version 3 or later (the LGPLv3+),
+# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+
+my @FUNCS = qw(
+getAllCalendars
+getAllCurrencies
+getAllFormats0
+getBreakIteratorRules
+getCollationOptions
+getCollatorImplementation
+getContinuousNumberingLevels
+getDateAcceptancePatterns
+getFollowPageWords
+getForbiddenCharacters
+getIndexAlgorithm
+getLCInfo
+getLocaleItem
+getOutlineNumberingLevels
+getReservedWords
+getSearchOptions
+getTransliterations
+getUnicodeScripts
+);
+
+print 'extern C {
+
+';
+
+foreach my $lang (@ARGV) {
+foreach my $func (@FUNCS) {
+   printf(void %s_%s();\n, $func, $lang);
+}
+}
+
+print '
+static const struct {
+const char *pLocale;
+';
+foreach my $func (@FUNCS) {
+printf(void  (*%s)();\n, $func);
+}
+print '} aLibTable[] = {
+';
+
+foreach my $lang (@ARGV) {
+printf({\n);
+printf(\%s\,\n, $lang);
+foreach my $func (@FUNCS) {
+   printf(%s_%s,\n, $func, $lang);
+}
+printf(}%s\n, ($lang ne $ARGV[$#ARGV]) ? ',' : '');
+}
+
+print '};
+
+}
+';
+
+# vim:set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-03-18 Thread Eike Rathke
 i18npool/source/localedata/data/zh_TW.xml |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c7b319d2f1f1daef509cd1ac53035294b39a6299
Author: Cheng-Chia Tseng pswo10...@gmail.com
Date:   Sun Mar 18 19:50:13 2012 +0100

resolved fdo#46947 duplicated date format [zh-TW]

Use GG era abbreviation in one format instead of full GGG.

diff --git a/i18npool/source/localedata/data/zh_TW.xml 
b/i18npool/source/localedata/data/zh_TW.xml
index 15681f0..bd8c0c6 100644
--- a/i18npool/source/localedata/data/zh_TW.xml
+++ b/i18npool/source/localedata/data/zh_TW.xml
@@ -112,7 +112,7 @@
   FormatCode年M月D日/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey7 default=false type=medium 
usage=DATE formatindex=24
-  FormatCodeGGGEE年M月D日/FormatCode
+  FormatCodeGGEE年M月D日/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey8 default=false type=long 
usage=DATE formatindex=25
   FormatCodeGGGEE年M月D日/FormatCode
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-02-14 Thread Eike Rathke
 i18npool/source/localedata/data/fr_CH.xml |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 5930f866b649db40e6ddfd5004d4133ccbb0ede0
Author: Eike Rathke er...@redhat.com
Date:   Tue Feb 14 19:43:45 2012 +0100

added [fr-CH] date acceptance patterns D/M and D.M.

diff --git a/i18npool/source/localedata/data/fr_CH.xml 
b/i18npool/source/localedata/data/fr_CH.xml
index d60fab3..13ea410 100644
--- a/i18npool/source/localedata/data/fr_CH.xml
+++ b/i18npool/source/localedata/data/fr_CH.xml
@@ -38,6 +38,8 @@
 MeasurementSystemmetric/MeasurementSystem
   /LC_CTYPE
   LC_FORMAT
+DateAcceptancePatternD/M/DateAcceptancePattern
+DateAcceptancePatternD.M./DateAcceptancePattern
 FormatElement msgid=FixedFormatskey1 default=true type=medium 
usage=FIXED_NUMBER formatindex=0
   FormatCodeStandard/FormatCode
 /FormatElement
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-02-14 Thread Eike Rathke
 i18npool/source/localedata/data/et_EE.xml |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ec7ed71cd3f6130268bae2ffba5a6c69ebed20b6
Author: Eike Rathke er...@redhat.com
Date:   Tue Feb 14 20:06:28 2012 +0100

changed [et-EE] single quotation marks to be such

diff --git a/i18npool/source/localedata/data/et_EE.xml 
b/i18npool/source/localedata/data/et_EE.xml
index ce5deee..4942bfc 100644
--- a/i18npool/source/localedata/data/et_EE.xml
+++ b/i18npool/source/localedata/data/et_EE.xml
@@ -25,8 +25,8 @@
   LongDateYearSeparator /LongDateYearSeparator
 /Separators
 Markers
-  QuotationStart„/QuotationStart
-  QuotationEnd“/QuotationEnd
+  QuotationStart‘/QuotationStart
+  QuotationEnd’/QuotationEnd
   DoubleQuotationStart„/DoubleQuotationStart
   DoubleQuotationEnd“/DoubleQuotationEnd
 /Markers
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-01-27 Thread Eike Rathke
 i18npool/source/localedata/data/br_FR.xml |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 91e9cdd32943de6d3075a26e468bba11fa60bdee
Author: Eike Rathke er...@redhat.com
Date:   Fri Jan 27 17:10:18 2012 +0100

added [br-FR] date acceptance pattern D/M

diff --git a/i18npool/source/localedata/data/br_FR.xml 
b/i18npool/source/localedata/data/br_FR.xml
index 157202b..b6098f4 100644
--- a/i18npool/source/localedata/data/br_FR.xml
+++ b/i18npool/source/localedata/data/br_FR.xml
@@ -35,6 +35,7 @@
 MeasurementSystemmetric/MeasurementSystem
   /LC_CTYPE
   LC_FORMAT replaceFrom=[CURRENCY] replaceTo=[$F-47E]
+DateAcceptancePatternD/M/DateAcceptancePattern
 FormatElement msgid=FixedFormatskey1 default=true type=medium 
usage=FIXED_NUMBER formatindex=0
   FormatCodeSkoueriek/FormatCode
 /FormatElement
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-01-23 Thread Eike Rathke
 i18npool/source/localedata/data/locale.dtd |   22 --
 1 file changed, 12 insertions(+), 10 deletions(-)

New commits:
commit b247f7691e0498355afcbcc4b60b5e9fdd28d867
Author: Eike Rathke er...@redhat.com
Date:   Mon Jan 23 16:59:35 2012 +0100

added description of time edit format

diff --git a/i18npool/source/localedata/data/locale.dtd 
b/i18npool/source/localedata/data/locale.dtd
index 1d79039..6b88bbe 100644
--- a/i18npool/source/localedata/data/locale.dtd
+++ b/i18npool/source/localedata/data/locale.dtd
@@ -243,16 +243,18 @@
 data. The requirements are the same as for formatindex=21 above.
 
 Of usage=TIME:
-formatindices 43, 44, 45 are special in the sense that they are
-programmatically used to automatically display values that meet certain
-criteria:
-Formatindex=43 contains the [HH] format code that displays hour
-values greater than or equal to 24 (as opposed to a simple HH that
-displays modulo 24).
-Formatindex=44 uses no hour code but 100th seconds and the
-Time100SecSeparator.
-Formatindex=45 uses both [HH] hour code and 100th seconds to be able
-to edit such time values without loosing information.
+* The FormatElement with default=true type=medium is used to edit
+  times and thus must contain all HH and MM and SS codes, e.g. HH:MM:SS
+* Formatindices 43, 44, 45 are special in the sense that they are
+  programmatically used to automatically display values that meet
+  certain criteria:
+  * Formatindex=43 contains the [HH] format code that displays hour
+values greater than or equal to 24 (as opposed to a simple HH that
+displays modulo 24).
+  * Formatindex=44 uses no hour code but 100th seconds and the
+Time100SecSeparator.
+  * Formatindex=45 uses both [HH] hour code and 100th seconds to be
+able to edit such time values without loosing information.
 
 Of usage=CURRENCY:
 formatindices 12, 13, 14, 15, 17 with [$xxx-yyy] notation must use the
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-01-23 Thread Eike Rathke
 i18npool/source/localedata/data/fi_FI.xml |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 49e685663146b9ad59a47cfaf9cf499fc6a6b937
Author: Eike Rathke er...@redhat.com
Date:   Mon Jan 23 17:43:01 2012 +0100

added [fi-FI] date acceptance pattern D.M.

diff --git a/i18npool/source/localedata/data/fi_FI.xml 
b/i18npool/source/localedata/data/fi_FI.xml
index f666ff6..7e4f5dc 100644
--- a/i18npool/source/localedata/data/fi_FI.xml
+++ b/i18npool/source/localedata/data/fi_FI.xml
@@ -35,6 +35,7 @@
 MeasurementSystemmetric/MeasurementSystem
   /LC_CTYPE
   LC_FORMAT
+DateAcceptancePatternD.M./DateAcceptancePattern
 FormatElement msgid=FixedFormatskey1 default=true type=medium 
usage=FIXED_NUMBER formatindex=0
   FormatCodeYleinen/FormatCode
 /FormatElement
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-01-23 Thread Eike Rathke
 i18npool/source/localedata/data/tr_TR.xml |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 2d8a5940a0369127602fcc6144e9c31aae4917bd
Author: Eike Rathke er...@redhat.com
Date:   Mon Jan 23 17:50:23 2012 +0100

added [tr-TR] date acceptance patterns D.M D/M D-M

diff --git a/i18npool/source/localedata/data/tr_TR.xml 
b/i18npool/source/localedata/data/tr_TR.xml
index 945afbe..ca2d1ab 100644
--- a/i18npool/source/localedata/data/tr_TR.xml
+++ b/i18npool/source/localedata/data/tr_TR.xml
@@ -35,6 +35,9 @@
 MeasurementSystemmetric/MeasurementSystem
   /LC_CTYPE
   LC_FORMAT
+DateAcceptancePatternD.M/DateAcceptancePattern
+DateAcceptancePatternD/M/DateAcceptancePattern
+DateAcceptancePatternD-M/DateAcceptancePattern
 FormatElement msgid=FixedFormatskey1 default=true type=medium 
usage=FIXED_NUMBER formatindex=0
   FormatCodeStandard/FormatCode
 /FormatElement
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-01-20 Thread Eike Rathke
 i18npool/source/localedata/data/sk_SK.xml |  194 --
 1 file changed, 133 insertions(+), 61 deletions(-)

New commits:
commit 3cf7dcdde2e7a115405c93e4f63580437c8ab744
Author: Milos Sramek sramek.mi...@gmail.com
Date:   Fri Jan 20 13:39:41 2012 +0100

updated [sk-SK] formats and month names

diff --git a/i18npool/source/localedata/data/sk_SK.xml 
b/i18npool/source/localedata/data/sk_SK.xml
index db04531..c3e31f3 100644
--- a/i18npool/source/localedata/data/sk_SK.xml
+++ b/i18npool/source/localedata/data/sk_SK.xml
@@ -38,68 +38,78 @@
 MeasurementSystemMetric/MeasurementSystem
   /LC_CTYPE
   LC_FORMAT
-FormatElement msgid=DateFormatskey1 default=true type=short 
usage=DATE formatindex=18
-  FormatCodeD.M.YY/FormatCode
-/FormatElement
-FormatElement msgid=DateFormatskey2 default=false type=medium 
usage=DATE formatindex=28
-  FormatCodeNN, DD. MMM YY/FormatCode
-/FormatElement
-FormatElement msgid=DateFormatskey3 default=false type=medium 
usage=DATE formatindex=34
-  FormatCodeMM YY/FormatCode
-/FormatElement
-FormatElement msgid=DateFormatskey4 default=false type=medium 
usage=DATE formatindex=35
-  FormatCodeMMM DD/FormatCode
-/FormatElement
-FormatElement msgid=DateFormatskey5 default=false type=medium 
usage=DATE formatindex=36
-  FormatCode/FormatCode
-/FormatElement
-FormatElement msgid=DateFormatskey6 default=false type=medium 
usage=DATE formatindex=37
-  FormatCodeQQ YY/FormatCode
+DateAcceptancePatternD.M./DateAcceptancePattern
+DateAcceptancePatternD. M./DateAcceptancePattern
+DateAcceptancePatternD. M. Y/DateAcceptancePattern
+DateAcceptancePatternD. M./DateAcceptancePattern
+DateAcceptancePatternD. M. Y/DateAcceptancePattern
+FormatElement msgid=DateFormatskey0 default=true type=short 
usage=DATE formatindex=18
+  FormatCodeD. M. /FormatCode
+/FormatElement
+FormatElement msgid=DateFormatskey1 default=true type=long 
usage=DATE formatindex=19
+  FormatCodeDD.  /FormatCode
+/FormatElement
+FormatElement msgid=DateFormatskey2 default=true type=medium 
usage=DATE formatindex=20
+  FormatCodeDD.MM./FormatCode
+  DefaultNamePodľa STN 01 6910/DefaultName
 /FormatElement
-FormatElement msgid=DateFormatskey7 default=false type=medium 
usage=DATE formatindex=21
+FormatElement msgid=DateFormatskey3 default=false type=medium 
usage=DATE formatindex=21
   FormatCodeDD.MM./FormatCode
+  DefaultNamePodľa STN 01 6910/DefaultName
 /FormatElement
-FormatElement msgid=DateFormatskey8 default=true type=medium 
usage=DATE formatindex=20
-  FormatCodeDD.MM.YY/FormatCode
+FormatElement msgid=DateFormatskey4 default=false type=long 
usage=DATE formatindex=22
+  FormatCodeD. MMM. YY/FormatCode
 /FormatElement
-FormatElement msgid=DateFormatskey9 default=true type=long 
usage=DATE formatindex=19
-  FormatCode DD. /FormatCode
+FormatElement msgid=DateFormatskey5 default=false type=long 
usage=DATE formatindex=23
+  FormatCodeD. MMM. /FormatCode
 /FormatElement
-FormatElement msgid=DateFormatskey10 default=false type=long 
usage=DATE formatindex=22
-  FormatCodeMMM D. YY/FormatCode
+FormatElement msgid=DateFormatskey6 default=false type=long 
usage=DATE formatindex=24
+  FormatCodeD. MMM. /FormatCode
 /FormatElement
-FormatElement msgid=DateFormatskey11 default=false type=long 
usage=DATE formatindex=23
-  FormatCodeMMM D. /FormatCode
+FormatElement msgid=DateFormatskey7 default=false type=long 
usage=DATE formatindex=25
+  FormatCodeD.  /FormatCode
+  DefaultNamePodľa STN 01 6910/DefaultName
 /FormatElement
-FormatElement msgid=DateFormatskey12 default=false type=long 
usage=DATE formatindex=25
-  FormatCode D. /FormatCode
+FormatElement msgid=DateFormatskey8 default=false type=long 
usage=DATE formatindex=26
+  FormatCodeD.  /FormatCode
+  DefaultNamePodľa STN 01 6910/DefaultName
 /FormatElement
-FormatElement msgid=DateFormatskey13 default=false type=long 
usage=DATE formatindex=27
-  FormatCodeNN, MMM D. YY/FormatCode
+FormatElement msgid=DateFormatskey9 default=false type=long 
usage=DATE formatindex=27
+  FormatCodeNN, D. MMM. YY/FormatCode
 /FormatElement
-FormatElement msgid=DateFormatskey14 default=false type=long 
usage=DATE formatindex=29
-  FormatCodeNN,  D. /FormatCode
+FormatElement msgid=DateFormatskey10 default=false type=medium 
usage=DATE formatindex=28
+  FormatCodeNN, DD. MMM. YY/FormatCode
 /FormatElement
-FormatElement msgid=DateFormatskey15 default=false type=long 
usage=DATE formatindex=30
-  FormatCode D. /FormatCode
+FormatElement msgid=DateFormatskey11 default=false type=long 
usage=DATE formatindex=29
+  FormatCodeNN, D.  /FormatCode
 

[Libreoffice-commits] .: i18npool/source

2012-01-19 Thread Eike Rathke
 i18npool/source/localedata/data/be_BY.xml |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 09c1d111208619197fa851b21ff24bd261a93b15
Author: Eike Rathke er...@redhat.com
Date:   Thu Jan 19 22:37:53 2012 +0100

added [be-BY] date acceptance patterns D.M. and D/M/

diff --git a/i18npool/source/localedata/data/be_BY.xml 
b/i18npool/source/localedata/data/be_BY.xml
index a020dcc..6d1bc97 100644
--- a/i18npool/source/localedata/data/be_BY.xml
+++ b/i18npool/source/localedata/data/be_BY.xml
@@ -35,6 +35,8 @@
 MeasurementSystemMetric/MeasurementSystem
   /LC_CTYPE
   LC_FORMAT
+DateAcceptancePatternD/M//DateAcceptancePattern
+DateAcceptancePatternD.M./DateAcceptancePattern
 FormatElement msgid=FixedFormatskey1 default=true type=medium 
usage=FIXED_NUMBER  formatindex=0
   FormatCodeStandard/FormatCode
 /FormatElement
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-01-17 Thread Eike Rathke
 i18npool/source/localedata/data/gd_GB.xml |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 197c0ef041fb92ba08d6440258e59485c81214a2
Author: Eike Rathke er...@redhat.com
Date:   Tue Jan 17 14:34:31 2012 +0100

added [gd-GB] date acceptance patterns D/M and D-M

diff --git a/i18npool/source/localedata/data/gd_GB.xml 
b/i18npool/source/localedata/data/gd_GB.xml
index fadc235..0359f25 100644
--- a/i18npool/source/localedata/data/gd_GB.xml
+++ b/i18npool/source/localedata/data/gd_GB.xml
@@ -35,6 +35,8 @@
 MeasurementSystemMetric/MeasurementSystem
   /LC_CTYPE
   LC_FORMAT replaceFrom=[CURRENCY] replaceTo=[$£-43C]
+DateAcceptancePatternD/M/DateAcceptancePattern
+DateAcceptancePatternD-M/DateAcceptancePattern
 FormatElement msgid=FixedFormatskey1 default=true type=medium 
usage=FIXED_NUMBER  formatindex=0
   FormatCodeGeneral/FormatCode
 /FormatElement
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-01-17 Thread Eike Rathke
 i18npool/source/localedata/data/lt_LT.xml |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 87b12c42717a3488cc179d07cf42ace2335aced4
Author: Eike Rathke er...@redhat.com
Date:   Tue Jan 17 14:38:16 2012 +0100

added [glt-LT] date acceptance pattern M-D

diff --git a/i18npool/source/localedata/data/lt_LT.xml 
b/i18npool/source/localedata/data/lt_LT.xml
index 1e7d5e3..15adb38 100644
--- a/i18npool/source/localedata/data/lt_LT.xml
+++ b/i18npool/source/localedata/data/lt_LT.xml
@@ -38,6 +38,7 @@
 MeasurementSystemmetric/MeasurementSystem
   /LC_CTYPE
   LC_FORMAT
+DateAcceptancePatternM-D/DateAcceptancePattern
 FormatElement msgid=FixedFormatskey1 default=true type=medium 
usage=FIXED_NUMBER formatindex=0
   FormatCodeBendras/FormatCode
 /FormatElement
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-01-17 Thread Eike Rathke
 i18npool/source/localedata/data/zh_CN.xml |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 605707652afebf0e5c90311adcc7767ebe807e45
Author: Eike Rathke er...@redhat.com
Date:   Tue Jan 17 15:41:10 2012 +0100

added [zh-CN] date acceptance patterns (various)

diff --git a/i18npool/source/localedata/data/zh_CN.xml 
b/i18npool/source/localedata/data/zh_CN.xml
index 8c71d19..76e1509 100644
--- a/i18npool/source/localedata/data/zh_CN.xml
+++ b/i18npool/source/localedata/data/zh_CN.xml
@@ -35,6 +35,13 @@
 MeasurementSystemmetric/MeasurementSystem
   /LC_CTYPE
   LC_FORMAT
+DateAcceptancePatternM-D/DateAcceptancePattern
+DateAcceptancePatternM/D/DateAcceptancePattern
+DateAcceptancePatternM/D/DateAcceptancePattern
+DateAcceptancePatternY.M.D/DateAcceptancePattern
+DateAcceptancePatternY/M/D/DateAcceptancePattern
+DateAcceptancePatternY年M月D日/DateAcceptancePattern
+DateAcceptancePatternM月D日/DateAcceptancePattern
 !-- Fix number formats. Index range is from 0 to 5. --
 FormatElement msgid=NumberFormatskey1 default=true type=medium 
usage=FIXED_NUMBER  formatindex=0
   FormatCodeGeneral/FormatCode
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-01-16 Thread Eike Rathke
 i18npool/source/localedata/data/cs_CZ.xml |   89 ++
 1 file changed, 78 insertions(+), 11 deletions(-)

New commits:
commit 2955fc0c3ef3c15b5fdad43969402503ed439336
Author: Da'angh Khagaroth khagar...@gmail.com
Date:   Mon Jan 16 17:13:52 2012 +0100

DateAcceptancePattern and PartitiveMonths for Czech language

diff --git a/i18npool/source/localedata/data/cs_CZ.xml 
b/i18npool/source/localedata/data/cs_CZ.xml
index 0c78160..5dd47e7 100644
--- a/i18npool/source/localedata/data/cs_CZ.xml
+++ b/i18npool/source/localedata/data/cs_CZ.xml
@@ -35,26 +35,31 @@
 MeasurementSystemMetric/MeasurementSystem
   /LC_CTYPE
   LC_FORMAT
+DateAcceptancePatternD.M./DateAcceptancePattern
+DateAcceptancePatternD. M./DateAcceptancePattern
+DateAcceptancePatternD. M. Y/DateAcceptancePattern
+DateAcceptancePatternD. M./DateAcceptancePattern
+DateAcceptancePatternD. M. Y/DateAcceptancePattern
 FormatElement msgid=DateFormatskey0 default=true type=short 
usage=DATE formatindex=18
-  FormatCodeD.M./FormatCode
+  FormatCodeD. M. /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey1 default=true type=long 
usage=DATE formatindex=19
   FormatCodeDD.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey2 default=true type=medium 
usage=DATE formatindex=20
-  FormatCodeD.M./FormatCode
+  FormatCodeDD.MM./FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey3 default=false type=medium 
usage=DATE formatindex=21
-  FormatCodeD.M./FormatCode
+  FormatCodeDD.MM./FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey4 default=false type=long 
usage=DATE formatindex=22
-  FormatCodeD. MMM YY/FormatCode
+  FormatCodeD. MMM. YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey5 default=false type=long 
usage=DATE formatindex=23
-  FormatCodeD. MMM /FormatCode
+  FormatCodeD. MMM. /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey6 default=false type=long 
usage=DATE formatindex=24
-  FormatCodeD. MMM /FormatCode
+  FormatCodeD. MMM. /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey7 default=false type=long 
usage=DATE formatindex=25
   FormatCodeD.  /FormatCode
@@ -63,10 +68,10 @@
   FormatCodeD.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey9 default=false type=long 
usage=DATE formatindex=27
-  FormatCodeNN, D. MMM YY/FormatCode
+  FormatCodeNN, D. MMM. YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey10 default=false type=medium 
usage=DATE formatindex=28
-  FormatCodeNN, DD. MMM YY/FormatCode
+  FormatCodeNN, DD. MMM. YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey11 default=false type=long 
usage=DATE formatindex=29
   FormatCodeNN, D.  /FormatCode
@@ -75,7 +80,7 @@
   FormatCodeD.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey13 default=false type=short 
usage=DATE formatindex=31
-  FormatCodeDD-MM/FormatCode
+  FormatCodeMM-DD/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey14 default=false type=medium 
usage=DATE formatindex=32
   FormatCodeYY-MM-DD/FormatCode
@@ -85,10 +90,10 @@
   DefaultNameISO 8601 (EN 28601)/DefaultName
 /FormatElement
 FormatElement msgid=DateFormatskey16 default=false type=medium 
usage=DATE formatindex=34
-  FormatCodeMM YY/FormatCode
+  FormatCodeMM. YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey17 default=false type=medium 
usage=DATE formatindex=35
-  FormatCodeMMM DD/FormatCode
+  FormatCodeDD. MMM./FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey18 default=false type=medium 
usage=DATE formatindex=36
   FormatCode/FormatCode
@@ -286,6 +291,68 @@
   DefaultFullNameprosinec/DefaultFullName
 /Month
   /MonthsOfYear
+  PartitiveMonths
+Month
+  MonthIDjan/MonthID
+  DefaultAbbrvNameI/DefaultAbbrvName
+  DefaultFullNameledna/DefaultFullName
+/Month
+Month
+  MonthIDfeb/MonthID
+  DefaultAbbrvNameII/DefaultAbbrvName
+  DefaultFullNameúnora/DefaultFullName
+/Month
+Month
+  MonthIDmar/MonthID
+  DefaultAbbrvNameIII/DefaultAbbrvName
+  DefaultFullNamebřezna/DefaultFullName
+/Month
+Month
+  MonthIDapr/MonthID
+  DefaultAbbrvNameIV/DefaultAbbrvName
+  DefaultFullNamedubna/DefaultFullName
+/Month
+Month
+  MonthIDmay/MonthID
+  DefaultAbbrvNameV/DefaultAbbrvName
+  DefaultFullNamekvětna/DefaultFullName
+/Month
+Month
+  MonthIDjun/MonthID
+  DefaultAbbrvNameVI/DefaultAbbrvName
+  

[Libreoffice-commits] .: i18npool/source

2012-01-11 Thread Eike Rathke
 i18npool/source/localedata/data/ar_DZ.xml  |5 -
 i18npool/source/localedata/data/ar_EG.xml  |5 -
 i18npool/source/localedata/data/ja_JP.xml  |8 ++--
 i18npool/source/localedata/data/ko_KR.xml  |3 ++-
 i18npool/source/localedata/data/locale.dtd |3 +--
 i18npool/source/localedata/data/mk_MK.xml  |2 +-
 i18npool/source/localedata/data/zh_HK.xml  |4 ++--
 i18npool/source/localedata/data/zh_MO.xml  |8 ++--
 i18npool/source/localedata/data/zh_TW.xml  |4 ++--
 9 files changed, 28 insertions(+), 14 deletions(-)

New commits:
commit d2c865b887c6b771ca2d0c804bf4e358e605a571
Author: Eike Rathke er...@redhat.com
Date:   Wed Jan 11 22:14:23 2012 +0100

made formatindex=33 the ISO 8601 -MM-DD that it needs to be

diff --git a/i18npool/source/localedata/data/ar_DZ.xml 
b/i18npool/source/localedata/data/ar_DZ.xml
index 68cf3ed..a9feabe 100644
--- a/i18npool/source/localedata/data/ar_DZ.xml
+++ b/i18npool/source/localedata/data/ar_DZ.xml
@@ -130,7 +130,7 @@
   DefaultNameISO 8601/DefaultName
 /FormatElement
 FormatElement msgid=DateFormatskey20 default=false type=medium 
usage=DATE formatindex=33
-  FormatCode[NatNum1]/MM/DD/FormatCode
+  FormatCode-MM-DD/FormatCode
   DefaultNameISO 8601/DefaultName
 /FormatElement
 FormatElement msgid=DateFormatskey3 default=false type=medium 
usage=DATE formatindex=34
@@ -181,6 +181,9 @@
 FormatElement msgid=DateTimeFormatskey4 default=false type=medium 
usage=DATE_TIME formatindex=51
   FormatCode[NatNum1]AM/PMHH:MM /MM/D/FormatCode
 /FormatElement
+FormatElement msgid=DateFormatskey22 default=false type=medium 
usage=DATE formatindex=52
+  FormatCode[NatNum1]/MM/DD/FormatCode
+/FormatElement
   /LC_FORMAT
   LC_COLLATION ref=en_US /
   LC_SEARCH ref=en_US/
diff --git a/i18npool/source/localedata/data/ar_EG.xml 
b/i18npool/source/localedata/data/ar_EG.xml
index bc3341d..b99a02d 100644
--- a/i18npool/source/localedata/data/ar_EG.xml
+++ b/i18npool/source/localedata/data/ar_EG.xml
@@ -130,7 +130,7 @@
   DefaultNameISO 8601/DefaultName
 /FormatElement
 FormatElement msgid=DateFormatskey20 default=false type=medium 
usage=DATE formatindex=33
-  FormatCode[NatNum1]/MM/DD/FormatCode
+  FormatCode-MM-DD/FormatCode
   DefaultNameISO 8601/DefaultName
 /FormatElement
 FormatElement msgid=DateFormatskey3 default=false type=medium 
usage=DATE formatindex=34
@@ -181,6 +181,9 @@
 FormatElement msgid=DateTimeFormatskey4 default=false type=medium 
usage=DATE_TIME formatindex=51
   FormatCode[NatNum1]AM/PMHH:MM /MM/D/FormatCode
 /FormatElement
+FormatElement msgid=DateFormatskey22 default=false type=medium 
usage=DATE formatindex=52
+  FormatCode[NatNum1]/MM/DD/FormatCode
+/FormatElement
   /LC_FORMAT
   LC_COLLATION ref=en_US /
   LC_SEARCH ref=en_US/
diff --git a/i18npool/source/localedata/data/ja_JP.xml 
b/i18npool/source/localedata/data/ja_JP.xml
index d09dd53..54c42a2 100644
--- a/i18npool/source/localedata/data/ja_JP.xml
+++ b/i18npool/source/localedata/data/ja_JP.xml
@@ -129,7 +129,8 @@
   FormatCodeGE.M.D/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey16 default=false type=medium 
usage=DATE formatindex=33
-  FormatCodeGE.MM.DD/FormatCode
+  FormatCode-MM-DD/FormatCode
+  DefaultNameISO 8601/DefaultName
 /FormatElement
 FormatElement msgid=DateFormatskey17 default=false type=medium 
usage=DATE formatindex=34
   FormatCodeYY/MM/FormatCode
@@ -170,7 +171,7 @@
 FormatElement msgid=TimeFormatskey8 default=false type=medium 
usage=TIME formatindex=52
   FormatCodeH時MM分/FormatCode
 /FormatElement
-FormatElement msgid=TimeFormatskey9 default=false type=long 
usage=TIME formatindex=54
+FormatElement msgid=TimeFormatskey9 default=false type=long 
usage=TIME formatindex=53
   FormatCodeH時MM分SS秒/FormatCode
 /FormatElement
 FormatElement msgid=DateTimeFormatskey1 default=false type=long 
usage=DATE_TIME formatindex=46
@@ -179,6 +180,9 @@
 FormatElement msgid=DateTimeFormatskey2 default=true type=long 
usage=DATE_TIME formatindex=47
   FormatCode/M/D H:MM/FormatCode
 /FormatElement
+FormatElement msgid=DateFormatskey22 default=false type=medium 
usage=DATE formatindex=54
+  FormatCodeGE.MM.DD/FormatCode
+/FormatElement
   /LC_FORMAT
   LC_COLLATION
 Collator default=true unoid=phonetic (alphanumeric first) /
diff --git a/i18npool/source/localedata/data/ko_KR.xml 
b/i18npool/source/localedata/data/ko_KR.xml
index 7762c6d..932bd91 100644
--- a/i18npool/source/localedata/data/ko_KR.xml
+++ b/i18npool/source/localedata/data/ko_KR.xml
@@ -129,7 +129,8 @@
   FormatCodeYY-M-D/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey16 default=false type=medium 
usage=DATE formatindex=33
-  FormatCodeYY년 M월/FormatCode
+  FormatCode-MM-DD/FormatCode
+ 

[Libreoffice-commits] .: i18npool/source

2012-01-11 Thread Eike Rathke
 i18npool/source/localedata/data/ko_KR.xml |4 ++--
 i18npool/source/localedata/data/ne_NP.xml |2 +-
 i18npool/source/localedata/data/zh_HK.xml |2 +-
 i18npool/source/localedata/data/zh_TW.xml |2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit e6a32a0d45fe4f6ad748123c6129310b0ae471b4
Author: Eike Rathke er...@redhat.com
Date:   Thu Jan 12 00:07:45 2012 +0100

removed leading/trailing blank from FormatCode

diff --git a/i18npool/source/localedata/data/ko_KR.xml 
b/i18npool/source/localedata/data/ko_KR.xml
index 932bd91..5654b71 100644
--- a/i18npool/source/localedata/data/ko_KR.xml
+++ b/i18npool/source/localedata/data/ko_KR.xml
@@ -117,7 +117,7 @@
   FormatCode[~hanja]YY年 M月 D日 /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey12 default=false type=medium 
usage=DATE formatindex=29
-  FormatCode[~hanja]年 M月 D日  /FormatCode
+  FormatCode[~hanja]年 M月 D日 /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey13 default=false type=medium 
usage=DATE formatindex=30
   FormatCodeYY-M-D /FormatCode
@@ -181,7 +181,7 @@
   FormatCodeYY/M/D /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey34 default=true type=long 
usage=DATE formatindex=62
-  FormatCode/M/D  /FormatCode
+  FormatCode/M/D /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey35 default=false type=long 
usage=DATE formatindex=63
   FormatCodeYY/M/FormatCode
diff --git a/i18npool/source/localedata/data/ne_NP.xml 
b/i18npool/source/localedata/data/ne_NP.xml
index 5826e7c..b652369 100644
--- a/i18npool/source/localedata/data/ne_NP.xml
+++ b/i18npool/source/localedata/data/ne_NP.xml
@@ -78,7 +78,7 @@
   FormatCode[NatNum1][CURRENCY] #,##0.00;[RED]-[CURRENCY] 
#,##0.00/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey5 default=false type=medium 
usage=CURRENCY formatindex=16
-  FormatCode[NatNum1]CCC #,##0.00 /FormatCode
+  FormatCode[NatNum1]CCC #,##0.00/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey6 default=false type=medium 
usage=CURRENCY formatindex=17
   FormatCode[NatNum1][CURRENCY] #,##0.--;[RED]-[CURRENCY] 
#,##0.--/FormatCode
diff --git a/i18npool/source/localedata/data/zh_HK.xml 
b/i18npool/source/localedata/data/zh_HK.xml
index 4bed867..891e626 100644
--- a/i18npool/source/localedata/data/zh_HK.xml
+++ b/i18npool/source/localedata/data/zh_HK.xml
@@ -142,7 +142,7 @@
   FormatCodeAM/PM HH:MM/FormatCode
 /FormatElement
 FormatElement msgid=TimeFormatskey4 default=false type=medium 
usage=TIME  formatindex=42
-  FormatCode AM/PM HH:MM:SS/FormatCode
+  FormatCodeAM/PM HH:MM:SS/FormatCode
 /FormatElement
 FormatElement msgid=TimeFormatskey5 default=false type=medium 
usage=TIME  formatindex=43
   FormatCode[HH]:MM:SS/FormatCode
diff --git a/i18npool/source/localedata/data/zh_TW.xml 
b/i18npool/source/localedata/data/zh_TW.xml
index aa068e1..89ecdd9 100644
--- a/i18npool/source/localedata/data/zh_TW.xml
+++ b/i18npool/source/localedata/data/zh_TW.xml
@@ -163,7 +163,7 @@
   FormatCodeAM/PM HH:MM/FormatCode
 /FormatElement
 FormatElement msgid=TimeFormatskey4 default=false type=medium 
usage=TIME  formatindex=42
-  FormatCode AM/PM HH:MM:SS/FormatCode
+  FormatCodeAM/PM HH:MM:SS/FormatCode
 /FormatElement
 FormatElement msgid=TimeFormatskey5 default=false type=medium 
usage=TIME  formatindex=43
   FormatCode[HH]:MM:SS/FormatCode
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source idlc/source idl/source io/source javaunohelper/source jvmaccess/source

2011-12-30 Thread Jan Holesovsky
 i18npool/source/breakiterator/breakiteratorImpl.cxx   |4 
 i18npool/source/breakiterator/breakiterator_unicode.cxx   |2 
 i18npool/source/collator/collator_unicode.cxx |2 
 i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx |2 
 i18npool/source/indexentry/indexentrysupplier.cxx |4 
 i18npool/source/indexentry/indexentrysupplier_asian.cxx   |2 
 i18npool/source/indexentry/indexentrysupplier_common.cxx  |2 
 i18npool/source/indexentry/indexentrysupplier_default.cxx |8 -
 i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx |2 
 i18npool/source/isolang/isolang.cxx   |   12 +-
 i18npool/source/isolang/mslangid.cxx  |8 -
 i18npool/source/localedata/LocaleNode.cxx |   54 
+-
 i18npool/source/localedata/localedata.cxx |2 
 i18npool/source/paper/paper.cxx   |8 -
 i18npool/source/search/textsearch.cxx |2 
 i18npool/source/transliteration/transliteration_Ignore.cxx|4 
 i18npool/source/transliteration/transliteration_body.cxx  |2 
 idl/source/prj/database.cxx   |4 
 idl/source/prj/svidl.cxx  |4 
 idlc/source/astdeclaration.cxx|4 
 idlc/source/astdump.cxx   |8 -
 idlc/source/astscope.cxx  |4 
 idlc/source/errorhandler.cxx  |2 
 idlc/source/idlccompile.cxx   |4 
 io/source/acceptor/acceptor.cxx   |4 
 javaunohelper/source/javaunohelper.cxx|2 
 jvmaccess/source/classpath.cxx|2 
 27 files changed, 79 insertions(+), 79 deletions(-)

New commits:
commit a17fb882569046cd9f6940cf2e87435200bb666b
Author: Olivier Hallot olivier.hal...@alta.org.br
Date:   Mon Dec 26 17:19:24 2011 -0200

Fix for fdo43460 Part XXI getLength() to isEmpty()

Part XXI
Modules
i18npool, idl, idlc, io, javaunohelper, jvmaccess

diff --git a/i18npool/source/breakiterator/breakiteratorImpl.cxx 
b/i18npool/source/breakiterator/breakiteratorImpl.cxx
index f7690c1..1d26968 100644
--- a/i18npool/source/breakiterator/breakiteratorImpl.cxx
+++ b/i18npool/source/breakiterator/breakiteratorImpl.cxx
@@ -231,7 +231,7 @@ sal_Int32 SAL_CALL BreakIteratorImpl::beginOfSentence( 
const OUString Text, sal
 {
 if (nStartPos  0 || nStartPos  Text.getLength())
 return -1;
-if (Text.getLength() == 0) return 0;
+if (Text.isEmpty()) return 0;
 return LBI-beginOfSentence(Text, nStartPos, rLocale);
 }
 
@@ -240,7 +240,7 @@ sal_Int32 SAL_CALL BreakIteratorImpl::endOfSentence( const 
OUString Text, sal_I
 {
 if (nStartPos  0 || nStartPos  Text.getLength())
 return -1;
-if (Text.getLength() == 0) return 0;
+if (Text.isEmpty()) return 0;
 return LBI-endOfSentence(Text, nStartPos, rLocale);
 }
 
diff --git a/i18npool/source/breakiterator/breakiterator_unicode.cxx 
b/i18npool/source/breakiterator/breakiterator_unicode.cxx
index 78ba7a6..5f35795 100644
--- a/i18npool/source/breakiterator/breakiterator_unicode.cxx
+++ b/i18npool/source/breakiterator/breakiterator_unicode.cxx
@@ -129,7 +129,7 @@ void SAL_CALL 
BreakIterator_Unicode::loadICUBreakIterator(const com::sun::star::
 
 OOoRuleBasedBreakIterator *rbi = NULL;
 
-if (breakRules.getLength()  breakType  
breakRules[breakType].getLength()  0) {
+if (breakRules.getLength()  breakType  
!breakRules[breakType].isEmpty()) {
 rbi = new OOoRuleBasedBreakIterator(udata_open(OpenOffice, 
brk,
 OUStringToOString(breakRules[breakType], 
RTL_TEXTENCODING_ASCII_US).getStr(), status), status);
 } else {
diff --git a/i18npool/source/collator/collator_unicode.cxx 
b/i18npool/source/collator/collator_unicode.cxx
index 6eebd6f..0488d59 100644
--- a/i18npool/source/collator/collator_unicode.cxx
+++ b/i18npool/source/collator/collator_unicode.cxx
@@ -79,7 +79,7 @@ Collator_Unicode::loadCollatorAlgorithm(const OUString 
rAlgorithm, const lang::
 if (!collator) {
 UErrorCode status = U_ZERO_ERROR;
 OUString rule = LocaleData().getCollatorRuleByAlgorithm(rLocale, 
rAlgorithm);
-if (rule.getLength()  0) {
+if (!rule.isEmpty()) {
 collator = new RuleBasedCollator(reinterpret_castconst UChar 
*(rule.getStr()), status);   // UChar != sal_Unicode in MinGW
 if (! 

[Libreoffice-commits] .: i18npool/source

2011-12-20 Thread Eike Rathke
 i18npool/source/localedata/data/pl_PL.xml |   62 ++
 1 file changed, 62 insertions(+)

New commits:
commit 28b1abe11c1bfc644701f62096fce7fcfafaaa93
Author: Mateusz Zasuwik mzasu...@gmail.com
Date:   Tue Dec 20 20:43:33 2011 +0100

genitive case month names for [pl-PL]

diff --git a/i18npool/source/localedata/data/pl_PL.xml 
b/i18npool/source/localedata/data/pl_PL.xml
index 1956896..2ed2ea6 100644
--- a/i18npool/source/localedata/data/pl_PL.xml
+++ b/i18npool/source/localedata/data/pl_PL.xml
@@ -290,6 +290,68 @@
   DefaultFullNamegrudzień/DefaultFullName
 /Month
   /MonthsOfYear
+  GenitiveMonths
+Month
+  MonthIDjan/MonthID
+  DefaultAbbrvNameI/DefaultAbbrvName
+  DefaultFullNamestycznia/DefaultFullName
+/Month
+Month
+  MonthIDfeb/MonthID
+  DefaultAbbrvNameII/DefaultAbbrvName
+  DefaultFullNamelutego/DefaultFullName
+/Month
+Month
+  MonthIDmar/MonthID
+  DefaultAbbrvNameIII/DefaultAbbrvName
+  DefaultFullNamemarca/DefaultFullName
+/Month
+Month
+  MonthIDapr/MonthID
+  DefaultAbbrvNameIV/DefaultAbbrvName
+  DefaultFullNamekwietnia/DefaultFullName
+/Month
+Month
+  MonthIDmay/MonthID
+  DefaultAbbrvNameV/DefaultAbbrvName
+  DefaultFullNamemaja/DefaultFullName
+/Month
+Month
+  MonthIDjun/MonthID
+  DefaultAbbrvNameVI/DefaultAbbrvName
+  DefaultFullNameczerwca/DefaultFullName
+/Month
+Month
+  MonthIDjul/MonthID
+  DefaultAbbrvNameVII/DefaultAbbrvName
+  DefaultFullNamelipca/DefaultFullName
+/Month
+Month
+  MonthIDaug/MonthID
+  DefaultAbbrvNameVIII/DefaultAbbrvName
+  DefaultFullNamesierpnia/DefaultFullName
+/Month
+Month
+  MonthIDsep/MonthID
+  DefaultAbbrvNameIX/DefaultAbbrvName
+  DefaultFullNamewrześnia/DefaultFullName
+/Month
+Month
+  MonthIDoct/MonthID
+  DefaultAbbrvNameX/DefaultAbbrvName
+  DefaultFullNamepaździernika/DefaultFullName
+/Month
+Month
+  MonthIDnov/MonthID
+  DefaultAbbrvNameXI/DefaultAbbrvName
+  DefaultFullNamelistopada/DefaultFullName
+/Month
+Month
+  MonthIDdec/MonthID
+  DefaultAbbrvNameXII/DefaultAbbrvName
+  DefaultFullNamegrudnia/DefaultFullName
+/Month
+  /GenitiveMonths
   Eras
 Era
   EraIDbc/EraID
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-12-15 Thread Eike Rathke
 i18npool/source/localedata/data/sl_SI.xml |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit dc6878ac4a5913483bae22e338f3efbb19be7d05
Author: Martin Srebotnjak mi...@filmsi.net
Date:   Thu Dec 15 21:49:44 2011 +0100

more corrections to date formats

diff --git a/i18npool/source/localedata/data/sl_SI.xml 
b/i18npool/source/localedata/data/sl_SI.xml
index 675a3fb..e61ce24 100644
--- a/i18npool/source/localedata/data/sl_SI.xml
+++ b/i18npool/source/localedata/data/sl_SI.xml
@@ -84,13 +84,13 @@
   FormatCode#.##0,-- [CURRENCY];[RED]-#.##0,-- [CURRENCY]/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey1 default=true type=short 
usage=DATE formatindex=18
-  FormatCodeDD.MM.YY/FormatCode
+  FormatCodeD.M.YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey9 default=true type=long 
usage=DATE formatindex=19
   FormatCodeD.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey8 default=true type=medium 
usage=DATE formatindex=20
-  FormatCodeDD. MM. YY/FormatCode
+  FormatCodeDD.MM.YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey7 default=false type=medium 
usage=DATE formatindex=21
   FormatCodeDD. MM. /FormatCode
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-12-14 Thread Andras Timar
 i18npool/source/localedata/data/sl_SI.xml |   48 +++---
 1 file changed, 24 insertions(+), 24 deletions(-)

New commits:
commit 221d79d7dd32cd4acc043c56b1ba0d795a16af5d
Author: Martin Srebotnjak mi...@filmsi.net
Date:   Wed Dec 14 11:14:16 2011 +0100

corrections to Slovenian locale data

diff --git a/i18npool/source/localedata/data/sl_SI.xml 
b/i18npool/source/localedata/data/sl_SI.xml
index 19139d5..e95325e 100644
--- a/i18npool/source/localedata/data/sl_SI.xml
+++ b/i18npool/source/localedata/data/sl_SI.xml
@@ -25,10 +25,10 @@
   LongDateYearSeparator /LongDateYearSeparator
 /Separators
 Markers
-  QuotationStart‘/QuotationStart
+  QuotationStart’/QuotationStart
   QuotationEnd’/QuotationEnd
-  DoubleQuotationStart„/DoubleQuotationStart
-  DoubleQuotationEnd“/DoubleQuotationEnd
+  DoubleQuotationStart»/DoubleQuotationStart
+  DoubleQuotationEnd«/DoubleQuotationEnd
 /Markers
 TimeAMdop./TimeAM
 TimePMpop./TimePM
@@ -60,46 +60,46 @@
   FormatCode0,00E+00/FormatCode
 /FormatElement
 FormatElement msgid=PercentFormatskey1 default=true type=short 
usage=PERCENT_NUMBER formatindex=8
-  FormatCode0%/FormatCode
+  FormatCode0 %/FormatCode
 /FormatElement
 FormatElement msgid=PercentFormatskey2 default=true type=long 
usage=PERCENT_NUMBER formatindex=9
-  FormatCode0,00%/FormatCode
+  FormatCode0,00 %/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey1 default=true type=short 
usage=CURRENCY formatindex=12
-  FormatCode#.##0 [$SIT-424];-#.##0 [$SIT-424]/FormatCode
+  FormatCode#.##0 [CURRENCY];-#.##0 [CURRENCY]/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey2 default=false type=medium 
usage=CURRENCY formatindex=13
-  FormatCode#.##0,00 [$SIT-424];-#.##0,00 [$SIT-424]/FormatCode
+  FormatCode#.##0,00 [CURRENCY];-#.##0,00 [CURRENCY]/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey3 default=false type=medium 
usage=CURRENCY formatindex=14
-  FormatCode#.##0 [$SIT-424];[RED]-#.##0 [$SIT-424]/FormatCode
+  FormatCode#.##0 [CURRENCY];[RED]-#.##0 [CURRENCY]/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey4 default=true type=medium 
usage=CURRENCY formatindex=15
-  FormatCode#.##0,00 [$SIT-424];[RED]-#.##0,00 [$SIT-424]/FormatCode
+  FormatCode#.##0,00 [CURRENCY];[RED]-#.##0,00 [CURRENCY]/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,-- [$SIT-424];[RED]-#.##0,-- [$SIT-424]/FormatCode
+  FormatCode#.##0,-- [CURRENCY];[RED]-#.##0,-- [CURRENCY]/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey1 default=true type=short 
usage=DATE formatindex=18
   FormatCodeDD.MM.YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey9 default=true type=long 
usage=DATE formatindex=19
-  FormatCodeD.  /FormatCode
+  FormatCode, D.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey8 default=true type=medium 
usage=DATE formatindex=20
-  FormatCodeDD.MM.YY/FormatCode
+  FormatCodeDD. MM. YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey7 default=false type=medium 
usage=DATE formatindex=21
-  FormatCodeDD.MM./FormatCode
+  FormatCodeDD. MM. /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey10 default=false type=long 
usage=DATE formatindex=22
   FormatCodeD. MMM YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey11 default=false type=long 
usage=DATE formatindex=23
-  FormatCodeD. MMM /FormatCode
+  FormatCodeD. MMM. /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey16 default=false type=long 
usage=DATE formatindex=24
   FormatCodeD. MMM. /FormatCode
@@ -111,16 +111,16 @@
   FormatCodeD.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey13 default=false type=long 
usage=DATE formatindex=27
-  FormatCodeNN, D. MMM YY/FormatCode
+  FormatCodeNN., D. MMM. YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey2 default=false type=medium 
usage=DATE formatindex=28
-  FormatCodeNN DD.MMM YY/FormatCode
+  FormatCodeNN, DD. MMM YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey14 default=false type=long 
usage=DATE formatindex=29
-  FormatCodeNN, D.  /FormatCode
+  FormatCodeNN., D.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey15 default=false type=long 
usage=DATE formatindex=30
-  FormatCodeD.  /FormatCode
+  

[Libreoffice-commits] .: i18npool/source

2011-12-14 Thread Eike Rathke
 i18npool/source/localedata/data/sl_SI.xml |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3b23db7e6130ec62f83e31449c8140a9a8db5cc8
Author: Eike Rathke er...@redhat.com
Date:   Wed Dec 14 22:53:24 2011 +0100

corrections to [sl-SI] date formats

diff --git a/i18npool/source/localedata/data/sl_SI.xml 
b/i18npool/source/localedata/data/sl_SI.xml
index 04c3baa..675a3fb 100644
--- a/i18npool/source/localedata/data/sl_SI.xml
+++ b/i18npool/source/localedata/data/sl_SI.xml
@@ -87,7 +87,7 @@
   FormatCodeDD.MM.YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey9 default=true type=long 
usage=DATE formatindex=19
-  FormatCode, D.  /FormatCode
+  FormatCodeD.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey8 default=true type=medium 
usage=DATE formatindex=20
   FormatCodeDD. MM. YY/FormatCode
@@ -120,7 +120,7 @@
   FormatCodeNN., D.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey15 default=false type=long 
usage=DATE formatindex=30
-  FormatCode, D.  /FormatCode
+  FormatCodeD.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey18 default=false type=short 
usage=DATE formatindex=31
   FormatCodeMM-DD/FormatCode
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source idlc/source io/source io/test javaunohelper/source jvmaccess/source jvmfwk/source

2011-12-14 Thread Takeshi Abe
 i18npool/source/localedata/saxparser.cxx |4 ++--
 idlc/source/idlcmain.cxx |2 +-
 io/source/acceptor/acceptor.cxx  |2 +-
 io/source/connector/connector.cxx|2 +-
 io/source/stm/opump.cxx  |   16 
 io/test/stm/datatest.cxx |4 ++--
 io/test/stm/marktest.cxx |4 ++--
 io/test/stm/pipetest.cxx |2 +-
 io/test/stm/pumptest.cxx |2 +-
 io/test/testcomponent.cxx|6 +++---
 io/test/testconnection.cxx   |4 ++--
 javaunohelper/source/bootstrap.cxx   |4 ++--
 jvmaccess/source/classpath.cxx   |2 +-
 jvmfwk/source/framework.cxx  |   30 +++---
 jvmfwk/source/fwkutil.cxx|4 ++--
 15 files changed, 44 insertions(+), 44 deletions(-)

New commits:
commit 0f44079ce20ece1931c40f62584013ac6d1668e4
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Thu Dec 15 13:51:29 2011 +0900

catch exception by constant reference

diff --git a/i18npool/source/localedata/saxparser.cxx 
b/i18npool/source/localedata/saxparser.cxx
index 2ac2db7..2a5fd1e 100644
--- a/i18npool/source/localedata/saxparser.cxx
+++ b/i18npool/source/localedata/saxparser.cxx
@@ -320,7 +320,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 ::rtl::OUString::createFromAscii(argv[4]),
 ::rtl::OUString::createFromAscii(argv[5]), true );
 }
-catch ( Exception e )
+catch ( const Exception e )
 {
 printf( Exception on createRegistryServiceFactory %s\n,
 OUStringToOString( e.Message , RTL_TEXTENCODING_ASCII_US 
).getStr() );
@@ -358,7 +358,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 rParser-parseStream( source );
 }
 
-catch( Exception  e )
+catch( const Exception  e )
 {
 OString o1 = OUStringToOString(e.Message, RTL_TEXTENCODING_UTF8 );
 printf( Exception during parsing : %s\n ,  o1.getStr() );
diff --git a/idlc/source/idlcmain.cxx b/idlc/source/idlcmain.cxx
index 226a60c..f9faa7e 100644
--- a/idlc/source/idlcmain.cxx
+++ b/idlc/source/idlcmain.cxx
@@ -49,7 +49,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 if (!options.initOptions(args))
return (0);
 }
-catch( IllegalArgument e)
+catch(const IllegalArgument e)
 {
 fprintf(stderr, Illegal argument: %s\n%s,
 e.m_message.getStr(),
diff --git a/io/source/acceptor/acceptor.cxx b/io/source/acceptor/acceptor.cxx
index 4920c5e..f703d2d 100644
--- a/io/source/acceptor/acceptor.cxx
+++ b/io/source/acceptor/acceptor.cxx
@@ -242,7 +242,7 @@ namespace io_acceptor
 }
 }
 }
-catch (rtl::MalformedUriException  rEx)
+catch (const rtl::MalformedUriException  rEx)
 {
 throw IllegalArgumentException(
 rEx.getMessage(),
diff --git a/io/source/connector/connector.cxx 
b/io/source/connector/connector.cxx
index bddbd26..e54 100644
--- a/io/source/connector/connector.cxx
+++ b/io/source/connector/connector.cxx
@@ -192,7 +192,7 @@ namespace stoc_connector
 }
 return r;
 }
-catch (rtl::MalformedUriException  rEx)
+catch (const rtl::MalformedUriException  rEx)
 {
 throw ConnectionSetupException(rEx.getMessage(),
Reference XInterface  ());
diff --git a/io/source/stm/opump.cxx b/io/source/stm/opump.cxx
index 1ea93a0..409fe59 100644
--- a/io/source/stm/opump.cxx
+++ b/io/source/stm/opump.cxx
@@ -144,7 +144,7 @@ void Pump::fireError( const  Any  exception )
 {
 static_cast XStreamListener *  ( iter.next() )-error( exception 
);
 }
-catch ( RuntimeException e )
+catch ( const RuntimeException e )
 {
 OString sMessage = OUStringToOString( e.Message , 
RTL_TEXTENCODING_ASCII_US );
 OSL_ENSURE( !com.sun.star.comp.stoc.Pump: unexpected exception 
during calling listeners, sMessage.getStr() );
@@ -173,7 +173,7 @@ void Pump::fireClose()
 {
 static_cast XStreamListener *  ( iter.next() )-closed( );
 }
-catch ( RuntimeException e )
+catch ( const RuntimeException e )
 {
 OString sMessage = OUStringToOString( e.Message , 
RTL_TEXTENCODING_ASCII_US );
 OSL_ENSURE( !com.sun.star.comp.stoc.Pump: unexpected 
exception during calling listeners, sMessage.getStr() );
@@ -191,7 +191,7 @@ void Pump::fireStarted()
 {
 static_cast XStreamListener *  ( iter.next() )-started( );
 }
-catch ( RuntimeException e )
+catch ( const RuntimeException e )
 {
 OString sMessage = OUStringToOString( e.Message , 
RTL_TEXTENCODING_ASCII_US );
 OSL_ENSURE( 

[Libreoffice-commits] .: i18npool/source

2011-12-13 Thread Fridrich Strba
 i18npool/source/localedata/Makefile |9 ++---
 1 file changed, 2 insertions(+), 7 deletions(-)

New commits:
commit 946b0d316358006aca8d59b84f3239a8ae108541
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sat Dec 10 19:14:00 2011 +0100

simplify this, use gb_Helper_abbreviate_dirs_native instead of cygpath

diff --git a/i18npool/source/localedata/Makefile 
b/i18npool/source/localedata/Makefile
index da83ff4..d744384 100755
--- a/i18npool/source/localedata/Makefile
+++ b/i18npool/source/localedata/Makefile
@@ -48,13 +48,8 @@ localedata_%_invis.cxx : $(realpath 
$(SRC_ROOT)/i18npool/source/localedata/data)
 endif
 
 saxparser.rdb : saxparser.input
-ifeq ($(OS_FOR_BUILD),WNT)
-   $(gb_XSLTPROC) --nonet --stringparam prefix `cygpath -m $(OUTDIR)/xml/` 
-o $@ \
-   $(SOLARENV)/bin/packcomponents.xslt saxparser.input
-else
-   $(gb_XSLTPROC) --nonet --stringparam prefix $(OUTDIR)/xml/ -o $@ \
-   $(SOLARENV)/bin/packcomponents.xslt saxparser.input
-endif
+   $(call gb_Helper_abbreviate_dirs_native, $(gb_XSLTPROC) --nonet 
--stringparam prefix $(OUTDIR)/xml/ -o $@ \
+   $(SOLARENV)/bin/packcomponents.xslt saxparser.input)
 
 saxparser.input :
echo 'listfilename$(my_components)/filename/list'  $@
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-12-08 Thread Eike Rathke
 i18npool/source/localedata/data/pt_PT.xml |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ab7926e54ca4a3cddfeedf9cb7027a327d7a1432
Author: Eike Rathke er...@redhat.com
Date:   Thu Dec 8 12:56:29 2011 +0100

changed MinimalDaysInFirstWeek to 4 for correct week-of-year calculation

diff --git a/i18npool/source/localedata/data/pt_PT.xml 
b/i18npool/source/localedata/data/pt_PT.xml
index 0bdb50f..33e52f4 100644
--- a/i18npool/source/localedata/data/pt_PT.xml
+++ b/i18npool/source/localedata/data/pt_PT.xml
@@ -353,7 +353,7 @@
 StartDayOfWeek
 DayIDmon/DayID
 /StartDayOfWeek
-MinimalDaysInFirstWeek1/MinimalDaysInFirstWeek
+MinimalDaysInFirstWeek4/MinimalDaysInFirstWeek
 /Calendar
 /LC_CALENDAR
 LC_CURRENCY
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source solenv/gbuild

2011-12-08 Thread Jan Holesovsky
 i18npool/source/localedata/Makefile |8 ++--
 solenv/gbuild/Helper.mk |2 +-
 solenv/gbuild/platform/WNT_INTEL_MSC.mk |2 +-
 solenv/gbuild/platform/com_GCC_defs.mk  |2 +-
 4 files changed, 5 insertions(+), 9 deletions(-)

New commits:
commit c240dbc820359cf924e2383b743c02e204945a4c
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Thu Dec 8 16:43:26 2011 +0100

Fix 18npool build on Windows.

diff --git a/i18npool/source/localedata/Makefile 
b/i18npool/source/localedata/Makefile
index 618db65..da83ff4 100755
--- a/i18npool/source/localedata/Makefile
+++ b/i18npool/source/localedata/Makefile
@@ -40,15 +40,11 @@ localedata_%.cxx : localedata_%_invis.cxx
 ifeq ($(OS_FOR_BUILD),WNT)
 localedata_%_invis.cxx : $(realpath 
$(SRC_ROOT)/i18npool/source/localedata/data)/%.xml saxparser.rdb \
$(OUTDIR)/bin/saxparser$(gb_Executable_EXT)
-   $(call gb_Helper_execute,saxparser $* `cygpath -m $` $@ \
-   $(my_file)`cygpath -m 
$(WORKDIR)/CustomTarget/i18npool/source/localedata/saxparser.rdb` `cygpath -m 
$(OUTDIR)/bin/types.rdb` \
-   -env:LO_LIB_DIR=$(my_file)`cygpath -m $(OUTDIR)/bin`)
+   $(call gb_Helper_execute,saxparser $* `cygpath -m $` $@ 
$(my_file)`cygpath -m 
$(WORKDIR)/CustomTarget/i18npool/source/localedata/saxparser.rdb` `cygpath -m 
$(OUTDIR)/bin/types.rdb` -env:LO_LIB_DIR=$(my_file)`cygpath -m $(OUTDIR)/bin`)
 else
 localedata_%_invis.cxx : $(realpath 
$(SRC_ROOT)/i18npool/source/localedata/data)/%.xml saxparser.rdb \
$(OUTDIR_FOR_BUILD)/bin/saxparser$(gb_Executable_EXT_for_build)
-   $(call gb_Helper_execute,saxparser $* $ $@ \
-   
$(my_file)$(WORKDIR_FOR_BUILD)/CustomTarget/i18npool/source/localedata/saxparser.rdb
 $(OUTDIR_FOR_BUILD)/bin/types.rdb \
-   -env:LO_LIB_DIR=$(my_file)$(OUTDIR_FOR_BUILD)/lib)
+   $(call gb_Helper_execute,saxparser $* $ $@ 
$(my_file)$(WORKDIR_FOR_BUILD)/CustomTarget/i18npool/source/localedata/saxparser.rdb
 $(OUTDIR_FOR_BUILD)/bin/types.rdb 
-env:LO_LIB_DIR=$(my_file)$(OUTDIR_FOR_BUILD)/lib)
 endif
 
 saxparser.rdb : saxparser.input
diff --git a/solenv/gbuild/Helper.mk b/solenv/gbuild/Helper.mk
index 881aed9..e27d2ee 100644
--- a/solenv/gbuild/Helper.mk
+++ b/solenv/gbuild/Helper.mk
@@ -165,7 +165,7 @@ gb_StaticLibrary_$(1) += $(2)
 endef
 
 define gb_Helper_execute
-$(call gb_Helper_set_ld_path) $(OUTDIR_FOR_BUILD)/bin/$(1)
+$(gb_Helper_set_ld_path) $(OUTDIR_FOR_BUILD)/bin/$(1)
 endef
 
 # gb_Helper_OUTDIRLIBDIR is set by the platform to the path the dynamic linker 
need to use
diff --git a/solenv/gbuild/platform/WNT_INTEL_MSC.mk 
b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
index 5f8fb1c..809d83c 100644
--- a/solenv/gbuild/platform/WNT_INTEL_MSC.mk
+++ b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
@@ -256,7 +256,7 @@ R=$(gb_Helper_REPODIR_NATIVE)  $(subst 
$(REPODIR)/,$$R/,$(subst $(gb_Helper_RE
 $(subst $(REPODIR)/,$$R/,$(subst $(SRCDIR)/,$$S/,$(subst 
$(OUTDIR)/,$$O/,$(subst $(WORKDIR)/,$$W/,$(subst 
$(gb_Helper_REPODIR_NATIVE)/,$$R/,$(subst 
$(gb_Helper_SRCDIR_NATIVE)/,$$S/,$(subst 
$(gb_Helper_OUTDIR_NATIVE)/,$$O/,$(subst 
$(gb_Helper_WORKDIR_NATIVE)/,$$W/,$(1)
 endef
 
-gb_Helper_set_ld_path := PATH=$${PATH}:$(OUTDIR)/bin
+gb_Helper_set_ld_path := PATH=\$${PATH}:$(OUTDIR)/bin\
 
 # convert parameters filesystem root to native notation
 # does some real work only on windows, make sure not to
diff --git a/solenv/gbuild/platform/com_GCC_defs.mk 
b/solenv/gbuild/platform/com_GCC_defs.mk
index 03ac2a8..c154a7a 100644
--- a/solenv/gbuild/platform/com_GCC_defs.mk
+++ b/solenv/gbuild/platform/com_GCC_defs.mk
@@ -144,7 +144,7 @@ else
 gb_Helper_LIBRARY_PATH_VAR := LD_LIBRARY_PATH
 endif
 
-gb_Helper_set_ld_path := $(gb_Helper_LIBRARY_PATH_VAR)=$(OUTDIR_FOR_BUILD)/lib
+gb_Helper_set_ld_path := 
$(gb_Helper_LIBRARY_PATH_VAR)=\$(OUTDIR_FOR_BUILD)/lib\
 
 # $(1): list of directory pathnames to append at the end of the ld path
 define gb_Helper_extend_ld_path
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-12-05 Thread Eike Rathke
 i18npool/source/localedata/data/pt_PT.xml |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 04e03814d06846ba3b805230d9320fa9fb706ce1
Author: Sérgio Marques smarque...@gmail.com
Date:   Mon Dec 5 17:23:35 2011 +0100

corrected [pt-PT] date formats

diff --git a/i18npool/source/localedata/data/pt_PT.xml 
b/i18npool/source/localedata/data/pt_PT.xml
index e65e9ef..0bdb50f 100644
--- a/i18npool/source/localedata/data/pt_PT.xml
+++ b/i18npool/source/localedata/data/pt_PT.xml
@@ -96,11 +96,11 @@
 DefaultName/DefaultName
 /FormatElement
 FormatElement msgid=DateFormatskey16 default=false type=long 
usage=DATE formatindex=24
-FormatCodeD.MMM./FormatCode
+FormatCodeD. MMM de /FormatCode
 DefaultName/DefaultName
 /FormatElement
 FormatElement msgid=DateFormatskey17 default=false type=long 
usage=DATE formatindex=26
-FormatCodeD../FormatCode
+FormatCodeD.  de /FormatCode
 DefaultName/DefaultName
 /FormatElement
 FormatElement msgid=DateFormatskey18 default=false type=short 
usage=DATE formatindex=31
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-11-28 Thread Thorsten Behrens
 i18npool/source/localedata/data/fi_FI.xml |  134 --
 1 file changed, 129 insertions(+), 5 deletions(-)

New commits:
commit 227eef01b8fc343fd51f4d6a628dedbbc311c68c
Author: Harri Pitkänen hatap...@iki.fi
Date:   Sun Nov 27 19:01:52 2011 +0200

Add genitive and partitive month names for fi_FI locale

Add genitive and partitive month names and remove hardcoded case
suffixes from predefined date formats. One format incorrectly
had case suffixes added to abbreviated month names.

diff --git a/i18npool/source/localedata/data/fi_FI.xml 
b/i18npool/source/localedata/data/fi_FI.xml
index 1f7747d..7980be9 100644
--- a/i18npool/source/localedata/data/fi_FI.xml
+++ b/i18npool/source/localedata/data/fi_FI.xml
@@ -87,7 +87,7 @@
   FormatCodeP.K./FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey9 default=true type=long 
usage=DATE formatindex=19
-  FormatCodeP. ta /FormatCode
+  FormatCodeP.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey8 default=true type=medium 
usage=DATE formatindex=20
   FormatCodePP.KK.VV/FormatCode
@@ -105,22 +105,22 @@
   FormatCodeP. KKK. /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey12 default=false type=long 
usage=DATE formatindex=25
-  FormatCodeP. ta /FormatCode
+  FormatCodeP.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey17 default=false type=long 
usage=DATE formatindex=26
   FormatCodeP.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey13 default=false type=long 
usage=DATE formatindex=27
-  FormatCodeNN P. KKKta VV/FormatCode
+  FormatCodeNN P. KKK VV/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey2 default=false type=medium 
usage=DATE formatindex=28
   FormatCodeNN PP. KKK VV/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey14 default=false type=long 
usage=DATE formatindex=29
-  FormatCodeNN P. ta /FormatCode
+  FormatCodeNN P.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey15 default=false type=long 
usage=DATE formatindex=30
-  FormatCodeP. ta /FormatCode
+  FormatCodeP.  /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey18 default=false type=short 
usage=DATE formatindex=31
   FormatCodeKK-PP/FormatCode
@@ -286,6 +286,130 @@
   DefaultFullNamejoulukuu/DefaultFullName
 /Month
   /MonthsOfYear
+  GenitiveMonths
+Month
+  MonthIDjan/MonthID
+  DefaultAbbrvNametammi/DefaultAbbrvName
+  DefaultFullNametammikuun/DefaultFullName
+/Month
+Month
+  MonthIDfeb/MonthID
+  DefaultAbbrvNamehelmi/DefaultAbbrvName
+  DefaultFullNamehelmikuun/DefaultFullName
+/Month
+Month
+  MonthIDmar/MonthID
+  DefaultAbbrvNamemaalis/DefaultAbbrvName
+  DefaultFullNamemaaliskuun/DefaultFullName
+/Month
+Month
+  MonthIDapr/MonthID
+  DefaultAbbrvNamehuhti/DefaultAbbrvName
+  DefaultFullNamehuhtikuun/DefaultFullName
+/Month
+Month
+  MonthIDmay/MonthID
+  DefaultAbbrvNametouko/DefaultAbbrvName
+  DefaultFullNametoukokuun/DefaultFullName
+/Month
+Month
+  MonthIDjun/MonthID
+  DefaultAbbrvNamekesä/DefaultAbbrvName
+  DefaultFullNamekesäkuun/DefaultFullName
+/Month
+Month
+  MonthIDjul/MonthID
+  DefaultAbbrvNameheinä/DefaultAbbrvName
+  DefaultFullNameheinäkuun/DefaultFullName
+/Month
+Month
+  MonthIDaug/MonthID
+  DefaultAbbrvNameelo/DefaultAbbrvName
+  DefaultFullNameelokuun/DefaultFullName
+/Month
+Month
+  MonthIDsep/MonthID
+  DefaultAbbrvNamesyys/DefaultAbbrvName
+  DefaultFullNamesyyskuun/DefaultFullName
+/Month
+Month
+  MonthIDoct/MonthID
+  DefaultAbbrvNameloka/DefaultAbbrvName
+  DefaultFullNamelokakuun/DefaultFullName
+/Month
+Month
+  MonthIDnov/MonthID
+  DefaultAbbrvNamemarras/DefaultAbbrvName
+  DefaultFullNamemarraskuun/DefaultFullName
+/Month
+Month
+  MonthIDdec/MonthID
+  DefaultAbbrvNamejoulu/DefaultAbbrvName
+  DefaultFullNamejoulukuun/DefaultFullName
+/Month
+  /GenitiveMonths
+  PartitiveMonths
+Month
+  MonthIDjan/MonthID
+  DefaultAbbrvNametammi/DefaultAbbrvName
+  DefaultFullNametammikuuta/DefaultFullName
+/Month
+Month
+  MonthIDfeb/MonthID
+  DefaultAbbrvNamehelmi/DefaultAbbrvName
+  DefaultFullNamehelmikuuta/DefaultFullName
+/Month
+Month
+  MonthIDmar/MonthID
+  

[Libreoffice-commits] .: i18npool/source

2011-11-28 Thread Eike Rathke
 i18npool/source/localedata/data/ru_RU.xml |   62 ++
 1 file changed, 62 insertions(+)

New commits:
commit c01ce861aced958302087117a5c5019d420b9d52
Author: Serg Bormant borm...@gmail.com
Date:   Mon Nov 28 17:18:10 2011 +0100

added [ru-RU] genitive case month names

diff --git a/i18npool/source/localedata/data/ru_RU.xml 
b/i18npool/source/localedata/data/ru_RU.xml
index 17405f6..fd64844 100644
--- a/i18npool/source/localedata/data/ru_RU.xml
+++ b/i18npool/source/localedata/data/ru_RU.xml
@@ -285,6 +285,68 @@
   DefaultFullNameДекабрь/DefaultFullName
 /Month
   /MonthsOfYear
+  GenitiveMonths
+Month
+  MonthIDjan/MonthID
+  DefaultAbbrvNameянв/DefaultAbbrvName
+  DefaultFullNameянваря/DefaultFullName
+/Month
+Month
+  MonthIDfeb/MonthID
+  DefaultAbbrvNameфев/DefaultAbbrvName
+  DefaultFullNameфевраля/DefaultFullName
+/Month
+Month
+  MonthIDmar/MonthID
+  DefaultAbbrvNameмар/DefaultAbbrvName
+  DefaultFullNameмарта/DefaultFullName
+/Month
+Month
+  MonthIDapr/MonthID
+  DefaultAbbrvNameапр/DefaultAbbrvName
+  DefaultFullNameапреля/DefaultFullName
+/Month
+Month
+  MonthIDmay/MonthID
+  DefaultAbbrvNameмай/DefaultAbbrvName
+  DefaultFullNameмая/DefaultFullName
+/Month
+Month
+  MonthIDjun/MonthID
+  DefaultAbbrvNameиюн/DefaultAbbrvName
+  DefaultFullNameиюня/DefaultFullName
+/Month
+Month
+  MonthIDjul/MonthID
+  DefaultAbbrvNameиюл/DefaultAbbrvName
+  DefaultFullNameиюля/DefaultFullName
+/Month
+Month
+  MonthIDaug/MonthID
+  DefaultAbbrvNameавг/DefaultAbbrvName
+  DefaultFullNameавгуста/DefaultFullName
+/Month
+Month
+  MonthIDsep/MonthID
+  DefaultAbbrvNameсен/DefaultAbbrvName
+  DefaultFullNameсентября/DefaultFullName
+/Month
+Month
+  MonthIDoct/MonthID
+  DefaultAbbrvNameокт/DefaultAbbrvName
+  DefaultFullNameоктября/DefaultFullName
+/Month
+Month
+  MonthIDnov/MonthID
+  DefaultAbbrvNameноя/DefaultAbbrvName
+  DefaultFullNameноября/DefaultFullName
+/Month
+Month
+  MonthIDdec/MonthID
+  DefaultAbbrvNameдек/DefaultAbbrvName
+  DefaultFullNameдекабря/DefaultFullName
+/Month
+  /GenitiveMonths
   Eras
 Era
   EraIDbc/EraID
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-11-28 Thread Eike Rathke
 i18npool/source/localedata/data/ast_ES.xml |   36 ++---
 1 file changed, 18 insertions(+), 18 deletions(-)

New commits:
commit 56a6704509bd24ac699d9ee9e4c430225f1b07cd
Author: Xuacu Saturio xuacu...@gmail.com
Date:   Mon Nov 28 17:34:52 2011 +0100

changed [ast-ES] date and currency formats

diff --git a/i18npool/source/localedata/data/ast_ES.xml 
b/i18npool/source/localedata/data/ast_ES.xml
index 1c2b5e5..e83257d 100644
--- a/i18npool/source/localedata/data/ast_ES.xml
+++ b/i18npool/source/localedata/data/ast_ES.xml
@@ -21,7 +21,7 @@
   ListSeparator;/ListSeparator
   LongDateDayOfWeekSeparator, /LongDateDayOfWeekSeparator
   LongDateDaySeparator /LongDateDaySeparator
-  LongDateMonthSeparator /LongDateMonthSeparator
+  LongDateMonthSeparator de /LongDateMonthSeparator
   LongDateYearSeparator /LongDateYearSeparator
 /Separators
 Markers
@@ -66,28 +66,28 @@
   FormatCode0,00%/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey1 default=true type=short 
usage=CURRENCY formatindex=12
-  FormatCode[CURRENCY]#.##0;-[CURRENCY]#.##0/FormatCode
+  FormatCode#.##0[CURRENCY];-#.##0[CURRENCY]/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey2 default=false type=medium 
usage=CURRENCY formatindex=13
-  FormatCode[CURRENCY]#.##0,00;-[CURRENCY]#.##0,00/FormatCode
+  FormatCode#.##0,00[CURRENCY];-#.##0,00[CURRENCY]/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey3 default=false type=medium 
usage=CURRENCY formatindex=14
-  FormatCode[CURRENCY]#.##0;[RED]-[CURRENCY]#.##0/FormatCode
+  FormatCode#.##0[CURRENCY];[RED]-#.##0[CURRENCY]/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey4 default=true type=medium 
usage=CURRENCY formatindex=15
-  FormatCode[CURRENCY]#.##0,00;[RED]-[CURRENCY]#.##0,00/FormatCode
+  FormatCode#.##0,00[CURRENCY];[RED]-#.##0,00[CURRENCY]/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey5 default=false type=medium 
usage=CURRENCY formatindex=16
   FormatCodeCCC#.##0,00/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey6 default=false type=medium 
usage=CURRENCY formatindex=17
-  FormatCode[CURRENCY]#.##0,--;[RED]-[CURRENCY]#.##0,--/FormatCode
+  FormatCode#.##0,--[CURRENCY];[RED]-#.##0,--[CURRENCY]/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey11 default=true type=short 
usage=DATE formatindex=18
   FormatCodeD/MM/YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey14 default=true type=long 
usage=DATE formatindex=19
-  FormatCodeDD,  /FormatCode
+  FormatCodeDD  de /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey6 default=true type=medium 
usage=DATE formatindex=20
   FormatCodeDD/MM/YY/FormatCode
@@ -96,34 +96,34 @@
   FormatCodeDD/MM//FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey15 default=false type=long 
usage=DATE formatindex=22
-  FormatCodeD, MMM YY/FormatCode
+  FormatCodeD MMM YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey16 default=false type=long 
usage=DATE formatindex=23
-  FormatCodeD, MMM /FormatCode
+  FormatCodeD MMM de /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey21 default=false type=long 
usage=DATE formatindex=24
-  FormatCodeD, MMM /FormatCode
+  FormatCodeD MMM de /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey17 default=false type=long 
usage=DATE formatindex=25
-  FormatCodeD,  /FormatCode
+  FormatCodeD  de /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey22 default=false type=long 
usage=DATE formatindex=26
-  FormatCodeD,  YY/FormatCode
+  FormatCodeD  YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey10 default=false type=medium 
usage=DATE formatindex=27
   FormatCodeNN, DD/MMM/YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey18 default=false type=long 
usage=DATE formatindex=28
-  FormatCodeNN, D, MMM YY/FormatCode
+  FormatCodeNN, D MMM YY/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey19 default=false type=long 
usage=DATE formatindex=29
-  FormatCodeNN, D,  /FormatCode
+  FormatCodeNN, D  de /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey20 default=false type=long 
usage=DATE formatindex=30
-  FormatCodeD,  /FormatCode
+  FormatCodeD  de /FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey12 default=false type=short 
usage=DATE formatindex=31
-  FormatCodeMM/DD/FormatCode
+  FormatCodeDD/MM/FormatCode
 /FormatElement
 FormatElement msgid=DateFormatskey7 default=false type=medium 
usage=DATE 

[Libreoffice-commits] .: i18npool/source

2011-11-28 Thread Eike Rathke
 i18npool/source/localedata/data/locale.dtd |4 
 1 file changed, 4 insertions(+)

New commits:
commit 281d8e3ab8689a24f21f0dfd6d4de2ca1d46dc34
Author: Eike Rathke er...@redhat.com
Date:   Mon Nov 28 20:03:14 2011 +0100

non-preset formatindex=... values must be =50

Explicitly mention that formatindex=... values for formats defined
additionally to the preset range must be =50 and unique within a
locale.

diff --git a/i18npool/source/localedata/data/locale.dtd 
b/i18npool/source/localedata/data/locale.dtd
index ff88bfd..aca66e5 100644
--- a/i18npool/source/localedata/data/locale.dtd
+++ b/i18npool/source/localedata/data/locale.dtd
@@ -198,6 +198,10 @@
 This isn't necessary to be technically correct and isn't done in many
 locales yet, but will certainly help.
 
+If you want to define yet more formats than the preset and reserved
+0..49 range that's fine, only make sure those formatindex=... values
+are each =50 and all values are unique within one locale.
+
 Of usage=FIXED_NUMBER:
 formatindex=0 MUST be the format containing the 'General' keyword.
 The keyword itself may be localized, it is good practice though to
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-11-28 Thread Eike Rathke
 i18npool/source/localedata/data/gd_GB.xml |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ceb55cd688cebede8cef8408540019fe54528869
Author: Michael Bauer f...@akerbeltz.org
Date:   Mon Nov 28 20:37:54 2011 +0100

[gd-GB] partitive vs genitive case month names

diff --git a/i18npool/source/localedata/data/gd_GB.xml 
b/i18npool/source/localedata/data/gd_GB.xml
index b08f61e..095cbe6 100644
--- a/i18npool/source/localedata/data/gd_GB.xml
+++ b/i18npool/source/localedata/data/gd_GB.xml
@@ -347,7 +347,7 @@
 DefaultFullNameDùbhlachd/DefaultFullName
 /Month
 /MonthsOfYear
-GenitiveMonths
+PartitiveMonths
 Month
 MonthIDjan/MonthID
 DefaultAbbrvNameFaoi/DefaultAbbrvName
@@ -408,7 +408,7 @@
 DefaultAbbrvNameDùbh/DefaultAbbrvName
 DefaultFullNamedhen Dùbhlachd/DefaultFullName
 /Month
-/GenitiveMonths
+/PartitiveMonths
 Eras
 Era
 EraIDbc/EraID
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-11-25 Thread Eike Rathke
 i18npool/source/localedata/LocaleNode.cxx |   44 +++---
 i18npool/source/localedata/LocaleNode.hxx |3 ++
 i18npool/source/localedata/data/ga_IE.xml |4 +-
 i18npool/source/localedata/data/my_MM.xml |7 
 i18npool/source/localedata/data/wa_BE.xml |2 -
 5 files changed, 53 insertions(+), 7 deletions(-)

New commits:
commit 4e34d8fd5b64a18dd17faf4ed4d603648bab8311
Author: Eike Rathke er...@redhat.com
Date:   Fri Nov 25 19:37:35 2011 +0100

added check if locale data's usedInCompatibleFormatCodes currency is really 
used there

and fixed the cases discovered by the check ...

diff --git a/i18npool/source/localedata/LocaleNode.cxx 
b/i18npool/source/localedata/LocaleNode.cxx
index 8d7d1a3..88c26b5 100644
--- a/i18npool/source/localedata/LocaleNode.cxx
+++ b/i18npool/source/localedata/LocaleNode.cxx
@@ -337,6 +337,12 @@ void LocaleNode::incErrorStr( const char* pStr, const 
::rtl::OUString rVal ) co
 fprintf( stderr, prepareErrorFormat( pStr, : %s), OSTR( rVal));
 }
 
+void LocaleNode::incErrorStrStr( const char* pStr, const ::rtl::OUString 
rVal1, const ::rtl::OUString rVal2 ) const
+{
+++nError;
+fprintf( stderr, prepareErrorFormat( pStr, : %s %s), OSTR( rVal1), OSTR( 
rVal2));
+}
+
 void LCInfoNode::generateCode (const OFileWriter of) const
 {
 
@@ -590,13 +596,17 @@ void LCCTYPENode::generateCode (const OFileWriter of) 
const
 }
 
 
+static OUString sTheCompatibleCurrency;
+
 sal_Int16 LCFormatNode::mnSection = 0;
 sal_Int16 LCFormatNode::mnFormats = 0;
 
 void LCFormatNode::generateCode (const OFileWriter of) const
 {
 OUString str;
-if (mnSection = 2)
+if (mnSection == 0)
+sTheCompatibleCurrency = OUString();
+else if (mnSection = 2)
 incError(more than 2 LC_FORMAT sections);
 OUString strFrom( getAttr().getValueByName(replaceFrom));
 of.writeParameter(replaceFrom, strFrom, mnSection);
@@ -607,6 +617,13 @@ void LCFormatNode::generateCode (const OFileWriter of) 
const
 if (str.endsWithIgnoreAsciiCaseAsciiL( -], 6))
 incErrorStr(replaceTo=\%s\ needs  to be adapted to the real 
LangID value., str);
 of.writeParameter(replaceTo, str, mnSection);
+// Remember the currency symbol if present.
+if (str.indexOfAsciiL( [$, 2) == 0)
+{
+sal_Int32 nHyphen = str.indexOf( '-');
+if (nHyphen = 3)
+sTheCompatibleCurrency = str.copy( 2, nHyphen - 2);
+}
 ::rtl::OUString useLocale =   getAttr().getValueByName(ref);
 if (useLocale.getLength()  0) {
 switch (mnSection)
@@ -710,14 +727,27 @@ void LCFormatNode::generateCode (const OFileWriter of) 
const
 }
 }
 break;
-// Currency formats should be something like [C]###0;-[C]###0
-// and not parenthesized [C]###0;([C]###0) if not en_US.
+case cssi::NumberFormatIndex::CURRENCY_1000DEC2 :
+// Remember the currency symbol if present.
+{
+sal_Int32 nStart;
+if (sTheCompatibleCurrency.isEmpty() 
+((nStart = n-getValue().indexOfAsciiL( [$, 
2)) = 0))
+{
+OUString aCode( n-getValue());
+sal_Int32 nHyphen = aCode.indexOf( '-', nStart);
+if (nHyphen = nStart + 3)
+sTheCompatibleCurrency = aCode.copy( nStart + 
2, nHyphen - nStart - 2);
+}
+}
+// fallthru
 case cssi::NumberFormatIndex::CURRENCY_1000INT :
 case cssi::NumberFormatIndex::CURRENCY_1000INT_RED :
-case cssi::NumberFormatIndex::CURRENCY_1000DEC2 :
 case cssi::NumberFormatIndex::CURRENCY_1000DEC2_RED :
 case cssi::NumberFormatIndex::CURRENCY_1000DEC2_CCC :
 case cssi::NumberFormatIndex::CURRENCY_1000DEC2_DASHED :
+// Currency formats should be something like 
[C]###0;-[C]###0
+// and not parenthesized [C]###0;([C]###0) if not en_US.
 if (strcmp( of.getLocale(), en_US) != 0)
 {
 OUString aCode( n-getValue());
@@ -1549,6 +1579,12 @@ void LCCurrencyNode :: generateCode (const OFileWriter 
of) const
 incError( CurrencyID is not ISO 4217);
 str = currencyNode - findNode (CurrencySymbol) - getValue();
 of.writeParameter(currencySymbol, str, nbOfCurrencies);
+// Check if this currency really is the one used in number format 
+// codes. In case of ref=... mechanisms it may be that TheCurrency 
+// couldn't had been determined from the current locale (i.e. is 
+// empty), silently assume the referred locale has things right.
+if (bCompatible  

[Libreoffice-commits] .: i18npool/source

2011-11-23 Thread Eike Rathke
 i18npool/source/localedata/data/gd_GB.xml |  274 +-
 1 file changed, 194 insertions(+), 80 deletions(-)

New commits:
commit d197a4d99ccdc2e7971363b6c5a7004f714a6238
Author: Michael Bauer f...@akerbeltz.org
Date:   Wed Nov 23 12:47:40 2011 +0100

added Gaelic (Scotland) [gd-GB] genitive case month names

diff --git a/i18npool/source/localedata/data/gd_GB.xml 
b/i18npool/source/localedata/data/gd_GB.xml
index 0a1c64a..b08f61e 100644
--- a/i18npool/source/localedata/data/gd_GB.xml
+++ b/i18npool/source/localedata/data/gd_GB.xml
@@ -19,8 +19,8 @@
 TimeSeparator:/TimeSeparator
 Time100SecSeparator./Time100SecSeparator
 ListSeparator;/ListSeparator
-LongDateDayOfWeekSeparator, /LongDateDayOfWeekSeparator
-LongDateDaySeparator, /LongDateDaySeparator
+LongDateDayOfWeekSeparator /LongDateDayOfWeekSeparator
+LongDateDaySeparator /LongDateDaySeparator
 LongDateMonthSeparator /LongDateMonthSeparator
 LongDateYearSeparator /LongDateYearSeparator
 /Separators
@@ -32,148 +32,200 @@
 /Markers
 TimeAMm/TimeAM
 TimePMf/TimePM
-MeasurementSystemmetric/MeasurementSystem
+MeasurementSystemMetric/MeasurementSystem
 /LC_CTYPE
 LC_FORMAT replaceFrom=[CURRENCY] replaceTo=[$£-43C]
-FormatElement msgid=FixedFormatskey1 default=true type=medium 
usage=FIXED_NUMBER formatindex=0
+FormatElement msgid=FixedFormatskey1 default=true type=medium 
usage=FIXED_NUMBER  formatindex=0
 FormatCodeGeneral/FormatCode
+DefaultName/DefaultName
 /FormatElement
-FormatElement msgid=FixedFormatskey2 default=true type=short 
usage=FIXED_NUMBER formatindex=1
+FormatElement msgid=FixedFormatskey2 default=true type=short 
usage=FIXED_NUMBER  formatindex=1
 FormatCode0/FormatCode
+DefaultName/DefaultName
 /FormatElement
-FormatElement msgid=FixedFormatskey3 default=false type=medium 
usage=FIXED_NUMBER formatindex=2
+FormatElement msgid=FixedFormatskey3 default=false type=medium 
usage=FIXED_NUMBER  formatindex=2
 FormatCode0.00/FormatCode
+DefaultName/DefaultName
 /FormatElement
-FormatElement msgid=FixedFormatskey4 default=false type=short 
usage=FIXED_NUMBER formatindex=3
+FormatElement msgid=FixedFormatskey4 default=false type=short 
usage=FIXED_NUMBER  formatindex=3
 FormatCode#,##0/FormatCode
+DefaultName/DefaultName
 /FormatElement
-FormatElement msgid=FixedFormatskey5 default=false type=medium 
usage=FIXED_NUMBER formatindex=4
+FormatElement msgid=FixedFormatskey5 default=false type=medium 
usage=FIXED_NUMBER  formatindex=4
 FormatCode#,##0.00/FormatCode
+DefaultName/DefaultName
 /FormatElement
-FormatElement msgid=FixedFormatskey6 default=false type=medium 
usage=FIXED_NUMBER formatindex=5
+FormatElement msgid=FixedFormatskey6 default=false type=medium 
usage=FIXED_NUMBER  formatindex=5
 FormatCode#,###.00/FormatCode
-/FormatElement
-FormatElement msgid=ScientificFormatskey1 default=true type=medium 
usage=SCIENTIFIC_NUMBER formatindex=6
-FormatCode0.00E+00/FormatCode
-/FormatElement
-FormatElement msgid=ScientificFormatskey2 default=false type=medium 
usage=SCIENTIFIC_NUMBER formatindex=7
-FormatCode0.00E+000/FormatCode
-/FormatElement
-FormatElement msgid=PercentFormatskey1 default=true type=short 
usage=PERCENT_NUMBER formatindex=8
-FormatCode0%/FormatCode
-/FormatElement
-FormatElement msgid=PercentFormatskey2 default=true type=long 
usage=PERCENT_NUMBER formatindex=9
-FormatCode0.00%/FormatCode
-/FormatElement
-FormatElement msgid=CurrencyFormatskey1 default=true type=short 
usage=CURRENCY formatindex=12
+DefaultName/DefaultName
+/FormatElement
+ FormatElement msgid=FixedFormatskey7 default=false type=short 
usage=FIXED_NUMBER formatindex=70
+ FormatCode#,##0_);(#,##0)/FormatCode
+ DefaultName/DefaultName
+ /FormatElement
+ FormatElement msgid=FixedFormatskey8 default=false type=medium 
usage=FIXED_NUMBER formatindex=71
+ FormatCode#,##0.00_);(#,##0.00)/FormatCode
+ DefaultName/DefaultName
+ /FormatElement
+FormatElement msgid=CurrencyFormatskey1 default=true type=short 
usage=CURRENCY  formatindex=12
 FormatCode[CURRENCY]#,##0;-[CURRENCY]#,##0/FormatCode
+DefaultName/DefaultName
 /FormatElement
-FormatElement msgid=CurrencyFormatskey2 default=false type=medium 
usage=CURRENCY formatindex=13
+FormatElement msgid=CurrencyFormatskey2 default=false type=medium 
usage=CURRENCY  formatindex=13
 FormatCode[CURRENCY]#,##0.00;-[CURRENCY]#,##0.00/FormatCode
+DefaultName/DefaultName
 /FormatElement
-FormatElement msgid=CurrencyFormatskey3 default=false type=medium 
usage=CURRENCY formatindex=14
+FormatElement msgid=CurrencyFormatskey3 default=false type=medium 
usage=CURRENCY  formatindex=14
 FormatCode[CURRENCY]#,##0;[RED]-[CURRENCY]#,##0/FormatCode
+DefaultName/DefaultName
 /FormatElement
-FormatElement msgid=CurrencyFormatskey4 default=true type=medium 
usage=CURRENCY formatindex=15
+FormatElement msgid=CurrencyFormatskey4 default=true type=medium 
usage=CURRENCY  formatindex=15
 FormatCode[CURRENCY]#,##0.00;[RED]-[CURRENCY]#,##0.00/FormatCode
+DefaultName/DefaultName
 /FormatElement
-FormatElement 

[Libreoffice-commits] .: i18npool/source

2011-11-23 Thread Eike Rathke
 i18npool/source/localedata/data/ast_ES.xml |  150 -
 1 file changed, 106 insertions(+), 44 deletions(-)

New commits:
commit cc2ec946ef4a3d4c4e86cfb17f3a890b2b2ad077
Author: Xuacu Saturio xuacu...@gmail.com
Date:   Wed Nov 23 12:57:55 2011 +0100

added Asturian [ast-ES] genitive case month names

diff --git a/i18npool/source/localedata/data/ast_ES.xml 
b/i18npool/source/localedata/data/ast_ES.xml
index 05c6360..1c2b5e5 100644
--- a/i18npool/source/localedata/data/ast_ES.xml
+++ b/i18npool/source/localedata/data/ast_ES.xml
@@ -20,7 +20,7 @@
   Time100SecSeparator,/Time100SecSeparator
   ListSeparator;/ListSeparator
   LongDateDayOfWeekSeparator, /LongDateDayOfWeekSeparator
-  LongDateDaySeparator, /LongDateDaySeparator
+  LongDateDaySeparator /LongDateDaySeparator
   LongDateMonthSeparator /LongDateMonthSeparator
   LongDateYearSeparator /LongDateYearSeparator
 /Separators
@@ -200,102 +200,164 @@
   DaysOfWeek
 Day
   DayIDsun/DayID
-  DefaultAbbrvNameDom/DefaultAbbrvName
-  DefaultFullNameDomingu/DefaultFullName
+  DefaultAbbrvNamedom/DefaultAbbrvName
+  DefaultFullNamedomingu/DefaultFullName
 /Day
 Day
   DayIDmon/DayID
-  DefaultAbbrvNameLlu/DefaultAbbrvName
-  DefaultFullNameLlunes/DefaultFullName
+  DefaultAbbrvNamellu/DefaultAbbrvName
+  DefaultFullNamellunes/DefaultFullName
 /Day
 Day
   DayIDtue/DayID
-  DefaultAbbrvNameMar/DefaultAbbrvName
-  DefaultFullNameMartes/DefaultFullName
+  DefaultAbbrvNamemar/DefaultAbbrvName
+  DefaultFullNamemartes/DefaultFullName
 /Day
 Day
   DayIDwed/DayID
-  DefaultAbbrvNameMié/DefaultAbbrvName
-  DefaultFullNameMiércoles/DefaultFullName
+  DefaultAbbrvNamemié/DefaultAbbrvName
+  DefaultFullNamemiércoles/DefaultFullName
 /Day
 Day
   DayIDthu/DayID
-  DefaultAbbrvNameXue/DefaultAbbrvName
-  DefaultFullNameXueves/DefaultFullName
+  DefaultAbbrvNamexue/DefaultAbbrvName
+  DefaultFullNamexueves/DefaultFullName
 /Day
 Day
   DayIDfri/DayID
-  DefaultAbbrvNameVie/DefaultAbbrvName
-  DefaultFullNameVienres/DefaultFullName
+  DefaultAbbrvNamevie/DefaultAbbrvName
+  DefaultFullNamevienres/DefaultFullName
 /Day
 Day
   DayIDsat/DayID
-  DefaultAbbrvNameSáb/DefaultAbbrvName
-  DefaultFullNameSábadu/DefaultFullName
+  DefaultAbbrvNamesáb/DefaultAbbrvName
+  DefaultFullNamesábadu/DefaultFullName
 /Day
   /DaysOfWeek
   MonthsOfYear
 Month
   MonthIDjan/MonthID
-  DefaultAbbrvNameXin/DefaultAbbrvName
-  DefaultFullNameXineru/DefaultFullName
+  DefaultAbbrvNamexin/DefaultAbbrvName
+  DefaultFullNamexineru/DefaultFullName
 /Month
 Month
   MonthIDfeb/MonthID
-  DefaultAbbrvNameFeb/DefaultAbbrvName
-  DefaultFullNameFebreru/DefaultFullName
+  DefaultAbbrvNamefeb/DefaultAbbrvName
+  DefaultFullNamefebreru/DefaultFullName
 /Month
 Month
   MonthIDmar/MonthID
-  DefaultAbbrvNameMar/DefaultAbbrvName
-  DefaultFullNameMarzu/DefaultFullName
+  DefaultAbbrvNamemar/DefaultAbbrvName
+  DefaultFullNamemarzu/DefaultFullName
 /Month
 Month
   MonthIDapr/MonthID
-  DefaultAbbrvNameAbr/DefaultAbbrvName
-  DefaultFullNameAbril/DefaultFullName
+  DefaultAbbrvNameabr/DefaultAbbrvName
+  DefaultFullNameabril/DefaultFullName
 /Month
 Month
   MonthIDmay/MonthID
-  DefaultAbbrvNameMay/DefaultAbbrvName
-  DefaultFullNameMayu/DefaultFullName
+  DefaultAbbrvNamemay/DefaultAbbrvName
+  DefaultFullNamemayu/DefaultFullName
 /Month
 Month
   MonthIDjun/MonthID
-  DefaultAbbrvNameXun/DefaultAbbrvName
-  DefaultFullNameXunu/DefaultFullName
+  DefaultAbbrvNamexun/DefaultAbbrvName
+  DefaultFullNamexunu/DefaultFullName
 /Month
 Month
   MonthIDjul/MonthID
-  DefaultAbbrvNameXnt/DefaultAbbrvName
-  DefaultFullNameXunetu/DefaultFullName
+  DefaultAbbrvNamexnt/DefaultAbbrvName
+  DefaultFullNamexunetu/DefaultFullName
 /Month
 Month
   MonthIDaug/MonthID
-  DefaultAbbrvNameAgo/DefaultAbbrvName
-  DefaultFullNameAgostu/DefaultFullName
+  DefaultAbbrvNameago/DefaultAbbrvName
+  DefaultFullNameagostu/DefaultFullName
 /Month
 Month
   MonthIDsep/MonthID
-  DefaultAbbrvNameSet/DefaultAbbrvName
-  DefaultFullNameSetiembre/DefaultFullName
+  

[Libreoffice-commits] .: i18npool/source

2011-11-23 Thread Eike Rathke
 i18npool/source/localedata/data/pt_PT.xml |  102 ++
 1 file changed, 48 insertions(+), 54 deletions(-)

New commits:
commit d3951ad0503a9d1c78570984fd8d483d8fb95a8c
Author: Olivier Hallot olivier.hal...@alta.org.br
Date:   Wed Nov 23 13:52:13 2011 +0100

i18n corrections for pt-PT (dates)

diff --git a/i18npool/source/localedata/data/pt_PT.xml 
b/i18npool/source/localedata/data/pt_PT.xml
index 88e8ed6..df6ce1d 100644
--- a/i18npool/source/localedata/data/pt_PT.xml
+++ b/i18npool/source/localedata/data/pt_PT.xml
@@ -34,7 +34,7 @@
 TimePMPM/TimePM
 MeasurementSystemMetric/MeasurementSystem
 /LC_CTYPE
-LC_FORMAT
+LC_FORMAT replaceFrom=[CURRENCY] replaceTo=[$Esc.-816]
 FormatElement msgid=DateFormatskey1 default=true type=short 
usage=DATE formatindex=18
 FormatCodeDD-MM-/FormatCode
 DefaultName/DefaultName
@@ -179,29 +179,23 @@
 FormatCode#.###,00/FormatCode
 DefaultName/DefaultName
 /FormatElement
-FormatElement msgid=CurrencyFormatskey1 default=true type=short 
usage=CURRENCY  formatindex=12
-FormatCode#.##0 [$Esc.-816];-#.##0 [$Esc.-816]/FormatCode
-DefaultName/DefaultName
+FormatElement msgid=CurrencyFormatskey1 default=true type=short 
usage=CURRENCY formatindex=12
+FormatCode#.##0 [CURRENCY];-#.##0 [CURRENCY]/FormatCode
 /FormatElement
-FormatElement msgid=CurrencyFormatskey2 default=false type=medium 
usage=CURRENCY  formatindex=13
-FormatCode#.##0,00 [$Esc.-816];-#.##0,00 [$Esc.-816]/FormatCode
-DefaultName/DefaultName
+FormatElement msgid=CurrencyFormatskey2 default=false type=medium 
usage=CURRENCY formatindex=13
+FormatCode#.##0,00 [CURRENCY];-#.##0,00 [CURRENCY]/FormatCode
 /FormatElement
-FormatElement msgid=CurrencyFormatskey3 default=false type=medium 
usage=CURRENCY  formatindex=14
-FormatCode#.##0 [$Esc.-816];[RED]-#.##0 [$Esc.-816]/FormatCode
-DefaultName/DefaultName
+FormatElement msgid=CurrencyFormatskey3 default=false type=medium 
usage=CURRENCY formatindex=14
+FormatCode#.##0 [CURRENCY];[RED]-#.##0 [CURRENCY]/FormatCode
 /FormatElement
-FormatElement msgid=CurrencyFormatskey4 default=true type=medium 
usage=CURRENCY  formatindex=15
-FormatCode#.##0,00 [$Esc.-816];[RED]-#.##0,00 [$Esc.-816]/FormatCode
-DefaultName/DefaultName
+FormatElement msgid=CurrencyFormatskey4 default=true type=medium 
usage=CURRENCY formatindex=15
+FormatCode#.##0,00 [CURRENCY];[RED]-#.##0,00 [CURRENCY]/FormatCode
 /FormatElement
-FormatElement msgid=CurrencyFormatskey5 default=false type=medium 
usage=CURRENCY  formatindex=16
+FormatElement msgid=CurrencyFormatskey5 default=false type=medium 
usage=CURRENCY formatindex=16
 FormatCode#.##0,00 CCC/FormatCode
-DefaultName/DefaultName
 /FormatElement
-FormatElement msgid=CurrencyFormatskey6 default=false type=medium 
usage=CURRENCY  formatindex=17
-FormatCode#.##0,-- [$Esc.-816];[RED]-#.##0,-- [$Esc.-816]/FormatCode
-DefaultName/DefaultName
+FormatElement msgid=CurrencyFormatskey6 default=false type=medium 
usage=CURRENCY formatindex=17
+FormatCode#.##0,-- [CURRENCY];[RED]-#.##0,-- [CURRENCY]/FormatCode
 /FormatElement
 FormatElement msgid=PercentFormatskey1 default=true type=short 
usage=PERCENT_NUMBER  formatindex=8
 FormatCode0%/FormatCode
@@ -265,75 +259,75 @@
 MonthsOfYear
 Month
 MonthIDjan/MonthID
-DefaultAbbrvNameJan/DefaultAbbrvName
-DefaultFullNameJaneiro/DefaultFullName
+DefaultAbbrvNamejan/DefaultAbbrvName
+DefaultFullNamejaneiro/DefaultFullName
 /Month
 Month
 MonthIDfeb/MonthID
-DefaultAbbrvNameFev/DefaultAbbrvName
-DefaultFullNameFevereiro/DefaultFullName
+DefaultAbbrvNamefev/DefaultAbbrvName
+DefaultFullNamefevereiro/DefaultFullName
 /Month
 Month
 MonthIDmar/MonthID
-DefaultAbbrvNameMar/DefaultAbbrvName
-DefaultFullNameMarço/DefaultFullName
+DefaultAbbrvNamemar/DefaultAbbrvName
+DefaultFullNamemarço/DefaultFullName
 /Month
 Month
 MonthIDapr/MonthID
-DefaultAbbrvNameAbr/DefaultAbbrvName
-DefaultFullNameAbril/DefaultFullName
+DefaultAbbrvNameabr/DefaultAbbrvName
+DefaultFullNameabril/DefaultFullName
 /Month
 Month
 MonthIDmay/MonthID
-DefaultAbbrvNameMai/DefaultAbbrvName
-DefaultFullNameMaio/DefaultFullName
+DefaultAbbrvNamemai/DefaultAbbrvName
+DefaultFullNamemaio/DefaultFullName
 /Month
 Month
 MonthIDjun/MonthID
-DefaultAbbrvNameJun/DefaultAbbrvName
-DefaultFullNameJunho/DefaultFullName
+DefaultAbbrvNamejun/DefaultAbbrvName
+DefaultFullNamejunho/DefaultFullName
 /Month
 Month
 MonthIDjul/MonthID
-DefaultAbbrvNameJul/DefaultAbbrvName
-DefaultFullNameJulho/DefaultFullName
+DefaultAbbrvNamejul/DefaultAbbrvName
+DefaultFullNamejulho/DefaultFullName
 /Month
 Month
 MonthIDaug/MonthID
-DefaultAbbrvNameAgo/DefaultAbbrvName
-DefaultFullNameAgosto/DefaultFullName
+DefaultAbbrvNameago/DefaultAbbrvName
+DefaultFullNameagosto/DefaultFullName
 /Month
 Month
 MonthIDsep/MonthID
-DefaultAbbrvNameSet/DefaultAbbrvName
-DefaultFullNameSetembro/DefaultFullName
+DefaultAbbrvNameset/DefaultAbbrvName
+DefaultFullNamesetembro/DefaultFullName
 /Month
 Month
 MonthIDoct/MonthID
-DefaultAbbrvNameOut/DefaultAbbrvName

[Libreoffice-commits] .: i18npool/source

2011-11-23 Thread Eike Rathke
 i18npool/source/localedata/data/la_VA.xml |  172 --
 1 file changed, 117 insertions(+), 55 deletions(-)

New commits:
commit 0b00165c300c6fe4cbdc952d49d050121d3d0063
Author: Roman Eisele p...@roman-eisele.de
Date:   Wed Nov 23 21:45:31 2011 +0100

updated Latin [la-VA] locale data

diff --git a/i18npool/source/localedata/data/la_VA.xml 
b/i18npool/source/localedata/data/la_VA.xml
index 693ced4..042e9f4 100644
--- a/i18npool/source/localedata/data/la_VA.xml
+++ b/i18npool/source/localedata/data/la_VA.xml
@@ -30,8 +30,8 @@
   DoubleQuotationStart“/DoubleQuotationStart
   DoubleQuotationEnd”/DoubleQuotationEnd
 /Markers
-TimeAMm./TimeAM
-TimePMp./TimePM
+TimeAMa.m./TimeAM
+TimePMp.m./TimePM
 MeasurementSystemmetric/MeasurementSystem
   /LC_CTYPE
   LC_FORMAT
@@ -182,124 +182,186 @@
 IndexKey phonetic=false default=true 
unoid=alphanumericA-Z/IndexKey
 UnicodeScript0/UnicodeScript
 UnicodeScript1/UnicodeScript
-FollowPageWord e seg./FollowPageWord
-FollowPageWord e segg./FollowPageWord
+FollowPageWord et seq./FollowPageWord
+FollowPageWord et seqq./FollowPageWord
   /LC_INDEX
   LC_CALENDAR
 Calendar unoid=gregorian default=true
   DaysOfWeek
 Day
   DayIDsun/DayID
-  DefaultAbbrvNamedom/DefaultAbbrvName
-  DefaultFullNamedominicus dies/DefaultFullName
+  DefaultAbbrvNameDom/DefaultAbbrvName
+  DefaultFullNameDominicus dies/DefaultFullName
 /Day
 Day
   DayIDmon/DayID
-  DefaultAbbrvNamelun/DefaultAbbrvName
-  DefaultFullNamelunae dies/DefaultFullName
+  DefaultAbbrvNameLun/DefaultAbbrvName
+  DefaultFullNameLunae dies/DefaultFullName
 /Day
 Day
   DayIDtue/DayID
-  DefaultAbbrvNamemar/DefaultAbbrvName
-  DefaultFullNamemartis dies/DefaultFullName
+  DefaultAbbrvNameMar/DefaultAbbrvName
+  DefaultFullNameMartis dies/DefaultFullName
 /Day
 Day
   DayIDwed/DayID
-  DefaultAbbrvNamemer/DefaultAbbrvName
-  DefaultFullNamemercuri dies/DefaultFullName
+  DefaultAbbrvNameMer/DefaultAbbrvName
+  DefaultFullNameMercurii dies/DefaultFullName
 /Day
 Day
   DayIDthu/DayID
-  DefaultAbbrvNamejov/DefaultAbbrvName
-  DefaultFullNamejovis dies/DefaultFullName
+  DefaultAbbrvNameIov/DefaultAbbrvName
+  DefaultFullNameIovis dies/DefaultFullName
 /Day
 Day
   DayIDfri/DayID
-  DefaultAbbrvNameven/DefaultAbbrvName
-  DefaultFullNameveneris dies/DefaultFullName
+  DefaultAbbrvNameVen/DefaultAbbrvName
+  DefaultFullNameVeneris dies/DefaultFullName
 /Day
 Day
   DayIDsat/DayID
-  DefaultAbbrvNamesab/DefaultAbbrvName
-  DefaultFullNamesabbatum/DefaultFullName
+  DefaultAbbrvNameSab/DefaultAbbrvName
+  DefaultFullNameSabbatum/DefaultFullName
 /Day
   /DaysOfWeek
   MonthsOfYear
 Month
   MonthIDjan/MonthID
-  DefaultAbbrvNamejan/DefaultAbbrvName
-  DefaultFullNamejanuarius/DefaultFullName
+  DefaultAbbrvNameIan/DefaultAbbrvName
+  DefaultFullNameIanuarius/DefaultFullName
 /Month
 Month
   MonthIDfeb/MonthID
-  DefaultAbbrvNamefeb/DefaultAbbrvName
-  DefaultFullNamefebruarius/DefaultFullName
+  DefaultAbbrvNameFeb/DefaultAbbrvName
+  DefaultFullNameFebruarius/DefaultFullName
 /Month
 Month
   MonthIDmar/MonthID
-  DefaultAbbrvNamemar/DefaultAbbrvName
-  DefaultFullNamemartius/DefaultFullName
+  DefaultAbbrvNameMar/DefaultAbbrvName
+  DefaultFullNameMartius/DefaultFullName
 /Month
 Month
   MonthIDapr/MonthID
-  DefaultAbbrvNameapr/DefaultAbbrvName
-  DefaultFullNameaprilis/DefaultFullName
+  DefaultAbbrvNameApr/DefaultAbbrvName
+  DefaultFullNameAprilis/DefaultFullName
 /Month
 Month
   MonthIDmay/MonthID
-  DefaultAbbrvNamemai/DefaultAbbrvName
-  DefaultFullNamemaius/DefaultFullName
+  DefaultAbbrvNameMai/DefaultAbbrvName
+  DefaultFullNameMaius/DefaultFullName
 /Month
 Month
   MonthIDjun/MonthID
-  DefaultAbbrvNamejun/DefaultAbbrvName
-  DefaultFullNamejunius/DefaultFullName
+  DefaultAbbrvNameIun/DefaultAbbrvName
+  DefaultFullNameIunius/DefaultFullName
 /Month
 Month
   MonthIDjul/MonthID
-  DefaultAbbrvNamejul/DefaultAbbrvName
-  DefaultFullNamejulius/DefaultFullName
+  DefaultAbbrvNameIul/DefaultAbbrvName
+  DefaultFullNameIulius/DefaultFullName
 /Month
 Month
   MonthIDaug/MonthID
-  DefaultAbbrvNameaug/DefaultAbbrvName
-   

[Libreoffice-commits] .: i18npool/source

2011-11-21 Thread Eike Rathke
 i18npool/source/localedata/Makefile |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 3739278cefa4f604d96fc8c1047de22687e064ed
Author: Eike Rathke er...@redhat.com
Date:   Mon Nov 21 14:12:14 2011 +0100

still cygwin is not unix

diff --git a/i18npool/source/localedata/Makefile 
b/i18npool/source/localedata/Makefile
index 5b899f0..6c3774e 100755
--- a/i18npool/source/localedata/Makefile
+++ b/i18npool/source/localedata/Makefile
@@ -36,13 +36,15 @@ my_components := 
component/sax/source/expatwrap/expwrap.component
 localedata_%.cxx : localedata_%_invis.cxx
sed 's/\(^.*get[^;]*$$\)/SAL_DLLPUBLIC_EXPORT \1/' $  $@
 
-localedata_%_invis.cxx : $(realpath 
$(SRC_ROOT)/i18npool/source/localedata/data)/%.xml saxparser.rdb \
-   $(OUTDIR_FOR_BUILD)/bin/saxparser$(gb_Executable_EXT_for_build)
 ifeq ($(OS_FOR_BUILD),WNT)
+localedata_%_invis.cxx : $(realpath 
$(SRC_ROOT)/i18npool/source/localedata/data)/%.xml saxparser.rdb \
+   $(OUTDIR)/bin/saxparser$(gb_Executable_EXT)
$(gb_Helper_execute)saxparser $* `cygpath -m $` $@ \
$(my_file)`cygpath -m 
$(WORKDIR)/CustomTarget/i18npool/source/localedata/saxparser.rdb` `cygpath -m 
$(OUTDIR)/bin/types.rdb` \
-env:LO_LIB_DIR=$(my_file)`cygpath -m $(OUTDIR)/bin`
 else
+localedata_%_invis.cxx : $(realpath 
$(SRC_ROOT)/i18npool/source/localedata/data)/%.xml saxparser.rdb \
+   $(OUTDIR_FOR_BUILD)/bin/saxparser$(gb_Executable_EXT_for_build)
$(gb_Helper_execute)saxparser $* $ $@ \

$(my_file)$(WORKDIR_FOR_BUILD)/CustomTarget/i18npool/source/localedata/saxparser.rdb
 $(OUTDIR_FOR_BUILD)/bin/types.rdb \
-env:LO_LIB_DIR=$(my_file)$(OUTDIR_FOR_BUILD)/lib
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-11-21 Thread Eike Rathke
 i18npool/source/localedata/data/lt_LT.xml |   64 +-
 1 file changed, 63 insertions(+), 1 deletion(-)

New commits:
commit a422892eee28eb3d299c61bd0510ff951a8ca64f
Author: Modestas Rimkus modestas.rim...@gmail.com
Date:   Mon Nov 21 20:18:41 2011 +0100

added Lithuanian [lt-LT] nominative / genitive case month names

diff --git a/i18npool/source/localedata/data/lt_LT.xml 
b/i18npool/source/localedata/data/lt_LT.xml
index cd4cb0a..99bb042 100644
--- a/i18npool/source/localedata/data/lt_LT.xml
+++ b/i18npool/source/localedata/data/lt_LT.xml
@@ -260,6 +260,68 @@
 Month
   MonthIDjan/MonthID
   DefaultAbbrvNameSau/DefaultAbbrvName
+  DefaultFullNamesausis/DefaultFullName
+/Month
+Month
+  MonthIDfeb/MonthID
+  DefaultAbbrvNameVas/DefaultAbbrvName
+  DefaultFullNamevasaris/DefaultFullName
+/Month
+Month
+  MonthIDmar/MonthID
+  DefaultAbbrvNameKov/DefaultAbbrvName
+  DefaultFullNamekovas/DefaultFullName
+/Month
+Month
+  MonthIDapr/MonthID
+  DefaultAbbrvNameBal/DefaultAbbrvName
+  DefaultFullNamebalandis/DefaultFullName
+/Month
+Month
+  MonthIDmay/MonthID
+  DefaultAbbrvNameGeg/DefaultAbbrvName
+  DefaultFullNamegegužė/DefaultFullName
+/Month
+Month
+  MonthIDjun/MonthID
+  DefaultAbbrvNameBir/DefaultAbbrvName
+  DefaultFullNamebirželis/DefaultFullName
+/Month
+Month
+  MonthIDjul/MonthID
+  DefaultAbbrvNameLie/DefaultAbbrvName
+  DefaultFullNameliepa/DefaultFullName
+/Month
+Month
+  MonthIDaug/MonthID
+  DefaultAbbrvNameRgp/DefaultAbbrvName
+  DefaultFullNamerugpjūtis/DefaultFullName
+/Month
+Month
+  MonthIDsep/MonthID
+  DefaultAbbrvNameRgs/DefaultAbbrvName
+  DefaultFullNamerugsėjis/DefaultFullName
+/Month
+Month
+  MonthIDoct/MonthID
+  DefaultAbbrvNameSpl/DefaultAbbrvName
+  DefaultFullNamespalis/DefaultFullName
+/Month
+Month
+  MonthIDnov/MonthID
+  DefaultAbbrvNameLap/DefaultAbbrvName
+  DefaultFullNamelapkritis/DefaultFullName
+/Month
+Month
+  MonthIDdec/MonthID
+  DefaultAbbrvNameGrd/DefaultAbbrvName
+  DefaultFullNamegruodis/DefaultFullName
+/Month
+  /MonthsOfYear
+  GenitiveMonths
+Month
+  MonthIDjan/MonthID
+  DefaultAbbrvNameSau/DefaultAbbrvName
   DefaultFullNamesausio/DefaultFullName
 /Month
 Month
@@ -317,7 +379,7 @@
   DefaultAbbrvNameGrd/DefaultAbbrvName
   DefaultFullNamegruodžio/DefaultFullName
 /Month
-  /MonthsOfYear
+  /GenitiveMonths
   Eras
 Era
   EraIDbc/EraID
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-11-21 Thread Eike Rathke
 i18npool/source/localedata/data/linkermapfile-check.awk |  105 
 1 file changed, 105 deletions(-)

New commits:
commit 5e429334a9998ba254615077a81adca218f89674
Author: Eike Rathke er...@redhat.com
Date:   Mon Nov 21 20:49:21 2011 +0100

remove obsolete linkermapfile-check.awk

diff --git a/i18npool/source/localedata/data/linkermapfile-check.awk 
b/i18npool/source/localedata/data/linkermapfile-check.awk
deleted file mode 100644
index baa703a..000
--- a/i18npool/source/localedata/data/linkermapfile-check.awk
+++ /dev/null
@@ -1,105 +0,0 @@
-#!/usr/bin/gawk -f
-# Usage: gawk -f linkermapfile-check.awk *.map *.xml
-# Order of *.map *.xml is important, otherwise all symbols are reported to be
-# missing.
-# Checks if all symbols of all locale data are present in the symbol scoping
-# linker mapfiles.  Any output indicates a missing symbol, ../localedata.cxx is
-# grep'ed to indicate the library to which mapfile the symbol should be added.
-# Author: Eike Rathke e...@openoffice.org
-
-BEGIN {
-bAnyMissing = 0
-file = 
-nMap = 0
-nMaps = 0
-nPublics = 0
-sPublic[nPublics++] = getAllCalendars_
-sPublic[nPublics++] = getAllCurrencies_
-sPublic[nPublics++] = getAllFormats0_
-bOptional[nPublics] = 1 # getAllFormats1 most times not present
-sPublic[nPublics++] = getAllFormats1_
-sPublic[nPublics++] = getBreakIteratorRules_
-sPublic[nPublics++] = getCollationOptions_
-sPublic[nPublics++] = getCollatorImplementation_
-sPublic[nPublics++] = getContinuousNumberingLevels_
-sPublic[nPublics++] = getForbiddenCharacters_
-sPublic[nPublics++] = getLCInfo_
-sPublic[nPublics++] = getLocaleItem_
-sPublic[nPublics++] = getOutlineNumberingLevels_
-sPublic[nPublics++] = getReservedWords_
-sPublic[nPublics++] = getSearchOptions_
-sPublic[nPublics++] = getTransliterations_
-sPublic[nPublics++] = getIndexAlgorithm_
-sPublic[nPublics++] = getUnicodeScripts_
-sPublic[nPublics++] = getFollowPageWords_
-}
-
-file != FILENAME {
-file = FILENAME
-if ( file ~ /\.map$/ )
-{
-sMapFile[nMaps] = file
-nMap = nMaps
-++nMaps
-}
-else if ( file ~ /\.xml$/ )
-{
-bOut = 0
-n = split( file, arr, /[:\\\/.]/ )
-locale = arr[n-1]
-for ( i=0; inPublics; ++i )
-{
-symbol = sPublic[i] locale ;
-bFound = 0
-for ( j=0; jnMaps  !bFound; ++j )
-{
-if ( sSymbol[j,symbol] )
-bFound = 1
-}
-if ( !bFound  bOptional[i] )
-{
-print symbol  not present but optional
-bFound = 1
-}
-if ( !bFound )
-{
-if ( !bOut )
-{
-search = \ locale \
-while ( !bOut  (getline ../localedata.cxx)  0 )
-{
-if ( $0 ~ search )
-{
-bOut = 1
-print ../localedata.cxx says this should go into: 
 $0
-}
-}
-close( ../localedata.cxx )
-if ( !bOut )
-print ../localedata.cxx doesn't indicate to which lib 
this belongs to:
-bOut = 1
-}
-print symbol
-}
-}
-if ( bOut)
-{
-printf(\n)
-bAnyMissing = 1
-}
-nextfile
-}
-else
-nextfile
-}
-
-# only reached if .map file encountered, read in symbols
-{
-if ( $1 ~ /;$/ )
-sSymbol[nMap,$1] = 1
-}
-
-END {
-if ( !bAnyMissing )
-print All good. /dev/stderr
-}
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-11-19 Thread Eike Rathke
 i18npool/source/localedata/Makefile |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ef23848eb252e65e0f83250512547ce684e6d4eb
Author: Eike Rathke er...@redhat.com
Date:   Sun Nov 20 01:04:54 2011 +0100

change OUTDIR to OUTDIR_FOR_BUILD for cross-compilation

diff --git a/i18npool/source/localedata/Makefile 
b/i18npool/source/localedata/Makefile
index d279269..246385c 100755
--- a/i18npool/source/localedata/Makefile
+++ b/i18npool/source/localedata/Makefile
@@ -37,7 +37,7 @@ localedata_%.cxx : localedata_%_invis.cxx
sed 's/\(^.*get[^;]*$$\)/SAL_DLLPUBLIC_EXPORT \1/' $  $@
 
 localedata_%_invis.cxx : $(realpath 
$(SRC_ROOT)/i18npool/source/localedata/data)/%.xml saxparser.rdb \
-   $(OUTDIR)/bin/saxparser$(gb_Executable_EXT)
+   $(OUTDIR_FOR_BUILD)/bin/saxparser$(gb_Executable_EXT)
 ifeq ($(OS_FOR_BUILD),WNT)
$(gb_Helper_execute)saxparser $* `cygpath -m $` $@ \
$(my_file)`cygpath -m 
$(WORKDIR)/CustomTarget/i18npool/source/localedata/saxparser.rdb` `cygpath -m 
$(OUTDIR)/bin/types.rdb` \
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2011-11-19 Thread Eike Rathke
 i18npool/source/localedata/Makefile |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 63d29ac431f492595486512ba413454baf636b65
Author: Eike Rathke er...@redhat.com
Date:   Sun Nov 20 03:14:34 2011 +0100

hopefully gb_Executable_EXT_for_build does it

diff --git a/i18npool/source/localedata/Makefile 
b/i18npool/source/localedata/Makefile
index 246385c..5b899f0 100755
--- a/i18npool/source/localedata/Makefile
+++ b/i18npool/source/localedata/Makefile
@@ -37,7 +37,7 @@ localedata_%.cxx : localedata_%_invis.cxx
sed 's/\(^.*get[^;]*$$\)/SAL_DLLPUBLIC_EXPORT \1/' $  $@
 
 localedata_%_invis.cxx : $(realpath 
$(SRC_ROOT)/i18npool/source/localedata/data)/%.xml saxparser.rdb \
-   $(OUTDIR_FOR_BUILD)/bin/saxparser$(gb_Executable_EXT)
+   $(OUTDIR_FOR_BUILD)/bin/saxparser$(gb_Executable_EXT_for_build)
 ifeq ($(OS_FOR_BUILD),WNT)
$(gb_Helper_execute)saxparser $* `cygpath -m $` $@ \
$(my_file)`cygpath -m 
$(WORKDIR)/CustomTarget/i18npool/source/localedata/saxparser.rdb` `cygpath -m 
$(OUTDIR)/bin/types.rdb` \
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits