ICU-8978 Integrate CLDR 21m2 data. Update dtfmttst.cpp for timezone name cleanup.
Update transrt.cpp to exclude 0970 from roundtrip tests; it was now included because Unicode 6.1 moved it from Common to Devanagari, but it has no mapping from InterIndic to anything else. X-SVN-Rev: 31074
This commit is contained in:
parent
dedb3433ab
commit
cec4d76254
@ -42,5 +42,6 @@ BRK_SOURCE = sent_el.txt word_POSIX.txt line_fi.txt word_ja.txt line_ja.txt cha
|
||||
|
||||
|
||||
# Ordinary resources
|
||||
BRK_RES_SOURCE = el.txt en.txt en_US.txt en_US_POSIX.txt fi.txt ja.txt
|
||||
BRK_RES_SOURCE = el.txt en.txt en_US.txt en_US_POSIX.txt\
|
||||
fi.txt ja.txt
|
||||
|
||||
|
@ -1,63 +0,0 @@
|
||||
#
|
||||
# Copyright (C) 2002-2011, International Business Machines Corporation and others.
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# file: char_th.txt
|
||||
#
|
||||
# ICU Character Break Rules, also known as Grapheme Cluster Boundaries
|
||||
# See Unicode Standard Annex #29.
|
||||
# These rules are based on TR29 Revision 16, for Unicode Version 6.0
|
||||
#
|
||||
|
||||
#
|
||||
# Character Class Definitions.
|
||||
#
|
||||
$CR = [\p{Grapheme_Cluster_Break = CR}];
|
||||
$LF = [\p{Grapheme_Cluster_Break = LF}];
|
||||
$Control = [\p{Grapheme_Cluster_Break = Control}];
|
||||
$Extend = [\p{Grapheme_Cluster_Break = Extend} [\u0E33 \u0EB3]];
|
||||
|
||||
#
|
||||
# Korean Syllable Definitions
|
||||
#
|
||||
$L = [\p{Grapheme_Cluster_Break = L}];
|
||||
$V = [\p{Grapheme_Cluster_Break = V}];
|
||||
$T = [\p{Grapheme_Cluster_Break = T}];
|
||||
|
||||
$LV = [\p{Grapheme_Cluster_Break = LV}];
|
||||
$LVT = [\p{Grapheme_Cluster_Break = LVT}];
|
||||
|
||||
|
||||
## -------------------------------------------------
|
||||
!!chain;
|
||||
|
||||
!!forward;
|
||||
|
||||
$CR $LF;
|
||||
|
||||
$L ($L | $V | $LV | $LVT);
|
||||
($LV | $V) ($V | $T);
|
||||
($LVT | $T) $T;
|
||||
|
||||
[^$Control $CR $LF] $Extend;
|
||||
|
||||
## -------------------------------------------------
|
||||
|
||||
!!reverse;
|
||||
$LF $CR;
|
||||
($L | $V | $LV | $LVT) $L;
|
||||
($V | $T) ($LV | $V);
|
||||
$T ($LVT | $T);
|
||||
|
||||
$Extend [^$Control $CR $LF];
|
||||
|
||||
|
||||
## -------------------------------------------------
|
||||
|
||||
!!safe_reverse;
|
||||
|
||||
|
||||
## -------------------------------------------------
|
||||
|
||||
!!safe_forward;
|
||||
|
@ -1,654 +0,0 @@
|
||||
# Copyright (c) 2002-2011 International Business Machines Corporation and
|
||||
# others. All Rights Reserved.
|
||||
#
|
||||
# file: line_he.txt
|
||||
#
|
||||
# Line Breaking Rules
|
||||
# Implement default line breaking as defined by
|
||||
# Unicode Standard Annex #14 Revision 24 for Unicode 6.0
|
||||
# http://www.unicode.org/reports/tr14/
|
||||
#
|
||||
# TODO: Rule LB 8 remains as it was in Unicode 5.2
|
||||
# This is only because of a limitation of ICU break engine implementation,
|
||||
# not because the older behavior is desirable.
|
||||
|
||||
#
|
||||
# Character Classes defined by TR 14.
|
||||
#
|
||||
|
||||
!!chain;
|
||||
!!LBCMNoChain;
|
||||
|
||||
|
||||
!!lookAheadHardBreak;
|
||||
#
|
||||
# !!lookAheadHardBreak Described here because it is (as yet) undocumented elsewhere
|
||||
# and only used for the line break rules.
|
||||
#
|
||||
# It is used in the implementation of rule LB 10
|
||||
# which says to treat any combining mark that is not attached to a base
|
||||
# character as if it were of class AL (alphabetic).
|
||||
#
|
||||
# The problem occurs in the reverse rules.
|
||||
#
|
||||
# Consider a sequence like, with correct breaks as shown
|
||||
# LF ID CM AL AL
|
||||
# ^ ^ ^
|
||||
# Then consider the sequence without the initial ID (ideographic)
|
||||
# LF CM AL AL
|
||||
# ^ ^
|
||||
# Our CM, which in the first example was attached to the ideograph,
|
||||
# is now unattached, becomes an alpha, and joins in with the other
|
||||
# alphas.
|
||||
#
|
||||
# When iterating forwards, these sequences do not present any problems
|
||||
# When iterating backwards, we need to look ahead when encountering
|
||||
# a CM to see whether it attaches to something further on or not.
|
||||
# (Look-ahead in a reverse rule is looking towards the start)
|
||||
#
|
||||
# If the CM is unattached, we need to force a break.
|
||||
#
|
||||
# !!lookAheadHardBreak forces the run time state machine to
|
||||
# stop immediately when a look ahead rule ( '/' operator) matches,
|
||||
# and set the match position to that of the look-ahead operator,
|
||||
# no matter what other rules may be in play at the time.
|
||||
#
|
||||
# See rule LB 19 for an example.
|
||||
#
|
||||
|
||||
$AI = [:LineBreak = Ambiguous:];
|
||||
$AL = [[:LineBreak = Alphabetic:] - [[:Hebrew:] & [:Letter:]]];
|
||||
$HL = [[:Hebrew:] & [:Letter:]];
|
||||
$BA = [[:LineBreak = Break_After:] - [\u2010]];
|
||||
$HH = [\u2010];
|
||||
$BB = [:LineBreak = Break_Before:];
|
||||
$BK = [:LineBreak = Mandatory_Break:];
|
||||
$B2 = [:LineBreak = Break_Both:];
|
||||
$CB = [:LineBreak = Contingent_Break:];
|
||||
$CJ = [:LineBreak = Conditional_Japanese_Starter:];
|
||||
$CL = [:LineBreak = Close_Punctuation:];
|
||||
$CM = [:LineBreak = Combining_Mark:];
|
||||
$CP = [:LineBreak = Close_Parenthesis:];
|
||||
$CR = [:LineBreak = Carriage_Return:];
|
||||
$EX = [:LineBreak = Exclamation:];
|
||||
$GL = [:LineBreak = Glue:];
|
||||
$HY = [:LineBreak = Hyphen:];
|
||||
$H2 = [:LineBreak = H2:];
|
||||
$H3 = [:LineBreak = H3:];
|
||||
$ID = [:LineBreak = Ideographic:];
|
||||
$IN = [:LineBreak = Inseperable:];
|
||||
$IS = [:LineBreak = Infix_Numeric:];
|
||||
$JL = [:LineBreak = JL:];
|
||||
$JV = [:LineBreak = JV:];
|
||||
$JT = [:LineBreak = JT:];
|
||||
$LF = [:LineBreak = Line_Feed:];
|
||||
$NL = [:LineBreak = Next_Line:];
|
||||
$NS = [[:LineBreak = Nonstarter:] $CJ];
|
||||
$NU = [:LineBreak = Numeric:];
|
||||
$OP = [:LineBreak = Open_Punctuation:];
|
||||
$PO = [:LineBreak = Postfix_Numeric:];
|
||||
$PR = [:LineBreak = Prefix_Numeric:];
|
||||
$QU = [:LineBreak = Quotation:];
|
||||
$SA = [:LineBreak = Complex_Context:];
|
||||
$SG = [:LineBreak = Surrogate:];
|
||||
$SP = [:LineBreak = Space:];
|
||||
$SY = [:LineBreak = Break_Symbols:];
|
||||
$WJ = [:LineBreak = Word_Joiner:];
|
||||
$XX = [:LineBreak = Unknown:];
|
||||
$ZW = [:LineBreak = ZWSpace:];
|
||||
|
||||
# Dictionary character set, for triggering language-based break engines. Currently
|
||||
# limited to LineBreak=Complex_Context. Note that this set only works in Unicode
|
||||
# 5.0 or later as the definition of Complex_Context was corrected to include all
|
||||
# characters requiring dictionary break.
|
||||
|
||||
$dictionary = [:LineBreak = Complex_Context:];
|
||||
|
||||
#
|
||||
# Rule LB1. By default, treat AI (characters with ambiguous east Asian width),
|
||||
# SA (South East Asian: Thai, Lao, Khmer)
|
||||
# SG (Unpaired Surrogates)
|
||||
# XX (Unknown, unassigned)
|
||||
# as $AL (Alphabetic)
|
||||
#
|
||||
$ALPlus = [$AL $HL $AI $SA $SG $XX];
|
||||
|
||||
#
|
||||
# Combining Marks. X $CM* behaves as if it were X. Rule LB6.
|
||||
#
|
||||
$ALcm = $ALPlus $CM*;
|
||||
$HLcm = $HL $CM*;
|
||||
$BAcm = $BA $CM*;
|
||||
$HHcm = $HH $CM*;
|
||||
$BBcm = $BB $CM*;
|
||||
$B2cm = $B2 $CM*;
|
||||
$CLcm = $CL $CM*;
|
||||
$CPcm = $CP $CM*;
|
||||
$EXcm = $EX $CM*;
|
||||
$GLcm = $GL $CM*;
|
||||
$HYcm = $HY $CM*;
|
||||
$H2cm = $H2 $CM*;
|
||||
$H3cm = $H3 $CM*;
|
||||
$IDcm = $ID $CM*;
|
||||
$INcm = $IN $CM*;
|
||||
$IScm = $IS $CM*;
|
||||
$JLcm = $JL $CM*;
|
||||
$JVcm = $JV $CM*;
|
||||
$JTcm = $JT $CM*;
|
||||
$NScm = $NS $CM*;
|
||||
$NUcm = $NU $CM*;
|
||||
$OPcm = $OP $CM*;
|
||||
$POcm = $PO $CM*;
|
||||
$PRcm = $PR $CM*;
|
||||
$QUcm = $QU $CM*;
|
||||
$SYcm = $SY $CM*;
|
||||
$WJcm = $WJ $CM*;
|
||||
|
||||
## -------------------------------------------------
|
||||
|
||||
!!forward;
|
||||
|
||||
#
|
||||
# Each class of character can stand by itself as an unbroken token, with trailing combining stuff
|
||||
#
|
||||
$ALPlus $CM+;
|
||||
$BA $CM+;
|
||||
$HH $CM+;
|
||||
$BB $CM+;
|
||||
$B2 $CM+;
|
||||
$CL $CM+;
|
||||
$CP $CM+;
|
||||
$EX $CM+;
|
||||
$GL $CM+;
|
||||
$HY $CM+;
|
||||
$H2 $CM+;
|
||||
$H3 $CM+;
|
||||
$ID $CM+;
|
||||
$IN $CM+;
|
||||
$IS $CM+;
|
||||
$JL $CM+;
|
||||
$JV $CM+;
|
||||
$JT $CM+;
|
||||
$NS $CM+;
|
||||
$NU $CM+;
|
||||
$OP $CM+;
|
||||
$PO $CM+;
|
||||
$PR $CM+;
|
||||
$QU $CM+;
|
||||
$SY $CM+;
|
||||
$WJ $CM+;
|
||||
|
||||
#
|
||||
# CAN_CM is the set of characters that may combine with CM combining chars.
|
||||
# Note that Linebreak UAX 14's concept of a combining char and the rules
|
||||
# for what they can combine with are _very_ different from the rest of Unicode.
|
||||
#
|
||||
# Note that $CM itself is left out of this set. If CM is needed as a base
|
||||
# it must be listed separately in the rule.
|
||||
#
|
||||
$CAN_CM = [^$SP $BK $CR $LF $NL $ZW $CM]; # Bases that can take CMs
|
||||
$CANT_CM = [ $SP $BK $CR $LF $NL $ZW $CM]; # Bases that can't take CMs
|
||||
|
||||
#
|
||||
# AL_FOLLOW set of chars that can unconditionally follow an AL
|
||||
# Needed in rules where stand-alone $CM s are treated as AL.
|
||||
# Chaining is disabled with CM because it causes other failures,
|
||||
# so for this one case we need to manually list out longer sequences.
|
||||
#
|
||||
$AL_FOLLOW_NOCM = [$BK $CR $LF $NL $ZW $SP];
|
||||
$AL_FOLLOW_CM = [$CL $CP $EX $IS $SY $WJ $GL $OP $QU $BA $HH $HY $NS $IN $NU $ALPlus];
|
||||
$AL_FOLLOW = [$AL_FOLLOW_NOCM $AL_FOLLOW_CM];
|
||||
|
||||
|
||||
#
|
||||
# Rule LB 4, 5 Mandatory (Hard) breaks.
|
||||
#
|
||||
$LB4Breaks = [$BK $CR $LF $NL];
|
||||
$LB4NonBreaks = [^$BK $CR $LF $NL];
|
||||
$CR $LF {100};
|
||||
|
||||
#
|
||||
# LB 6 Do not break before hard line breaks.
|
||||
#
|
||||
$LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
|
||||
$CAN_CM $CM* $LB4Breaks {100};
|
||||
$CM+ $LB4Breaks {100};
|
||||
|
||||
# LB 7 x SP
|
||||
# x ZW
|
||||
$LB4NonBreaks [$SP $ZW];
|
||||
$CAN_CM $CM* [$SP $ZW];
|
||||
$CM+ [$SP $ZW];
|
||||
|
||||
#
|
||||
# LB 8 Break after zero width space
|
||||
# TODO: ZW SP* <break>
|
||||
# An engine change is required to write the reverse rule for this.
|
||||
# For now, leave the Unicode 5.2 rule, ZW <break>
|
||||
#
|
||||
$LB8Breaks = [$LB4Breaks $ZW];
|
||||
$LB8NonBreaks = [[$LB4NonBreaks] - [$ZW]];
|
||||
|
||||
|
||||
# LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
|
||||
# $CM not covered by the above needs to behave like $AL
|
||||
# See definition of $CAN_CM.
|
||||
|
||||
$CAN_CM $CM+; # Stick together any combining sequences that don't match other rules.
|
||||
$CM+;
|
||||
|
||||
#
|
||||
# LB 11 Do not break before or after WORD JOINER & related characters.
|
||||
#
|
||||
$CAN_CM $CM* $WJcm;
|
||||
$LB8NonBreaks $WJcm;
|
||||
$CM+ $WJcm;
|
||||
|
||||
$WJcm $CANT_CM;
|
||||
$WJcm $CAN_CM $CM*;
|
||||
|
||||
#
|
||||
# LB 12 Do not break after NBSP and related characters.
|
||||
# GL x
|
||||
#
|
||||
$GLcm $CAN_CM $CM*;
|
||||
$GLcm $CANT_CM;
|
||||
|
||||
#
|
||||
# LB 12a Do not break before NBSP and related characters ...
|
||||
# [^SP BA HY] x GL
|
||||
#
|
||||
[[$LB8NonBreaks] - [$SP $BA $HH $HY]] $CM* $GLcm;
|
||||
$CM+ GLcm;
|
||||
|
||||
|
||||
|
||||
#
|
||||
# LB 13 Don't break before ']' or '!' or ';' or '/', even after spaces.
|
||||
#
|
||||
$LB8NonBreaks $CL;
|
||||
$CAN_CM $CM* $CL;
|
||||
$CM+ $CL; # by rule 10, stand-alone CM behaves as AL
|
||||
|
||||
$LB8NonBreaks $CP;
|
||||
$CAN_CM $CM* $CP;
|
||||
$CM+ $CP; # by rule 10, stand-alone CM behaves as AL
|
||||
|
||||
$LB8NonBreaks $EX;
|
||||
$CAN_CM $CM* $EX;
|
||||
$CM+ $EX; # by rule 10, stand-alone CM behaves as AL
|
||||
|
||||
$LB8NonBreaks $IS;
|
||||
$CAN_CM $CM* $IS;
|
||||
$CM+ $IS; # by rule 10, stand-alone CM behaves as AL
|
||||
|
||||
$LB8NonBreaks $SY;
|
||||
$CAN_CM $CM* $SY;
|
||||
$CM+ $SY; # by rule 10, stand-alone CM behaves as AL
|
||||
|
||||
|
||||
#
|
||||
# LB 14 Do not break after OP, even after spaces
|
||||
#
|
||||
$OPcm $SP* $CAN_CM $CM*;
|
||||
$OPcm $SP* $CANT_CM;
|
||||
|
||||
$OPcm $SP+ $CM+ $AL_FOLLOW?; # by rule 10, stand-alone CM behaves as AL
|
||||
|
||||
# LB 15
|
||||
$QUcm $SP* $OPcm;
|
||||
|
||||
# LB 16
|
||||
($CLcm | $CPcm) $SP* $NScm;
|
||||
|
||||
# LB 17
|
||||
$B2cm $SP* $B2cm;
|
||||
|
||||
#
|
||||
# LB 18 Break after spaces.
|
||||
#
|
||||
$LB18NonBreaks = [$LB8NonBreaks - [$SP]];
|
||||
$LB18Breaks = [$LB8Breaks $SP];
|
||||
|
||||
|
||||
# LB 19
|
||||
# x QU
|
||||
$LB18NonBreaks $CM* $QUcm;
|
||||
$CM+ $QUcm;
|
||||
|
||||
# QU x
|
||||
$QUcm .?;
|
||||
$QUcm $LB18NonBreaks $CM*; # Don't let a combining mark go onto $CR, $BK, etc.
|
||||
# TODO: I don't think this rule is needed.
|
||||
|
||||
|
||||
# LB 20
|
||||
# <break> $CB
|
||||
# $CB <break>
|
||||
|
||||
$LB20NonBreaks = [$LB18NonBreaks - $CB];
|
||||
|
||||
# LB 21 x (BA | HY | NS)
|
||||
# BB x
|
||||
#
|
||||
$LB20NonBreaks $CM* ($BAcm | $HHcm | $HYcm | $NScm);
|
||||
|
||||
$BBcm [^$CB]; # $BB x
|
||||
$BBcm $LB20NonBreaks $CM*;
|
||||
|
||||
# LB 22
|
||||
$ALcm $INcm;
|
||||
$CM+ $INcm; # by rule 10, any otherwise unattached CM behaves as AL
|
||||
$IDcm $INcm;
|
||||
$INcm $INcm;
|
||||
$NUcm $INcm;
|
||||
|
||||
|
||||
# $LB 23
|
||||
$IDcm $POcm;
|
||||
$ALcm $NUcm; # includes $LB19
|
||||
$CM+ $NUcm; # Rule 10, any otherwise unattached CM behaves as AL
|
||||
$NUcm $ALcm;
|
||||
|
||||
#
|
||||
# LB 24
|
||||
#
|
||||
$PRcm $IDcm;
|
||||
$PRcm $ALcm;
|
||||
$POcm $ALcm;
|
||||
|
||||
#
|
||||
# LB 25 Numbers.
|
||||
#
|
||||
($PRcm | $POcm)? ($OPcm | $HYcm)? $NUcm ($NUcm | $SYcm | $IScm)* ($CLcm | $CPcm)? ($PRcm | $POcm)?;
|
||||
|
||||
# LB 26 Do not break a Korean syllable
|
||||
#
|
||||
$JLcm ($JLcm | $JVcm | $H2cm | $H3cm);
|
||||
($JVcm | $H2cm) ($JVcm | $JTcm);
|
||||
($JTcm | $H3cm) $JTcm;
|
||||
|
||||
# LB 27 Treat korean Syllable Block the same as ID (don't break it)
|
||||
($JLcm | $JVcm | $JTcm | $H2cm | $H3cm) $INcm;
|
||||
($JLcm | $JVcm | $JTcm | $H2cm | $H3cm) $POcm;
|
||||
$PRcm ($JLcm | $JVcm | $JTcm | $H2cm | $H3cm);
|
||||
|
||||
|
||||
# LB 28 Do not break between alphabetics
|
||||
#
|
||||
$ALcm $ALcm;
|
||||
$CM+ $ALcm; # The $CM+ is from rule 10, an unattached CM is treated as AL
|
||||
|
||||
# LB 29
|
||||
$IScm $ALcm;
|
||||
|
||||
# LB 30
|
||||
($ALcm | $NUcm) $OPcm;
|
||||
$CM+ $OPcm; # The $CM+ is from rule 10, an unattached CM is treated as AL.
|
||||
$CPcm ($ALcm | $NUcm);
|
||||
|
||||
# (LB 31) Add new rule to prevent the break we do not want, this is the behavior change
|
||||
$HLcm ($HY | $HH) $ALcm;
|
||||
|
||||
#
|
||||
# Reverse Rules.
|
||||
#
|
||||
## -------------------------------------------------
|
||||
|
||||
!!reverse;
|
||||
|
||||
$CM+ $ALPlus;
|
||||
$CM+ $BA;
|
||||
$CM+ $HH;
|
||||
$CM+ $BB;
|
||||
$CM+ $B2;
|
||||
$CM+ $CL;
|
||||
$CM+ $CP;
|
||||
$CM+ $EX;
|
||||
$CM+ $GL;
|
||||
$CM+ $HY;
|
||||
$CM+ $H2;
|
||||
$CM+ $H3;
|
||||
$CM+ $ID;
|
||||
$CM+ $IN;
|
||||
$CM+ $IS;
|
||||
$CM+ $JL;
|
||||
$CM+ $JV;
|
||||
$CM+ $JT;
|
||||
$CM+ $NS;
|
||||
$CM+ $NU;
|
||||
$CM+ $OP;
|
||||
$CM+ $PO;
|
||||
$CM+ $PR;
|
||||
$CM+ $QU;
|
||||
$CM+ $SY;
|
||||
$CM+ $WJ;
|
||||
$CM+;
|
||||
|
||||
|
||||
#
|
||||
# Sequences of the form (shown forwards)
|
||||
# [CANT_CM] <break> [CM] [whatever]
|
||||
# The CM needs to behave as an AL
|
||||
#
|
||||
$AL_FOLLOW $CM+ / (
|
||||
[$BK $CR $LF $NL $ZW {eof}] |
|
||||
$SP+ $CM+ $SP |
|
||||
$SP+ $CM* ([^$OP $CM $SP] | [$AL {eof}])); # if LB 14 will match, need to surpress this break.
|
||||
# LB14 says OP SP* x .
|
||||
# becomes OP SP* x AL
|
||||
# becomes OP SP* x CM+ AL_FOLLOW
|
||||
#
|
||||
# Further note: the $AL in [$AL {eof}] is only to work around
|
||||
# a rule compiler bug which complains about
|
||||
# empty sets otherwise.
|
||||
|
||||
#
|
||||
# Sequences of the form (shown forwards)
|
||||
# [CANT_CM] <break> [CM] <break> [PR]
|
||||
# The CM needs to behave as an AL
|
||||
# This rule is concerned about getting the second of the two <breaks> in place.
|
||||
#
|
||||
|
||||
[$PR ] / $CM+ [$BK $CR $LF $NL $ZW $SP {eof}];
|
||||
|
||||
|
||||
|
||||
# LB 4, 5, 5
|
||||
|
||||
$LB4Breaks [$LB4NonBreaks-$CM];
|
||||
$LB4Breaks $CM+ $CAN_CM;
|
||||
$LF $CR;
|
||||
|
||||
|
||||
# LB 7 x SP
|
||||
# x ZW
|
||||
[$SP $ZW] [$LB4NonBreaks-$CM];
|
||||
[$SP $ZW] $CM+ $CAN_CM;
|
||||
|
||||
# LB 8 ZW SP* <break>
|
||||
# TODO: to implement this, we need more than one look-ahead hard break in play at a time.
|
||||
# Requires an engine enhancement.
|
||||
# / $SP* $ZW
|
||||
|
||||
# LB 9,10 Combining marks.
|
||||
# X $CM needs to behave like X, where X is not $SP or controls.
|
||||
# $CM not covered by the above needs to behave like $AL
|
||||
# Stick together any combining sequences that don't match other rules.
|
||||
$CM+ $CAN_CM;
|
||||
|
||||
|
||||
# LB 11
|
||||
$CM* $WJ $CM* $CAN_CM;
|
||||
$CM* $WJ [$LB8NonBreaks-$CM];
|
||||
|
||||
$CANT_CM $CM* $WJ;
|
||||
$CM* $CAN_CM $CM* $WJ;
|
||||
|
||||
# LB 12a
|
||||
# [^SP BA HY] x GL
|
||||
#
|
||||
$CM* $GL $CM* [$LB8NonBreaks-[$CM $SP $BA $HH $HY]];
|
||||
|
||||
# LB 12
|
||||
# GL x
|
||||
#
|
||||
$CANT_CM $CM* $GL;
|
||||
$CM* $CAN_CM $CM* $GL;
|
||||
|
||||
|
||||
# LB 13
|
||||
$CL $CM+ $CAN_CM;
|
||||
$CP $CM+ $CAN_CM;
|
||||
$EX $CM+ $CAN_CM;
|
||||
$IS $CM+ $CAN_CM;
|
||||
$SY $CM+ $CAN_CM;
|
||||
|
||||
$CL [$LB8NonBreaks-$CM];
|
||||
$CP [$LB8NonBreaks-$CM];
|
||||
$EX [$LB8NonBreaks-$CM];
|
||||
$IS [$LB8NonBreaks-$CM];
|
||||
$SY [$LB8NonBreaks-$CM];
|
||||
|
||||
# Rule 13 & 14 taken together for an edge case.
|
||||
# Match this, shown forward
|
||||
# OP SP+ ($CM+ behaving as $AL) (CL | CP | EX | IS | IY)
|
||||
# This really wants to chain at the $CM+ (which is acting as an $AL)
|
||||
# except for $CM chaining being disabled.
|
||||
[$CL $CP $EX $IS $SY] $CM+ $SP+ $CM* $OP;
|
||||
|
||||
# LB 14 OP SP* x
|
||||
#
|
||||
$CM* $CAN_CM $SP* $CM* $OP;
|
||||
$CANT_CM $SP* $CM* $OP;
|
||||
$AL_FOLLOW? $CM+ $SP $SP* $CM* $OP; # by LB 10, behaves like $AL_FOLLOW? $AL $SP* $CM* $OP
|
||||
|
||||
$AL_FOLLOW_NOCM $CM+ $SP+ $CM* $OP;
|
||||
$CM* $AL_FOLLOW_CM $CM+ $SP+ $CM* $OP;
|
||||
$SY $CM $SP+ $OP; # TODO: Experiment. Remove.
|
||||
|
||||
|
||||
|
||||
# LB 15
|
||||
$CM* $OP $SP* $CM* $QU;
|
||||
|
||||
# LB 16
|
||||
$CM* $NS $SP* $CM* ($CL | $CP);
|
||||
|
||||
# LB 17
|
||||
$CM* $B2 $SP* $CM* $B2;
|
||||
|
||||
# LB 18 break after spaces
|
||||
# Nothing explicit needed here.
|
||||
|
||||
|
||||
#
|
||||
# LB 19
|
||||
#
|
||||
$CM* $QU $CM* $CAN_CM; # . x QU
|
||||
$CM* $QU $LB18NonBreaks;
|
||||
|
||||
|
||||
$CM* $CAN_CM $CM* $QU; # QU x .
|
||||
$CANT_CM $CM* $QU;
|
||||
|
||||
#
|
||||
# LB 20 Break before and after CB.
|
||||
# nothing needed here.
|
||||
#
|
||||
|
||||
# LB 21
|
||||
$CM* ($BA | $HH | $HY | $NS) $CM* [$LB20NonBreaks-$CM]; # . x (BA | HY | NS)
|
||||
|
||||
$CM* [$LB20NonBreaks-$CM] $CM* $BB; # BB x .
|
||||
[^$CB] $CM* $BB; #
|
||||
|
||||
|
||||
|
||||
# LB 22
|
||||
$CM* $IN $CM* $ALPlus;
|
||||
$CM* $IN $CM* $ID;
|
||||
$CM* $IN $CM* $IN;
|
||||
$CM* $IN $CM* $NU;
|
||||
|
||||
# LB 23
|
||||
$CM* $PO $CM* $ID;
|
||||
$CM* $NU $CM* $ALPlus;
|
||||
$CM* $ALPlus $CM* $NU;
|
||||
|
||||
# LB 24
|
||||
$CM* $ID $CM* $PR;
|
||||
$CM* $ALPlus $CM* $PR;
|
||||
$CM* $ALPlus $CM* $PO;
|
||||
|
||||
|
||||
# LB 25
|
||||
($CM* ($PR | $PO))? ($CM* ($CL | $CP))? ($CM* ($NU | $IS | $SY))* $CM* $NU ($CM* ($OP | $HY))? ($CM* ($PR | $PO))?;
|
||||
|
||||
# LB 26
|
||||
$CM* ($H3 | $H2 | $JV | $JL) $CM* $JL;
|
||||
$CM* ($JT | $JV) $CM* ($H2 | $JV);
|
||||
$CM* $JT $CM* ($H3 | $JT);
|
||||
|
||||
# LB 27
|
||||
$CM* $IN $CM* ($H3 | $H2 | $JT | $JV | $JL);
|
||||
$CM* $PO $CM* ($H3 | $H2 | $JT | $JV | $JL);
|
||||
$CM* ($H3 | $H2 | $JT | $JV | $JL) $CM* $PR;
|
||||
|
||||
# LB 28
|
||||
$CM* $ALPlus $CM* $ALPlus;
|
||||
|
||||
|
||||
# LB 29
|
||||
$CM* $ALPlus $CM* $IS;
|
||||
|
||||
# LB 30
|
||||
$CM* $OP $CM* ($ALPlus | $NU);
|
||||
$CM* ($ALPlus | $NU) $CM* $CP;
|
||||
|
||||
# (LB 31) Add new rule to prevent the break we do not want, this is the behavior change
|
||||
$CM* $ALPlus ($HY | $HH) $CM* $HL;
|
||||
|
||||
## -------------------------------------------------
|
||||
|
||||
!!safe_reverse;
|
||||
|
||||
# LB 9
|
||||
$CM+ [^$CM $BK $CR $LF $NL $ZW $SP];
|
||||
$CM+ $SP / .;
|
||||
|
||||
# LB 14
|
||||
$SP+ $CM* $OP;
|
||||
|
||||
# LB 15
|
||||
$SP+ $CM* $QU;
|
||||
|
||||
# LB 16
|
||||
$SP+ $CM* ($CL | $CP);
|
||||
|
||||
# LB 17
|
||||
$SP+ $CM* $B2;
|
||||
|
||||
# LB 25
|
||||
($CM* ($IS | $SY))+ $CM* $NU;
|
||||
($CL | $CP) $CM* ($NU | $IS | $SY);
|
||||
|
||||
# For dictionary-based break
|
||||
$dictionary $dictionary;
|
||||
|
||||
## -------------------------------------------------
|
||||
|
||||
!!safe_forward;
|
||||
|
||||
# Skip forward over all character classes that are involved in
|
||||
# rules containing patterns with possibly more than one char
|
||||
# of context.
|
||||
#
|
||||
# It might be slightly more efficient to have specific rules
|
||||
# instead of one generic one, but only if we could
|
||||
# turn off rule chaining. We don't want to move more
|
||||
# than necessary.
|
||||
#
|
||||
[$CM $OP $QU $CL $CP $B2 $PR $HY $SP $dictionary]+ [^$CM $OP $QU $CL $CP $B2 $PR $HY $dictionary];
|
||||
$dictionary $dictionary;
|
||||
|
@ -513,9 +513,7 @@
|
||||
<include name="en_US.txt" />
|
||||
<include name="en_US_POSIX.txt" />
|
||||
<include name="fi.txt" />
|
||||
<include name="he.txt" />
|
||||
<include name="ja.txt" />
|
||||
<include name="th.txt" />
|
||||
</fileset>
|
||||
<fileset id="brkfiles" dir="${env.ICU4C_DIR}/source/data/brkitr">
|
||||
<include name="brkfiles.mk" />
|
||||
|
17
icu4c/source/data/coll/ar_001.txt
Normal file
17
icu4c/source/data/coll/ar_001.txt
Normal file
@ -0,0 +1,17 @@
|
||||
// ***************************************************************************
|
||||
// *
|
||||
// * Copyright (C) 2011 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/icu-config.xml & build.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
* validSubLocale of "ar"
|
||||
*/
|
||||
ar_001{
|
||||
/**
|
||||
* so genrb doesn't issue warnings
|
||||
*/
|
||||
___{""}
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
# * Copyright (C) 1998-2011, International Business Machines
|
||||
# * Corporation and others. All Rights Reserved.
|
||||
COLLATION_CLDR_VERSION = 2.0
|
||||
COLLATION_CLDR_VERSION = 21.0
|
||||
# A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
@ -39,53 +39,53 @@ COLLATION_ALIAS_SOURCE = $(COLLATION_SYNTHETIC_ALIAS)
|
||||
|
||||
|
||||
# Empty locales, used for validSubLocale fallback.
|
||||
COLLATION_EMPTY_SOURCE = af_NA.txt af_ZA.txt ar_AE.txt ar_BH.txt\
|
||||
ar_DZ.txt ar_EG.txt ar_IQ.txt ar_JO.txt ar_KW.txt\
|
||||
ar_LB.txt ar_LY.txt ar_MA.txt ar_OM.txt ar_QA.txt\
|
||||
ar_SA.txt ar_SD.txt ar_SY.txt ar_TN.txt ar_YE.txt\
|
||||
as_IN.txt az_Latn.txt az_Latn_AZ.txt be_BY.txt bg_BG.txt\
|
||||
bn_BD.txt bn_IN.txt bs_BA.txt ca_ES.txt chr.txt\
|
||||
chr_US.txt cs_CZ.txt cy_GB.txt da_DK.txt de_AT.txt\
|
||||
de_BE.txt de_CH.txt de_DE.txt de_LI.txt de_LU.txt\
|
||||
ee.txt ee_GH.txt ee_TG.txt el_CY.txt el_GR.txt\
|
||||
en_AS.txt en_AU.txt en_BB.txt en_BE.txt en_BM.txt\
|
||||
en_BW.txt en_BZ.txt en_CA.txt en_GB.txt en_GU.txt\
|
||||
en_HK.txt en_IE.txt en_IN.txt en_JM.txt en_MH.txt\
|
||||
en_MP.txt en_MT.txt en_MU.txt en_NA.txt en_NZ.txt\
|
||||
en_PH.txt en_PK.txt en_SG.txt en_TT.txt en_UM.txt\
|
||||
en_VI.txt en_ZA.txt en_ZW.txt es_419.txt es_AR.txt\
|
||||
es_BO.txt es_CL.txt es_CO.txt es_CR.txt es_DO.txt\
|
||||
es_EC.txt es_ES.txt es_GQ.txt es_GT.txt es_HN.txt\
|
||||
es_MX.txt es_NI.txt es_PA.txt es_PE.txt es_PR.txt\
|
||||
es_PY.txt es_SV.txt es_US.txt es_UY.txt es_VE.txt\
|
||||
et_EE.txt fa_IR.txt fi_FI.txt fil_PH.txt fo_FO.txt\
|
||||
fr_BE.txt fr_BF.txt fr_BI.txt fr_BJ.txt fr_BL.txt\
|
||||
fr_CD.txt fr_CF.txt fr_CG.txt fr_CH.txt fr_CI.txt\
|
||||
fr_CM.txt fr_DJ.txt fr_FR.txt fr_GA.txt fr_GN.txt\
|
||||
fr_GP.txt fr_GQ.txt fr_KM.txt fr_LU.txt fr_MC.txt\
|
||||
fr_MF.txt fr_MG.txt fr_ML.txt fr_MQ.txt fr_NE.txt\
|
||||
fr_RE.txt fr_RW.txt fr_SN.txt fr_TD.txt fr_TG.txt\
|
||||
ga.txt ga_IE.txt gu_IN.txt ha_Latn.txt ha_Latn_GH.txt\
|
||||
ha_Latn_NE.txt ha_Latn_NG.txt he_IL.txt hi_IN.txt hr_HR.txt\
|
||||
hu_HU.txt hy_AM.txt id.txt id_ID.txt ig_NG.txt\
|
||||
is_IS.txt it.txt it_CH.txt it_IT.txt ja_JP.txt\
|
||||
ka.txt ka_GE.txt kk_KZ.txt kl_GL.txt km_KH.txt\
|
||||
kn_IN.txt ko_KR.txt kok_IN.txt ln_CD.txt ln_CG.txt\
|
||||
lt_LT.txt lv_LV.txt mk_MK.txt ml_IN.txt mr_IN.txt\
|
||||
ms.txt ms_BN.txt ms_MY.txt mt_MT.txt my_MM.txt\
|
||||
nb_NO.txt nl.txt nl_AW.txt nl_BE.txt nl_NL.txt\
|
||||
nn_NO.txt om_ET.txt om_KE.txt or_IN.txt pa_Arab.txt\
|
||||
pa_Arab_PK.txt pa_Guru.txt pa_Guru_IN.txt pl_PL.txt ps_AF.txt\
|
||||
pt.txt pt_AO.txt pt_BR.txt pt_GW.txt pt_MZ.txt\
|
||||
pt_PT.txt pt_ST.txt ro_MD.txt ro_RO.txt ru_MD.txt\
|
||||
ru_RU.txt ru_UA.txt si_LK.txt sk_SK.txt sl_SI.txt\
|
||||
sq_AL.txt sr_Cyrl.txt sr_Cyrl_BA.txt sr_Cyrl_ME.txt sr_Cyrl_RS.txt\
|
||||
sr_Latn_BA.txt sr_Latn_ME.txt sr_Latn_RS.txt sv_FI.txt sv_SE.txt\
|
||||
sw.txt sw_KE.txt sw_TZ.txt ta_IN.txt ta_LK.txt\
|
||||
te_IN.txt th_TH.txt tr_TR.txt uk_UA.txt ur_IN.txt\
|
||||
ur_PK.txt vi_VN.txt yo_NG.txt zh_Hans.txt zh_Hans_CN.txt\
|
||||
zh_Hans_SG.txt zh_Hant_HK.txt zh_Hant_MO.txt zh_Hant_TW.txt zu.txt\
|
||||
zu_ZA.txt
|
||||
COLLATION_EMPTY_SOURCE = af_NA.txt af_ZA.txt ar_001.txt ar_AE.txt\
|
||||
ar_BH.txt ar_DZ.txt ar_EG.txt ar_IQ.txt ar_JO.txt\
|
||||
ar_KW.txt ar_LB.txt ar_LY.txt ar_MA.txt ar_OM.txt\
|
||||
ar_QA.txt ar_SA.txt ar_SD.txt ar_SY.txt ar_TN.txt\
|
||||
ar_YE.txt as_IN.txt az_Latn.txt az_Latn_AZ.txt be_BY.txt\
|
||||
bg_BG.txt bn_BD.txt bn_IN.txt bs_BA.txt ca_ES.txt\
|
||||
chr.txt chr_US.txt cs_CZ.txt cy_GB.txt da_DK.txt\
|
||||
de_AT.txt de_BE.txt de_CH.txt de_DE.txt de_LI.txt\
|
||||
de_LU.txt ee.txt ee_GH.txt ee_TG.txt el_CY.txt\
|
||||
el_GR.txt en_AS.txt en_AU.txt en_BB.txt en_BE.txt\
|
||||
en_BM.txt en_BW.txt en_BZ.txt en_CA.txt en_GB.txt\
|
||||
en_GU.txt en_HK.txt en_IE.txt en_IN.txt en_JM.txt\
|
||||
en_MH.txt en_MP.txt en_MT.txt en_MU.txt en_NA.txt\
|
||||
en_NZ.txt en_PH.txt en_PK.txt en_SG.txt en_TT.txt\
|
||||
en_UM.txt en_VI.txt en_ZA.txt en_ZW.txt es_419.txt\
|
||||
es_AR.txt es_BO.txt es_CL.txt es_CO.txt es_CR.txt\
|
||||
es_DO.txt es_EC.txt es_ES.txt es_GQ.txt es_GT.txt\
|
||||
es_HN.txt es_MX.txt es_NI.txt es_PA.txt es_PE.txt\
|
||||
es_PR.txt es_PY.txt es_SV.txt es_US.txt es_UY.txt\
|
||||
es_VE.txt et_EE.txt fa_IR.txt fi_FI.txt fil_PH.txt\
|
||||
fo_FO.txt fr_BE.txt fr_BF.txt fr_BI.txt fr_BJ.txt\
|
||||
fr_BL.txt fr_CD.txt fr_CF.txt fr_CG.txt fr_CH.txt\
|
||||
fr_CI.txt fr_CM.txt fr_DJ.txt fr_FR.txt fr_GA.txt\
|
||||
fr_GN.txt fr_GP.txt fr_GQ.txt fr_KM.txt fr_LU.txt\
|
||||
fr_MC.txt fr_MF.txt fr_MG.txt fr_ML.txt fr_MQ.txt\
|
||||
fr_NE.txt fr_RE.txt fr_RW.txt fr_SN.txt fr_TD.txt\
|
||||
fr_TG.txt ga.txt ga_IE.txt gu_IN.txt ha_Latn.txt\
|
||||
ha_Latn_GH.txt ha_Latn_NE.txt ha_Latn_NG.txt he_IL.txt hi_IN.txt\
|
||||
hr_HR.txt hu_HU.txt hy_AM.txt id.txt id_ID.txt\
|
||||
ig_NG.txt is_IS.txt it.txt it_CH.txt it_IT.txt\
|
||||
ja_JP.txt ka.txt ka_GE.txt kk_KZ.txt kl_GL.txt\
|
||||
km_KH.txt kn_IN.txt ko_KR.txt kok_IN.txt ln_CD.txt\
|
||||
ln_CG.txt lt_LT.txt lv_LV.txt mk_MK.txt ml_IN.txt\
|
||||
mr_IN.txt ms.txt ms_BN.txt ms_MY.txt mt_MT.txt\
|
||||
my_MM.txt nb_NO.txt nl.txt nl_AW.txt nl_BE.txt\
|
||||
nl_CW.txt nl_NL.txt nl_SX.txt nn_NO.txt om_ET.txt\
|
||||
om_KE.txt or_IN.txt pa_Arab.txt pa_Arab_PK.txt pa_Guru.txt\
|
||||
pa_Guru_IN.txt pl_PL.txt ps_AF.txt pt.txt pt_AO.txt\
|
||||
pt_BR.txt pt_GW.txt pt_MZ.txt pt_PT.txt pt_ST.txt\
|
||||
ro_MD.txt ro_RO.txt ru_MD.txt ru_RU.txt ru_UA.txt\
|
||||
si_LK.txt sk_SK.txt sl_SI.txt sq_AL.txt sr_Cyrl.txt\
|
||||
sr_Cyrl_BA.txt sr_Cyrl_ME.txt sr_Cyrl_RS.txt sr_Latn_BA.txt sr_Latn_ME.txt\
|
||||
sr_Latn_RS.txt sv_FI.txt sv_SE.txt sw.txt sw_KE.txt\
|
||||
sw_TZ.txt ta_IN.txt ta_LK.txt te_IN.txt th_TH.txt\
|
||||
tr_TR.txt uk_UA.txt ur_IN.txt ur_PK.txt vi_VN.txt\
|
||||
yo_NG.txt zh_Hans.txt zh_Hans_CN.txt zh_Hans_SG.txt zh_Hant_HK.txt\
|
||||
zh_Hant_MO.txt zh_Hant_TW.txt zu.txt zu_ZA.txt
|
||||
|
||||
|
||||
# Ordinary resources
|
||||
|
@ -15,7 +15,8 @@ km{
|
||||
standard{
|
||||
Sequence{
|
||||
" [normalization on ]"
|
||||
"&[last tertiary ignorable ]='\u17B4'='\u17B5'&។ល។<<<៘"
|
||||
"&[last tertiary ignorable ]=឴=឵"
|
||||
"&។ល។<<<៘"
|
||||
"&ៈ<<៎<<៏<<៑<<័<<ៈ<<៝<<់<<៉<<៊<<៍"
|
||||
"&រ<ឫ<ឬ"
|
||||
"&ល<ឭ<ឮ"
|
||||
|
17
icu4c/source/data/coll/nl_CW.txt
Normal file
17
icu4c/source/data/coll/nl_CW.txt
Normal file
@ -0,0 +1,17 @@
|
||||
// ***************************************************************************
|
||||
// *
|
||||
// * Copyright (C) 2011 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/icu-config.xml & build.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
* validSubLocale of "root"
|
||||
*/
|
||||
nl_CW{
|
||||
/**
|
||||
* so genrb doesn't issue warnings
|
||||
*/
|
||||
___{""}
|
||||
}
|
17
icu4c/source/data/coll/nl_SX.txt
Normal file
17
icu4c/source/data/coll/nl_SX.txt
Normal file
@ -0,0 +1,17 @@
|
||||
// ***************************************************************************
|
||||
// *
|
||||
// * Copyright (C) 2011 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/icu-config.xml & build.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
* validSubLocale of "root"
|
||||
*/
|
||||
nl_SX{
|
||||
/**
|
||||
* so genrb doesn't issue warnings
|
||||
*/
|
||||
___{""}
|
||||
}
|
@ -10,14 +10,10 @@
|
||||
* ICU <specials> source: <path>/xml/collation/uk.xml
|
||||
*/
|
||||
uk{
|
||||
Version{"2.0.49.72"}
|
||||
Version{"2.0.62.15"}
|
||||
collations{
|
||||
standard{
|
||||
Sequence{
|
||||
"[suppressContractions [АаӘәГгЕеЖжЗзОоӨөКкУуЧчЫыЭэѴѵ] ]"
|
||||
"&Г<ґ<<<Ґ"
|
||||
"&я<ь<<<Ь"
|
||||
}
|
||||
Sequence{"[suppressContractions [АаӘәГгЕеЖжЗзОоӨөКкУуЧчЫыЭэѴѵ] ]&Г<ґ<<<Ґ"}
|
||||
Version{"21.0"}
|
||||
}
|
||||
}
|
||||
|
@ -664,5 +664,5 @@ af{
|
||||
"Zimbabwiese dollar",
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.44"}
|
||||
Version{"2.0.62.33"}
|
||||
}
|
||||
|
@ -648,5 +648,5 @@ am{
|
||||
"የዚምቧቡዌ ዶላር",
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.33"}
|
||||
}
|
||||
|
@ -1393,5 +1393,5 @@ ar{
|
||||
two{"{0} {1}"}
|
||||
zero{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.33"}
|
||||
}
|
||||
|
@ -1736,5 +1736,5 @@ az{
|
||||
other{"Zimbabve dolları (1980-2008)"}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.68"}
|
||||
Version{"2.0.62.33"}
|
||||
}
|
||||
|
@ -68,5 +68,5 @@ be{
|
||||
"невядомая або недапушчальная валюта",
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.5"}
|
||||
Version{"2.0.62.33"}
|
||||
}
|
||||
|
@ -1895,5 +1895,5 @@ bg{
|
||||
other{"зимбабвийски долара (2009)"}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.68"}
|
||||
Version{"2.0.62.33"}
|
||||
}
|
||||
|
@ -1095,5 +1095,5 @@ bn{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.77"}
|
||||
}
|
||||
|
@ -1076,5 +1076,5 @@ brx{
|
||||
"ज़ीम्बाबवेई डॉलर",
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.77"}
|
||||
}
|
||||
|
@ -2824,5 +2824,5 @@ bs{
|
||||
other{"zimbabvejskih dolara (2008)"}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.84"}
|
||||
Version{"2.0.62.77"}
|
||||
}
|
||||
|
@ -641,7 +641,7 @@ ca{
|
||||
}
|
||||
MKN{
|
||||
"MKN",
|
||||
"denar macedoni (1992-1993)",
|
||||
"denar macedoni (1992-1993)",
|
||||
}
|
||||
MLF{
|
||||
"MLF",
|
||||
|
@ -62,5 +62,5 @@ chr{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.59.5"}
|
||||
Version{"2.0.62.29"}
|
||||
}
|
||||
|
@ -2323,5 +2323,5 @@ cs{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.59.84"}
|
||||
Version{"2.0.62.55"}
|
||||
}
|
||||
|
@ -2297,5 +2297,5 @@ ee{
|
||||
CurrencyUnitPatterns{
|
||||
other{"{1} {0}"}
|
||||
}
|
||||
Version{"2.0.61.44"}
|
||||
Version{"2.0.61.87"}
|
||||
}
|
||||
|
@ -2355,5 +2355,5 @@ en{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.61.76"}
|
||||
Version{"2.0.62.77"}
|
||||
}
|
||||
|
@ -2073,5 +2073,5 @@ es{
|
||||
CurrencyUnitPatterns{
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.60.15"}
|
||||
Version{"2.0.62.55"}
|
||||
}
|
||||
|
@ -2354,5 +2354,5 @@ fi{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.59.68"}
|
||||
Version{"2.0.62.84"}
|
||||
}
|
||||
|
@ -2206,5 +2206,5 @@ fr{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.61.44"}
|
||||
Version{"2.0.62.75"}
|
||||
}
|
||||
|
@ -885,7 +885,7 @@ hr{
|
||||
}
|
||||
TMM{
|
||||
"TMM",
|
||||
"turkmenistanski manat (1993.-2009.)",
|
||||
"turkmenistanski manat (1993.-2009.)",
|
||||
}
|
||||
TMT{
|
||||
"TMT",
|
||||
@ -1329,9 +1329,9 @@ hr{
|
||||
}
|
||||
BRB{
|
||||
few{"brazilska nova cruzeira (1967.-1986.)"}
|
||||
many{"brazilskih novih cruzeira (1967.-1986.)"}
|
||||
one{"brazilski novi cruzeir (1967.-1986.)"}
|
||||
other{"brazilskih novih cruzeira (1967.-1986.)"}
|
||||
many{"brazilskih novih cruzeira (1967.-1986.)"}
|
||||
one{"brazilski novi cruzeir (1967.-1986.)"}
|
||||
other{"brazilskih novih cruzeira (1967.-1986.)"}
|
||||
}
|
||||
BRC{
|
||||
few{"brazilska cruzada"}
|
||||
@ -2418,10 +2418,10 @@ hr{
|
||||
other{"tadžikistanskih somona"}
|
||||
}
|
||||
TMM{
|
||||
few{"turkmenistanska manata (1993.-2009.)"}
|
||||
many{"turkmenistanskih manata (1993.-2009.)"}
|
||||
one{"turkmenistanski manat (1993.-2009.)"}
|
||||
other{"turkmenistanskih manata (1993.-2009.)"}
|
||||
few{"turkmenistanska manata (1993.-2009.)"}
|
||||
many{"turkmenistanskih manata (1993.-2009.)"}
|
||||
one{"turkmenistanski manat (1993.-2009.)"}
|
||||
other{"turkmenistanskih manata (1993.-2009.)"}
|
||||
}
|
||||
TMT{
|
||||
few{"turkmenistanska manata"}
|
||||
@ -2778,5 +2778,5 @@ hr{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.61.44"}
|
||||
Version{"2.0.62.55"}
|
||||
}
|
||||
|
@ -1091,5 +1091,5 @@ ko{
|
||||
CurrencyUnitPatterns{
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.59.68"}
|
||||
Version{"2.0.62.55"}
|
||||
}
|
||||
|
@ -232,5 +232,5 @@ ln{
|
||||
"Dolarɛ ya Zimbabwɛ",
|
||||
}
|
||||
}
|
||||
Version{"2.0.57.98"}
|
||||
Version{"2.0.62.5"}
|
||||
}
|
||||
|
17
icu4c/source/data/curr/nl_CW.txt
Normal file
17
icu4c/source/data/curr/nl_CW.txt
Normal file
@ -0,0 +1,17 @@
|
||||
// ***************************************************************************
|
||||
// *
|
||||
// * Copyright (C) 2011 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/nl_CW.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
nl_CW{
|
||||
Currencies{
|
||||
ANG{
|
||||
"NAf.",
|
||||
"Nederlands-Antilliaanse gulden",
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.59"}
|
||||
}
|
17
icu4c/source/data/curr/nl_SX.txt
Normal file
17
icu4c/source/data/curr/nl_SX.txt
Normal file
@ -0,0 +1,17 @@
|
||||
// ***************************************************************************
|
||||
// *
|
||||
// * Copyright (C) 2011 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/nl_SX.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
nl_SX{
|
||||
Currencies{
|
||||
ANG{
|
||||
"NAf.",
|
||||
"Nederlands-Antilliaanse gulden",
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.59"}
|
||||
}
|
@ -1262,8 +1262,8 @@ pt{
|
||||
other{"Florins de Aruba"}
|
||||
}
|
||||
AZM{
|
||||
one{"Manat do Azeibaijão (1993-2006)"}
|
||||
other{"Manats do Azeibaijão (1993-2006)"}
|
||||
one{"Manat do Azeibaijão (1993-2006)"}
|
||||
other{"Manats do Azeibaijão (1993-2006)"}
|
||||
}
|
||||
AZN{
|
||||
one{"Manat do Azeibaijão"}
|
||||
|
@ -1,6 +1,6 @@
|
||||
# * Copyright (C) 1998-2011, International Business Machines
|
||||
# * Corporation and others. All Rights Reserved.
|
||||
CURR_CLDR_VERSION = 2.0
|
||||
CURR_CLDR_VERSION = 21.0
|
||||
# A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
@ -80,21 +80,21 @@ CURR_SOURCE = af.txt af_NA.txt agq.txt ak.txt\
|
||||
mk.txt ml.txt mr.txt ms.txt ms_BN.txt\
|
||||
mt.txt mua.txt my.txt naq.txt nb.txt\
|
||||
nd.txt ne.txt ne_IN.txt nl.txt nl_AW.txt\
|
||||
nmg.txt nn.txt nus.txt nyn.txt om.txt\
|
||||
om_KE.txt or.txt pa.txt pa_Arab.txt pa_Guru.txt\
|
||||
pl.txt ps.txt pt.txt pt_AO.txt pt_MZ.txt\
|
||||
pt_PT.txt pt_ST.txt rm.txt rn.txt ro.txt\
|
||||
rof.txt ru.txt rw.txt rwk.txt saq.txt\
|
||||
sbp.txt seh.txt ses.txt sg.txt shi.txt\
|
||||
shi_Latn.txt shi_Tfng.txt si.txt sk.txt sl.txt\
|
||||
sn.txt so.txt so_DJ.txt so_ET.txt so_KE.txt\
|
||||
sq.txt sr.txt sr_Cyrl.txt sr_Cyrl_BA.txt sr_Latn.txt\
|
||||
sv.txt sw.txt swc.txt ta.txt ta_LK.txt\
|
||||
te.txt teo.txt teo_KE.txt th.txt ti.txt\
|
||||
ti_ER.txt to.txt tr.txt twq.txt tzm.txt\
|
||||
tzm_Latn.txt uk.txt ur.txt uz.txt uz_Arab.txt\
|
||||
uz_Cyrl.txt uz_Latn.txt vai.txt vai_Latn.txt vai_Vaii.txt\
|
||||
vi.txt vun.txt xog.txt yav.txt yo.txt\
|
||||
zh.txt zh_Hans.txt zh_Hans_HK.txt zh_Hans_MO.txt zh_Hans_SG.txt\
|
||||
zh_Hant.txt zh_Hant_HK.txt zu.txt
|
||||
nl_CW.txt nl_SX.txt nmg.txt nn.txt nus.txt\
|
||||
nyn.txt om.txt om_KE.txt or.txt pa.txt\
|
||||
pa_Arab.txt pa_Guru.txt pl.txt ps.txt pt.txt\
|
||||
pt_AO.txt pt_MZ.txt pt_PT.txt pt_ST.txt rm.txt\
|
||||
rn.txt ro.txt rof.txt ru.txt rw.txt\
|
||||
rwk.txt saq.txt sbp.txt seh.txt ses.txt\
|
||||
sg.txt shi.txt shi_Latn.txt shi_Tfng.txt si.txt\
|
||||
sk.txt sl.txt sn.txt so.txt so_DJ.txt\
|
||||
so_ET.txt so_KE.txt sq.txt sr.txt sr_Cyrl.txt\
|
||||
sr_Cyrl_BA.txt sr_Latn.txt sv.txt sw.txt swc.txt\
|
||||
ta.txt ta_LK.txt te.txt teo.txt teo_KE.txt\
|
||||
th.txt ti.txt ti_ER.txt to.txt tr.txt\
|
||||
twq.txt tzm.txt tzm_Latn.txt uk.txt ur.txt\
|
||||
uz.txt uz_Arab.txt uz_Cyrl.txt uz_Latn.txt vai.txt\
|
||||
vai_Latn.txt vai_Vaii.txt vi.txt vun.txt xog.txt\
|
||||
yav.txt yo.txt zh.txt zh_Hans.txt zh_Hans_HK.txt\
|
||||
zh_Hans_MO.txt zh_Hans_SG.txt zh_Hant.txt zh_Hant_HK.txt zu.txt
|
||||
|
||||
|
@ -99,7 +99,7 @@ root{
|
||||
CurrencyUnitPatterns{
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.84"}
|
||||
currencySpacing{
|
||||
afterCurrency{
|
||||
currencyMatch{"[:letter:]"}
|
||||
|
@ -48,5 +48,5 @@ sq{
|
||||
"Dollar amerikan",
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.32"}
|
||||
Version{"2.0.62.69"}
|
||||
}
|
||||
|
@ -797,10 +797,6 @@ supplementalData:table(nofallback){
|
||||
-463,
|
||||
419518048,
|
||||
}
|
||||
to:intvector{ /** 1974-04-16 */
|
||||
29,
|
||||
-1322378880,
|
||||
}
|
||||
}
|
||||
}
|
||||
BU{
|
||||
|
@ -413,8 +413,7 @@ te{
|
||||
}
|
||||
NIO{
|
||||
"NIO",
|
||||
"నికరగ్యుయన్
|
||||
కొర్డుబు",
|
||||
"నికరగ్యుయన్ కొర్డుబు",
|
||||
}
|
||||
NOK{
|
||||
"NOK",
|
||||
@ -633,5 +632,5 @@ te{
|
||||
"జాంబియన్ క్వాచా",
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.68"}
|
||||
}
|
||||
|
@ -656,5 +656,5 @@ ur{
|
||||
"زامبیائی کواچا",
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.70"}
|
||||
}
|
||||
|
@ -1080,5 +1080,5 @@ zh{
|
||||
"津巴布韦元 (2009)",
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.76"}
|
||||
}
|
||||
|
@ -29,5 +29,5 @@ zh_Hans_SG{
|
||||
"尼加拉瓜科多巴",
|
||||
}
|
||||
}
|
||||
Version{"2.0.58.84"}
|
||||
Version{"2.0.62.55"}
|
||||
}
|
||||
|
@ -1048,5 +1048,5 @@ zh_Hant{
|
||||
"辛巴威元 (2009)",
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.76"}
|
||||
}
|
||||
|
@ -65,5 +65,5 @@ zh_Hant_HK{
|
||||
"太平洋法郎",
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.66"}
|
||||
Version{"2.0.62.55"}
|
||||
}
|
||||
|
@ -19,6 +19,7 @@
|
||||
<include locales="am"/>
|
||||
<include locales="am_ET"/>
|
||||
<include locales="ar"/>
|
||||
<include locales="ar_001"/>
|
||||
<include locales="ar_AE"/>
|
||||
<include locales="ar_BH"/>
|
||||
<include locales="ar_DZ"/>
|
||||
@ -356,7 +357,9 @@
|
||||
<include locales="nl"/>
|
||||
<include locales="nl_AW"/>
|
||||
<include locales="nl_BE"/>
|
||||
<include locales="nl_CW"/>
|
||||
<include locales="nl_NL"/>
|
||||
<include locales="nl_SX"/>
|
||||
<include locales="nmg"/>
|
||||
<include locales="nmg_CM"/>
|
||||
<include locales="nn"/>
|
||||
|
@ -302,7 +302,7 @@ af{
|
||||
tibt{"Tibettaanse syfers"}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.44"}
|
||||
Version{"2.0.62.33"}
|
||||
codePatterns{
|
||||
language{"Taal: {0}"}
|
||||
script{"Skrif: {0}"}
|
||||
|
@ -315,7 +315,7 @@ am{
|
||||
tibt{"የቲቤታን አሃዞች"}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.33"}
|
||||
localeDisplayPattern{
|
||||
separator{","}
|
||||
}
|
||||
|
@ -722,7 +722,7 @@ ar{
|
||||
VALENCIA{"بلنسية"}
|
||||
WADEGILE{"المندرين باللاتينية - ويد–جيلز"}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.33"}
|
||||
codePatterns{
|
||||
language{"اللغة: {0}"}
|
||||
script{"نظام الكتابة: {0}"}
|
||||
|
@ -653,7 +653,7 @@ az{
|
||||
pinyin{"Pinyin təqvimi"}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.68"}
|
||||
Version{"2.0.62.33"}
|
||||
codePatterns{
|
||||
language{"Dil: {0}"}
|
||||
script{"Yazı: {0}"}
|
||||
|
@ -187,7 +187,7 @@ be{
|
||||
japanese{"японскі каляндар"}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.5"}
|
||||
Version{"2.0.62.33"}
|
||||
codePatterns{
|
||||
language{"Мова: {0}"}
|
||||
script{"Пісьмо: {0}"}
|
||||
|
@ -754,7 +754,7 @@ bg{
|
||||
VALENCIA{"Валенсиански"}
|
||||
WADEGILE{"Уейд-Джайлс романизация"}
|
||||
}
|
||||
Version{"2.0.59.68"}
|
||||
Version{"2.0.62.33"}
|
||||
localeDisplayPattern{
|
||||
pattern{"{0} ({1})"}
|
||||
separator{", "}
|
||||
|
@ -732,7 +732,7 @@ bn{
|
||||
tibt{"তিব্বতি সংখ্যা"}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.77"}
|
||||
codePatterns{
|
||||
language{"ভাষা: {0}"}
|
||||
script{"লিপি: {0}"}
|
||||
|
@ -689,7 +689,7 @@ brx{
|
||||
TARASK{"तारास्कीएवीचा वर्तनी"}
|
||||
XIANG{"ज़ीयाँग हुनानी"}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.77"}
|
||||
codePatterns{
|
||||
script{"देवनागरी: {0}"}
|
||||
territory{"क्षेत्र:भारत {0}"}
|
||||
|
@ -693,7 +693,7 @@ bs{
|
||||
TARASK{"Taraskijevica ortografija"}
|
||||
VALENCIA{"Valencijski"}
|
||||
}
|
||||
Version{"2.0.59.84"}
|
||||
Version{"2.0.62.77"}
|
||||
codePatterns{
|
||||
language{"Jezik: {0}"}
|
||||
script{"Skript: {0}"}
|
||||
|
@ -46,5 +46,5 @@ chr{
|
||||
gregorian{"ᏅᏙ ᏗᏎᏗ"}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.5"}
|
||||
Version{"2.0.62.29"}
|
||||
}
|
||||
|
@ -579,7 +579,7 @@ cs{
|
||||
Variants{
|
||||
WADEGILE{"Wade-Giles"}
|
||||
}
|
||||
Version{"2.0.59.84"}
|
||||
Version{"2.0.62.55"}
|
||||
codePatterns{
|
||||
language{"Jazyk: {0}"}
|
||||
script{"Písmo: {0}"}
|
||||
|
@ -299,7 +299,7 @@ ee{
|
||||
tibt{"tibet digitwo"}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.44"}
|
||||
Version{"2.0.61.87"}
|
||||
codePatterns{
|
||||
language{"gbegbɔgblɔ {0}"}
|
||||
script{"gbeŋɔŋlɔ {0}"}
|
||||
|
@ -52,6 +52,7 @@ en{
|
||||
anp{"Angika"}
|
||||
apa{"Apache Language"}
|
||||
ar{"Arabic"}
|
||||
ar_001{"Modern Standard Arabic"}
|
||||
arc{"Aramaic"}
|
||||
arn{"Araucanian"}
|
||||
arp{"Arapaho"}
|
||||
@ -634,7 +635,7 @@ en{
|
||||
Hebr{"Hebrew"}
|
||||
Hira{"Hiragana"}
|
||||
Hmng{"Pahawh Hmong"}
|
||||
Hrkt{"Katakana or Hiragana"}
|
||||
Hrkt{"Japanese syllabaries"}
|
||||
Hung{"Old Hungarian"}
|
||||
Inds{"Indus"}
|
||||
Ital{"Old Italic"}
|
||||
@ -644,6 +645,7 @@ en{
|
||||
Kana{"Katakana"}
|
||||
Khar{"Kharoshthi"}
|
||||
Khmr{"Khmer"}
|
||||
Khoj{"Khojki"}
|
||||
Knda{"Kannada"}
|
||||
Kore{"Korean"}
|
||||
Kthi{"Kaithi"}
|
||||
@ -712,6 +714,7 @@ en{
|
||||
Thaa{"Thaana"}
|
||||
Thai{"Thai"}
|
||||
Tibt{"Tibetan"}
|
||||
Tirh{"Tirhuta"}
|
||||
Ugar{"Ugaritic"}
|
||||
Vaii{"Vai"}
|
||||
Visp{"Visible Speech"}
|
||||
@ -751,6 +754,7 @@ en{
|
||||
dictionary{"Dictionary Sort Order"}
|
||||
direct{"Direct Sort Order"}
|
||||
ducet{"Default Unicode Sort Order"}
|
||||
eor{"European Ordering Rules"}
|
||||
gb2312han{"Simplified Chinese Sort Order - GB2312"}
|
||||
phonebook{"Phonebook Sort Order"}
|
||||
pinyin{"Pinyin Sort Order"}
|
||||
@ -844,7 +848,7 @@ en{
|
||||
VALENCIA{"Valencian"}
|
||||
WADEGILE{"Wade-Giles Romanization"}
|
||||
}
|
||||
Version{"2.0.61.76"}
|
||||
Version{"2.0.62.77"}
|
||||
codePatterns{
|
||||
language{"Language: {0}"}
|
||||
script{"Script: {0}"}
|
||||
|
@ -733,7 +733,7 @@ es{
|
||||
VALENCIA{"Valenciano"}
|
||||
WADEGILE{"Romanización Wade-Giles"}
|
||||
}
|
||||
Version{"2.0.60.15"}
|
||||
Version{"2.0.62.55"}
|
||||
codePatterns{
|
||||
language{"Idioma: {0}"}
|
||||
script{"Dialecto: {0}"}
|
||||
|
@ -801,7 +801,7 @@ fi{
|
||||
VALLADER{"reoromaanin vallader-muoto"}
|
||||
WADEGILE{"kiinan Wade-Giles-latinaistus"}
|
||||
}
|
||||
Version{"2.0.59.68"}
|
||||
Version{"2.0.62.84"}
|
||||
codePatterns{
|
||||
language{"kieli: {0}"}
|
||||
script{"kirjoitusjärjestelmä: {0}"}
|
||||
|
@ -762,7 +762,7 @@ fr{
|
||||
VALENCIA{"valencien"}
|
||||
WADEGILE{"Wade-Giles"}
|
||||
}
|
||||
Version{"2.0.61.44"}
|
||||
Version{"2.0.62.75"}
|
||||
codePatterns{
|
||||
language{"langue : {0}"}
|
||||
script{"écriture : {0}"}
|
||||
|
@ -709,7 +709,7 @@ gu{
|
||||
greklow{"ગ્રિક નાના અક્ષરની સંખ્યા"}
|
||||
gujr{"ગુજરાતી અંકો"}
|
||||
guru{"ગુરમુખી અંકો"}
|
||||
hanidec{"ચાઇનીઝ દશાંશ સંખ્યા"}
|
||||
hanidec{"ચાઇનીઝ દશાંશ સંખ્યા"}
|
||||
hans{"સરળિકૃત ચાઇનીઝ સંખ્યાઓ"}
|
||||
hansfin{"સરળિકૃત ચાઇનીઝ નાણાકિય સંખ્યાઓ"}
|
||||
hant{"પરંપરાગત ચાઇનિઝ સંખ્યાઓ"}
|
||||
|
@ -764,7 +764,7 @@ hr{
|
||||
VALENCIA{"valencijski"}
|
||||
WADEGILE{"Wade-Giles romanizacija"}
|
||||
}
|
||||
Version{"2.0.61.44"}
|
||||
Version{"2.0.62.55"}
|
||||
codePatterns{
|
||||
language{"Jezik: {0}"}
|
||||
script{"Pismo: {0}"}
|
||||
|
@ -719,7 +719,7 @@ ko{
|
||||
REVISED{"개정"}
|
||||
UCRCOR{"통합 개정 표기법"}
|
||||
}
|
||||
Version{"2.0.59.68"}
|
||||
Version{"2.0.62.55"}
|
||||
codePatterns{
|
||||
language{"언어: {0}"}
|
||||
script{"스크립트: {0}"}
|
||||
|
@ -57,5 +57,5 @@ ln{
|
||||
zh{"lisinwa"}
|
||||
zu{"zulu"}
|
||||
}
|
||||
Version{"2.0.57.98"}
|
||||
Version{"2.0.62.5"}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
# * Copyright (C) 1998-2011, International Business Machines
|
||||
# * Corporation and others. All Rights Reserved.
|
||||
LANG_CLDR_VERSION = 2.0
|
||||
LANG_CLDR_VERSION = 21.0
|
||||
# A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
|
@ -10,7 +10,7 @@
|
||||
* ICU <specials> source: <path>/xml/main/root.xml
|
||||
*/
|
||||
root{
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.84"}
|
||||
codePatterns{
|
||||
language{"{0}"}
|
||||
script{"{0}"}
|
||||
|
@ -23,7 +23,7 @@ sq{
|
||||
pt{"Portugeze"}
|
||||
ru{"Rusisht"}
|
||||
sh{"Serbo-Kroatisht"}
|
||||
sq{"shqipe"}
|
||||
sq{"shqip"}
|
||||
zh{"Kineze"}
|
||||
}
|
||||
Scripts{
|
||||
@ -31,5 +31,5 @@ sq{
|
||||
Zxxx{"I pashkruar"}
|
||||
Zzzz{"Skript i panjohur"}
|
||||
}
|
||||
Version{"2.0.59.32"}
|
||||
Version{"2.0.62.69"}
|
||||
}
|
||||
|
@ -741,7 +741,7 @@ te{
|
||||
REVISED{"సవరించబడిన వర్ణక్రమం"}
|
||||
WADEGILE{"వేడ్-గైల్స్ రోమనైజేషన్"}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.68"}
|
||||
localeDisplayPattern{
|
||||
pattern{"{0} ({1})"}
|
||||
separator{","}
|
||||
|
@ -296,7 +296,7 @@ ur{
|
||||
tibt{"تبتی اعداد"}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.70"}
|
||||
localeDisplayPattern{
|
||||
separator{"،"}
|
||||
}
|
||||
|
@ -756,7 +756,7 @@ zh{
|
||||
VALENCIA{"瓦伦西亚文"}
|
||||
WADEGILE{"WG 威氏拼音法"}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.76"}
|
||||
codePatterns{
|
||||
language{"语言:{0}"}
|
||||
script{"脚本:{0}"}
|
||||
|
@ -74,7 +74,7 @@ zh_Hans_SG{
|
||||
SAAHO{"萨霍文"}
|
||||
WADEGILE{"韦氏拼音罗马字"}
|
||||
}
|
||||
Version{"2.0.58.84"}
|
||||
Version{"2.0.62.55"}
|
||||
codePatterns{
|
||||
script{"语系:{0}"}
|
||||
territory{"地区:{0}"}
|
||||
|
@ -726,7 +726,7 @@ zh_Hant{
|
||||
REVISED{"已修訂的拼字學"}
|
||||
WADEGILE{"威妥瑪式拼音"}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.76"}
|
||||
codePatterns{
|
||||
language{"語言:{0}"}
|
||||
script{"文字:{0}"}
|
||||
|
@ -83,5 +83,5 @@ zh_Hant_HK{
|
||||
REVISED{"已修訂拼字法"}
|
||||
SCOTLAND{"蘇格蘭標準英語"}
|
||||
}
|
||||
Version{"2.0.59.66"}
|
||||
Version{"2.0.62.55"}
|
||||
}
|
||||
|
@ -38,7 +38,7 @@ af{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.44"}
|
||||
Version{"2.0.62.33"}
|
||||
calendar{
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
|
@ -23,7 +23,7 @@ am{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.33"}
|
||||
calendar{
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
|
@ -55,7 +55,7 @@ ar{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.33"}
|
||||
calendar{
|
||||
buddhist{
|
||||
DateTimePatterns{
|
||||
|
16
icu4c/source/data/locales/ar_001.txt
Normal file
16
icu4c/source/data/locales/ar_001.txt
Normal file
@ -0,0 +1,16 @@
|
||||
// ***************************************************************************
|
||||
// *
|
||||
// * Copyright (C) 2011 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/ar_001.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
ar_001{
|
||||
MeasurementSystem:int{0}
|
||||
PaperSize:intvector{
|
||||
297,
|
||||
210,
|
||||
}
|
||||
Version{"2.0.62.28"}
|
||||
}
|
@ -35,7 +35,7 @@ az{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.68"}
|
||||
Version{"2.0.62.33"}
|
||||
calendar{
|
||||
gregorian{
|
||||
DateTimePatterns{
|
||||
|
@ -31,7 +31,7 @@ be{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.5"}
|
||||
Version{"2.0.62.33"}
|
||||
calendar{
|
||||
buddhist{
|
||||
DateTimePatterns{
|
||||
|
@ -36,7 +36,7 @@ bg{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.68"}
|
||||
Version{"2.0.62.33"}
|
||||
calendar{
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
|
@ -52,7 +52,7 @@ bn{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.77"}
|
||||
calendar{
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
|
@ -46,7 +46,7 @@ brx{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.77"}
|
||||
calendar{
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
|
@ -23,7 +23,7 @@ bs{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.84"}
|
||||
Version{"2.0.62.77"}
|
||||
calendar{
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
|
@ -42,7 +42,7 @@ chr{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.5"}
|
||||
Version{"2.0.62.29"}
|
||||
calendar{
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
|
@ -29,7 +29,7 @@ ee{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.44"}
|
||||
Version{"2.0.61.87"}
|
||||
calendar{
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
|
@ -43,7 +43,7 @@ en{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.76"}
|
||||
Version{"2.0.62.77"}
|
||||
calendar{
|
||||
buddhist{
|
||||
DateTimePatterns{
|
||||
@ -87,6 +87,28 @@ en{
|
||||
yQQQ{"QQQ y G"}
|
||||
}
|
||||
}
|
||||
chinese{
|
||||
cyclicNameSets{
|
||||
zodiacs{
|
||||
format{
|
||||
abbreviated{
|
||||
"Rat",
|
||||
"Ox",
|
||||
"Tiger",
|
||||
"Rabbit",
|
||||
"Dragon",
|
||||
"Snake",
|
||||
"Horse",
|
||||
"Goat",
|
||||
"Monkey",
|
||||
"Rooster",
|
||||
"Dog",
|
||||
"Pig",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
"AM",
|
||||
|
@ -155,238 +155,238 @@ en_HK{
|
||||
}
|
||||
eras{
|
||||
abbreviated{
|
||||
"Taika",
|
||||
"Hakuchi",
|
||||
"Hakuhō",
|
||||
"Shuchō",
|
||||
"Taihō",
|
||||
"Keiun",
|
||||
"Wadō",
|
||||
"Reiki",
|
||||
"Yōrō",
|
||||
"Jinki",
|
||||
"Tempyō",
|
||||
"Tempyō-kampō",
|
||||
"Tempyō-shōhō",
|
||||
"Tempyō-hōji",
|
||||
"Temphō-jingo",
|
||||
"Jingo-keiun",
|
||||
"Hōki",
|
||||
"Ten-ō",
|
||||
"Enryaku",
|
||||
"Daidō",
|
||||
"Kōnin",
|
||||
"Tenchō",
|
||||
"Shōwa",
|
||||
"Kajō",
|
||||
"Ninju",
|
||||
"Saiko",
|
||||
"Tennan",
|
||||
"Jōgan",
|
||||
"Genkei",
|
||||
"Ninna",
|
||||
"Kampyō",
|
||||
"Shōtai",
|
||||
"Engi",
|
||||
"Enchō",
|
||||
"Shōhei",
|
||||
"Tengyō",
|
||||
"Tenryaku",
|
||||
"Tentoku",
|
||||
"Ōwa",
|
||||
"Kōhō",
|
||||
"Anna",
|
||||
"Tenroku",
|
||||
"Ten-en",
|
||||
"Jōgen",
|
||||
"Tengen",
|
||||
"Eikan",
|
||||
"Kanna",
|
||||
"Ei-en",
|
||||
"Eiso",
|
||||
"Shōryaku",
|
||||
"Chōtoku",
|
||||
"Chōhō",
|
||||
"Kankō",
|
||||
"Chōwa",
|
||||
"Kannin",
|
||||
"Jian",
|
||||
"Manju",
|
||||
"Chōgen",
|
||||
"Chōryaku",
|
||||
"Chōkyū",
|
||||
"Kantoku",
|
||||
"Eishō",
|
||||
"Tengi",
|
||||
"Kōhei",
|
||||
"Jiryaku",
|
||||
"Enkyū",
|
||||
"Shōho",
|
||||
"Shōryaku",
|
||||
"Eiho",
|
||||
"Ōtoku",
|
||||
"Kanji",
|
||||
"Kaho",
|
||||
"Eichō",
|
||||
"Shōtoku",
|
||||
"Kōwa",
|
||||
"Chōji",
|
||||
"Kashō",
|
||||
"Tennin",
|
||||
"Ten-ei",
|
||||
"Eikyū",
|
||||
"Gen-ei",
|
||||
"Hoan",
|
||||
"Tenji",
|
||||
"Daiji",
|
||||
"Tenshō",
|
||||
"Chōshō",
|
||||
"Hoen",
|
||||
"Eiji",
|
||||
"Kōji",
|
||||
"Tenyō",
|
||||
"Kyūan",
|
||||
"Ninpei",
|
||||
"Kyūju",
|
||||
"Hogen",
|
||||
"Heiji",
|
||||
"Eiryaku",
|
||||
"Ōho",
|
||||
"Chōkan",
|
||||
"Eiman",
|
||||
"Nin-an",
|
||||
"Kaō",
|
||||
"Shōan",
|
||||
"Angen",
|
||||
"Jishō",
|
||||
"Yōwa",
|
||||
"Juei",
|
||||
"Genryuku",
|
||||
"Bunji",
|
||||
"Kenkyū",
|
||||
"Shōji",
|
||||
"Kennin",
|
||||
"Genkyū",
|
||||
"Ken-ei",
|
||||
"Shōgen",
|
||||
"Kenryaku",
|
||||
"Kenpō",
|
||||
"Shōkyū",
|
||||
"Jōō",
|
||||
"Gennin",
|
||||
"Karoku",
|
||||
"Antei",
|
||||
"Kanki",
|
||||
"Jōei",
|
||||
"Tempuku",
|
||||
"Bunryaku",
|
||||
"Katei",
|
||||
"Ryakunin",
|
||||
"En-ō",
|
||||
"Ninji",
|
||||
"Kangen",
|
||||
"Hōji",
|
||||
"Kenchō",
|
||||
"Kōgen",
|
||||
"Shōka",
|
||||
"Shōgen",
|
||||
"Bun-ō",
|
||||
"Kōchō",
|
||||
"Bun-ei",
|
||||
"Kenji",
|
||||
"Kōan",
|
||||
"Shōō",
|
||||
"Einin",
|
||||
"Shōan",
|
||||
"Kengen",
|
||||
"Kagen",
|
||||
"Tokuji",
|
||||
"Enkei",
|
||||
"Ōchō",
|
||||
"Shōwa",
|
||||
"Bunpō",
|
||||
"Genō",
|
||||
"Genkyō",
|
||||
"Shōchū",
|
||||
"Kareki",
|
||||
"Gentoku",
|
||||
"Genkō",
|
||||
"Kemmu",
|
||||
"Engen",
|
||||
"Kōkoku",
|
||||
"Shōhei",
|
||||
"Kentoku",
|
||||
"Taika (645-650)",
|
||||
"Hakuchi (650-671)",
|
||||
"Hakuhō (672-686)",
|
||||
"Shuchō (686-701)",
|
||||
"Taihō (701-704)",
|
||||
"Keiun (704-708)",
|
||||
"Wadō (708-715)",
|
||||
"Reiki (715-717)",
|
||||
"Yōrō (717-724)",
|
||||
"Jinki (724-729)",
|
||||
"Tempyō (729-749)",
|
||||
"Tempyō-kampō (749-749)",
|
||||
"Tempyō-shōhō (749-757)",
|
||||
"Tempyō-hōji (757-765)",
|
||||
"Temphō-jingo (765-767)",
|
||||
"Jingo-keiun (767-770)",
|
||||
"Hōki (770-780)",
|
||||
"Ten-ō (781-782)",
|
||||
"Enryaku (782-806)",
|
||||
"Daidō (806-810)",
|
||||
"Kōnin (810-824)",
|
||||
"Tenchō (824-834)",
|
||||
"Shōwa (834-848)",
|
||||
"Kajō (848-851)",
|
||||
"Ninju (851-854)",
|
||||
"Saiko (854-857)",
|
||||
"Tennan (857-859)",
|
||||
"Jōgan (859-877)",
|
||||
"Genkei (877-885)",
|
||||
"Ninna (885-889)",
|
||||
"Kampyō (889-898)",
|
||||
"Shōtai (898-901)",
|
||||
"Engi (901-923)",
|
||||
"Enchō (923-931)",
|
||||
"Shōhei (931-938)",
|
||||
"Tengyō (938-947)",
|
||||
"Tenryaku (947-957)",
|
||||
"Tentoku (957-961)",
|
||||
"Ōwa (961-964)",
|
||||
"Kōhō (964-968)",
|
||||
"Anna (968-970)",
|
||||
"Tenroku (970-973)",
|
||||
"Ten-en (973-976)",
|
||||
"Jōgen (976-978)",
|
||||
"Tengen (978-983)",
|
||||
"Eikan (983-985)",
|
||||
"Kanna (985-987)",
|
||||
"Ei-en (987-989)",
|
||||
"Eiso (989-990)",
|
||||
"Shōryaku (990-995)",
|
||||
"Chōtoku (995-999)",
|
||||
"Chōhō (999-1004)",
|
||||
"Kankō (1004-1012)",
|
||||
"Chōwa (1012-1017)",
|
||||
"Kannin (1017-1021)",
|
||||
"Jian (1021-1024)",
|
||||
"Manju (1024-1028)",
|
||||
"Chōgen (1028-1037)",
|
||||
"Chōryaku (1037-1040)",
|
||||
"Chōkyū (1040-1044)",
|
||||
"Kantoku (1044-1046)",
|
||||
"Eishō (1046-1053)",
|
||||
"Tengi (1053-1058)",
|
||||
"Kōhei (1058-1065)",
|
||||
"Jiryaku (1065-1069)",
|
||||
"Enkyū (1069-1074)",
|
||||
"Shōho (1074-1077)",
|
||||
"Shōryaku (1077-1081)",
|
||||
"Eiho (1081-1084)",
|
||||
"Ōtoku (1084-1087)",
|
||||
"Kanji (1087-1094)",
|
||||
"Kaho (1094-1096)",
|
||||
"Eichō (1096-1097)",
|
||||
"Shōtoku (1097-1099)",
|
||||
"Kōwa (1099-1104)",
|
||||
"Chōji (1104-1106)",
|
||||
"Kashō (1106-1108)",
|
||||
"Tennin (1108-1110)",
|
||||
"Ten-ei (1110-1113)",
|
||||
"Eikyū (1113-1118)",
|
||||
"Gen-ei (1118-1120)",
|
||||
"Hoan (1120-1124)",
|
||||
"Tenji (1124-1126)",
|
||||
"Daiji (1126-1131)",
|
||||
"Tenshō (1131-1132)",
|
||||
"Chōshō (1132-1135)",
|
||||
"Hoen (1135-1141)",
|
||||
"Eiji (1141-1142)",
|
||||
"Kōji (1142-1144)",
|
||||
"Tenyō (1144-1145)",
|
||||
"Kyūan (1145-1151)",
|
||||
"Ninpei (1151-1154)",
|
||||
"Kyūju (1154-1156)",
|
||||
"Hogen (1156-1159)",
|
||||
"Heiji (1159-1160)",
|
||||
"Eiryaku (1160-1161)",
|
||||
"Ōho (1161-1163)",
|
||||
"Chōkan (1163-1165)",
|
||||
"Eiman (1165-1166)",
|
||||
"Nin-an (1166-1169)",
|
||||
"Kaō (1169-1171)",
|
||||
"Shōan (1171-1175)",
|
||||
"Angen (1175-1177)",
|
||||
"Jishō (1177-1181)",
|
||||
"Yōwa (1181-1182)",
|
||||
"Juei (1182-1184)",
|
||||
"Genryuku (1184-1185)",
|
||||
"Bunji (1185-1190)",
|
||||
"Kenkyū (1190-1199)",
|
||||
"Shōji (1199-1201)",
|
||||
"Kennin (1201-1204)",
|
||||
"Genkyū (1204-1206)",
|
||||
"Ken-ei (1206-1207)",
|
||||
"Shōgen (1207-1211)",
|
||||
"Kenryaku (1211-1213)",
|
||||
"Kenpō (1213-1219)",
|
||||
"Shōkyū (1219-1222)",
|
||||
"Jōō (1222-1224)",
|
||||
"Gennin (1224-1225)",
|
||||
"Karoku (1225-1227)",
|
||||
"Antei (1227-1229)",
|
||||
"Kanki (1229-1232)",
|
||||
"Jōei (1232-1233)",
|
||||
"Tempuku (1233-1234)",
|
||||
"Bunryaku (1234-1235)",
|
||||
"Katei (1235-1238)",
|
||||
"Ryakunin (1238-1239)",
|
||||
"En-ō (1239-1240)",
|
||||
"Ninji (1240-1243)",
|
||||
"Kangen (1243-1247)",
|
||||
"Hōji (1247-1249)",
|
||||
"Kenchō (1249-1256)",
|
||||
"Kōgen (1256-1257)",
|
||||
"Shōka (1257-1259)",
|
||||
"Shōgen (1259-1260)",
|
||||
"Bun-ō (1260-1261)",
|
||||
"Kōchō (1261-1264)",
|
||||
"Bun-ei (1264-1275)",
|
||||
"Kenji (1275-1278)",
|
||||
"Kōan (1278-1288)",
|
||||
"Shōō (1288-1293)",
|
||||
"Einin (1293-1299)",
|
||||
"Shōan (1299-1302)",
|
||||
"Kengen (1302-1303)",
|
||||
"Kagen (1303-1306)",
|
||||
"Tokuji (1306-1308)",
|
||||
"Enkei (1308-1311)",
|
||||
"Ōchō (1311-1312)",
|
||||
"Shōwa (1312-1317)",
|
||||
"Bunpō (1317-1319)",
|
||||
"Genō (1319-1321)",
|
||||
"Genkyō (1321-1324)",
|
||||
"Shōchū (1324-1326)",
|
||||
"Kareki (1326-1329)",
|
||||
"Gentoku (1329-1331)",
|
||||
"Genkō (1331-1334)",
|
||||
"Kemmu (1334-1336)",
|
||||
"Engen (1336-1340)",
|
||||
"Kōkoku (1340-1346)",
|
||||
"Shōhei (1346-1370)",
|
||||
"Kentoku (1370-1372)",
|
||||
"Bunchū",
|
||||
"Tenju",
|
||||
"Kōryaku",
|
||||
"Kōwa",
|
||||
"Tenju (1375-1379)",
|
||||
"Kōryaku (1379-1381)",
|
||||
"Kōwa (1381-1384)",
|
||||
"Genchū",
|
||||
"Meitoku",
|
||||
"Kakei",
|
||||
"Kōō",
|
||||
"Meitoku",
|
||||
"Ōei",
|
||||
"Shōchō",
|
||||
"Eikyō",
|
||||
"Kakitsu",
|
||||
"Bun-an",
|
||||
"Hōtoku",
|
||||
"Kyōtoku",
|
||||
"Kōshō",
|
||||
"Chōroku",
|
||||
"Kanshō",
|
||||
"Bunshō",
|
||||
"Ōnin",
|
||||
"Bunmei",
|
||||
"Chōkyō",
|
||||
"Entoku",
|
||||
"Meiō",
|
||||
"Bunki",
|
||||
"Eishō",
|
||||
"Taiei",
|
||||
"Kyōroku",
|
||||
"Tenmon",
|
||||
"Kōji",
|
||||
"Eiroku",
|
||||
"Genki",
|
||||
"Tenshō",
|
||||
"Bunroku",
|
||||
"Keichō",
|
||||
"Genwa",
|
||||
"Kan-ei",
|
||||
"Shōho",
|
||||
"Keian",
|
||||
"Shōō",
|
||||
"Meiryaku",
|
||||
"Manji",
|
||||
"Kanbun",
|
||||
"Enpō",
|
||||
"Tenwa",
|
||||
"Jōkyō",
|
||||
"Genroku",
|
||||
"Hōei",
|
||||
"Shōtoku",
|
||||
"Kyōhō",
|
||||
"Genbun",
|
||||
"Kanpō",
|
||||
"Enkyō",
|
||||
"Kan-en",
|
||||
"Hōryaku",
|
||||
"Meiwa",
|
||||
"An-ei",
|
||||
"Tenmei",
|
||||
"Kansei",
|
||||
"Kyōwa",
|
||||
"Bunka",
|
||||
"Bunsei",
|
||||
"Tenpō",
|
||||
"Kōka",
|
||||
"Kaei",
|
||||
"Ansei",
|
||||
"Man-en",
|
||||
"Bunkyū",
|
||||
"Genji",
|
||||
"Keiō",
|
||||
"Meitoku (1384-1387)",
|
||||
"Kakei (1387-1389)",
|
||||
"Kōō (1389-1390)",
|
||||
"Meitoku (1390-1394)",
|
||||
"Ōei (1394-1428)",
|
||||
"Shōchō (1428-1429)",
|
||||
"Eikyō (1429-1441)",
|
||||
"Kakitsu (1441-1444)",
|
||||
"Bun-an (1444-1449)",
|
||||
"Hōtoku (1449-1452)",
|
||||
"Kyōtoku (1452-1455)",
|
||||
"Kōshō (1455-1457)",
|
||||
"Chōroku (1457-1460)",
|
||||
"Kanshō (1460-1466)",
|
||||
"Bunshō (1466-1467)",
|
||||
"Ōnin (1467-1469)",
|
||||
"Bunmei (1469-1487)",
|
||||
"Chōkyō (1487-1489)",
|
||||
"Entoku (1489-1492)",
|
||||
"Meiō (1492-1501)",
|
||||
"Bunki (1501-1504)",
|
||||
"Eishō (1504-1521)",
|
||||
"Taiei (1521-1528)",
|
||||
"Kyōroku (1528-1532)",
|
||||
"Tenmon (1532-1555)",
|
||||
"Kōji (1555-1558)",
|
||||
"Eiroku (1558-1570)",
|
||||
"Genki (1570-1573)",
|
||||
"Tenshō (1573-1592)",
|
||||
"Bunroku (1592-1596)",
|
||||
"Keichō (1596-1615)",
|
||||
"Genwa (1615-1624)",
|
||||
"Kan-ei (1624-1644)",
|
||||
"Shōho (1644-1648)",
|
||||
"Keian (1648-1652)",
|
||||
"Shōō (1652-1655)",
|
||||
"Meiryaku (1655-1658)",
|
||||
"Manji (1658-1661)",
|
||||
"Kanbun (1661-1673)",
|
||||
"Enpō (1673-1681)",
|
||||
"Tenwa (1681-1684)",
|
||||
"Jōkyō (1684-1688)",
|
||||
"Genroku (1688-1704)",
|
||||
"Hōei (1704-1711)",
|
||||
"Shōtoku (1711-1716)",
|
||||
"Kyōhō (1716-1736)",
|
||||
"Genbun (1736-1741)",
|
||||
"Kanpō (1741-1744)",
|
||||
"Enkyō (1744-1748)",
|
||||
"Kan-en (1748-1751)",
|
||||
"Hōryaku (1751-1764)",
|
||||
"Meiwa (1764-1772)",
|
||||
"An-ei (1772-1781)",
|
||||
"Tenmei (1781-1789)",
|
||||
"Kansei (1789-1801)",
|
||||
"Kyōwa (1801-1804)",
|
||||
"Bunka (1804-1818)",
|
||||
"Bunsei (1818-1830)",
|
||||
"Tenpō (1830-1844)",
|
||||
"Kōka (1844-1848)",
|
||||
"Kaei (1848-1854)",
|
||||
"Ansei (1854-1860)",
|
||||
"Man-en (1860-1861)",
|
||||
"Bunkyū (1861-1864)",
|
||||
"Genji (1864-1865)",
|
||||
"Keiō (1865-1868)",
|
||||
"Meiji",
|
||||
"Taishō",
|
||||
"Shōwa",
|
||||
|
@ -16,10 +16,10 @@ en_PK{
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
"EEEE, MMMM d, y",
|
||||
"MMMM d, y",
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"dd-MMM-y",
|
||||
"M/d/yy",
|
||||
"dd/MM/yyyy",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
|
@ -39,7 +39,7 @@ fi{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.62.55"}
|
||||
Version{"2.0.62.84"}
|
||||
calendar{
|
||||
buddhist{
|
||||
DateTimePatterns{
|
||||
@ -113,8 +113,8 @@ fi{
|
||||
Hm{"H.mm"}
|
||||
Hms{"H.mm.ss"}
|
||||
MEd{"E d.M."}
|
||||
MMMEd{"E d. MMM"}
|
||||
MMMd{"d. MMM"}
|
||||
MMMEd{"E d.M."}
|
||||
MMMd{"d.M."}
|
||||
Md{"d.M."}
|
||||
hm{"h.mm a"}
|
||||
hms{"h.mm.ss a"}
|
||||
|
@ -43,7 +43,7 @@ fr{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.62.55"}
|
||||
Version{"2.0.62.75"}
|
||||
calendar{
|
||||
buddhist{
|
||||
DateTimePatterns{
|
||||
|
@ -523,237 +523,237 @@ he{
|
||||
eras{
|
||||
abbreviated{
|
||||
"טאיקה",
|
||||
"Hakuchi",
|
||||
"Hakuhō",
|
||||
"Shuchō",
|
||||
"Taihō",
|
||||
"Keiun",
|
||||
"Wadō",
|
||||
"Reiki",
|
||||
"Yōrō",
|
||||
"Jinki",
|
||||
"Tempyō",
|
||||
"Tempyō-kampō",
|
||||
"Tempyō-shōhō",
|
||||
"Tempyō-hōji",
|
||||
"Temphō-jingo",
|
||||
"Jingo-keiun",
|
||||
"Hōki",
|
||||
"Ten-ō",
|
||||
"Enryaku",
|
||||
"Daidō",
|
||||
"Kōnin",
|
||||
"Tenchō",
|
||||
"Shōwa",
|
||||
"Kajō",
|
||||
"Hakuchi (650-671)",
|
||||
"Hakuhō (672-686)",
|
||||
"Shuchō (686-701)",
|
||||
"Taihō (701-704)",
|
||||
"Keiun (704-708)",
|
||||
"Wadō (708-715)",
|
||||
"Reiki (715-717)",
|
||||
"Yōrō (717-724)",
|
||||
"Jinki (724-729)",
|
||||
"Tempyō (729-749)",
|
||||
"Tempyō-kampō (749-749)",
|
||||
"Tempyō-shōhō (749-757)",
|
||||
"Tempyō-hōji (757-765)",
|
||||
"Temphō-jingo (765-767)",
|
||||
"Jingo-keiun (767-770)",
|
||||
"Hōki (770-780)",
|
||||
"Ten-ō (781-782)",
|
||||
"Enryaku (782-806)",
|
||||
"Daidō (806-810)",
|
||||
"Kōnin (810-824)",
|
||||
"Tenchō (824-834)",
|
||||
"Shōwa (834-848)",
|
||||
"Kajō (848-851)",
|
||||
"נינג׳ו",
|
||||
"Saiko",
|
||||
"Tennan",
|
||||
"Jōgan",
|
||||
"Genkei",
|
||||
"Ninna",
|
||||
"Kampyō",
|
||||
"Shōtai",
|
||||
"Engi",
|
||||
"Enchō",
|
||||
"Shōhei",
|
||||
"Tengyō",
|
||||
"Tenryaku",
|
||||
"Tentoku",
|
||||
"Ōwa",
|
||||
"Kōhō",
|
||||
"Anna",
|
||||
"Tenroku",
|
||||
"Ten-en",
|
||||
"Jōgen",
|
||||
"Tengen",
|
||||
"Eikan",
|
||||
"Kanna",
|
||||
"Ei-en",
|
||||
"Eiso",
|
||||
"Shōryaku",
|
||||
"Chōtoku",
|
||||
"Chōhō",
|
||||
"Kankō",
|
||||
"Chōwa",
|
||||
"Kannin",
|
||||
"Jian",
|
||||
"Manju",
|
||||
"Chōgen",
|
||||
"Chōryaku",
|
||||
"Chōkyū",
|
||||
"Kantoku",
|
||||
"Eishō",
|
||||
"Tengi",
|
||||
"Kōhei",
|
||||
"Jiryaku",
|
||||
"Enkyū",
|
||||
"Shōho",
|
||||
"Shōryaku",
|
||||
"Eiho",
|
||||
"Ōtoku",
|
||||
"Kanji",
|
||||
"Kaho",
|
||||
"Eichō",
|
||||
"Saiko (854-857)",
|
||||
"Tennan (857-859)",
|
||||
"Jōgan (859-877)",
|
||||
"Genkei (877-885)",
|
||||
"Ninna (885-889)",
|
||||
"Kampyō (889-898)",
|
||||
"Shōtai (898-901)",
|
||||
"Engi (901-923)",
|
||||
"Enchō (923-931)",
|
||||
"Shōhei (931-938)",
|
||||
"Tengyō (938-947)",
|
||||
"Tenryaku (947-957)",
|
||||
"Tentoku (957-961)",
|
||||
"Ōwa (961-964)",
|
||||
"Kōhō (964-968)",
|
||||
"Anna (968-970)",
|
||||
"Tenroku (970-973)",
|
||||
"Ten-en (973-976)",
|
||||
"Jōgen (976-978)",
|
||||
"Tengen (978-983)",
|
||||
"Eikan (983-985)",
|
||||
"Kanna (985-987)",
|
||||
"Ei-en (987-989)",
|
||||
"Eiso (989-990)",
|
||||
"Shōryaku (990-995)",
|
||||
"Chōtoku (995-999)",
|
||||
"Chōhō (999-1004)",
|
||||
"Kankō (1004-1012)",
|
||||
"Chōwa (1012-1017)",
|
||||
"Kannin (1017-1021)",
|
||||
"Jian (1021-1024)",
|
||||
"Manju (1024-1028)",
|
||||
"Chōgen (1028-1037)",
|
||||
"Chōryaku (1037-1040)",
|
||||
"Chōkyū (1040-1044)",
|
||||
"Kantoku (1044-1046)",
|
||||
"Eishō (1046-1053)",
|
||||
"Tengi (1053-1058)",
|
||||
"Kōhei (1058-1065)",
|
||||
"Jiryaku (1065-1069)",
|
||||
"Enkyū (1069-1074)",
|
||||
"Shōho (1074-1077)",
|
||||
"Shōryaku (1077-1081)",
|
||||
"Eiho (1081-1084)",
|
||||
"Ōtoku (1084-1087)",
|
||||
"Kanji (1087-1094)",
|
||||
"Kaho (1094-1096)",
|
||||
"Eichō (1096-1097)",
|
||||
"שוטוקו",
|
||||
"Kōwa",
|
||||
"Chōji",
|
||||
"Kashō",
|
||||
"Tennin",
|
||||
"Ten-ei",
|
||||
"Eikyū",
|
||||
"Gen-ei",
|
||||
"Hoan",
|
||||
"Tenji",
|
||||
"Daiji",
|
||||
"Tenshō",
|
||||
"Chōshō",
|
||||
"Hoen",
|
||||
"Eiji",
|
||||
"Kōji",
|
||||
"Tenyō",
|
||||
"Kyūan",
|
||||
"Ninpei",
|
||||
"Kyūju",
|
||||
"Hogen",
|
||||
"Heiji",
|
||||
"Eiryaku",
|
||||
"Ōho",
|
||||
"Chōkan",
|
||||
"Eiman",
|
||||
"Nin-an",
|
||||
"Kaō",
|
||||
"Shōan",
|
||||
"Angen",
|
||||
"Jishō",
|
||||
"Yōwa",
|
||||
"Juei",
|
||||
"Genryuku",
|
||||
"Bunji",
|
||||
"Kenkyū",
|
||||
"Shōji",
|
||||
"Kennin",
|
||||
"Genkyū",
|
||||
"Ken-ei",
|
||||
"Shōgen",
|
||||
"Kenryaku",
|
||||
"Kenpō",
|
||||
"Shōkyū",
|
||||
"Jōō",
|
||||
"Gennin",
|
||||
"Karoku",
|
||||
"Antei",
|
||||
"Kanki",
|
||||
"Jōei",
|
||||
"Tempuku",
|
||||
"Bunryaku",
|
||||
"Katei",
|
||||
"Ryakunin",
|
||||
"En-ō",
|
||||
"Ninji",
|
||||
"Kangen",
|
||||
"Hōji",
|
||||
"Kenchō",
|
||||
"Kōgen",
|
||||
"Shōka",
|
||||
"Shōgen",
|
||||
"Bun-ō",
|
||||
"Kōchō",
|
||||
"Bun-ei",
|
||||
"Kenji",
|
||||
"Kōan",
|
||||
"Shōō",
|
||||
"Einin",
|
||||
"Shōan",
|
||||
"Kengen",
|
||||
"Kagen",
|
||||
"Tokuji",
|
||||
"Enkei",
|
||||
"Ōchō",
|
||||
"Shōwa",
|
||||
"Bunpō",
|
||||
"Genō",
|
||||
"Genkyō",
|
||||
"Shōchū",
|
||||
"Kareki",
|
||||
"Gentoku",
|
||||
"Genkō",
|
||||
"Kemmu",
|
||||
"Engen",
|
||||
"Kōkoku",
|
||||
"Shōhei",
|
||||
"Kentoku",
|
||||
"Bunchũ",
|
||||
"Tenju",
|
||||
"Kōryaku",
|
||||
"Kōwa",
|
||||
"Genchũ",
|
||||
"Meitoku",
|
||||
"Kakei",
|
||||
"Kōō",
|
||||
"Meitoku",
|
||||
"Ōei",
|
||||
"Shōchō",
|
||||
"Eikyō",
|
||||
"Kakitsu",
|
||||
"Bun-an",
|
||||
"Hōtoku",
|
||||
"Kyōtoku",
|
||||
"Kōshō",
|
||||
"Chōroku",
|
||||
"Kanshō",
|
||||
"Bunshō",
|
||||
"Ōnin",
|
||||
"Bunmei",
|
||||
"Chōkyō",
|
||||
"Entoku",
|
||||
"Meiō",
|
||||
"Bunki",
|
||||
"Eishō",
|
||||
"Taiei",
|
||||
"Kyōroku",
|
||||
"Tenmon",
|
||||
"Kōji",
|
||||
"Eiroku",
|
||||
"Genki",
|
||||
"Tenshō",
|
||||
"Bunroku",
|
||||
"Keichō",
|
||||
"Genwa",
|
||||
"Kan-ei",
|
||||
"Shōho",
|
||||
"Keian",
|
||||
"Shōō",
|
||||
"Meiryaku",
|
||||
"Manji",
|
||||
"Kanbun",
|
||||
"Enpō",
|
||||
"Tenwa",
|
||||
"Jōkyō",
|
||||
"Genroku",
|
||||
"Hōei",
|
||||
"Shōtoku",
|
||||
"Kyōhō",
|
||||
"Genbun",
|
||||
"Kanpō",
|
||||
"Enkyō",
|
||||
"Kan-en",
|
||||
"Hōryaku",
|
||||
"Meiwa",
|
||||
"An-ei",
|
||||
"Tenmei",
|
||||
"Kansei",
|
||||
"Kyōwa",
|
||||
"Bunka",
|
||||
"Bunsei",
|
||||
"Tenpō",
|
||||
"Kōka",
|
||||
"Kaei",
|
||||
"Ansei",
|
||||
"Man-en",
|
||||
"Bunkyū",
|
||||
"Genji",
|
||||
"Keiō",
|
||||
"Kōwa (1099-1104)",
|
||||
"Chōji (1104-1106)",
|
||||
"Kashō (1106-1108)",
|
||||
"Tennin (1108-1110)",
|
||||
"Ten-ei (1110-1113)",
|
||||
"Eikyū (1113-1118)",
|
||||
"Gen-ei (1118-1120)",
|
||||
"Hoan (1120-1124)",
|
||||
"Tenji (1124-1126)",
|
||||
"Daiji (1126-1131)",
|
||||
"Tenshō (1131-1132)",
|
||||
"Chōshō (1132-1135)",
|
||||
"Hoen (1135-1141)",
|
||||
"Eiji (1141-1142)",
|
||||
"Kōji (1142-1144)",
|
||||
"Tenyō (1144-1145)",
|
||||
"Kyūan (1145-1151)",
|
||||
"Ninpei (1151-1154)",
|
||||
"Kyūju (1154-1156)",
|
||||
"Hogen (1156-1159)",
|
||||
"Heiji (1159-1160)",
|
||||
"Eiryaku (1160-1161)",
|
||||
"Ōho (1161-1163)",
|
||||
"Chōkan (1163-1165)",
|
||||
"Eiman (1165-1166)",
|
||||
"Nin-an (1166-1169)",
|
||||
"Kaō (1169-1171)",
|
||||
"Shōan (1171-1175)",
|
||||
"Angen (1175-1177)",
|
||||
"Jishō (1177-1181)",
|
||||
"Yōwa (1181-1182)",
|
||||
"Juei (1182-1184)",
|
||||
"Genryuku (1184-1185)",
|
||||
"Bunji (1185-1190)",
|
||||
"Kenkyū (1190-1199)",
|
||||
"Shōji (1199-1201)",
|
||||
"Kennin (1201-1204)",
|
||||
"Genkyū (1204-1206)",
|
||||
"Ken-ei (1206-1207)",
|
||||
"Shōgen (1207-1211)",
|
||||
"Kenryaku (1211-1213)",
|
||||
"Kenpō (1213-1219)",
|
||||
"Shōkyū (1219-1222)",
|
||||
"Jōō (1222-1224)",
|
||||
"Gennin (1224-1225)",
|
||||
"Karoku (1225-1227)",
|
||||
"Antei (1227-1229)",
|
||||
"Kanki (1229-1232)",
|
||||
"Jōei (1232-1233)",
|
||||
"Tempuku (1233-1234)",
|
||||
"Bunryaku (1234-1235)",
|
||||
"Katei (1235-1238)",
|
||||
"Ryakunin (1238-1239)",
|
||||
"En-ō (1239-1240)",
|
||||
"Ninji (1240-1243)",
|
||||
"Kangen (1243-1247)",
|
||||
"Hōji (1247-1249)",
|
||||
"Kenchō (1249-1256)",
|
||||
"Kōgen (1256-1257)",
|
||||
"Shōka (1257-1259)",
|
||||
"Shōgen (1259-1260)",
|
||||
"Bun-ō (1260-1261)",
|
||||
"Kōchō (1261-1264)",
|
||||
"Bun-ei (1264-1275)",
|
||||
"Kenji (1275-1278)",
|
||||
"Kōan (1278-1288)",
|
||||
"Shōō (1288-1293)",
|
||||
"Einin (1293-1299)",
|
||||
"Shōan (1299-1302)",
|
||||
"Kengen (1302-1303)",
|
||||
"Kagen (1303-1306)",
|
||||
"Tokuji (1306-1308)",
|
||||
"Enkei (1308-1311)",
|
||||
"Ōchō (1311-1312)",
|
||||
"Shōwa (1312-1317)",
|
||||
"Bunpō (1317-1319)",
|
||||
"Genō (1319-1321)",
|
||||
"Genkyō (1321-1324)",
|
||||
"Shōchū (1324-1326)",
|
||||
"Kareki (1326-1329)",
|
||||
"Gentoku (1329-1331)",
|
||||
"Genkō (1331-1334)",
|
||||
"Kemmu (1334-1336)",
|
||||
"Engen (1336-1340)",
|
||||
"Kōkoku (1340-1346)",
|
||||
"Shōhei (1346-1370)",
|
||||
"Kentoku (1370-1372)",
|
||||
"Bunchũ (1372-1375)",
|
||||
"Tenju (1375-1379)",
|
||||
"Kōryaku (1379-1381)",
|
||||
"Kōwa (1381-1384)",
|
||||
"Genchũ (1384-1392)",
|
||||
"Meitoku (1384-1387)",
|
||||
"Kakei (1387-1389)",
|
||||
"Kōō (1389-1390)",
|
||||
"Meitoku (1390-1394)",
|
||||
"Ōei (1394-1428)",
|
||||
"Shōchō (1428-1429)",
|
||||
"Eikyō (1429-1441)",
|
||||
"Kakitsu (1441-1444)",
|
||||
"Bun-an (1444-1449)",
|
||||
"Hōtoku (1449-1452)",
|
||||
"Kyōtoku (1452-1455)",
|
||||
"Kōshō (1455-1457)",
|
||||
"Chōroku (1457-1460)",
|
||||
"Kanshō (1460-1466)",
|
||||
"Bunshō (1466-1467)",
|
||||
"Ōnin (1467-1469)",
|
||||
"Bunmei (1469-1487)",
|
||||
"Chōkyō (1487-1489)",
|
||||
"Entoku (1489-1492)",
|
||||
"Meiō (1492-1501)",
|
||||
"Bunki (1501-1504)",
|
||||
"Eishō (1504-1521)",
|
||||
"Taiei (1521-1528)",
|
||||
"Kyōroku (1528-1532)",
|
||||
"Tenmon (1532-1555)",
|
||||
"Kōji (1555-1558)",
|
||||
"Eiroku (1558-1570)",
|
||||
"Genki (1570-1573)",
|
||||
"Tenshō (1573-1592)",
|
||||
"Bunroku (1592-1596)",
|
||||
"Keichō (1596-1615)",
|
||||
"Genwa (1615-1624)",
|
||||
"Kan-ei (1624-1644)",
|
||||
"Shōho (1644-1648)",
|
||||
"Keian (1648-1652)",
|
||||
"Shōō (1652-1655)",
|
||||
"Meiryaku (1655-1658)",
|
||||
"Manji (1658-1661)",
|
||||
"Kanbun (1661-1673)",
|
||||
"Enpō (1673-1681)",
|
||||
"Tenwa (1681-1684)",
|
||||
"Jōkyō (1684-1688)",
|
||||
"Genroku (1688-1704)",
|
||||
"Hōei (1704-1711)",
|
||||
"Shōtoku (1711-1716)",
|
||||
"Kyōhō (1716-1736)",
|
||||
"Genbun (1736-1741)",
|
||||
"Kanpō (1741-1744)",
|
||||
"Enkyō (1744-1748)",
|
||||
"Kan-en (1748-1751)",
|
||||
"Hōryaku (1751-1764)",
|
||||
"Meiwa (1764-1772)",
|
||||
"An-ei (1772-1781)",
|
||||
"Tenmei (1781-1789)",
|
||||
"Kansei (1789-1801)",
|
||||
"Kyōwa (1801-1804)",
|
||||
"Bunka (1804-1818)",
|
||||
"Bunsei (1818-1830)",
|
||||
"Tenpō (1830-1844)",
|
||||
"Kōka (1844-1848)",
|
||||
"Kaei (1848-1854)",
|
||||
"Ansei (1854-1860)",
|
||||
"Man-en (1860-1861)",
|
||||
"Bunkyū (1861-1864)",
|
||||
"Genji (1864-1865)",
|
||||
"Keiō (1865-1868)",
|
||||
"Meiji",
|
||||
"Taishō",
|
||||
"Shōwa",
|
||||
|
@ -31,7 +31,7 @@ hr{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.44"}
|
||||
Version{"2.0.62.55"}
|
||||
calendar{
|
||||
buddhist{
|
||||
DateTimePatterns{
|
||||
@ -56,10 +56,10 @@ hr{
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
"EEE, d.Ml.y. G",
|
||||
"d.Ml.y. G",
|
||||
"d.Ml.y. G",
|
||||
"d.Ml.y. G",
|
||||
"EEE, d.M.y.",
|
||||
"d.M.y.",
|
||||
"d.M.y.",
|
||||
"d.M.y.",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
|
@ -127,8 +127,8 @@ ko{
|
||||
"a h:mm:ss",
|
||||
"a h:mm",
|
||||
"y-M-d EEEE",
|
||||
"y MMMM d",
|
||||
"y MMM d",
|
||||
"y-M-d",
|
||||
"y-M-d",
|
||||
"y-M-d",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
|
@ -35,7 +35,7 @@ ln{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.57.98"}
|
||||
Version{"2.0.62.5"}
|
||||
calendar{
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
|
@ -3,12 +3,9 @@
|
||||
// * Copyright (C) 2011 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/xml/brkitr/th.xml
|
||||
// * Source File:<path>/common/main/nl_CW.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
th{
|
||||
Version{"1.1"}
|
||||
boundaries{
|
||||
grapheme:process(dependency){"char_th.brk"}
|
||||
}
|
||||
nl_CW{
|
||||
Version{"2.0.61.59"}
|
||||
}
|
@ -3,12 +3,9 @@
|
||||
// * Copyright (C) 2011 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/xml/brkitr/he.xml
|
||||
// * Source File:<path>/common/main/nl_SX.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
he{
|
||||
Version{"2.2.88.46"}
|
||||
boundaries{
|
||||
line:process(dependency){"line_he.brk"}
|
||||
}
|
||||
nl_SX{
|
||||
Version{"2.0.61.59"}
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
# * Copyright (C) 1998-2011, International Business Machines
|
||||
# * Corporation and others. All Rights Reserved.
|
||||
GENRB_CLDR_VERSION = 2.0
|
||||
GENRB_CLDR_VERSION = 21.0
|
||||
# A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
@ -44,101 +44,101 @@ GENRB_ALIAS_SOURCE = $(GENRB_SYNTHETIC_ALIAS)
|
||||
# Ordinary resources
|
||||
GENRB_SOURCE = af.txt af_NA.txt af_ZA.txt agq.txt\
|
||||
agq_CM.txt ak.txt ak_GH.txt am.txt am_ET.txt\
|
||||
ar.txt ar_AE.txt ar_BH.txt ar_DZ.txt ar_EG.txt\
|
||||
ar_IQ.txt ar_JO.txt ar_KW.txt ar_LB.txt ar_LY.txt\
|
||||
ar_MA.txt ar_OM.txt ar_QA.txt ar_SA.txt ar_SD.txt\
|
||||
ar_SY.txt ar_TN.txt ar_YE.txt as.txt as_IN.txt\
|
||||
asa.txt asa_TZ.txt az.txt az_Cyrl.txt az_Cyrl_AZ.txt\
|
||||
az_Latn.txt az_Latn_AZ.txt bas.txt bas_CM.txt be.txt\
|
||||
be_BY.txt bem.txt bem_ZM.txt bez.txt bez_TZ.txt\
|
||||
bg.txt bg_BG.txt bm.txt bm_ML.txt bn.txt\
|
||||
bn_BD.txt bn_IN.txt bo.txt bo_CN.txt bo_IN.txt\
|
||||
br.txt br_FR.txt brx.txt brx_IN.txt bs.txt\
|
||||
bs_BA.txt ca.txt ca_ES.txt cgg.txt cgg_UG.txt\
|
||||
chr.txt chr_US.txt cs.txt cs_CZ.txt cy.txt\
|
||||
cy_GB.txt da.txt da_DK.txt dav.txt dav_KE.txt\
|
||||
de.txt de_AT.txt de_BE.txt de_CH.txt de_DE.txt\
|
||||
de_LI.txt de_LU.txt dje.txt dje_NE.txt dua.txt\
|
||||
dua_CM.txt dyo.txt dyo_SN.txt ebu.txt ebu_KE.txt\
|
||||
ee.txt ee_GH.txt ee_TG.txt el.txt el_CY.txt\
|
||||
el_GR.txt en.txt en_AS.txt en_AU.txt en_BB.txt\
|
||||
en_BE.txt en_BM.txt en_BW.txt en_BZ.txt en_CA.txt\
|
||||
en_GB.txt en_GU.txt en_GY.txt en_HK.txt en_IE.txt\
|
||||
en_IN.txt en_JM.txt en_MH.txt en_MP.txt en_MT.txt\
|
||||
en_MU.txt en_NA.txt en_NZ.txt en_PH.txt en_PK.txt\
|
||||
en_SG.txt en_TT.txt en_UM.txt en_US.txt en_US_POSIX.txt\
|
||||
en_VI.txt en_ZA.txt en_ZW.txt eo.txt es.txt\
|
||||
es_419.txt es_AR.txt es_BO.txt es_CL.txt es_CO.txt\
|
||||
es_CR.txt es_DO.txt es_EC.txt es_ES.txt es_GQ.txt\
|
||||
es_GT.txt es_HN.txt es_MX.txt es_NI.txt es_PA.txt\
|
||||
es_PE.txt es_PR.txt es_PY.txt es_SV.txt es_US.txt\
|
||||
es_UY.txt es_VE.txt et.txt et_EE.txt eu.txt\
|
||||
eu_ES.txt ewo.txt ewo_CM.txt fa.txt fa_AF.txt\
|
||||
fa_IR.txt ff.txt ff_SN.txt fi.txt fi_FI.txt\
|
||||
fil.txt fil_PH.txt fo.txt fo_FO.txt fr.txt\
|
||||
fr_BE.txt fr_BF.txt fr_BI.txt fr_BJ.txt fr_BL.txt\
|
||||
fr_CA.txt fr_CD.txt fr_CF.txt fr_CG.txt fr_CH.txt\
|
||||
fr_CI.txt fr_CM.txt fr_DJ.txt fr_FR.txt fr_GA.txt\
|
||||
fr_GF.txt fr_GN.txt fr_GP.txt fr_GQ.txt fr_KM.txt\
|
||||
fr_LU.txt fr_MC.txt fr_MF.txt fr_MG.txt fr_ML.txt\
|
||||
fr_MQ.txt fr_NE.txt fr_RE.txt fr_RW.txt fr_SN.txt\
|
||||
fr_TD.txt fr_TG.txt fr_YT.txt ga.txt ga_IE.txt\
|
||||
gl.txt gl_ES.txt gsw.txt gsw_CH.txt gu.txt\
|
||||
gu_IN.txt guz.txt guz_KE.txt gv.txt gv_GB.txt\
|
||||
ha.txt ha_Latn.txt ha_Latn_GH.txt ha_Latn_NE.txt ha_Latn_NG.txt\
|
||||
haw.txt haw_US.txt he.txt he_IL.txt hi.txt\
|
||||
hi_IN.txt hr.txt hr_HR.txt hu.txt hu_HU.txt\
|
||||
hy.txt hy_AM.txt id.txt id_ID.txt ig.txt\
|
||||
ig_NG.txt ii.txt ii_CN.txt is.txt is_IS.txt\
|
||||
it.txt it_CH.txt it_IT.txt ja.txt ja_JP.txt\
|
||||
jmc.txt jmc_TZ.txt ka.txt ka_GE.txt kab.txt\
|
||||
kab_DZ.txt kam.txt kam_KE.txt kde.txt kde_TZ.txt\
|
||||
kea.txt kea_CV.txt khq.txt khq_ML.txt ki.txt\
|
||||
ki_KE.txt kk.txt kk_Cyrl.txt kk_Cyrl_KZ.txt kl.txt\
|
||||
kl_GL.txt kln.txt kln_KE.txt km.txt km_KH.txt\
|
||||
kn.txt kn_IN.txt ko.txt ko_KR.txt kok.txt\
|
||||
kok_IN.txt ksb.txt ksb_TZ.txt ksf.txt ksf_CM.txt\
|
||||
kw.txt kw_GB.txt lag.txt lag_TZ.txt lg.txt\
|
||||
lg_UG.txt ln.txt ln_CD.txt ln_CG.txt lt.txt\
|
||||
lt_LT.txt lu.txt lu_CD.txt luo.txt luo_KE.txt\
|
||||
luy.txt luy_KE.txt lv.txt lv_LV.txt mas.txt\
|
||||
mas_KE.txt mas_TZ.txt mer.txt mer_KE.txt mfe.txt\
|
||||
mfe_MU.txt mg.txt mg_MG.txt mgh.txt mgh_MZ.txt\
|
||||
mk.txt mk_MK.txt ml.txt ml_IN.txt mr.txt\
|
||||
mr_IN.txt ms.txt ms_BN.txt ms_MY.txt mt.txt\
|
||||
mt_MT.txt mua.txt mua_CM.txt my.txt my_MM.txt\
|
||||
naq.txt naq_NA.txt nb.txt nb_NO.txt nd.txt\
|
||||
nd_ZW.txt ne.txt ne_IN.txt ne_NP.txt nl.txt\
|
||||
nl_AW.txt nl_BE.txt nl_NL.txt nmg.txt nmg_CM.txt\
|
||||
nn.txt nn_NO.txt nus.txt nus_SD.txt nyn.txt\
|
||||
nyn_UG.txt om.txt om_ET.txt om_KE.txt or.txt\
|
||||
or_IN.txt pa.txt pa_Arab.txt pa_Arab_PK.txt pa_Guru.txt\
|
||||
pa_Guru_IN.txt pl.txt pl_PL.txt ps.txt ps_AF.txt\
|
||||
pt.txt pt_AO.txt pt_BR.txt pt_GW.txt pt_MZ.txt\
|
||||
pt_PT.txt pt_ST.txt rm.txt rm_CH.txt rn.txt\
|
||||
rn_BI.txt ro.txt ro_MD.txt ro_RO.txt rof.txt\
|
||||
rof_TZ.txt ru.txt ru_MD.txt ru_RU.txt ru_UA.txt\
|
||||
rw.txt rw_RW.txt rwk.txt rwk_TZ.txt saq.txt\
|
||||
saq_KE.txt sbp.txt sbp_TZ.txt seh.txt seh_MZ.txt\
|
||||
ses.txt ses_ML.txt sg.txt sg_CF.txt shi.txt\
|
||||
shi_Latn.txt shi_Latn_MA.txt shi_Tfng.txt shi_Tfng_MA.txt si.txt\
|
||||
si_LK.txt sk.txt sk_SK.txt sl.txt sl_SI.txt\
|
||||
sn.txt sn_ZW.txt so.txt so_DJ.txt so_ET.txt\
|
||||
so_KE.txt so_SO.txt sq.txt sq_AL.txt sr.txt\
|
||||
sr_Cyrl.txt sr_Cyrl_BA.txt sr_Cyrl_ME.txt sr_Cyrl_RS.txt sr_Latn.txt\
|
||||
sr_Latn_BA.txt sr_Latn_ME.txt sr_Latn_RS.txt sv.txt sv_FI.txt\
|
||||
sv_SE.txt sw.txt sw_KE.txt sw_TZ.txt swc.txt\
|
||||
swc_CD.txt ta.txt ta_IN.txt ta_LK.txt te.txt\
|
||||
te_IN.txt teo.txt teo_KE.txt teo_UG.txt th.txt\
|
||||
th_TH.txt ti.txt ti_ER.txt ti_ET.txt to.txt\
|
||||
to_TO.txt tr.txt tr_TR.txt twq.txt twq_NE.txt\
|
||||
tzm.txt tzm_Latn.txt tzm_Latn_MA.txt uk.txt uk_UA.txt\
|
||||
ur.txt ur_IN.txt ur_PK.txt uz.txt uz_Arab.txt\
|
||||
uz_Arab_AF.txt uz_Cyrl.txt uz_Cyrl_UZ.txt uz_Latn.txt uz_Latn_UZ.txt\
|
||||
vai.txt vai_Latn.txt vai_Latn_LR.txt vai_Vaii.txt vai_Vaii_LR.txt\
|
||||
vi.txt vi_VN.txt vun.txt vun_TZ.txt xog.txt\
|
||||
xog_UG.txt yav.txt yav_CM.txt yo.txt yo_NG.txt\
|
||||
zh.txt zh_Hans.txt zh_Hans_CN.txt zh_Hans_HK.txt zh_Hans_MO.txt\
|
||||
zh_Hans_SG.txt zh_Hant.txt zh_Hant_HK.txt zh_Hant_MO.txt zh_Hant_TW.txt\
|
||||
zu.txt zu_ZA.txt
|
||||
ar.txt ar_001.txt ar_AE.txt ar_BH.txt ar_DZ.txt\
|
||||
ar_EG.txt ar_IQ.txt ar_JO.txt ar_KW.txt ar_LB.txt\
|
||||
ar_LY.txt ar_MA.txt ar_OM.txt ar_QA.txt ar_SA.txt\
|
||||
ar_SD.txt ar_SY.txt ar_TN.txt ar_YE.txt as.txt\
|
||||
as_IN.txt asa.txt asa_TZ.txt az.txt az_Cyrl.txt\
|
||||
az_Cyrl_AZ.txt az_Latn.txt az_Latn_AZ.txt bas.txt bas_CM.txt\
|
||||
be.txt be_BY.txt bem.txt bem_ZM.txt bez.txt\
|
||||
bez_TZ.txt bg.txt bg_BG.txt bm.txt bm_ML.txt\
|
||||
bn.txt bn_BD.txt bn_IN.txt bo.txt bo_CN.txt\
|
||||
bo_IN.txt br.txt br_FR.txt brx.txt brx_IN.txt\
|
||||
bs.txt bs_BA.txt ca.txt ca_ES.txt cgg.txt\
|
||||
cgg_UG.txt chr.txt chr_US.txt cs.txt cs_CZ.txt\
|
||||
cy.txt cy_GB.txt da.txt da_DK.txt dav.txt\
|
||||
dav_KE.txt de.txt de_AT.txt de_BE.txt de_CH.txt\
|
||||
de_DE.txt de_LI.txt de_LU.txt dje.txt dje_NE.txt\
|
||||
dua.txt dua_CM.txt dyo.txt dyo_SN.txt ebu.txt\
|
||||
ebu_KE.txt ee.txt ee_GH.txt ee_TG.txt el.txt\
|
||||
el_CY.txt el_GR.txt en.txt en_AS.txt en_AU.txt\
|
||||
en_BB.txt en_BE.txt en_BM.txt en_BW.txt en_BZ.txt\
|
||||
en_CA.txt en_GB.txt en_GU.txt en_GY.txt en_HK.txt\
|
||||
en_IE.txt en_IN.txt en_JM.txt en_MH.txt en_MP.txt\
|
||||
en_MT.txt en_MU.txt en_NA.txt en_NZ.txt en_PH.txt\
|
||||
en_PK.txt en_SG.txt en_TT.txt en_UM.txt en_US.txt\
|
||||
en_US_POSIX.txt en_VI.txt en_ZA.txt en_ZW.txt eo.txt\
|
||||
es.txt es_419.txt es_AR.txt es_BO.txt es_CL.txt\
|
||||
es_CO.txt es_CR.txt es_DO.txt es_EC.txt es_ES.txt\
|
||||
es_GQ.txt es_GT.txt es_HN.txt es_MX.txt es_NI.txt\
|
||||
es_PA.txt es_PE.txt es_PR.txt es_PY.txt es_SV.txt\
|
||||
es_US.txt es_UY.txt es_VE.txt et.txt et_EE.txt\
|
||||
eu.txt eu_ES.txt ewo.txt ewo_CM.txt fa.txt\
|
||||
fa_AF.txt fa_IR.txt ff.txt ff_SN.txt fi.txt\
|
||||
fi_FI.txt fil.txt fil_PH.txt fo.txt fo_FO.txt\
|
||||
fr.txt fr_BE.txt fr_BF.txt fr_BI.txt fr_BJ.txt\
|
||||
fr_BL.txt fr_CA.txt fr_CD.txt fr_CF.txt fr_CG.txt\
|
||||
fr_CH.txt fr_CI.txt fr_CM.txt fr_DJ.txt fr_FR.txt\
|
||||
fr_GA.txt fr_GF.txt fr_GN.txt fr_GP.txt fr_GQ.txt\
|
||||
fr_KM.txt fr_LU.txt fr_MC.txt fr_MF.txt fr_MG.txt\
|
||||
fr_ML.txt fr_MQ.txt fr_NE.txt fr_RE.txt fr_RW.txt\
|
||||
fr_SN.txt fr_TD.txt fr_TG.txt fr_YT.txt ga.txt\
|
||||
ga_IE.txt gl.txt gl_ES.txt gsw.txt gsw_CH.txt\
|
||||
gu.txt gu_IN.txt guz.txt guz_KE.txt gv.txt\
|
||||
gv_GB.txt ha.txt ha_Latn.txt ha_Latn_GH.txt ha_Latn_NE.txt\
|
||||
ha_Latn_NG.txt haw.txt haw_US.txt he.txt he_IL.txt\
|
||||
hi.txt hi_IN.txt hr.txt hr_HR.txt hu.txt\
|
||||
hu_HU.txt hy.txt hy_AM.txt id.txt id_ID.txt\
|
||||
ig.txt ig_NG.txt ii.txt ii_CN.txt is.txt\
|
||||
is_IS.txt it.txt it_CH.txt it_IT.txt ja.txt\
|
||||
ja_JP.txt jmc.txt jmc_TZ.txt ka.txt ka_GE.txt\
|
||||
kab.txt kab_DZ.txt kam.txt kam_KE.txt kde.txt\
|
||||
kde_TZ.txt kea.txt kea_CV.txt khq.txt khq_ML.txt\
|
||||
ki.txt ki_KE.txt kk.txt kk_Cyrl.txt kk_Cyrl_KZ.txt\
|
||||
kl.txt kl_GL.txt kln.txt kln_KE.txt km.txt\
|
||||
km_KH.txt kn.txt kn_IN.txt ko.txt ko_KR.txt\
|
||||
kok.txt kok_IN.txt ksb.txt ksb_TZ.txt ksf.txt\
|
||||
ksf_CM.txt kw.txt kw_GB.txt lag.txt lag_TZ.txt\
|
||||
lg.txt lg_UG.txt ln.txt ln_CD.txt ln_CG.txt\
|
||||
lt.txt lt_LT.txt lu.txt lu_CD.txt luo.txt\
|
||||
luo_KE.txt luy.txt luy_KE.txt lv.txt lv_LV.txt\
|
||||
mas.txt mas_KE.txt mas_TZ.txt mer.txt mer_KE.txt\
|
||||
mfe.txt mfe_MU.txt mg.txt mg_MG.txt mgh.txt\
|
||||
mgh_MZ.txt mk.txt mk_MK.txt ml.txt ml_IN.txt\
|
||||
mr.txt mr_IN.txt ms.txt ms_BN.txt ms_MY.txt\
|
||||
mt.txt mt_MT.txt mua.txt mua_CM.txt my.txt\
|
||||
my_MM.txt naq.txt naq_NA.txt nb.txt nb_NO.txt\
|
||||
nd.txt nd_ZW.txt ne.txt ne_IN.txt ne_NP.txt\
|
||||
nl.txt nl_AW.txt nl_BE.txt nl_CW.txt nl_NL.txt\
|
||||
nl_SX.txt nmg.txt nmg_CM.txt nn.txt nn_NO.txt\
|
||||
nus.txt nus_SD.txt nyn.txt nyn_UG.txt om.txt\
|
||||
om_ET.txt om_KE.txt or.txt or_IN.txt pa.txt\
|
||||
pa_Arab.txt pa_Arab_PK.txt pa_Guru.txt pa_Guru_IN.txt pl.txt\
|
||||
pl_PL.txt ps.txt ps_AF.txt pt.txt pt_AO.txt\
|
||||
pt_BR.txt pt_GW.txt pt_MZ.txt pt_PT.txt pt_ST.txt\
|
||||
rm.txt rm_CH.txt rn.txt rn_BI.txt ro.txt\
|
||||
ro_MD.txt ro_RO.txt rof.txt rof_TZ.txt ru.txt\
|
||||
ru_MD.txt ru_RU.txt ru_UA.txt rw.txt rw_RW.txt\
|
||||
rwk.txt rwk_TZ.txt saq.txt saq_KE.txt sbp.txt\
|
||||
sbp_TZ.txt seh.txt seh_MZ.txt ses.txt ses_ML.txt\
|
||||
sg.txt sg_CF.txt shi.txt shi_Latn.txt shi_Latn_MA.txt\
|
||||
shi_Tfng.txt shi_Tfng_MA.txt si.txt si_LK.txt sk.txt\
|
||||
sk_SK.txt sl.txt sl_SI.txt sn.txt sn_ZW.txt\
|
||||
so.txt so_DJ.txt so_ET.txt so_KE.txt so_SO.txt\
|
||||
sq.txt sq_AL.txt sr.txt sr_Cyrl.txt sr_Cyrl_BA.txt\
|
||||
sr_Cyrl_ME.txt sr_Cyrl_RS.txt sr_Latn.txt sr_Latn_BA.txt sr_Latn_ME.txt\
|
||||
sr_Latn_RS.txt sv.txt sv_FI.txt sv_SE.txt sw.txt\
|
||||
sw_KE.txt sw_TZ.txt swc.txt swc_CD.txt ta.txt\
|
||||
ta_IN.txt ta_LK.txt te.txt te_IN.txt teo.txt\
|
||||
teo_KE.txt teo_UG.txt th.txt th_TH.txt ti.txt\
|
||||
ti_ER.txt ti_ET.txt to.txt to_TO.txt tr.txt\
|
||||
tr_TR.txt twq.txt twq_NE.txt tzm.txt tzm_Latn.txt\
|
||||
tzm_Latn_MA.txt uk.txt uk_UA.txt ur.txt ur_IN.txt\
|
||||
ur_PK.txt uz.txt uz_Arab.txt uz_Arab_AF.txt uz_Cyrl.txt\
|
||||
uz_Cyrl_UZ.txt uz_Latn.txt uz_Latn_UZ.txt vai.txt vai_Latn.txt\
|
||||
vai_Latn_LR.txt vai_Vaii.txt vai_Vaii_LR.txt vi.txt vi_VN.txt\
|
||||
vun.txt vun_TZ.txt xog.txt xog_UG.txt yav.txt\
|
||||
yav_CM.txt yo.txt yo_NG.txt zh.txt zh_Hans.txt\
|
||||
zh_Hans_CN.txt zh_Hans_HK.txt zh_Hans_MO.txt zh_Hans_SG.txt zh_Hant.txt\
|
||||
zh_Hant_HK.txt zh_Hant_MO.txt zh_Hant_TW.txt zu.txt zu_ZA.txt
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -33,7 +33,7 @@ sq{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.59.32"}
|
||||
Version{"2.0.62.69"}
|
||||
calendar{
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
|
@ -36,7 +36,7 @@ te{
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.61.77"}
|
||||
Version{"2.0.62.68"}
|
||||
calendar{
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
@ -104,7 +104,7 @@ te{
|
||||
"ఆ",
|
||||
"సో",
|
||||
"మ",
|
||||
"భు",
|
||||
"బు",
|
||||
"గు",
|
||||
"శు",
|
||||
"శ",
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user