ICU-11092 Split out units data into a separate tree

X-SVN-Rev: 36458
This commit is contained in:
John Emmons 2014-09-11 10:16:22 +00:00
parent 897ab868eb
commit 4d47dd3226
573 changed files with 147843 additions and 142062 deletions

1
.gitattributes vendored
View file

@ -70,6 +70,7 @@ icu4c/source/data/locales/pool.res -text
icu4c/source/data/makedata.vcxproj -text
icu4c/source/data/makedata.vcxproj.filters -text
icu4c/source/data/region/pool.res -text
icu4c/source/data/unit/pool.res -text
icu4c/source/data/zone/pool.res -text
icu4c/source/extra/uconv/uconv.vcxproj -text
icu4c/source/extra/uconv/uconv.vcxproj.filters -text

View file

@ -1,6 +1,6 @@
/*
**********************************************************************
* Copyright (C) 2009, International Business Machines
* Copyright (C) 2009-2014 International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
*/
@ -18,6 +18,7 @@ U_CDECL_BEGIN
#define U_ICUDATA_REGION U_ICUDATA_NAME U_TREE_SEPARATOR_STRING "region"
#define U_ICUDATA_CURR U_ICUDATA_NAME U_TREE_SEPARATOR_STRING "curr"
#define U_ICUDATA_ZONE U_ICUDATA_NAME U_TREE_SEPARATOR_STRING "zone"
#define U_ICUDATA_UNIT U_ICUDATA_NAME U_TREE_SEPARATOR_STRING "unit"
U_CDECL_END

View file

@ -90,6 +90,8 @@ REGIONSRCDIR=$(SRCDATADIR)/region
REGIONBLDDIR=$(BUILDDIR)/region
ZONESRCDIR=$(SRCDATADIR)/zone
ZONEBLDDIR=$(BUILDDIR)/zone
UNITSRCDIR=$(SRCDATADIR)/unit
UNITBLDDIR=$(BUILDDIR)/unit
COLSRCDIR=$(SRCDATADIR)/coll
COLBLDDIR=$(BUILDDIR)/coll
RBNFSRCDIR=$(SRCDATADIR)/rbnf
@ -104,7 +106,7 @@ UCMSRCDIR=$(SRCDATADIR)/mappings
SPREPSRCDIR=$(SRCDATADIR)/sprep
COMINCDIR=$(top_srcdir)/common/unicode
SRCLISTDEPS=Makefile $(srcdir)/Makefile.in
BUILD_DIRS=$(OUTDIR) $(MAINBUILDDIR) $(BUILDDIR) $(CURRBLDDIR) $(LANGBLDDIR) $(REGIONBLDDIR) $(ZONEBLDDIR) $(BRKBLDDIR) $(COLBLDDIR) $(RBNFBLDDIR) $(TRANSLITBLDDIR) $(OUTTMPDIR) $(OUTTMPDIR_390STUB) $(OUTTMPDIR)/$(CURR_TREE) $(OUTTMPDIR)/$(LANG_TREE) $(OUTTMPDIR)/$(REGION_TREE) $(OUTTMPDIR)/$(ZONE_TREE) $(OUTTMPDIR)/$(COLLATION_TREE) $(OUTTMPDIR)/$(RBNF_TREE) $(OUTTMPDIR)/$(TRANSLIT_TREE) $(OUTTMPDIR)/$(BREAK_TREE)
BUILD_DIRS=$(OUTDIR) $(MAINBUILDDIR) $(BUILDDIR) $(CURRBLDDIR) $(LANGBLDDIR) $(REGIONBLDDIR) $(ZONEBLDDIR) $(UNITBLDDIR) $(BRKBLDDIR) $(COLBLDDIR) $(RBNFBLDDIR) $(TRANSLITBLDDIR) $(OUTTMPDIR) $(OUTTMPDIR_390STUB) $(OUTTMPDIR)/$(CURR_TREE) $(OUTTMPDIR)/$(LANG_TREE) $(OUTTMPDIR)/$(REGION_TREE) $(OUTTMPDIR)/$(ZONE_TREE) $(OUTTMPDIR)/$(UNIT_TREE) $(OUTTMPDIR)/$(COLLATION_TREE) $(OUTTMPDIR)/$(RBNF_TREE) $(OUTTMPDIR)/$(TRANSLIT_TREE) $(OUTTMPDIR)/$(BREAK_TREE)
# relative lib links from pkgdata are the same as for tmp
TOOLDIR=$(top_builddir)/tools
@ -199,6 +201,7 @@ ifeq ($(PKGDATA_MODE),files)
$(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(LANG_TREE)
$(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(REGION_TREE)
$(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(ZONE_TREE)
$(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(UNIT_TREE)
$(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(BREAK_TREE)
$(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(COLLATION_TREE)
$(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(RBNF_TREE)
@ -289,6 +292,7 @@ CNV_FILES_SHORT_SPECIAL=$(UCM_SOURCE_SPECIAL:%.ucm=%.cnv)
-include $(LANGSRCDIR)/resfiles.mk
-include $(REGIONSRCDIR)/resfiles.mk
-include $(ZONESRCDIR)/resfiles.mk
-include $(UNITSRCDIR)/resfiles.mk
-include $(COLSRCDIR)/colfiles.mk
-include $(RBNFSRCDIR)/rbnffiles.mk
-include $(TRANSLITSRCDIR)/trnsfiles.mk
@ -297,6 +301,7 @@ CNV_FILES_SHORT_SPECIAL=$(UCM_SOURCE_SPECIAL:%.ucm=%.cnv)
-include $(LANGSRCDIR)/reslocal.mk
-include $(REGIONSRCDIR)/reslocal.mk
-include $(ZONESRCDIR)/reslocal.mk
-include $(UNITSRCDIR)/reslocal.mk
-include $(COLSRCDIR)/collocal.mk
-include $(BRKSRCDIR)/brslocal.mk
-include $(RBNFSRCDIR)/rbnflocal.mk
@ -326,6 +331,11 @@ ZONE_SRC= root.txt $(ZONE_SOURCE) $(ZONE_ALIAS_SOURCE) $(ZONE_SOURCE_LOCAL) tzdb
ZONE_SRC_FILES = $(ZONE_SRC:%=$(ZONESRCDIR)/%)
INSTALLED_ZONE_FILES = $(ZONE_SOURCE:%.txt=%) $(ZONE_SOURCE_LOCAL:%.txt=%)
endif
ifdef UNIT_SOURCE
UNIT_SRC= root.txt $(UNIT_SOURCE) $(UNIT_ALIAS_SOURCE) $(UNIT_SOURCE_LOCAL)
UNIT_SRC_FILES = $(UNIT_SRC:%=$(UNITSRCDIR)/%)
INSTALLED_UNIT_FILES = $(UNIT_SOURCE:%.txt=%) $(UNIT_SOURCE_LOCAL:%.txt=%)
endif
ifdef COLLATION_SOURCE
COL_SRC= root.txt $(COLLATION_SOURCE) $(COLLATION_ALIAS_SOURCE) $(COLLATION_SOURCE_LOCAL)
COL_SRC_FILES = $(COL_SRC:%=$(COLSRCDIR)/%)
@ -389,6 +399,11 @@ ZONE_INDEX_FILE=$(OUTTMPDIR)/$(ZONE_TREE)/$(INDEX_NAME).txt
ZONE_FILES = $(ZONE_SRC:%.txt=$(ZONEBLDDIR)/%.res) $(ZONEBLDDIR)/$(INDEX_NAME).res $(ZONEBLDDIR)/pool.res
ZONE_FILES_SHORT = $(ZONE_SRC:%.txt=$(ZONE_TREE)/%.res) $(ZONE_TREE)/$(INDEX_NAME).res $(ZONE_TREE)/pool.res
UNIT_TREE=unit
UNIT_INDEX_FILE=$(OUTTMPDIR)/$(UNIT_TREE)/$(INDEX_NAME).txt
UNIT_FILES = $(UNIT_SRC:%.txt=$(UNITBLDDIR)/%.res) $(UNITBLDDIR)/$(INDEX_NAME).res $(UNITBLDDIR)/pool.res
UNIT_FILES_SHORT = $(UNIT_SRC:%.txt=$(UNIT_TREE)/%.res) $(UNIT_TREE)/$(INDEX_NAME).res $(UNIT_TREE)/pool.res
COLLATION_TREE=coll
COLLATION_INDEX_FILE=$(OUTTMPDIR)/$(COLLATION_TREE)/$(INDEX_NAME).txt
COLLATION_INDEX_RES=$(COLBLDDIR)/$(INDEX_NAME).res
@ -424,12 +439,12 @@ SPREP_FILES = $(ALL_SPREP_SOURCE:%.txt=$(BUILDDIR)/%.spp)
SPREP_FILES_SHORT = $(ALL_SPREP_SOURCE:%.txt=%.spp)
## All generated files
ALL_FILES = $(DAT_FILES) $(CNV_FILES) $(CNV_FILES_SPECIAL) $(BRK_FILES) $(DICT_FILES) $(RES_FILES) $(INDEX_RES_FILE) $(CURR_FILES) $(LANG_FILES) $(REGION_FILES) $(ZONE_FILES) $(COLLATION_FILES) $(BRK_RES_FILES) $(RBNF_FILES) $(TRANSLIT_FILES) $(SPREP_FILES) $(CFU_FILES)
ALL_INDEX_SRC_FILES = $(PKGDATA_LIST) $(INDEX_FILE) $(CURR_INDEX_FILE) $(LANG_INDEX_FILE) $(REGION_INDEX_FILE) $(ZONE_INDEX_FILE) $(COLLATION_INDEX_FILE) $(BRK_RES_INDEX_FILE) $(RBNF_INDEX_FILE)
ALL_FILES = $(DAT_FILES) $(CNV_FILES) $(CNV_FILES_SPECIAL) $(BRK_FILES) $(DICT_FILES) $(RES_FILES) $(INDEX_RES_FILE) $(CURR_FILES) $(LANG_FILES) $(REGION_FILES) $(ZONE_FILES) $(UNIT_FILES) $(COLLATION_FILES) $(BRK_RES_FILES) $(RBNF_FILES) $(TRANSLIT_FILES) $(SPREP_FILES) $(CFU_FILES)
ALL_INDEX_SRC_FILES = $(PKGDATA_LIST) $(INDEX_FILE) $(CURR_INDEX_FILE) $(LANG_INDEX_FILE) $(REGION_INDEX_FILE) $(ZONE_INDEX_FILE) $(UNIT_INDEX_FILE) $(COLLATION_INDEX_FILE) $(BRK_RES_INDEX_FILE) $(RBNF_INDEX_FILE)
# a list to use in the .lst files (package-relative)
COLL_FILES_LIST=$(COLLATION_FILES_SHORT) $(COLLATION_INDEX_RES_SHORT)
BRK_FILES_LIST=$(BRK_FILES_SHORT) $(BRK_RES_FILES_SHORT) $(BRK_RES_INDEX_RES_SHORT) $(DICT_FILES_SHORT)
LOCALE_FILES_LIST= $(RES_FILES_SHORT) $(LANG_FILES_SHORT) $(REGION_FILES_SHORT) $(ZONE_FILES_SHORT)
LOCALE_FILES_LIST= $(RES_FILES_SHORT) $(LANG_FILES_SHORT) $(REGION_FILES_SHORT) $(ZONE_FILES_SHORT) $(UNIT_FILES_SHORT)
MISC_FILES_LIST=$(DAT_FILES_SHORT) $(CNV_FILES_SHORT) $(CNV_FILES_SHORT_SPECIAL) $(CURR_FILES_SHORT) $(RBNF_FILES_SHORT) $(RBNF_INDEX_RES_SHORT) $(TRANSLIT_FILES_SHORT) $(SPREP_FILES_SHORT) $(CFU_FILES_SHORT)
UNI_CORE_DATA=pnames.icu uprops.icu ucase.icu ubidi.icu nfc.nrm
UNI_CORE_TARGET_DATA=$(UNI_CORE_DATA:%=$(BUILDDIR)/%)
@ -670,6 +685,30 @@ $(ZONE_INDEX_FILE): $(SRCLISTDEPS)
echo " }" >> $@; \
echo "}" >> $@;
### unit res
$(UNITBLDDIR)/%.res: $(UNITSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES)
$(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(UNITSRCDIR) -d $(UNITBLDDIR) $(<F)
# copy the unit/pool.res file from the source folder to the build output folder
# and swap it to native endianness
$(UNITBLDDIR)/pool.res: $(UNITSRCDIR)/pool.res
$(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(UNITSRCDIR)/pool.res $(UNITBLDDIR)/pool.res
$(UNITBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(UNIT_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
$(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(UNIT_TREE) -d $(UNITBLDDIR) $(INDEX_NAME).txt
$(UNIT_INDEX_FILE): $(SRCLISTDEPS)
@echo "generating $@ (list of installed time zone name locales)"; \
$(RMV) $@; \
echo "// Warning this file is automatically generated" > $@; \
echo "$(INDEX_NAME):table(nofallback) {" >> $@; \
echo " InstalledLocales {" >> $@; \
for file in $(INSTALLED_UNIT_FILES); do \
echo " $$file {\"\"}" >> $@; \
done; \
echo " }" >> $@; \
echo "}" >> $@;
### collation res
$(COLBLDDIR)/%.res: $(COLSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES)
$(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(COLSRCDIR) -d $(COLBLDDIR) $(<F)

View file

@ -34,7 +34,8 @@ BRK_RES_ALIAS_SOURCE = $(BRK_RES_SYNTHETIC_ALIAS)
# List of dictionary files (dict).
BRK_DICT_SOURCE = burmesedict.txt cjdict.txt khmerdict.txt laodict.txt thaidict.txt
BRK_DICT_SOURCE = burmesedict.txt cjdict.txt khmerdict.txt laodict.txt\
thaidict.txt
# List of break iterator files (brk).

View file

@ -137,6 +137,9 @@
<remap sourcePath="/CurrencyUnitPatterns" targetDir="curr" />
<remap sourcePath="/currencySpacing" targetDir="curr" />
<remap sourcePath="/zoneStrings" targetDir="zone" />
<remap sourcePath="/units" targetDir="unit" />
<remap sourcePath="/unitsShort" targetDir="unit" />
<remap sourcePath="/unitsNarrow" targetDir="unit" />
</remapper>
<!-- http://ant.apache.org/faq.html#xml-entity-include -->
&icu-config;
@ -375,6 +378,8 @@
<include name="zone/*.txt" />
<include name="zone/resfiles.mk" />
<exclude name="zone/tzdbNames.txt" />
<include name="unit/*.txt" />
<include name="unit/resfiles.mk" />
</fileset>
<fileset id="collation" dir="${env.ICU4C_DIR}/source/data/coll">
<include name="*.txt" />

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -30,16 +30,4 @@ ar_AE{
}
}
}
unitsNarrow{
length{
millimeter{
few{"{0} ملم"}
many{"{0} ملم"}
one{"ملم"}
other{"{0} ملم"}
two{"ملم"}
zero{"ملم"}
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -397,50 +397,4 @@ be{
US{"ЗША"}
metric{"метрычная"}
}
units{
duration{
day{
few{"{0} дні"}
many{"{0} дзён"}
one{"{0} дзень"}
other{"{0} дня"}
}
hour{
few{"{0} гадзіны"}
many{"{0} гадзін"}
one{"{0} гадзіна"}
other{"{0} гадзіны"}
}
minute{
few{"{0} хвіліны"}
many{"{0} хвілін"}
one{"{0} хвіліна"}
other{"{0} хвіліны"}
}
month{
few{"{0} месяца"}
many{"{0} месяцаў"}
one{"{0} месяц"}
other{"{0} месяца"}
}
second{
few{"{0} сэкунды"}
many{"{0} сэкунд"}
one{"{0} сэкунда"}
other{"{0} сэкунды"}
}
week{
few{"{0} тыдні"}
many{"{0} тыдняў"}
one{"{0} тыдзень"}
other{"{0} тыдня"}
}
year{
few{"{0} гады"}
many{"{0} гадоў"}
one{"{0} год"}
other{"{0} году"}
}
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -165,46 +165,4 @@ bn_IN{
dn{"AM/PM"}
}
}
unitsNarrow{
angle{
arc-second{
one{"{0}″"}
other{"{0}″"}
}
}
area{
square-kilometer{
one{"{0} km²"}
other{"{0} km²"}
}
square-mile{
one{"{0} mi²"}
other{"{0} mi²"}
}
}
speed{
kilometer-per-hour{
one{"{0} kph"}
other{"{0} kph"}
}
meter-per-second{
one{"{0} m/s"}
other{"{0} m/s"}
}
mile-per-hour{
one{"{0} mph"}
other{"{0} mph"}
}
}
volume{
cubic-kilometer{
one{"{0} km³"}
other{"{0} km³"}
}
cubic-mile{
one{"{0}mi³"}
other{"{0} mi³"}
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -289,36 +289,4 @@ brx{
US{"यु.एस"}
metric{"मिथार खिलमिथार"}
}
units{
duration{
day{
one{"{0} सान"}
other{"{0} सान"}
}
hour{
one{"{0} रिंगा"}
other{"{0} घंटे"}
}
minute{
one{"{0} मिन."}
other{"{0} मिन."}
}
month{
one{"{0} महीना"}
other{"{0} महीने"}
}
second{
one{"{0} सेकं."}
other{"{0} सेकं."}
}
week{
one{"{0} सप्ताह"}
other{"{0} सप्ताह"}
}
year{
one{"{0} साल"}
other{"{0} साल"}
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -1201,82 +1201,4 @@ bs_Cyrl{
x-Pinyin{"Пинјин"}
x-Publishing{"Издавачки"}
}
units{
duration{
day{
few{"{0} дана"}
one{"{0} дан"}
other{"{0} дан"}
}
hour{
few{"{0} сата"}
one{"{0} сат"}
other{"{0} сат"}
}
minute{
few{"{0} минута"}
one{"{0} минут"}
other{"{0} минут"}
}
month{
few{"{0} месеца"}
one{"{0} месец"}
other{"{0} месец"}
}
second{
few{"{0} секунде"}
one{"{0} секунда"}
other{"{0} секунда"}
}
week{
few{"{0} недеље"}
one{"{0} недеља"}
other{"{0} недеља"}
}
year{
few{"{0} године"}
one{"{0} година"}
other{"{0} година"}
}
}
}
unitsShort{
duration{
day{
few{"{0} дана"}
one{"{0} дан"}
other{"{0} дан"}
}
hour{
few{"{0} сата"}
one{"{0} сат"}
other{"{0} сат"}
}
minute{
few{"{0} мин"}
one{"{0} мин"}
other{"{0} мин"}
}
month{
few{"{0} мес"}
one{"{0} мес"}
other{"{0} мес"}
}
second{
few{"{0} сек"}
one{"{0} сек"}
other{"{0} сек"}
}
week{
few{"{0} нед"}
one{"{0} нед"}
other{"{0} нед"}
}
year{
few{"{0} год"}
one{"{0} год"}
other{"{0} год"}
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -369,48 +369,4 @@ chr{
US{"ᎣᏂᏏ"}
metric{"ᎺᏘᎩ"}
}
units{
duration{
day{
one{"{0} ᏏᎦ"}
other{"{0} ᏧᏒᎯᏓ"}
}
hour{
one{"{0} ᏑᏣᎶᏓ"}
other{"{0} ᎢᏧᏣᎶᏓ"}
}
minute{
one{"{0} ᎢᏯᏔᏬᏍᏔᏅ"}
other{"{0} ᎢᏧᏔᏬᏍᏔᏅ"}
}
month{
one{"{0} ᏏᏅᏓ"}
other{"{0} ᎢᏯᏅᏓ"}
}
second{
one{"{0} "}
other{"{0} ᏗᏎᏢ"}
}
week{
one{"{0} ᏒᎾᏙᏓᏆᏍᏗ"}
other{"{0} ᎢᏳᎾᏙᏓᏆᏍᏗ"}
}
year{
one{"{0} ᏑᏕᏘᏴᏓ"}
other{"{0} ᏧᏕᏘᏴᏓ"}
}
}
}
unitsNarrow{
temperature{
celsius{
one{"{0}°C"}
other{"{0}°C"}
}
fahrenheit{
one{"{0}°"}
other{"{0}°"}
}
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -30,34 +30,4 @@ de_CH{
quotationEnd{"»"}
quotationStart{"«"}
}
units{
area{
square-foot{
dnam{"Quadratfuss"}
one{"{0} Quadratfuss"}
other{"{0} Quadratfuss"}
}
}
length{
foot{
dnam{"Fuss"}
one{"{0} Fuss"}
other{"{0} Fuss"}
}
}
volume{
cubic-foot{
dnam{"Kubikfuss"}
one{"{0} Kubikfuss"}
other{"{0} Kubikfuss"}
}
}
}
unitsShort{
length{
foot{
dnam{"Fuss"}
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -741,29 +741,4 @@ dz{
US{"ཨ་མི་རི་ཀཱན་ བརྩི་ལུགས"}
metric{"མེ་ཊྲིཀ་བརྩི་ལུགས"}
}
units{
duration{
day{
other{"ཉིན་ཞག་ {0}"}
}
hour{
other{"ཆུ་ཚོད་ {0}"}
}
minute{
other{"སྐར་མ་ {0}"}
}
month{
other{"ཟླཝ་ {0}"}
}
second{
other{"སྐར་ཆ་ {0}"}
}
week{
other{"བངུན་ཕྲག་ {0}"}
}
year{
other{"ལོ་འཁོར་ {0}"}
}
}
}
}

View file

@ -789,84 +789,4 @@ ee{
US{"us"}
metric{"metric"}
}
units{
duration{
day{
one{"ŋkeke {0} wo"}
other{"ŋkeke {0} wo"}
}
hour{
one{"gaƒoƒo {0} wo"}
other{"gaƒoƒo {0} wo"}
}
minute{
one{"aɖabaƒoƒo {0} wo"}
other{"aɖabaƒoƒo {0} wo"}
}
month{
one{"ɣleti {0} wo"}
other{"ɣleti {0} wo"}
}
second{
one{"sekend {0} wo"}
other{"sekend {0} wo"}
}
week{
one{"kɔsiɖa {0} wo"}
other{"kɔsiɖa {0} wo"}
}
year{
one{"ƒe {0} wo"}
other{"ƒe {0} wo"}
}
}
}
unitsNarrow{
duration{
hour{
one{"g {0}"}
other{"g {0}"}
}
minute{
one{"a {0}"}
other{"a {0}"}
}
second{
one{"s {0}"}
other{"s {0}"}
}
}
}
unitsShort{
duration{
day{
one{"ŋkeke {0}"}
other{"ŋkeke {0}"}
}
hour{
one{"gaƒoƒo {0}"}
other{"gaƒoƒo {0}"}
}
minute{
one{"aɖabaƒoƒo {0}"}
other{"aɖabaƒoƒo {0}"}
}
month{
one{"ɣleti {0}"}
other{"ɣleti {0}"}
}
second{
one{"sekend {0}"}
other{"sekend {0}"}
}
week{
one{"kɔsiɖa {0}"}
other{"kɔsiɖa {0}"}
}
year{
one{"ƒe {0}"}
other{"ƒe {0}"}
}
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -8,16 +8,4 @@
// ***************************************************************************
en_001{
Version{"2.1.6.69"}
unitsNarrow{
temperature{
celsius{
one{"{0}°"}
other{"{0}°"}
}
fahrenheit{
one{"{0}°F"}
other{"{0}°F"}
}
}
}
}

View file

@ -566,28 +566,4 @@ en_AU{
2{"{0} and {1}"}
}
}
units{
mass{
metric-ton{
dnam{"tonnes"}
one{"tonne"}
other{"{0} tonnes"}
}
}
}
unitsNarrow{
duration{
millisecond{
one{"{0} ms"}
other{"{0} ms"}
}
}
}
unitsShort{
length{
micrometer{
dnam{"µmetres"}
}
}
}
}

View file

@ -9,16 +9,4 @@
en_BS{
%%Parent{"en_001"}
Version{"2.1.6.69"}
unitsNarrow{
temperature{
celsius{
one{"{0}°C"}
other{"{0}°C"}
}
fahrenheit{
one{"{0}°"}
other{"{0}°"}
}
}
}
}

View file

@ -67,16 +67,4 @@ en_BZ{
}
}
}
unitsNarrow{
temperature{
celsius{
one{"{0}°C"}
other{"{0}°C"}
}
fahrenheit{
one{"{0}°"}
other{"{0}°"}
}
}
}
}

View file

@ -802,209 +802,4 @@ en_GB{
end{"{0} and {1}"}
}
}
units{
acceleration{
meter-per-second-squared{
dnam{"metres per second squared"}
one{"{0} metre per second squared"}
other{"{0} metres per second squared"}
}
}
area{
square-centimeter{
dnam{"square centimetres"}
one{"{0} square centimetre"}
other{"{0} square centimetres"}
}
square-kilometer{
dnam{"square kilometres"}
one{"{0} square kilometre"}
other{"{0} square kilometres"}
}
square-meter{
dnam{"square metres"}
one{"{0} square metre"}
other{"{0} square metres"}
}
}
consumption{
liter-per-kilometer{
dnam{"litres per kilometre"}
one{"{0} litre per kilometre"}
other{"{0} litres per kilometre"}
}
}
length{
centimeter{
dnam{"centimetres"}
one{"{0} centimetre"}
other{"{0} centimetres"}
}
decimeter{
dnam{"decimetre"}
one{"{0} decimetre"}
other{"{0} decimetres"}
}
kilometer{
dnam{"kilometres"}
one{"{0} kilometre"}
other{"{0} kilometres"}
}
meter{
dnam{"metres"}
one{"{0} metre"}
other{"{0} metres"}
}
micrometer{
dnam{"micrometre"}
one{"{0} micrometre"}
other{"{0} micrometres"}
}
millimeter{
dnam{"millimetres"}
one{"{0} millimetre"}
other{"{0} millimetres"}
}
nanometer{
dnam{"nanometres"}
one{"{0} nanometre"}
other{"{0} nanometres"}
}
picometer{
dnam{"picometres"}
one{"{0} picometre"}
other{"{0} picometres"}
}
}
pressure{
millimeter-of-mercury{
dnam{"millimetres of mercury"}
one{"{0} millimetre of mercury"}
other{"{0} millimetres of mercury"}
}
}
speed{
kilometer-per-hour{
dnam{"kilometres per hour"}
one{"{0} kilometre per hour"}
other{"{0} kilometres per hour"}
}
meter-per-second{
dnam{"metres per second"}
one{"{0} metre per second"}
other{"{0} metres per second"}
}
}
volume{
centiliter{
dnam{"centilitres"}
one{"{0} centilitre"}
other{"{0} centilitres"}
}
cubic-centimeter{
dnam{"cubic centimetres"}
one{"{0} cubic centimetre"}
other{"{0} cubic centimetres"}
}
cubic-kilometer{
dnam{"cubic kilometres"}
one{"{0} cubic kilometre"}
other{"{0} cubic kilometres"}
}
cubic-meter{
dnam{"cubic metres"}
one{"{0} cubic metre"}
other{"{0} cubic metres"}
}
deciliter{
dnam{"decilitres"}
one{"{0} decilitre"}
other{"{0} decilitres"}
}
hectoliter{
dnam{"hectolitres"}
one{"{0} hectolitre"}
other{"{0} hectolitres"}
}
liter{
dnam{"litres"}
one{"{0} litre"}
other{"{0} litres"}
}
megaliter{
dnam{"megalitres"}
one{"{0} megalitre"}
other{"{0} megalitres"}
}
milliliter{
dnam{"millilitres"}
one{"{0} millilitre"}
other{"{0} millilitres"}
}
}
}
unitsNarrow{
acceleration{
g-force{
one{"{0}G"}
other{"{0}G"}
}
}
mass{
pound{
one{"{0}lb"}
other{"{0}lb"}
}
}
pressure{
inch-hg{
one{"{0}\u0022 Hg"}
other{"{0}\u0022 Hg"}
}
}
volume{
liter{
dnam{"litre"}
}
}
}
unitsShort{
acceleration{
meter-per-second-squared{
dnam{"metres/sec²"}
}
}
consumption{
liter-per-kilometer{
dnam{"litres/km"}
}
}
length{
centimeter{
dnam{"centimetres"}
}
fathom{
one{"{0} fm"}
other{"{0} fm"}
}
meter{
dnam{"metres"}
}
}
speed{
kilometer-per-hour{
dnam{"kilometres per hour"}
}
meter-per-second{
dnam{"metres per second"}
}
}
volume{
liter{
dnam{"litres"}
one{"{0} l"}
other{"{0} l"}
}
}
}
}

View file

@ -9,16 +9,4 @@
en_KY{
%%Parent{"en_001"}
Version{"2.1.6.69"}
unitsNarrow{
temperature{
celsius{
one{"{0}°C"}
other{"{0}°C"}
}
fahrenheit{
one{"{0}°"}
other{"{0}°"}
}
}
}
}

View file

@ -9,16 +9,4 @@
en_PW{
%%Parent{"en_001"}
Version{"2.1.6.69"}
unitsNarrow{
temperature{
celsius{
one{"{0}°C"}
other{"{0}°C"}
}
fahrenheit{
one{"{0}°"}
other{"{0}°"}
}
}
}
}

View file

@ -161,12 +161,4 @@ eo{
}
}
}
unitsShort{
duration{
month{
one{"{0} mon."}
other{"{0} mon."}
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -600,205 +600,4 @@ es_419{
transformNames{
Numeric{"Numéricas"}
}
units{
acceleration{
g-force{
dnam{"unidad de fuerza gravitacional"}
}
}
energy{
calorie{
dnam{"calorías por gramo"}
one{"{0} caloría por gramo"}
other{"{0} calorías por gramo"}
}
foodcalorie{
dnam{"calorías por kilogramo"}
one{"{0} caloría por kilogramo"}
other{"{0} calorías por kilogramo"}
}
}
length{
decimeter{
dnam{"decímetro"}
}
}
mass{
carat{
dnam{"quilates de gemología"}
one{"{0} quilate de gemología"}
other{"{0} quilates de gemología"}
}
}
proportion{
karat{
dnam{"quilates de orfebrería"}
one{"{0} quilate de orfebrería"}
other{"{0} quilates de orfebrería"}
}
}
temperature{
kelvin{
dnam{"grados Kelvin"}
one{"{0} grado Kelvin"}
other{"{0} grados Kelvin"}
}
}
}
unitsNarrow{
duration{
day{
dnam{"d."}
one{"{0} d."}
other{"{0} dd."}
}
month{
dnam{"m."}
one{"{0} m."}
other{"{0} mm."}
}
week{
dnam{"sem."}
one{"{0} sem."}
other{"{0} sems."}
}
year{
dnam{"a."}
one{"{0} a."}
other{"{0} aa."}
}
}
}
unitsShort{
angle{
degree{
dnam{"°"}
one{"{0} °"}
other{"{0} °"}
}
}
duration{
day{
dnam{"dd."}
one{"{0} d."}
other{"{0} dd."}
}
hour{
dnam{"h"}
}
month{
dnam{"mm."}
one{"{0} m."}
other{"{0} mm."}
}
week{
dnam{"sems."}
one{"{0} sem."}
other{"{0} sems."}
}
year{
dnam{"aa."}
one{"{0} a."}
other{"{0} aa."}
}
}
electric{
volt{
dnam{"V"}
}
}
energy{
foodcalorie{
dnam{"C"}
one{"{0} C"}
other{"{0} C"}
}
joule{
dnam{"j"}
one{"{0} j"}
other{"{0} j"}
}
}
length{
light-year{
dnam{"aa. l."}
one{"{0} a. l."}
other{"{0} aa. l."}
}
nautical-mile{
dnam{"nmi"}
one{"{0} nmi"}
other{"{0} nmi"}
}
parsec{
dnam{"parsecs"}
}
yard{
dnam{"yardas"}
}
}
mass{
carat{
dnam{"CD"}
one{"{0} CD"}
other{"{0} CD"}
}
ounce-troy{
dnam{"oz t"}
one{"{0} oz t"}
other{"{0} oz t"}
}
ton{
dnam{"tn"}
one{"{0} tn"}
other{"{0} tn"}
}
}
power{
watt{
dnam{"W"}
}
}
pressure{
pound-per-square-inch{
dnam{"lb/in²"}
one{"{0} lb/in²"}
other{"{0} lb/in²"}
}
}
proportion{
karat{
dnam{"kt"}
one{"{0} kt"}
other{"{0} kt"}
}
}
temperature{
kelvin{
dnam{"°K"}
one{"{0} °K"}
other{"{0} °K"}
}
}
volume{
cup{
dnam{"c"}
one{"{0} c"}
other{"{0} c"}
}
pint{
dnam{"pintas"}
}
tablespoon{
dnam{"cdas."}
one{"{0} cd."}
other{"{0} cdas."}
}
teaspoon{
dnam{"cdtas."}
one{"{0} cdta."}
other{"{0} cdtas."}
}
}
}
}

View file

@ -734,285 +734,4 @@ es_MX{
measurementSystemNames{
US{"estadounidense"}
}
units{
acceleration{
g-force{
dnam{"fuerza G"}
}
}
angle{
arc-minute{
dnam{"arcominutos"}
one{"{0} minuto"}
other{"{0} minutos"}
}
arc-second{
dnam{"arcosegundos"}
one{"{0} segundo"}
other{"{0} segundos"}
}
}
energy{
calorie{
dnam{"calorías"}
one{"{0} caloría"}
other{"{0} calorías"}
}
foodcalorie{
dnam{"calorías"}
one{"{0} caloría"}
other{"{0} calorías"}
}
joule{
dnam{"joules"}
}
kilojoule{
dnam{"kilojoules"}
}
kilowatt-hour{
dnam{"kilowatt-hora"}
one{"kilowatt-hora"}
other{"{0} kilowatts-hora"}
}
}
length{
decimeter{
dnam{"decímetros"}
}
micrometer{
dnam{"micrometros"}
one{"{0} micrometro"}
other{"{0} micrometros"}
}
nautical-mile{
dnam{"millas naúticas"}
one{"{0} milla naútica"}
other{"{0} millas naúticas"}
}
parsec{
dnam{"pársecs"}
one{"{0} pársec"}
other{"{0} pársecs"}
}
}
light{
lux{
dnam{"lux"}
}
}
mass{
carat{
dnam{"quilates"}
one{"{0} quilate"}
other{"{0} quilates"}
}
}
power{
gigawatt{
dnam{"gigawatts"}
}
kilowatt{
dnam{"kilowatts"}
}
megawatt{
dnam{"megawatts"}
}
milliwatt{
dnam{"miliwatts"}
one{"{0} miliwatt"}
other{"{0} miliwatts"}
}
}
proportion{
karat{
dnam{"quilates"}
one{"{0} quilate"}
other{"{0} quilates"}
}
}
temperature{
kelvin{
dnam{"kelvines"}
one{"kelvin"}
other{"{0} kelvines"}
}
}
volume{
acre-foot{
dnam{"acre-pies"}
one{"{0} acre-pie"}
other{"{0} acre-pies"}
}
fluid-ounce{
dnam{"onzas líquidas"}
one{"{0} onza líquida"}
other{"{0} onzas líquidas"}
}
}
}
unitsNarrow{
duration{
day{
dnam{"días"}
one{"{0} d"}
other{"{0} d"}
}
month{
dnam{"m"}
one{"{0} m"}
other{"{0} m"}
}
week{
dnam{"sem"}
one{"{0} sem"}
other{"{0} sem"}
}
year{
dnam{"a"}
one{"{0}a"}
other{"{0} a"}
}
}
}
unitsShort{
acceleration{
g-force{
dnam{"fuerza G"}
one{"{0} G"}
other{"{0} G"}
}
}
angle{
arc-minute{
one{"{0} min"}
other{"{0} min"}
}
arc-second{
dnam{"arcseg"}
one{"{0} s"}
other{"{0} s"}
}
degree{
dnam{"º"}
one{"{0}°"}
other{"{0}°"}
}
}
digital{
bit{
dnam{"bit"}
one{"{0} bit"}
other{"{0} bit"}
}
byte{
dnam{"byte"}
one{"{0} byte"}
other{"{0} byte"}
}
}
duration{
day{
dnam{"días"}
one{"{0} día"}
other{"{0} días"}
}
month{
dnam{"meses"}
one{"{0} m"}
other{"{0} m"}
}
week{
dnam{"sem"}
one{"{0} sem"}
other{"{0} sem"}
}
year{
dnam{"a"}
one{"{0} a"}
other{"{0} a"}
}
}
energy{
foodcalorie{
dnam{"cal"}
one{"{0} cal"}
other{"{0} cal"}
}
joule{
one{"{0} J"}
other{"{0} J"}
}
}
length{
astronomical-unit{
dnam{"ua"}
one{"{0} ua"}
other{"{0} ua"}
}
light-year{
dnam{"al"}
one{"{0} a. l."}
other{"{0} a. l."}
}
mile{
dnam{"millas"}
}
nanometer{
dnam{"Nm"}
one{"{0} Nm"}
other{"{0} Nm"}
}
nautical-mile{
dnam{"M"}
one{"{0} M"}
other{"{0} M"}
}
parsec{
dnam{"pc"}
}
yard{
dnam{"yd"}
}
}
mass{
ounce-troy{
dnam{"ozt"}
one{"{0} ozt"}
other{"{0} ozt"}
}
}
pressure{
pound-per-square-inch{
dnam{"psi"}
one{"{0} psi"}
other{"{0} psi"}
}
}
speed{
kilometer-per-hour{
dnam{"km/hora"}
}
}
temperature{
kelvin{
dnam{"K"}
one{"{0} K"}
other{"{0} K"}
}
}
volume{
cup{
dnam{"tza."}
one{"{0} tza."}
other{"{0} tzas."}
}
pint{
dnam{"pt"}
}
tablespoon{
one{"{0} cda."}
other{"{0} cdas."}
}
}
}
}

View file

@ -59,16 +59,4 @@ es_PR{
}
}
}
unitsNarrow{
temperature{
celsius{
one{"{0}°C"}
other{"{0}°C"}
}
fahrenheit{
one{"{0}°"}
other{"{0}°"}
}
}
}
}

View file

@ -22,16 +22,4 @@ es_US{
NoonMarkerNarrow{"m"}
}
}
unitsNarrow{
temperature{
celsius{
one{"{0}°C"}
other{"{0}°C"}
}
fahrenheit{
one{"{0}°"}
other{"{0}°"}
}
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -755,479 +755,4 @@ fo{
US{"USA-einingar"}
metric{"SI-einingar"}
}
units{
acceleration{
g-force{
dnam{"tyngdakraft Jørðin"}
one{"{0} tyngdakraft Jørðin"}
other{"{0} tyngdakraft Jørðin"}
}
}
angle{
arc-minute{
dnam{"bueminuttir"}
one{"{0} bueminutt"}
other{"{0} bueminuttir"}
}
arc-second{
dnam{"buesekundir"}
one{"{0} buesekund"}
other{"{0} buesekundir"}
}
degree{
dnam{"gradir"}
one{"{0} grad"}
other{"{0} gradir"}
}
}
area{
hectare{
dnam{"hektar"}
one{"{0} hektar"}
other{"{0} hektar"}
}
}
compound{
per{"{0} á {1}"}
}
duration{
day{
dnam{"samdøgur"}
one{"{0} samdøgur"}
other{"{0} samdøgur"}
}
hour{
dnam{"tímar"}
one{"{0} tími"}
other{"{0} tímar"}
}
millisecond{
dnam{"millissekundir"}
one{"{0} millisekund"}
other{"{0} millissekundir"}
}
minute{
dnam{"minuttir"}
one{"{0} minuttur"}
other{"{0} minuttir"}
}
month{
dnam{"mánaðir"}
one{"{0} mánadur"}
other{"{0} mánaðir"}
}
second{
dnam{"sekundir"}
one{"{0} sekund"}
other{"{0} sekundir"}
}
week{
dnam{"vikur"}
one{"{0} vika"}
other{"{0} vikur"}
}
year{
dnam{"ára"}
one{"{0} ár"}
other{"{0} ára"}
}
}
length{
centimeter{
dnam{"sentimeter"}
one{"{0} sentimeter"}
other{"{0} sentimeter"}
}
kilometer{
dnam{"kilometer"}
one{"{0} kilometer"}
other{"{0} kilometer"}
}
meter{
dnam{"meter"}
one{"{0} meter"}
other{"{0} meter"}
}
millimeter{
dnam{"millimeter"}
one{"{0} millimeter"}
other{"{0} millimeter"}
}
picometer{
dnam{"pikometer"}
one{"{0} pikometer"}
other{"{0} pikometer"}
}
}
mass{
gram{
dnam{"gram"}
one{"{0} gram"}
other{"{0} gram"}
}
kilogram{
dnam{"kilogram"}
one{"{0} kilogram"}
other{"{0} kilogram"}
}
}
pressure{
hectopascal{
dnam{"hektopascal"}
one{"{0} hektopascal"}
other{"{0} hektopascal"}
}
millibar{
dnam{"millibar"}
one{"{0} millibar"}
other{"{0} millibar"}
}
}
temperature{
celsius{
dnam{"gradir Celsius"}
one{"{0} grad Celsius"}
other{"{0} gradir Celsius"}
}
fahrenheit{
dnam{"gradir Fahrenheit"}
one{"{0} grad Fahrenheit"}
other{"{0} gradir Fahrenheit"}
}
}
}
unitsNarrow{
acceleration{
g-force{
one{"{0}G"}
other{"{0}G"}
}
}
angle{
arc-minute{
one{"{0}"}
other{"{0}"}
}
arc-second{
one{"{0}″"}
other{"{0}″"}
}
degree{
one{"{0}°"}
other{"{0}°"}
}
}
area{
hectare{
one{"{0}ha"}
other{"{0}ha"}
}
square-kilometer{
one{"{0}km²"}
other{"{0}km²"}
}
square-meter{
one{"{0}m²"}
other{"{0}m²"}
}
}
compound{
per{"{0}/{1}"}
}
duration{
day{
one{"{0}d"}
other{"{0}d"}
}
hour{
one{"{0}h"}
other{"{0}h"}
}
millisecond{
one{"{0}ms"}
other{"{0}ms"}
}
minute{
one{"{0}m"}
other{"{0}m"}
}
month{
one{"{0}m"}
other{"{0}m"}
}
second{
one{"{0}s"}
other{"{0}s"}
}
week{
one{"{0}v"}
other{"{0}v"}
}
year{
one{"{0}á"}
other{"{0}á"}
}
}
length{
centimeter{
one{"{0}cm"}
other{"{0}cm"}
}
kilometer{
one{"{0}km"}
other{"{0}km"}
}
meter{
one{"{0}m"}
other{"{0}m"}
}
millimeter{
one{"{0}mm"}
other{"{0}mm"}
}
picometer{
one{"{0}pm"}
other{"{0}pm"}
}
}
mass{
gram{
one{"{0}g"}
other{"{0}g"}
}
kilogram{
one{"{0}kg"}
other{"{0}kg"}
}
}
power{
kilowatt{
one{"{0}kW"}
other{"{0}kW"}
}
watt{
one{"{0}W"}
other{"{0}W"}
}
}
pressure{
hectopascal{
one{"{0}hPa"}
other{"{0}hPa"}
}
millibar{
one{"{0}mbar"}
other{"{0}mbar"}
}
}
speed{
kilometer-per-hour{
one{"{0}km/h"}
other{"{0}km/h"}
}
meter-per-second{
one{"{0}m/s"}
other{"{0}m/s"}
}
}
temperature{
celsius{
one{"{0}°"}
other{"{0}°"}
}
fahrenheit{
one{"{0}°F"}
other{"{0}°F"}
}
}
volume{
cubic-kilometer{
one{"{0}km³"}
other{"{0}km³"}
}
liter{
one{"{0}L"}
other{"{0}L"}
}
}
}
unitsShort{
acceleration{
g-force{
dnam{"tyngdakraft Jørðin"}
one{"{0} G"}
other{"{0} G"}
}
}
angle{
arc-minute{
dnam{"bueminuttir"}
one{"{0}"}
other{"{0}"}
}
arc-second{
dnam{"buesekundir"}
one{"{0}″"}
other{"{0}″"}
}
degree{
dnam{"gradir"}
one{"{0}°"}
other{"{0}°"}
}
}
area{
hectare{
dnam{"hektar"}
one{"{0} ha"}
other{"{0} ha"}
}
square-kilometer{
one{"{0} km²"}
other{"{0} km²"}
}
square-meter{
one{"{0} m²"}
other{"{0} m²"}
}
}
compound{
per{"{0}/{1}"}
}
duration{
day{
dnam{"samdøgur"}
one{"{0} d"}
other{"{0} d"}
}
hour{
dnam{"tímar"}
one{"{0} h"}
other{"{0} h"}
}
millisecond{
dnam{"millissekundir"}
one{"{0} ms"}
other{"{0} ms"}
}
minute{
dnam{"minuttir"}
one{"{0} min"}
other{"{0} min"}
}
month{
dnam{"mánaðir"}
one{"{0} mán"}
other{"{0} mán"}
}
second{
dnam{"sekundir"}
one{"{0} s"}
other{"{0} s"}
}
week{
dnam{"vikur"}
one{"{0} v"}
other{"{0} v"}
}
year{
dnam{"ára"}
one{"{0} á"}
other{"{0} á"}
}
}
length{
centimeter{
dnam{"sentimeter"}
one{"{0} cm"}
other{"{0} cm"}
}
kilometer{
dnam{"kilometer"}
one{"{0} km"}
other{"{0} km"}
}
meter{
dnam{"meter"}
one{"{0} m"}
other{"{0} m"}
}
millimeter{
dnam{"millimeter"}
one{"{0} mm"}
other{"{0} mm"}
}
picometer{
dnam{"pikometer"}
one{"{0} pm"}
other{"{0} pm"}
}
}
mass{
gram{
dnam{"gram"}
one{"{0} g"}
other{"{0} g"}
}
kilogram{
dnam{"kilogram"}
one{"{0} kg"}
other{"{0} kg"}
}
}
power{
kilowatt{
one{"{0} kW"}
other{"{0} kW"}
}
watt{
one{"{0} W"}
other{"{0} W"}
}
}
pressure{
hectopascal{
dnam{"hektopascal"}
one{"{0} hPa"}
other{"{0} hPa"}
}
millibar{
dnam{"millibar"}
one{"{0} mbar"}
other{"{0} mbar"}
}
}
speed{
kilometer-per-hour{
one{"{0} km/h"}
other{"{0} km/h"}
}
meter-per-second{
one{"{0} m/s"}
other{"{0} m/s"}
}
}
temperature{
celsius{
dnam{"gradir Celsius"}
one{"{0}°C"}
other{"{0}°C"}
}
fahrenheit{
dnam{"gradir Fahrenheit"}
one{"{0}°F"}
other{"{0}°F"}
}
}
volume{
cubic-kilometer{
one{"{0} km³"}
other{"{0} km³"}
}
liter{
one{"{0} l"}
other{"{0} l"}
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -510,257 +510,4 @@ fr_CA{
x-Halfwidth{"Demie largeur"}
x-Publishing{"Édition"}
}
units{
acceleration{
g-force{
dnam{"force G"}
}
}
angle{
arc-minute{
one{"{0} minute dangle"}
other{"{0} minutes dangle"}
}
}
area{
acre{
dnam{"acres"}
one{"{0} acre"}
other{"{0} acres"}
}
square-mile{
dnam{"milles carrés"}
one{"{0} mille carré"}
other{"{0} milles carrés"}
}
square-yard{
dnam{"verges carrées"}
one{"{0} verge carrée"}
other{"{0} verges carrées"}
}
}
consumption{
mile-per-gallon{
dnam{"milles au gallon"}
one{"{0} mille au gallon"}
other{"{0} milles au gallon"}
}
}
duration{
second{
per{"{0} à la seconde"}
}
}
energy{
foodcalorie{
dnam{"kilocalories"}
one{"{0} kilocalorie"}
other{"{0} kilocalories"}
}
}
length{
mile{
dnam{"mille"}
one{"{0} mille"}
other{"{0} milles"}
}
yard{
dnam{"verges"}
one{"{0} verge"}
other{"{0} verges"}
}
}
speed{
kilometer-per-hour{
dnam{"kilomètres à lheure"}
}
mile-per-hour{
dnam{"milles par heure"}
one{"{0} mille par heure"}
other{"{0} milles par heure"}
}
}
volume{
cubic-mile{
dnam{"milles cubes"}
one{"{0} mille cube"}
other{"{0} milles cubes"}
}
cubic-yard{
dnam{"verges cubes"}
one{"{0} verge cube"}
other{"{0} verges cubes"}
}
pint{
dnam{"chopine"}
one{"{0} chopine"}
other{"{0} chopines"}
}
quart{
dnam{"pintes"}
one{"{0} pinte"}
other{"{0} pintes"}
}
teaspoon{
dnam{"cuillères à thé"}
one{"{0} cuillère à thé"}
other{"{0} cuillères à thé"}
}
}
}
unitsNarrow{
duration{
month{
dnam{"m."}
}
}
temperature{
celsius{
one{"{0} °C"}
other{"{0} °C"}
}
}
}
unitsShort{
area{
square-foot{
one{"{0} pi²"}
other{"{0} pi²"}
}
square-yard{
dnam{"vg²"}
one{"{0} vg²"}
other{"{0} vg²"}
}
}
duration{
month{
dnam{"m."}
one{"{0} m."}
other{"{0} m."}
}
}
energy{
foodcalorie{
dnam{"kcal"}
one{"{0} kcal"}
other{"{0} kcal"}
}
}
length{
astronomical-unit{
one{"{0} ua"}
other{"{0} ua"}
}
foot{
one{"{0} pi"}
other{"{0} pi"}
}
light-year{
dnam{"al"}
one{"{0} al"}
other{"{0} al"}
}
nautical-mile{
dnam{"NM"}
one{"{0} NM"}
other{"{0} NM"}
}
yard{
dnam{"vg"}
one{"{0} vg"}
other{"{0} vg"}
}
}
mass{
ton{
dnam{"tc"}
one{"{0} tc"}
other{"{0} tc"}
}
}
pressure{
inch-hg{
dnam{"po Hg"}
one{"{0} po Hg"}
other{"{0} po Hg"}
}
pound-per-square-inch{
dnam{"psi"}
one{"{0} psi"}
other{"{0} psi"}
}
}
proportion{
karat{
dnam{"carats"}
}
}
speed{
meter-per-second{
dnam{"mètres par seconde"}
}
}
volume{
acre-foot{
dnam{"ac-pi"}
one{"{0} ac-pi"}
other{"{0} ac-pi"}
}
centiliter{
dnam{"cL"}
one{"{0} cL"}
other{"{0} cL"}
}
cubic-foot{
one{"{0} pi³"}
other{"{0} pi³"}
}
cubic-yard{
dnam{"vg³"}
one{"{0} vg³"}
other{"{0} vg³"}
}
deciliter{
dnam{"dL"}
one{"{0} dL"}
other{"{0} dL"}
}
fluid-ounce{
dnam{"oz liq."}
one{"{0} oz liq."}
other{"{0} oz liq."}
}
hectoliter{
dnam{"hL"}
one{"{0} hL"}
other{"{0} hL"}
}
megaliter{
dnam{"ML"}
one{"{0} ML"}
other{"{0} ML"}
}
milliliter{
dnam{"mL"}
one{"{0} mL"}
other{"{0} mL"}
}
pint{
dnam{"chop"}
one{"{0} chop"}
other{"{0} chop"}
}
quart{
dnam{"pte"}
one{"{0} pte"}
other{"{0} pte"}
}
teaspoon{
dnam{"c. à t."}
one{"{0} c. à t."}
other{"{0} c. à t."}
}
}
}
}

View file

@ -636,68 +636,4 @@ fur{
US{"USA"}
metric{"metric"}
}
units{
duration{
day{
dnam{"zornadis"}
one{"{0} zornade"}
other{"{0} zornadis"}
}
hour{
dnam{"oris"}
one{"{0} ore"}
other{"{0} oris"}
}
minute{
dnam{"minûts"}
one{"{0} minût"}
other{"{0} minûts"}
}
month{
dnam{"mês"}
one{"{0} mês"}
other{"{0} mês"}
}
second{
dnam{"seconts"}
one{"{0} secont"}
other{"{0} seconts"}
}
week{
dnam{"setemanis"}
one{"{0} setemane"}
other{"{0} setemanis"}
}
year{
dnam{"agns"}
one{"{0} an"}
other{"{0} agns"}
}
}
}
unitsShort{
duration{
day{
dnam{"zornadis"}
}
hour{
dnam{"oris"}
}
minute{
dnam{"minûts"}
}
month{
dnam{"mês"}
}
second{
dnam{"seconts"}
}
week{
dnam{"setemanis"}
}
year{
dnam{"agns"}
}
}
}
}

View file

@ -2314,729 +2314,4 @@ fy{
x-Pinyin{"Pinyin"}
x-Publishing{"Publicatie"}
}
units{
acceleration{
g-force{
dnam{"G-krachten"}
one{"{0} G-kracht"}
other{"{0} G-krachten"}
}
}
angle{
arc-minute{
dnam{"boogminuten"}
one{"{0} boogminút"}
other{"{0} boogminuten"}
}
arc-second{
dnam{"boogsekonden"}
one{"{0} boogsekonde"}
other{"{0} boogsekonden"}
}
degree{
dnam{"booggraden"}
one{"{0} booggraad"}
other{"{0} booggraden"}
}
}
area{
acre{
dnam{"ares"}
one{"{0} are"}
other{"{0} ares"}
}
hectare{
dnam{"hektare"}
one{"{0} hektare"}
other{"{0} hektare"}
}
square-foot{
dnam{"fjouwerkante foet"}
one{"{0} fjouwerkante foet"}
other{"{0} fjouwerkante foet"}
}
square-kilometer{
dnam{"fjouwerkante kilometer"}
one{"{0} fjouwerkante kilometer"}
other{"{0} fjouwerkante kilometer"}
}
square-meter{
dnam{"fjouwerkante meter"}
one{"{0} fjouwerkante meter"}
other{"{0} fjouwerkante meter"}
}
square-mile{
dnam{"fjouwerkante myl"}
one{"{0} fjouwerkante myl"}
other{"{0} fjouwerkante myl"}
}
}
compound{
per{"{0} per {1}"}
}
duration{
day{
dnam{"deien"}
one{"{0} dei"}
other{"{0} deien"}
}
hour{
dnam{"oere"}
one{"{0} oere"}
other{"{0} oere"}
}
millisecond{
dnam{"millisekonden"}
one{"{0} millisekonde"}
other{"{0} millisekonden"}
}
minute{
dnam{"minuten"}
one{"{0} minút"}
other{"{0} minuten"}
}
month{
dnam{"moanneen"}
one{"{0} moanne"}
other{"{0} moanneen"}
}
second{
dnam{"sekonden"}
one{"{0} sekonde"}
other{"{0} sekonden"}
}
week{
dnam{"wiken"}
one{"{0} wike"}
other{"{0} wiken"}
}
year{
dnam{"jier"}
one{"{0} jier"}
other{"{0} jier"}
}
}
length{
centimeter{
dnam{"sentimeter"}
one{"{0} sentimeter"}
other{"{0} sentimeter"}
}
foot{
dnam{"foet"}
one{"{0} foet"}
other{"{0} foet"}
}
inch{
dnam{"tommen"}
one{"{0} tomme"}
other{"{0} tommen"}
}
kilometer{
dnam{"kilometer"}
one{"{0} kilometer"}
other{"{0} kilometer"}
}
light-year{
dnam{"ljochtjier"}
one{"{0} ljochtjier"}
other{"{0} ljochtjier"}
}
meter{
dnam{"meter"}
one{"{0} meter"}
other{"{0} meter"}
}
mile{
dnam{"myl"}
one{"{0} myl"}
other{"{0} myl"}
}
millimeter{
dnam{"millimeter"}
one{"{0} millimeter"}
other{"{0} millimeter"}
}
picometer{
dnam{"pikometer"}
one{"{0} pikometer"}
other{"{0} pikometer"}
}
yard{
dnam{"yards"}
one{"{0} yard"}
other{"{0} yards"}
}
}
mass{
gram{
dnam{"gram"}
one{"{0} gram"}
other{"{0} gram"}
}
kilogram{
dnam{"kilogram"}
one{"{0} kilogram"}
other{"{0} kilogram"}
}
ounce{
dnam{"oz"}
one{"{0} oz"}
other{"{0} oz"}
}
pound{
dnam{"lb"}
one{"{0} lb"}
other{"{0} lb"}
}
}
power{
horsepower{
dnam{"hynstekrêften"}
one{"{0} hynstekrêft"}
other{"{0} hynstekrêften"}
}
kilowatt{
dnam{"kilowatt"}
one{"{0} kilowatt"}
other{"{0} kilowatt"}
}
watt{
dnam{"watt"}
one{"{0} watt"}
other{"{0} watt"}
}
}
pressure{
hectopascal{
dnam{"hektopaskal"}
one{"{0} hektopaskal"}
other{"{0} hektopaskal"}
}
inch-hg{
dnam{"inHg"}
one{"{0} inHg"}
other{"{0} inHg"}
}
millibar{
dnam{"millibar"}
one{"{0} millibar"}
other{"{0} millibar"}
}
}
speed{
kilometer-per-hour{
dnam{"kilometer de oere"}
one{"{0} kilometer de oere"}
other{"{0} kilometer de oere"}
}
meter-per-second{
dnam{"meter de sekonde"}
one{"{0} meter de sekonde"}
other{"{0} meter de sekonde"}
}
mile-per-hour{
dnam{"myl de oere"}
one{"{0} myl de oere"}
other{"{0} myl de oere"}
}
}
temperature{
celsius{
dnam{"graden Celsius"}
one{"{0} graad Celsius"}
other{"{0} graden Celsius"}
}
fahrenheit{
dnam{"graden Fahrenheit"}
one{"{0} graad Fahrenheit"}
other{"{0} graden Fahrenheit"}
}
}
volume{
cubic-kilometer{
dnam{"kubike kilometer"}
one{"{0} kubike kilometer"}
other{"{0} kubike kilometer"}
}
cubic-mile{
dnam{"kubike myl"}
one{"{0} kubike myl"}
other{"{0} kubike myl"}
}
liter{
dnam{"liter"}
one{"{0} liter"}
other{"{0} liter"}
}
}
}
unitsNarrow{
acceleration{
g-force{
one{"{0} G"}
other{"{0} G"}
}
}
angle{
arc-minute{
one{"{0}"}
other{"{0}"}
}
arc-second{
one{"{0}″"}
other{"{0}″"}
}
degree{
one{"{0}°"}
other{"{0}°"}
}
}
area{
acre{
one{"{0} acre"}
other{"{0} acres"}
}
hectare{
one{"{0} ha"}
other{"{0} ha"}
}
square-foot{
one{"{0} ft²"}
other{"{0} ft²"}
}
square-kilometer{
one{"{0} km²"}
other{"{0} km²"}
}
square-meter{
one{"{0} m²"}
other{"{0} m²"}
}
square-mile{
one{"{0} mi²"}
other{"{0} mi²"}
}
}
compound{
per{"{0}/{1}"}
}
duration{
day{
one{"{0} d"}
other{"{0} d"}
}
hour{
one{"{0} u"}
other{"{0} u"}
}
millisecond{
one{"{0} ms"}
other{"{0} ms"}
}
minute{
one{"{0} m"}
other{"{0} m"}
}
month{
one{"{0} m"}
other{"{0} m"}
}
second{
one{"{0} s"}
other{"{0} s"}
}
week{
one{"{0} w"}
other{"{0} w"}
}
year{
one{"{0} jr"}
other{"{0} jr"}
}
}
length{
centimeter{
one{"{0} cm"}
other{"{0} cm"}
}
foot{
one{"{0} ft"}
other{"{0} ft"}
}
inch{
one{"{0}\u0022"}
other{"{0}\u0022"}
}
kilometer{
one{"{0} km"}
other{"{0} km"}
}
light-year{
one{"{0} lj"}
other{"{0} lj"}
}
meter{
one{"{0} m"}
other{"{0} m"}
}
mile{
one{"{0} mi"}
other{"{0} mi"}
}
millimeter{
one{"{0} mm"}
other{"{0} mm"}
}
picometer{
one{"{0} pm"}
other{"{0} pm"}
}
yard{
one{"{0} yd"}
other{"{0} yd"}
}
}
mass{
gram{
one{"{0} g"}
other{"{0} g"}
}
kilogram{
one{"{0} kg"}
other{"{0} kg"}
}
ounce{
one{"{0} oz"}
other{"{0} oz"}
}
pound{
one{"{0} lb"}
other{"{0} lb"}
}
}
power{
horsepower{
one{"{0} pk"}
other{"{0} pk"}
}
kilowatt{
one{"{0} kW"}
other{"{0} kW"}
}
watt{
one{"{0} W"}
other{"{0} W"}
}
}
pressure{
hectopascal{
one{"{0} hPa"}
other{"{0} hPa"}
}
inch-hg{
one{"{0} inHg"}
other{"{0} inHg"}
}
millibar{
one{"{0} mbar"}
other{"{0} mbar"}
}
}
speed{
kilometer-per-hour{
one{"{0} km/h"}
other{"{0} km/h"}
}
meter-per-second{
one{"{0} m/s"}
other{"{0} m/s"}
}
mile-per-hour{
one{"{0} mi/h"}
other{"{0} mi/h"}
}
}
temperature{
celsius{
one{"{0}°"}
other{"{0}°"}
}
fahrenheit{
one{"{0}°F"}
other{"{0}°F"}
}
}
volume{
cubic-kilometer{
one{"{0} km³"}
other{"{0} km³"}
}
cubic-mile{
one{"{0} mi³"}
other{"{0} mi³"}
}
liter{
one{"{0} l"}
other{"{0} l"}
}
}
}
unitsShort{
acceleration{
g-force{
dnam{"G-krachten"}
one{"{0} G"}
other{"{0} G"}
}
}
angle{
arc-minute{
dnam{"boogminuten"}
one{"{0}"}
other{"{0}"}
}
arc-second{
dnam{"boogsekonden"}
one{"{0}″"}
other{"{0}″"}
}
degree{
dnam{"booggraden"}
one{"{0}°"}
other{"{0}°"}
}
}
area{
acre{
dnam{"ares"}
one{"{0} are"}
other{"{0} ares"}
}
hectare{
dnam{"hektare"}
one{"{0} ha"}
other{"{0} ha"}
}
square-foot{
dnam{"fjouwerkante foet"}
one{"{0} ft²"}
other{"{0} ft²"}
}
square-kilometer{
dnam{"fjouwerkante kilometer"}
one{"{0} km²"}
other{"{0} km²"}
}
square-meter{
dnam{"fjouwerkante meter"}
one{"{0} m²"}
other{"{0} m²"}
}
square-mile{
dnam{"fjouwerkante myl"}
one{"{0} mi²"}
other{"{0} mi²"}
}
}
compound{
per{"{0}/{1}"}
}
duration{
day{
dnam{"deien"}
one{"{0} dei"}
other{"{0} deien"}
}
hour{
dnam{"oere"}
one{"{0} oere"}
other{"{0} oere"}
}
millisecond{
dnam{"millisekonden"}
one{"{0} ms"}
other{"{0} ms"}
}
minute{
dnam{"minuten"}
one{"{0} min"}
other{"{0} min"}
}
month{
dnam{"moanneen"}
one{"{0} mn"}
other{"{0} mn"}
}
second{
dnam{"sekonden"}
one{"{0} sek."}
other{"{0} sek."}
}
week{
dnam{"wiken"}
one{"{0} wk"}
other{"{0} wkn"}
}
year{
dnam{"jier"}
one{"{0} jr"}
other{"{0} jr"}
}
}
length{
centimeter{
dnam{"sentimeter"}
one{"{0} sm"}
other{"{0} sm"}
}
foot{
dnam{"foet"}
one{"{0} ft"}
other{"{0} ft"}
}
inch{
dnam{"tommen"}
one{"{0} tm"}
other{"{0} tm"}
}
kilometer{
dnam{"kilometer"}
one{"{0} km"}
other{"{0} km"}
}
light-year{
dnam{"ljochtjier"}
one{"{0} lj"}
other{"{0} lj"}
}
meter{
dnam{"meter"}
one{"{0} m"}
other{"{0} m"}
}
mile{
dnam{"myl"}
one{"{0} mi"}
other{"{0} mi"}
}
millimeter{
dnam{"millimeter"}
one{"{0} mm"}
other{"{0} mm"}
}
picometer{
dnam{"pikometer"}
one{"{0} pm"}
other{"{0} pm"}
}
yard{
dnam{"yards"}
one{"{0} yd"}
other{"{0} yd"}
}
}
mass{
gram{
dnam{"gram"}
one{"{0} g"}
other{"{0} g"}
}
kilogram{
dnam{"kilogram"}
one{"{0} kg"}
other{"{0} kg"}
}
ounce{
dnam{"oz"}
one{"{0} oz"}
other{"{0} oz"}
}
pound{
dnam{"lb"}
one{"{0} lb"}
other{"{0} lb"}
}
}
power{
horsepower{
dnam{"hynstekrêften"}
one{"{0} pk"}
other{"{0} pk"}
}
kilowatt{
dnam{"kilowatt"}
one{"{0} kW"}
other{"{0} kW"}
}
watt{
dnam{"watt"}
one{"{0} W"}
other{"{0} W"}
}
}
pressure{
hectopascal{
dnam{"hektopaskal"}
one{"{0} hPa"}
other{"{0} hPa"}
}
inch-hg{
dnam{"inHg"}
one{"{0} inHg"}
other{"{0} inHg"}
}
millibar{
dnam{"millibar"}
one{"{0} mbar"}
other{"{0} mbar"}
}
}
speed{
kilometer-per-hour{
dnam{"kilometer de oere"}
one{"{0} km/h"}
other{"{0} km/h"}
}
meter-per-second{
dnam{"meter de sekonde"}
one{"{0} m/s"}
other{"{0} m/s"}
}
mile-per-hour{
dnam{"myl de oere"}
one{"{0} mi/h"}
other{"{0} mi/h"}
}
}
temperature{
celsius{
dnam{"graden Celsius"}
one{"{0}°C"}
other{"{0}°C"}
}
fahrenheit{
dnam{"graden Fahrenheit"}
one{"{0}°F"}
other{"{0}°F"}
}
}
volume{
cubic-kilometer{
dnam{"kubike kilometer"}
one{"{0} km³"}
other{"{0} km³"}
}
cubic-mile{
dnam{"kubike myl"}
one{"{0} mi³"}
other{"{0} mi³"}
}
liter{
dnam{"liter"}
one{"{0} l"}
other{"{0} l"}
}
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -525,124 +525,4 @@ gsw{
US{"angloamerikaanisch"}
metric{"metrisch"}
}
units{
duration{
day{
one{"{0} Taag"}
other{"{0} Tääg"}
}
hour{
one{"{0} Schtund"}
other{"{0} Schtunde"}
}
minute{
one{"{0} Minuute"}
other{"{0} Minuute"}
}
month{
one{"{0} Monet"}
other{"{0} Mönet"}
}
second{
one{"{0} Sekunde"}
other{"{0} Sekunde"}
}
week{
one{"{0} Wuche"}
other{"{0} Wuche"}
}
year{
one{"{0} Jahr"}
other{"{0} Jahr"}
}
}
}
unitsNarrow{
area{
acre{
one{"{0} ac"}
other{"{0} ac"}
}
square-foot{
one{"{0} ft²"}
other{"{0} ft²"}
}
square-mile{
one{"{0} mi²"}
other{"{0} mi²"}
}
}
length{
mile{
one{"{0} mi"}
other{"{0} mi"}
}
yard{
one{"{0} yd"}
other{"{0} yd"}
}
}
pressure{
inch-hg{
one{"{0} inHg"}
other{"{0} inHg"}
}
}
speed{
mile-per-hour{
one{"{0} mi/h"}
other{"{0} mi/h"}
}
}
volume{
cubic-mile{
one{"{0} mi³"}
other{"{0} mi³"}
}
}
}
unitsShort{
area{
acre{
one{"{0} ac"}
other{"{0} ac"}
}
square-foot{
one{"{0} ft²"}
other{"{0} ft²"}
}
square-mile{
one{"{0} mi²"}
other{"{0} mi²"}
}
}
length{
mile{
one{"{0} mi"}
other{"{0} mi"}
}
yard{
one{"{0} yd"}
other{"{0} yd"}
}
}
pressure{
inch-hg{
one{"{0} inHg"}
other{"{0} inHg"}
}
}
speed{
mile-per-hour{
one{"{0} mi/h"}
other{"{0} mi/h"}
}
}
volume{
cubic-mile{
one{"{0} mi³"}
other{"{0} mi³"}
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -141,48 +141,4 @@ haw{
US{"ʻAmelika Hui Pū ʻIa"}
metric{"Mekalika"}
}
units{
duration{
day{
one{"{0} lā"}
other{"{0} lā"}
}
hour{
one{"{0} hola"}
other{"{0} hola"}
}
minute{
one{"{0} minuke"}
other{"{0} minuke"}
}
month{
one{"{0} mahina"}
other{"{0} mahina"}
}
second{
one{"{0} kekona"}
other{"{0} kekona"}
}
week{
one{"{0} pule"}
other{"{0} pule"}
}
year{
one{"{0} makahiki"}
other{"{0} makahiki"}
}
}
}
unitsNarrow{
temperature{
celsius{
one{"{0}°C"}
other{"{0}°C"}
}
fahrenheit{
one{"{0}°"}
other{"{0}°"}
}
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -356,28 +356,4 @@ jgo{
start{"{0}, ŋ́gɛ {1}"}
}
}
units{
duration{
day{
one{"{0} lɛ́Ꞌ"}
other{"{0} lɛ́Ꞌ"}
}
hour{
one{"{0} háwa"}
other{"{0} háwa"}
}
minute{
one{"{0} minút"}
other{"{0} minút"}
}
month{
one{"pɛsaŋ {0}"}
other{"pɛsaŋ {0}"}
}
year{
one{"ŋguꞋ {0}"}
other{"ŋguꞋ {0}"}
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -1176,903 +1176,4 @@ kea{
US{"Merkanu"}
metric{"Metriku"}
}
units{
acceleration{
g-force{
dnam{"forsa G"}
other{"{0} forsa G"}
}
meter-per-second-squared{
dnam{"métru pur sigundu kuadradu"}
other{"{0} métru pur sigundu kuadradu"}
}
}
angle{
degree{
dnam{"grau"}
other{"{0} grau"}
}
radian{
dnam{"radianu"}
other{"{0} radianu"}
}
}
area{
acre{
dnam{"ákri"}
other{"{0} ákri"}
}
hectare{
dnam{"ektar"}
other{"{0} ektar"}
}
square-centimeter{
dnam{"sentímetru kuadradu"}
other{"{0} sentímetru kuadradu"}
}
square-foot{
dnam{"pé kuadradu"}
other{"{0} pé kuadradu"}
}
square-inch{
dnam{"pulegada kuadradu"}
other{"{0} pulegada kuadradu"}
}
square-kilometer{
dnam{"kilómetru kuadradu"}
other{"{0} kilómetru kuadradu"}
}
square-meter{
dnam{"métru kuadradu"}
other{"{0} métru kuadradu"}
}
square-mile{
dnam{"milha kuadradu"}
other{"{0} milha kuadradu"}
}
square-yard{
dnam{"jarda kuadradu"}
other{"{0} jarda kuadradu"}
}
}
consumption{
liter-per-kilometer{
dnam{"litru pur kilómetru"}
other{"{0} litru pur kilómetru"}
}
mile-per-gallon{
dnam{"milha pur galãu"}
other{"{0} milha pur galãu"}
}
}
digital{
bit{
dnam{"bit"}
other{"{0} bit"}
}
byte{
dnam{"byte"}
other{"{0} byte"}
}
gigabit{
dnam{"jigabit"}
other{"{0} jigabit"}
}
gigabyte{
dnam{"jigabyte"}
other{"{0} jigabyte"}
}
kilobit{
dnam{"kilobit"}
other{"{0} kilobit"}
}
kilobyte{
dnam{"kilobyte"}
other{"{0} kilobyte"}
}
megabit{
dnam{"megabit"}
other{"{0} megabit"}
}
megabyte{
dnam{"megabyte"}
other{"{0} megabyte"}
}
terabit{
dnam{"terabit"}
other{"{0} terabit"}
}
terabyte{
dnam{"terabyte"}
other{"{0} terabyte"}
}
}
duration{
day{
dnam{"dia"}
other{"{0} dia"}
}
hour{
dnam{"ora"}
other{"{0} ora"}
per{"{0} pur ora"}
}
microsecond{
dnam{"mikrosigundu"}
other{"{0} mikrosigundu"}
}
millisecond{
dnam{"milisigundu"}
other{"{0} milisigundu"}
}
minute{
dnam{"minutu"}
other{"{0} minutu"}
}
month{
dnam{"mes"}
other{"{0} mes"}
}
nanosecond{
dnam{"nanosigundu"}
other{"{0} nanosigundu"}
}
second{
dnam{"sigundu"}
other{"{0} sigundu"}
per{"{0} pur sigundu"}
}
week{
dnam{"simana"}
other{"{0} simana"}
}
year{
dnam{"anu"}
other{"{0} anu"}
}
}
length{
astronomical-unit{
dnam{"unidadi astronómiku"}
other{"{0} unidadi astronómiku"}
}
centimeter{
dnam{"sentímetru"}
other{"{0} sentímetru"}
}
decimeter{
dnam{"desímetru"}
other{"{0} desímetru"}
}
foot{
dnam{"pé"}
other{"{0} pé"}
}
inch{
dnam{"pulegada"}
other{"{0} pulegada"}
}
kilometer{
dnam{"kilómetru"}
other{"{0} kilómetru"}
}
light-year{
dnam{"anu-lus"}
other{"{0} anu-lus"}
}
meter{
dnam{"métru"}
other{"{0} métru"}
}
micrometer{
dnam{"mikrómetru"}
other{"{0} mikrómetru"}
}
mile{
dnam{"milha"}
other{"{0} milha"}
}
millimeter{
dnam{"milímetru"}
other{"{0} milímetru"}
}
nanometer{
dnam{"nanómetru"}
other{"{0} nanómetru"}
}
nautical-mile{
dnam{"milha náutiku"}
other{"{0} milha náutiku"}
}
parsec{
dnam{"parsek"}
other{"{0} parsek"}
}
picometer{
dnam{"pikómetru"}
other{"{0} pikómetru"}
}
yard{
dnam{"jarda"}
other{"{0} jarda"}
}
}
light{
lux{
dnam{"lux"}
other{"{0} lux"}
}
}
power{
watt{
dnam{"watt"}
}
}
proportion{
karat{
dnam{"kilati"}
other{"{0} kilati"}
}
}
speed{
kilometer-per-hour{
dnam{"kilómetru pur ora"}
other{"{0} kilómetru pur ora"}
}
meter-per-second{
dnam{"métru pur sigundu"}
other{"{0} métru pur sigundu"}
}
mile-per-hour{
dnam{"milha pur ora"}
other{"{0} milha pur ora"}
}
}
volume{
acre-foot{
dnam{"ákri-pé"}
other{"{0} ákri-pé"}
}
centiliter{
dnam{"sentilitru"}
other{"{0} sentilitru"}
}
cubic-centimeter{
dnam{"sentímetru kúbiku"}
other{"{0} sentímetru kúbiku"}
}
cubic-foot{
dnam{"pé kúbiku"}
other{"{0} pé kúbiku"}
}
cubic-inch{
dnam{"pulegada kúbiku"}
other{"{0} pulegada kúbiku"}
}
cubic-kilometer{
dnam{"kilómetru kúbiku"}
other{"{0} kilómetru kúbiku"}
}
cubic-meter{
dnam{"métru kúbiku"}
other{"{0} métru kúbiku"}
}
cubic-mile{
dnam{"milha kúbiku"}
other{"{0} milha kúbiku"}
}
cubic-yard{
dnam{"jarda kúbiku"}
other{"{0} jarda kúbiku"}
}
cup{
dnam{"xávina"}
other{"{0} xávina"}
}
deciliter{
dnam{"desilitru"}
other{"{0} desilitru"}
}
fluid-ounce{
dnam{"ónsa fluídu"}
other{"{0} ónsa fluídu"}
}
gallon{
dnam{"galãu"}
other{"{0} galãu"}
}
hectoliter{
dnam{"ektolitru"}
other{"{0} ektolitru"}
}
liter{
dnam{"litru"}
other{"{0} litru"}
}
megaliter{
dnam{"megalitru"}
other{"{0} megalitru"}
}
milliliter{
dnam{"mililitru"}
other{"{0} mililitru"}
}
pint{
dnam{"pint"}
other{"{0} pint"}
}
quart{
dnam{"kuart"}
other{"{0} kuart"}
}
tablespoon{
dnam{"kudjer di sopa"}
other{"{0} kudjer di sopa"}
}
teaspoon{
dnam{"kudjer di xá"}
other{"{0} kudjer di xá"}
}
}
}
unitsNarrow{
duration{
day{
dnam{"dia"}
other{"{0} dia"}
}
hour{
dnam{"ora"}
other{"{0} h"}
}
millisecond{
dnam{"ms"}
other{"{0} ms"}
}
minute{
dnam{"min."}
}
month{
dnam{"mes"}
other{"{0} mes"}
}
second{
dnam{"sig."}
other{"{0} s"}
}
week{
dnam{"sim."}
other{"{0} sim."}
}
year{
dnam{"anu"}
other{"{0} anu"}
}
}
length{
centimeter{
dnam{"cm"}
other{"{0} cm"}
}
kilometer{
dnam{"km"}
other{"{0} km"}
}
meter{
dnam{"m"}
other{"{0} m"}
}
millimeter{
dnam{"mm"}
other{"{0} mm"}
}
}
mass{
gram{
other{"{0} g"}
}
kilogram{
dnam{"kg"}
other{"{0} kg"}
}
}
speed{
kilometer-per-hour{
dnam{"km/h"}
other{"{0} km/h"}
}
}
volume{
liter{
dnam{"l"}
other{"{0} l"}
}
}
}
unitsShort{
acceleration{
g-force{
dnam{"G"}
other{"{0} G"}
}
meter-per-second-squared{
dnam{"m/s²"}
other{"{0} m/s²"}
}
}
angle{
arc-minute{
dnam{"arcmin"}
other{"{0}"}
}
arc-second{
dnam{"arcsec"}
other{"{0}″"}
}
degree{
dnam{"grau"}
other{"{0}°"}
}
radian{
dnam{"rad"}
other{"{0} rad"}
}
}
area{
acre{
dnam{"ac"}
other{"{0} ac"}
}
hectare{
dnam{"ha"}
other{"{0} ha"}
}
square-centimeter{
dnam{"cm²"}
other{"{0} cm²"}
}
square-foot{
dnam{"ft²"}
other{"{0} ft²"}
}
square-inch{
dnam{"in²"}
other{"{0} in²"}
}
square-kilometer{
dnam{"km²"}
other{"{0} km²"}
}
square-meter{
dnam{"m²"}
other{"{0} m²"}
}
square-mile{
dnam{"mi²"}
other{"{0} mi²"}
}
square-yard{
dnam{"yd²"}
other{"{0} yd²"}
}
}
consumption{
liter-per-kilometer{
dnam{"l/km"}
other{"{0} l/km"}
}
mile-per-gallon{
dnam{"mpg"}
other{"{0} mpg"}
}
}
digital{
bit{
dnam{"b"}
other{"{0} b"}
}
byte{
dnam{"B"}
other{"{0} B"}
}
gigabit{
dnam{"Gb"}
other{"{0} Gb"}
}
gigabyte{
dnam{"GB"}
other{"{0} GB"}
}
kilobit{
dnam{"Kb"}
other{"{0} Kb"}
}
kilobyte{
dnam{"KB"}
other{"{0} KB"}
}
megabit{
dnam{"Mb"}
other{"{0} Mb"}
}
megabyte{
dnam{"MB"}
other{"{0} MB"}
}
terabit{
dnam{"Tb"}
other{"{0} Tb"}
}
terabyte{
dnam{"TB"}
other{"{0} TB"}
}
}
duration{
day{
dnam{"dia"}
other{"{0} dia"}
}
hour{
dnam{"ora"}
other{"{0} h"}
per{"{0}/h"}
}
microsecond{
dnam{"μs"}
other{"{0} μs"}
}
millisecond{
dnam{"ms"}
other{"{0} ms"}
}
minute{
dnam{"min."}
other{"{0} min."}
}
month{
dnam{"mes"}
other{"{0} mes"}
}
nanosecond{
dnam{"ns"}
other{"{0} ns"}
}
second{
dnam{"sig."}
other{"{0} sig."}
per{"{0}/s"}
}
week{
dnam{"sim."}
other{"{0} sim."}
}
year{
dnam{"anu"}
other{"{0} anu"}
}
}
electric{
ampere{
dnam{"amp"}
other{"{0} A"}
}
milliampere{
dnam{"mA"}
other{"{0} mA"}
}
ohm{
dnam{"ohm"}
other{"{0} Ω"}
}
volt{
dnam{"volt"}
other{"{0} V"}
}
}
energy{
calorie{
dnam{"cal"}
other{"{0} cal"}
}
foodcalorie{
dnam{"Cal"}
other{"{0} Cal"}
}
kilocalorie{
dnam{"kcal"}
other{"{0} kcal"}
}
kilojoule{
dnam{"kJ"}
other{"{0} kJ"}
}
kilowatt-hour{
dnam{"kWh"}
other{"{0} kWh"}
}
}
frequency{
gigahertz{
dnam{"GHz"}
other{"{0} GHz"}
}
hertz{
dnam{"Hz"}
other{"{0} Hz"}
}
kilohertz{
dnam{"kHz"}
other{"{0} kHz"}
}
megahertz{
dnam{"MHz"}
other{"{0} MHz"}
}
}
length{
astronomical-unit{
dnam{"ua"}
other{"{0} ua"}
}
centimeter{
dnam{"cm"}
other{"{0} cm"}
}
decimeter{
dnam{"dm"}
other{"{0} dm"}
}
foot{
dnam{"pé"}
other{"{0} pé"}
}
inch{
dnam{"in"}
other{"{0} in"}
}
kilometer{
dnam{"km"}
other{"{0} km"}
}
light-year{
dnam{"anu-lus"}
other{"{0} anu-lus"}
}
meter{
dnam{"m"}
other{"{0} m"}
}
micrometer{
dnam{"µm"}
other{"{0} µm"}
}
mile{
dnam{"mi"}
other{"{0} mi"}
}
millimeter{
dnam{"mm"}
other{"{0} mm"}
}
nanometer{
dnam{"nm"}
other{"{0} nm"}
}
nautical-mile{
dnam{"nmi"}
other{"{0} nmi"}
}
parsec{
dnam{"pc"}
other{"{0} pc"}
}
picometer{
dnam{"pm"}
other{"{0} pm"}
}
yard{
dnam{"yd"}
other{"{0} yd"}
}
}
light{
lux{
dnam{"lux"}
other{"{0} lx"}
}
}
mass{
carat{
other{"{0} CD"}
}
gram{
other{"{0} g"}
}
metric-ton{
dnam{"t"}
other{"{0} t"}
}
microgram{
dnam{"µg"}
other{"{0} µg"}
}
milligram{
dnam{"mg"}
other{"{0} mg"}
}
ounce{
dnam{"oz"}
other{"{0} oz"}
}
ounce-troy{
dnam{"oz t"}
other{"{0} oz t"}
}
pound{
dnam{"lb"}
other{"{0} lb"}
}
ton{
dnam{"tn"}
other{"{0} tn"}
}
}
power{
gigawatt{
dnam{"GW"}
other{"{0} GW"}
}
kilowatt{
dnam{"kW"}
other{"{0} kW"}
}
megawatt{
dnam{"MW"}
other{"{0} MW"}
}
milliwatt{
dnam{"mW"}
other{"{0} mW"}
}
watt{
dnam{"watt"}
other{"{0} W"}
}
}
pressure{
hectopascal{
dnam{"hPa"}
other{"{0} hPa"}
}
inch-hg{
dnam{"inHg"}
other{"{0} inHg"}
}
millibar{
dnam{"mbar"}
other{"{0} mbar"}
}
millimeter-of-mercury{
dnam{"mm Hg"}
other{"{0} mm Hg"}
}
pound-per-square-inch{
dnam{"psi"}
other{"{0} psi"}
}
}
proportion{
karat{
dnam{"kt"}
other{"{0} kt"}
}
}
speed{
kilometer-per-hour{
dnam{"km/h"}
other{"{0} km/h"}
}
meter-per-second{
dnam{"m/s"}
other{"{0} m/s"}
}
mile-per-hour{
dnam{"mi/h"}
other{"{0} mi/h"}
}
}
temperature{
kelvin{
dnam{"K"}
other{"{0} K"}
}
}
volume{
acre-foot{
dnam{"ac ft"}
other{"{0} ac ft"}
}
centiliter{
dnam{"cl"}
other{"{0} cl"}
}
cubic-centimeter{
dnam{"cm³"}
other{"{0} cm³"}
}
cubic-foot{
dnam{"ft³"}
other{"{0} ft³"}
}
cubic-inch{
dnam{"in³"}
other{"{0} in³"}
}
cubic-kilometer{
dnam{"km³"}
other{"{0} km³"}
}
cubic-meter{
dnam{"m³"}
other{"{0} m³"}
}
cubic-mile{
dnam{"mi³"}
other{"{0} mi³"}
}
cubic-yard{
dnam{"yd³"}
other{"{0} yd³"}
}
cup{
dnam{"xáv."}
other{"{0} xáv."}
}
deciliter{
dnam{"dl"}
other{"{0} dl"}
}
fluid-ounce{
dnam{"fl oz"}
other{"{0} fl oz"}
}
gallon{
dnam{"gal"}
other{"{0} gal"}
}
hectoliter{
dnam{"hl"}
other{"{0} hl"}
}
liter{
dnam{"l"}
other{"{0} l"}
}
megaliter{
dnam{"Ml"}
other{"{0} Ml"}
}
milliliter{
dnam{"ml"}
other{"{0} ml"}
}
pint{
dnam{"pt"}
other{"{0} pt"}
}
quart{
dnam{"qt"}
other{"{0} qt"}
}
tablespoon{
dnam{"k.sp."}
other{"{0} k.sp."}
}
teaspoon{
dnam{"k.xá"}
other{"{0} k.xá"}
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -239,92 +239,4 @@ kl{
}
}
}
unitsNarrow{
area{
acre{
one{"{0} ac"}
other{"{0} ac"}
}
square-foot{
one{"{0} ft²"}
other{"{0} ft²"}
}
square-mile{
one{"{0} mi²"}
other{"{0} mi²"}
}
}
length{
mile{
one{"{0} mi"}
other{"{0} mi"}
}
yard{
one{"{0} yd"}
other{"{0} yd"}
}
}
pressure{
inch-hg{
one{"{0} inHg"}
other{"{0} inHg"}
}
}
speed{
mile-per-hour{
one{"{0} mi/h"}
other{"{0} mi/h"}
}
}
volume{
cubic-mile{
one{"{0} mi³"}
other{"{0} mi³"}
}
}
}
unitsShort{
area{
acre{
one{"{0} ac"}
other{"{0} ac"}
}
square-foot{
one{"{0} ft²"}
other{"{0} ft²"}
}
square-mile{
one{"{0} mi²"}
other{"{0} mi²"}
}
}
length{
mile{
one{"{0} mi"}
other{"{0} mi"}
}
yard{
one{"{0} yd"}
other{"{0} yd"}
}
}
pressure{
inch-hg{
one{"{0} inHg"}
other{"{0} inHg"}
}
}
speed{
mile-per-hour{
one{"{0} mi/h"}
other{"{0} mi/h"}
}
}
volume{
cubic-mile{
one{"{0} mi³"}
other{"{0} mi³"}
}
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -298,36 +298,4 @@ ks{
US{"یوٗ ایس"}
metric{"میٖٹرِک"}
}
units{
duration{
day{
one{"{0} دۄہ"}
other{"{0} دۄہ"}
}
hour{
one{"{0} گَنٹہٕ"}
other{"{0} گٲنٛٹہٕ"}
}
minute{
one{"{0} مِنَٹ"}
other{"{0} مِنَٹ"}
}
month{
one{"{0} ریٚتھ"}
other{"{0} ریٚتھ"}
}
second{
one{"{0} سیٚکَنٛڈ"}
other{"{0} سیٚکَنٛڈ"}
}
week{
one{"{0} ہَفتہٕ"}
other{"{0} ہَفتہٕ"}
}
year{
one{"{0} ؤری"}
other{"{0} ؤری"}
}
}
}
}

View file

@ -665,809 +665,4 @@ ksh{
US{"ammärekaanesch"}
metric{"SI"}
}
units{
acceleration{
g-force{
dnam{"-fache Erdbeschleunigung"}
one{"{0}-fache Erdbeschleunigung"}
other{"{0}-fache Erdbeschleunigung"}
zero{"{0}-fache Erdbeschleunigung"}
}
}
angle{
arc-minute{
dnam{"Winkelmenutte"}
one{"{0} Winkelmenutte"}
other{"{0} Winkelmenutte"}
zero{"{0} Winkelmenutte"}
}
arc-second{
dnam{"Winkelsekunde"}
one{"{0} Winkelsekunde"}
other{"{0} Winkelsekunde"}
zero{"{0} Winkelsekunde"}
}
degree{
dnam{"Graad"}
one{"{0} Graad"}
other{"{0} Graad"}
zero{"{0} Graad"}
}
}
area{
acre{
dnam{"angloamerikanischen Acre"}
one{"{0} angloamerikanische Acre"}
other{"{0} angloamerikanischen Acre"}
zero{"{0} angloamerikanischen Acre"}
}
hectare{
dnam{"hektar"}
one{"{0} hektar"}
other{"{0} hektar"}
zero{"{0} hektar"}
}
square-foot{
dnam{"Quadratvoss"}
one{"{0} Quadratvoss"}
other{"{0} Quadratvoss"}
zero{"{0} Quadratvoss"}
}
square-kilometer{
dnam{"Quadratkilometer"}
one{"{0} Quadratkilometer"}
other{"{0} Quadratkilometer"}
zero{"{0} Quadratkilometer"}
}
square-meter{
dnam{"Quadratmeter"}
one{"{0} Quadratmeter"}
other{"{0} Quadratmeter"}
zero{"{0} Quadratmeter"}
}
square-mile{
dnam{"englischen Quadratmeilen"}
one{"{0} englische Quadratmeile"}
other{"{0} englischen Quadratmeilen"}
zero{"{0} englischen Quadratmeilen"}
}
}
compound{
per{"{0} pro {1}"}
}
duration{
day{
dnam{"Dääsch"}
one{"{0} Dääsch"}
other{"{0} Dääsch"}
zero{"{0} Dääsch"}
}
hour{
dnam{"Schtunde"}
one{"{0} Schtunde"}
other{"{0} Schtunde"}
zero{"{0} Schtunde"}
}
millisecond{
dnam{"Millisekunde"}
one{"{0} Millisekunde"}
other{"{0} Millisekunde"}
zero{"{0} Millisekunde"}
}
minute{
dnam{"Menutte"}
one{"{0} Menutte"}
other{"{0} Menutte"}
zero{"{0} Menutte"}
}
month{
dnam{"Mohnde"}
one{"{0} Mohnde"}
other{"{0} Mohnde"}
zero{"{0} Mohnde"}
}
second{
dnam{"Sekunde"}
one{"{0} Sekunde"}
other{"{0} Sekunde"}
zero{"{0} Sekunde"}
}
week{
dnam{"Woche"}
one{"{0} Woche"}
other{"{0} Woche"}
zero{"{0} Woche"}
}
year{
dnam{"Johre"}
one{"{0} Johre"}
other{"{0} Johre"}
zero{"{0} Johre"}
}
}
length{
centimeter{
dnam{"Zentimeter"}
one{"{0} Zentimeter"}
other{"{0} Zentimeter"}
zero{"{0} Zentimeter"}
}
foot{
dnam{"Voss"}
one{"{0} Voss"}
other{"{0} Voss"}
zero{"{0} Voss"}
}
inch{
dnam{"Dumm"}
one{"{0} Dumm"}
other{"{0} Dumm"}
zero{"{0} Dumm"}
}
kilometer{
dnam{"Kilometer"}
one{"{0} Kilometer"}
other{"{0} Kilometer"}
zero{"{0} Kilometer"}
}
meter{
dnam{"Meter"}
one{"{0} Meter"}
other{"{0} Meter"}
zero{"{0} Meter"}
}
mile{
dnam{"englischen Meilen"}
one{"{0} englische Meile"}
other{"{0} englischen Meilen"}
zero{"{0} englischen Meilen"}
}
millimeter{
dnam{"Millimeter"}
one{"{0} Millimeter"}
other{"{0} Millimeter"}
zero{"{0} Millimeter"}
}
picometer{
dnam{"Pikometer"}
one{"{0} Pikometer"}
other{"{0} Pikometer"}
zero{"{0} Pikometer"}
}
}
mass{
gram{
dnam{"Gramm"}
one{"{0} Gramm"}
other{"{0} Gramm"}
zero{"{0} Gramm"}
}
kilogram{
dnam{"Kilogramm"}
one{"{0} Kilogramm"}
other{"{0} Kilogramm"}
zero{"{0} Kilogramm"}
}
ounce{
dnam{"Unzen"}
one{"{0} Unze"}
other{"{0} Unzen"}
zero{"{0} Unzen"}
}
pound{
dnam{"Pfund"}
one{"{0} Pfund"}
other{"{0} Pfund"}
zero{"{0} Pfund"}
}
}
power{
horsepower{
dnam{"Pferdestärken"}
one{"{0} Pferdestärke"}
other{"{0} Pferdestärken"}
zero{"{0} Pferdestärken"}
}
kilowatt{
dnam{"Kilowatt"}
one{"{0} Kilowatt"}
other{"{0} Kilowatt"}
zero{"{0} Kilowatt"}
}
watt{
dnam{"Watt"}
one{"{0} Watt"}
other{"{0} Watt"}
zero{"{0} Watt"}
}
}
pressure{
hectopascal{
dnam{"Hektopascal"}
one{"{0} Hektopascal"}
other{"{0} Hektopascal"}
zero{"{0} Hektopascal"}
}
inch-hg{
dnam{"Dumm Quecksilbersäule"}
one{"{0} Dumm Quecksilbersäule"}
other{"{0} Dumm Quecksilbersäule"}
zero{"{0} Dumm Quecksilbersäule"}
}
millibar{
dnam{"Millibar"}
one{"{0} Millibar"}
other{"{0} Millibar"}
zero{"{0} Millibar"}
}
}
speed{
kilometer-per-hour{
dnam{"Kilometer pro Schtunde"}
one{"{0} Kilometer pro Schtunde"}
other{"{0} Kilometer pro Schtunde"}
zero{"{0} Kilometer pro Schtunde"}
}
meter-per-second{
dnam{"Meter pro Sekunde"}
one{"{0} Meter pro Sekunde"}
other{"{0} Meter pro Sekunde"}
zero{"{0} Meter pro Sekunde"}
}
mile-per-hour{
dnam{"englischen Meilen pro Schtunde"}
one{"{0} englische Meile pro Schtunde"}
other{"{0} englischen Meilen pro Schtunde"}
zero{"{0} englischen Meilen pro Schtunde"}
}
}
temperature{
celsius{
dnam{"Graad Celsius"}
one{"{0} Graad Celsius"}
other{"{0} Graad Celsius"}
zero{"{0} Graad Celsius"}
}
fahrenheit{
dnam{"Graad Fahrenheit"}
one{"{0} Graad Fahrenheit"}
other{"{0} Graad Fahrenheit"}
zero{"{0} Graad Fahrenheit"}
}
}
volume{
cubic-kilometer{
dnam{"Kubikkilometer"}
one{"{0} Kubikkilometer"}
other{"{0} Kubikkilometer"}
zero{"{0} Kubikkilometer"}
}
cubic-mile{
dnam{"englischen Kubikmeilen"}
one{"{0} englische Kubikmeile"}
other{"{0} englischen Kubikmeilen"}
zero{"{0} englischen Kubikmeilen"}
}
liter{
dnam{"Liter"}
one{"{0} Liter"}
other{"{0} Liter"}
zero{"{0} Liter"}
}
}
}
unitsNarrow{
acceleration{
g-force{
one{"{0}G"}
other{"{0}G"}
zero{"{0}G"}
}
}
angle{
arc-minute{
one{"{0}"}
other{"{0}"}
zero{"{0}"}
}
arc-second{
one{"{0}″"}
other{"{0}″"}
zero{"{0}″"}
}
degree{
one{"{0}°"}
other{"{0}°"}
zero{"{0}°"}
}
}
area{
acre{
one{"{0} ac"}
other{"{0} ac"}
zero{"{0} ac"}
}
hectare{
one{"{0}ha"}
other{"{0}ha"}
zero{"{0}ha"}
}
square-foot{
one{"{0} ft²"}
other{"{0} ft²"}
zero{"{0} ft²"}
}
square-kilometer{
one{"{0}km²"}
other{"{0}km²"}
zero{"{0}km²"}
}
square-meter{
one{"{0}m²"}
other{"{0}m²"}
zero{"{0}m²"}
}
square-mile{
one{"{0} mi²"}
other{"{0} mi²"}
zero{"{0} mi²"}
}
}
compound{
per{"{0}/{1}"}
}
duration{
day{
one{"{0}d"}
other{"{0}d"}
zero{"{0}d"}
}
hour{
one{"{0}h"}
other{"{0}h"}
zero{"{0}h"}
}
millisecond{
one{"{0}ms"}
other{"{0}ms"}
zero{"{0}ms"}
}
minute{
one{"{0}m"}
other{"{0}m"}
zero{"{0}m"}
}
second{
one{"{0}s"}
other{"{0}s"}
zero{"{0}s"}
}
}
length{
centimeter{
one{"{0}cm"}
other{"{0}cm"}
zero{"{0}cm"}
}
foot{
one{"{0} Voss"}
other{"{0} Voss"}
zero{"{0} Voss"}
}
inch{
one{"{0} Dumm"}
other{"{0} Dumm"}
zero{"{0} Dumm"}
}
kilometer{
one{"{0}km"}
other{"{0}km"}
zero{"{0}km"}
}
meter{
one{"{0}m"}
other{"{0}m"}
zero{"{0}m"}
}
mile{
one{"{0} mi"}
other{"{0} mi"}
zero{"{0} mi"}
}
millimeter{
one{"{0}mm"}
other{"{0}mm"}
zero{"{0}mm"}
}
picometer{
one{"{0}pm"}
other{"{0}pm"}
zero{"{0}pm"}
}
}
mass{
gram{
one{"{0}g"}
other{"{0}g"}
zero{"{0}g"}
}
kilogram{
one{"{0}kg"}
other{"{0}kg"}
zero{"{0}kg"}
}
ounce{
one{"{0} Unze"}
other{"{0} Unzen"}
zero{"{0} Unzen"}
}
pound{
one{"{0} Pfund"}
other{"{0} Pfund"}
zero{"{0} Pfund"}
}
}
power{
horsepower{
one{"{0}PS"}
other{"{0}PS"}
zero{"{0}PS"}
}
kilowatt{
one{"{0}kW"}
other{"{0}kW"}
zero{"{0}kW"}
}
watt{
one{"{0}W"}
other{"{0}W"}
zero{"{0}W"}
}
}
pressure{
hectopascal{
one{"{0}hPa"}
other{"{0}hPa"}
zero{"{0}hPa"}
}
inch-hg{
one{"{0} inHg"}
other{"{0} inHg"}
zero{"{0} inHg"}
}
millibar{
one{"{0}mbar"}
other{"{0}mbar"}
zero{"{0}mbar"}
}
}
speed{
kilometer-per-hour{
one{"{0}km/h"}
other{"{0}km/h"}
zero{"{0}km/h"}
}
meter-per-second{
one{"{0}m/s"}
other{"{0}m/s"}
zero{"{0}m/s"}
}
mile-per-hour{
one{"{0} mi/h"}
other{"{0} mi/h"}
zero{"{0} mi/h"}
}
}
temperature{
celsius{
one{"{0}°"}
other{"{0}°"}
zero{"{0}°"}
}
fahrenheit{
one{"{0}°F"}
other{"{0}°F"}
zero{"{0}°F"}
}
}
volume{
cubic-kilometer{
one{"{0}km³"}
other{"{0}km³"}
zero{"{0}km³"}
}
cubic-mile{
one{"{0} mi³"}
other{"{0} mi³"}
zero{"{0} mi³"}
}
liter{
one{"{0}L"}
other{"{0}L"}
zero{"{0}L"}
}
}
}
unitsShort{
acceleration{
g-force{
dnam{"-fache Erdbeschleunigung"}
one{"{0} G"}
other{"{0} G"}
zero{"{0} G"}
}
}
angle{
arc-minute{
dnam{"Winkelmenutte"}
one{"{0}"}
other{"{0}"}
zero{"{0}"}
}
arc-second{
dnam{"Winkelsekunde"}
one{"{0}″"}
other{"{0}″"}
zero{"{0}″"}
}
degree{
dnam{"Graad"}
one{"{0}°"}
other{"{0}°"}
zero{"{0}°"}
}
}
area{
acre{
dnam{"angloamerikanischen Acre"}
one{"{0} ac"}
other{"{0} ac"}
zero{"{0} ac"}
}
hectare{
dnam{"hektar"}
one{"{0} ha"}
other{"{0} ha"}
zero{"{0} ha"}
}
square-foot{
dnam{"Quadratvoss"}
one{"{0} ft²"}
other{"{0} ft²"}
zero{"{0} ft²"}
}
square-kilometer{
dnam{"Quadratkilometer"}
one{"{0} km²"}
other{"{0} km²"}
zero{"{0} km²"}
}
square-meter{
dnam{"Quadratmeter"}
one{"{0} m²"}
other{"{0} m²"}
zero{"{0} m²"}
}
square-mile{
dnam{"englischen Quadratmeilen"}
one{"{0} mi²"}
other{"{0} mi²"}
zero{"{0} mi²"}
}
}
compound{
per{"{0}/{1}"}
}
duration{
day{
dnam{"Dääsch"}
one{"{0} d"}
other{"{0} d"}
zero{"{0} d"}
}
hour{
dnam{"Schtunde"}
one{"{0} h"}
other{"{0} h"}
zero{"{0} h"}
}
millisecond{
dnam{"Millisekunde"}
one{"{0} ms"}
other{"{0} ms"}
zero{"{0} ms"}
}
minute{
dnam{"Menutte"}
one{"{0} min"}
other{"{0} min"}
zero{"{0} min"}
}
month{
dnam{"Mohnde"}
}
second{
dnam{"Sekunde"}
one{"{0} s"}
other{"{0} s"}
zero{"{0} s"}
}
week{
dnam{"Woche"}
}
year{
dnam{"Johre"}
}
}
length{
centimeter{
dnam{"Zentimeter"}
one{"{0} cm"}
other{"{0} cm"}
zero{"{0} cm"}
}
foot{
dnam{"Voss"}
one{"{0} Voss"}
other{"{0} Voss"}
zero{"{0} Voss"}
}
inch{
dnam{"Dumm"}
one{"{0} Dumm"}
other{"{0} Dumm"}
zero{"{0} Dumm"}
}
kilometer{
dnam{"Kilometer"}
one{"{0} km"}
other{"{0} km"}
zero{"{0} km"}
}
meter{
dnam{"Meter"}
one{"{0} m"}
other{"{0} m"}
zero{"{0} m"}
}
mile{
dnam{"englischen Meilen"}
one{"{0} mi"}
other{"{0} mi"}
zero{"{0} mi"}
}
millimeter{
dnam{"Millimeter"}
one{"{0} mm"}
other{"{0} mm"}
zero{"{0} mm"}
}
picometer{
dnam{"Pikometer"}
one{"{0} pm"}
other{"{0} pm"}
zero{"{0} pm"}
}
}
mass{
gram{
dnam{"Gramm"}
one{"{0} g"}
other{"{0} g"}
zero{"{0} g"}
}
kilogram{
dnam{"Kilogramm"}
one{"{0} kg"}
other{"{0} kg"}
zero{"{0} kg"}
}
ounce{
dnam{"Unzen"}
one{"{0} Unze"}
other{"{0} Unzen"}
zero{"{0} Unzen"}
}
pound{
dnam{"Pfund"}
one{"{0} Pfund"}
other{"{0} Pfund"}
zero{"{0} Pfund"}
}
}
power{
horsepower{
dnam{"Pferdestärken"}
one{"{0} PS"}
other{"{0} PS"}
zero{"{0} PS"}
}
kilowatt{
dnam{"Kilowatt"}
one{"{0} kW"}
other{"{0} kW"}
zero{"{0} kW"}
}
watt{
dnam{"Watt"}
one{"{0} W"}
other{"{0} W"}
zero{"{0} W"}
}
}
pressure{
hectopascal{
dnam{"Hektopascal"}
one{"{0} hPa"}
other{"{0} hPa"}
zero{"{0} hPa"}
}
inch-hg{
dnam{"Dumm Quecksilbersäule"}
one{"{0} inHg"}
other{"{0} inHg"}
zero{"{0} inHg"}
}
millibar{
dnam{"Millibar"}
one{"{0} mbar"}
other{"{0} mbar"}
zero{"{0} mbar"}
}
}
speed{
kilometer-per-hour{
dnam{"Kilometer pro Schtunde"}
one{"{0} km/h"}
other{"{0} km/h"}
zero{"{0} km/h"}
}
meter-per-second{
dnam{"Meter pro Sekunde"}
one{"{0} m/s"}
other{"{0} m/s"}
zero{"{0} m/s"}
}
mile-per-hour{
dnam{"englischen Meilen pro Schtunde"}
one{"{0} mi/h"}
other{"{0} mi/h"}
zero{"{0} mi/h"}
}
}
temperature{
celsius{
dnam{"Graad Celsius"}
one{"{0}°C"}
other{"{0}°C"}
zero{"{0}°C"}
}
fahrenheit{
dnam{"Graad Fahrenheit"}
one{"{0}°F"}
other{"{0}°F"}
zero{"{0}°F"}
}
}
volume{
cubic-kilometer{
dnam{"Kubikkilometer"}
one{"{0} km³"}
other{"{0} km³"}
zero{"{0} km³"}
}
cubic-mile{
dnam{"englischen Kubikmeilen"}
one{"{0} mi³"}
other{"{0} mi³"}
zero{"{0} mi³"}
}
liter{
dnam{"Liter"}
one{"{0} l"}
other{"{0} l"}
zero{"{0} l"}
}
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -211,135 +211,4 @@ lkt{
measurementSystemNames{
US{"US"}
}
units{
duration{
day{
other{"{0}-čháŋ"}
}
hour{
other{"Owápȟe {0}"}
}
month{
other{"Wíyawapi {0}"}
}
second{
other{"Okpí {0}"}
}
week{
other{"okó {0}"}
}
year{
other{"ómakȟa {0}"}
}
}
length{
foot{
other{"siíyutȟapi {0}"}
}
inch{
other{"oíyutȟe čísčila {0}"}
}
mile{
other{"makhíyutȟapi {0}"}
}
yard{
other{"čhaéglepi {0}"}
}
}
mass{
pound{
other{"tkeíyutȟapi {0}"}
}
}
}
unitsNarrow{
duration{
day{
other{"{0}-čháŋ"}
}
hour{
other{"Owápȟe {0}"}
}
month{
other{"Wí {0}"}
}
second{
other{"Okpí {0}"}
}
week{
other{"okó {0}"}
}
year{
other{"ómakȟa {0}"}
}
}
length{
foot{
other{"siíyutȟapi {0}"}
}
inch{
other{"{0}″"}
}
mile{
other{"{0} makh"}
}
yard{
other{"čhaéglepi {0}"}
}
}
mass{
pound{
other{"{0}#"}
}
}
temperature{
celsius{
other{"{0}°C"}
}
fahrenheit{
other{"{0}°"}
}
}
}
unitsShort{
duration{
day{
other{"{0}-čháŋ"}
}
hour{
other{"Owápȟe {0}"}
}
month{
other{"Wíyawapi {0}"}
}
second{
other{"Okpí {0}"}
}
week{
other{"okó {0}"}
}
year{
other{"ómakȟa {0}"}
}
}
length{
foot{
other{"siíyutȟapi {0}"}
}
inch{
other{"oíyutȟe čísčila {0}"}
}
mile{
other{"makhíyutȟapi {0}"}
}
yard{
other{"čhaéglepi {0}"}
}
}
mass{
pound{
other{"tkeíyutȟapi {0}"}
}
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -374,28 +374,4 @@ mgo{
dn{"Zone"}
}
}
units{
duration{
day{
one{"{0} d"}
other{"{0} d"}
}
hour{
one{"{0} h"}
other{"{0} h"}
}
minute{
one{"{0} min"}
other{"{0} min"}
}
month{
one{"{0} m"}
other{"{0} m"}
}
second{
one{"{0} s"}
other{"{0} s"}
}
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -405,151 +405,4 @@ mt{
US{"US"}
metric{"Metriku"}
}
units{
angle{
arc-minute{
few{"{0}"}
many{"{0}"}
one{"{0}"}
other{"{0}"}
}
}
consumption{
liter-per-kilometer{
dnam{"L/km"}
few{"{0} litri kull kilometru"}
many{"{0} litri kull kilometru"}
one{"{0} litru kull kilometru"}
other{"{0} litri kull kilometru"}
}
}
digital{
megabyte{
dnam{"megabytes"}
few{"{0} megabytes"}
many{"{0} megabytes"}
one{"{0} megabyte"}
other{"{0} megabytes"}
}
terabit{
dnam{"terabits"}
few{"{0} terabits"}
many{"{0} terabits"}
one{"{0} terabit"}
other{"{0} terabits"}
}
terabyte{
dnam{"terabytes"}
few{"{0} terabytes"}
many{"{0} terabytes"}
one{"{0} terabyte"}
other{"{0} terabytes"}
}
}
duration{
millisecond{
dnam{"millisekondi"}
few{"{0} millisekondi"}
many{"{0} millisekondi"}
one{"{0} millisekonda"}
other{"{0} millisekondi"}
}
}
light{
lux{
dnam{"lx"}
few{"{0} lx"}
many{"{0} lx"}
one{"{0} lx"}
other{"{0} lx"}
}
}
proportion{
karat{
dnam{"karati"}
few{"{0} kt"}
many{"{0} kt"}
one{"{0} kt"}
other{"{0} kt"}
}
}
}
unitsNarrow{
duration{
millisecond{
dnam{"millisek"}
few{"{0}ms"}
many{"{0}ms"}
one{"{0}ms"}
other{"{0}ms"}
}
}
}
unitsShort{
consumption{
liter-per-kilometer{
dnam{"L/km"}
few{"{0} L/km"}
many{"{0} L/km"}
one{"{0} L/km"}
other{"{0} L/km"}
}
}
digital{
megabit{
few{"{0} Mb"}
many{"{0} Mb"}
one{"{0} Mb"}
other{"{0} Mb"}
}
megabyte{
dnam{"MB"}
few{"{0} MB"}
many{"{0} MB"}
one{"{0} MB"}
other{"{0} MB"}
}
terabit{
dnam{"Tb"}
few{"{0} Tb"}
many{"{0} Tb"}
one{"{0} Tb"}
other{"{0} Tb"}
}
terabyte{
dnam{"TB"}
few{"{0} TB"}
many{"{0} TB"}
one{"{0} TB"}
other{"{0} TB"}
}
}
duration{
millisecond{
dnam{"millisek"}
few{"{0} ms"}
many{"{0} ms"}
one{"{0} ms"}
other{"{0} ms"}
}
}
light{
lux{
dnam{"lx"}
few{"{0} lx"}
many{"{0} lx"}
one{"{0} lx"}
other{"{0} lx"}
}
}
proportion{
karat{
dnam{"kt"}
few{"{0} kt"}
many{"{0} kt"}
one{"{0} kt"}
other{"{0} kt"}
}
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -115,12 +115,4 @@ ne_IN{
measurementSystemNames{
US{"अमेरिकेली"}
}
units{
duration{
week{
one{"{0} साता"}
other{"{0} सप्ताह"}
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -567,88 +567,4 @@ nn{
US{"amerikansk"}
metric{"metrisk"}
}
unitsNarrow{
area{
acre{
one{"{0} ac"}
other{"{0} ac"}
}
square-foot{
one{"{0} ft²"}
other{"{0} ft²"}
}
square-mile{
one{"{0} mi²"}
other{"{0} mi²"}
}
}
length{
mile{
one{"{0} mi"}
other{"{0} mi"}
}
yard{
one{"{0} yd"}
other{"{0} yd"}
}
}
pressure{
inch-hg{
one{"{0} inHg"}
other{"{0} inHg"}
}
}
speed{
mile-per-hour{
one{"{0} mi/h"}
other{"{0} mi/h"}
}
}
volume{
cubic-mile{
one{"{0} mi³"}
other{"{0} mi³"}
}
}
}
unitsShort{
area{
acre{
one{"{0} ac"}
other{"{0} ac"}
}
square-mile{
one{"{0} mi²"}
other{"{0} mi²"}
}
}
length{
mile{
one{"{0} mi"}
other{"{0} mi"}
}
yard{
one{"{0} yd"}
other{"{0} yd"}
}
}
pressure{
inch-hg{
one{"{0} inHg"}
other{"{0} inHg"}
}
}
speed{
mile-per-hour{
one{"{0} mi/h"}
other{"{0} mi/h"}
}
}
volume{
cubic-mile{
one{"{0} mi³"}
other{"{0} mi³"}
}
}
}
}

View file

@ -511,74 +511,4 @@ os{
US{"АИШ"}
metric{"Метрикон"}
}
units{
duration{
day{
dnam{"боны"}
one{"{0} бон"}
other{"{0} боны"}
}
hour{
dnam{"сахаты"}
one{"{0} сахат"}
other{"{0} сахаты"}
}
minute{
dnam{"минуты"}
one{"{0} минут"}
other{"{0} минуты"}
}
month{
dnam{"мӕйы"}
one{"{0} мӕй"}
other{"{0} мӕйы"}
}
second{
dnam{"секунды"}
one{"{0} секунд"}
other{"{0} секунды"}
}
week{
dnam{"къуырийы"}
one{"{0} къуыри"}
other{"{0} къуырийы"}
}
year{
dnam{"азы"}
one{"{0} аз"}
other{"{0} азы"}
}
}
}
unitsShort{
duration{
day{
dnam{"боны"}
one{"{0} бон"}
other{"{0} боны"}
}
hour{
dnam{"сахаты"}
one{"{0} с."}
other{"{0} с."}
}
minute{
dnam{"минуты"}
one{"{0} мин."}
other{"{0} мин."}
}
month{
dnam{"мӕйы"}
}
second{
dnam{"секунды"}
}
week{
dnam{"къуырийы"}
}
year{
dnam{"азы"}
}
}
}
}

File diff suppressed because it is too large Load diff

Some files were not shown because too many files have changed in this diff Show more