Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | // *************************************************************************** |
michael@0 | 2 | // * |
michael@0 | 3 | // * Copyright (C) 2013 International Business Machines |
michael@0 | 4 | // * Corporation and others. All Rights Reserved. |
michael@0 | 5 | // * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter |
michael@0 | 6 | // * Source File: <path>/common/main/de.xml |
michael@0 | 7 | // * |
michael@0 | 8 | // *************************************************************************** |
michael@0 | 9 | /** |
michael@0 | 10 | * ICU <specials> source: <path>/common/main/de.xml |
michael@0 | 11 | */ |
michael@0 | 12 | de{ |
michael@0 | 13 | AuxExemplarCharacters{ |
michael@0 | 14 | "[á à ă â å ã ā æ ç é è ĕ ê ë ē ğ í ì ĭ î ï İ ī ı ñ ó ò ŏ ô ø ō œ ş ú ù ŭ û ū" |
michael@0 | 15 | " ÿ]" |
michael@0 | 16 | } |
michael@0 | 17 | Ellipsis{ |
michael@0 | 18 | final{"{0} …"} |
michael@0 | 19 | initial{"… {0}"} |
michael@0 | 20 | medial{"{0} … {1}"} |
michael@0 | 21 | word-final{"{0} …"} |
michael@0 | 22 | word-initial{"… {0}"} |
michael@0 | 23 | word-medial{"{0} … {1}"} |
michael@0 | 24 | } |
michael@0 | 25 | ExemplarCharacters{"[a ä b c d e f g h i j k l m n o ö p q r s ß t u ü v w x y z]"} |
michael@0 | 26 | ExemplarCharactersIndex{"[A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]"} |
michael@0 | 27 | ExemplarCharactersPunctuation{ |
michael@0 | 28 | "[\\- ‐ – — , ; \\: ! ? . … ' ‘ ‚ \u0022 “ „ « » ( ) \\[ \\] \\{ \\} § @ * / " |
michael@0 | 29 | "\\& #]" |
michael@0 | 30 | } |
michael@0 | 31 | LocaleScript{ |
michael@0 | 32 | "Latn", |
michael@0 | 33 | } |
michael@0 | 34 | MoreInformation{"?"} |
michael@0 | 35 | NumberElements{ |
michael@0 | 36 | latn{ |
michael@0 | 37 | miscPatterns{ |
michael@0 | 38 | atLeast{"{0}+"} |
michael@0 | 39 | range{"{0}–{1}"} |
michael@0 | 40 | } |
michael@0 | 41 | patterns{ |
michael@0 | 42 | currencyFormat{"#,##0.00 ¤"} |
michael@0 | 43 | decimalFormat{"#,##0.###"} |
michael@0 | 44 | percentFormat{"#,##0 %"} |
michael@0 | 45 | scientificFormat{"#E0"} |
michael@0 | 46 | } |
michael@0 | 47 | patternsLong{ |
michael@0 | 48 | decimalFormat{ |
michael@0 | 49 | 1000{ |
michael@0 | 50 | one{"0 Tausend"} |
michael@0 | 51 | other{"0 Tausend"} |
michael@0 | 52 | } |
michael@0 | 53 | 10000{ |
michael@0 | 54 | one{"00 Tausend"} |
michael@0 | 55 | other{"00 Tausend"} |
michael@0 | 56 | } |
michael@0 | 57 | 100000{ |
michael@0 | 58 | one{"000 Tausend"} |
michael@0 | 59 | other{"000 Tausend"} |
michael@0 | 60 | } |
michael@0 | 61 | 1000000{ |
michael@0 | 62 | one{"0 Million"} |
michael@0 | 63 | other{"0 Millionen"} |
michael@0 | 64 | } |
michael@0 | 65 | 10000000{ |
michael@0 | 66 | one{"00 Millionen"} |
michael@0 | 67 | other{"00 Millionen"} |
michael@0 | 68 | } |
michael@0 | 69 | 100000000{ |
michael@0 | 70 | one{"000 Millionen"} |
michael@0 | 71 | other{"000 Millionen"} |
michael@0 | 72 | } |
michael@0 | 73 | 1000000000{ |
michael@0 | 74 | one{"0 Milliarde"} |
michael@0 | 75 | other{"0 Milliarden"} |
michael@0 | 76 | } |
michael@0 | 77 | 10000000000{ |
michael@0 | 78 | one{"00 Milliarden"} |
michael@0 | 79 | other{"00 Milliarden"} |
michael@0 | 80 | } |
michael@0 | 81 | 100000000000{ |
michael@0 | 82 | one{"000 Milliarden"} |
michael@0 | 83 | other{"000 Milliarden"} |
michael@0 | 84 | } |
michael@0 | 85 | 1000000000000{ |
michael@0 | 86 | one{"0 Billion"} |
michael@0 | 87 | other{"0 Billionen"} |
michael@0 | 88 | } |
michael@0 | 89 | 10000000000000{ |
michael@0 | 90 | one{"00 Billionen"} |
michael@0 | 91 | other{"00 Billionen"} |
michael@0 | 92 | } |
michael@0 | 93 | 100000000000000{ |
michael@0 | 94 | one{"000 Billionen"} |
michael@0 | 95 | other{"000 Billionen"} |
michael@0 | 96 | } |
michael@0 | 97 | } |
michael@0 | 98 | } |
michael@0 | 99 | patternsShort{ |
michael@0 | 100 | decimalFormat{ |
michael@0 | 101 | 1000{ |
michael@0 | 102 | one{"0 Tsd"} |
michael@0 | 103 | other{"0 Tsd"} |
michael@0 | 104 | } |
michael@0 | 105 | 10000{ |
michael@0 | 106 | one{"00 Tsd"} |
michael@0 | 107 | other{"00 Tsd"} |
michael@0 | 108 | } |
michael@0 | 109 | 100000{ |
michael@0 | 110 | one{"000 Tsd"} |
michael@0 | 111 | other{"000 Tsd"} |
michael@0 | 112 | } |
michael@0 | 113 | 1000000{ |
michael@0 | 114 | one{"0 Mio"} |
michael@0 | 115 | other{"0 Mio"} |
michael@0 | 116 | } |
michael@0 | 117 | 10000000{ |
michael@0 | 118 | one{"00 Mio"} |
michael@0 | 119 | other{"00 Mio"} |
michael@0 | 120 | } |
michael@0 | 121 | 100000000{ |
michael@0 | 122 | one{"000 Mio"} |
michael@0 | 123 | other{"000 Mio"} |
michael@0 | 124 | } |
michael@0 | 125 | 1000000000{ |
michael@0 | 126 | one{"0 Mrd"} |
michael@0 | 127 | other{"0 Mrd"} |
michael@0 | 128 | } |
michael@0 | 129 | 10000000000{ |
michael@0 | 130 | one{"00 Mrd"} |
michael@0 | 131 | other{"00 Mrd"} |
michael@0 | 132 | } |
michael@0 | 133 | 100000000000{ |
michael@0 | 134 | one{"000 Mrd"} |
michael@0 | 135 | other{"000 Mrd"} |
michael@0 | 136 | } |
michael@0 | 137 | 1000000000000{ |
michael@0 | 138 | one{"0 Bio"} |
michael@0 | 139 | other{"0 Bio"} |
michael@0 | 140 | } |
michael@0 | 141 | 10000000000000{ |
michael@0 | 142 | one{"00 Bio"} |
michael@0 | 143 | other{"00 Bio"} |
michael@0 | 144 | } |
michael@0 | 145 | 100000000000000{ |
michael@0 | 146 | one{"000 Bio"} |
michael@0 | 147 | other{"000 Bio"} |
michael@0 | 148 | } |
michael@0 | 149 | } |
michael@0 | 150 | } |
michael@0 | 151 | symbols{ |
michael@0 | 152 | decimal{","} |
michael@0 | 153 | exponential{"E"} |
michael@0 | 154 | group{"."} |
michael@0 | 155 | infinity{"∞"} |
michael@0 | 156 | list{";"} |
michael@0 | 157 | minusSign{"-"} |
michael@0 | 158 | nan{"NaN"} |
michael@0 | 159 | perMille{"‰"} |
michael@0 | 160 | percentSign{"%"} |
michael@0 | 161 | plusSign{"+"} |
michael@0 | 162 | superscriptingExponent{"·"} |
michael@0 | 163 | } |
michael@0 | 164 | } |
michael@0 | 165 | } |
michael@0 | 166 | Version{"2.0.92.87"} |
michael@0 | 167 | calendar{ |
michael@0 | 168 | buddhist{ |
michael@0 | 169 | eras{ |
michael@0 | 170 | abbreviated{ |
michael@0 | 171 | "BE", |
michael@0 | 172 | } |
michael@0 | 173 | } |
michael@0 | 174 | } |
michael@0 | 175 | chinese{ |
michael@0 | 176 | DateTimePatterns{ |
michael@0 | 177 | "HH:mm:ss zzzz", |
michael@0 | 178 | "HH:mm:ss z", |
michael@0 | 179 | "HH:mm:ss", |
michael@0 | 180 | "HH:mm", |
michael@0 | 181 | "EEEE, d. MMMM U", |
michael@0 | 182 | "d. MMMM U", |
michael@0 | 183 | "dd.MM U", |
michael@0 | 184 | "dd.MM.yy", |
michael@0 | 185 | "{1} {0}", |
michael@0 | 186 | "{1} {0}", |
michael@0 | 187 | "{1} {0}", |
michael@0 | 188 | "{1} {0}", |
michael@0 | 189 | "{1} {0}", |
michael@0 | 190 | } |
michael@0 | 191 | availableFormats{ |
michael@0 | 192 | Ed{"E, d."} |
michael@0 | 193 | Gy{"U"} |
michael@0 | 194 | GyMMM{"MMM U"} |
michael@0 | 195 | GyMMMEd{"E, d. MMM U"} |
michael@0 | 196 | GyMMMd{"d. MMM U"} |
michael@0 | 197 | H{"HH 'Uhr'"} |
michael@0 | 198 | Hm{"HH:mm"} |
michael@0 | 199 | Hms{"HH:mm:ss"} |
michael@0 | 200 | M{"L"} |
michael@0 | 201 | MEd{"E, d.M."} |
michael@0 | 202 | MMM{"LLL"} |
michael@0 | 203 | MMMEd{"E, d. MMM"} |
michael@0 | 204 | MMMd{"d. MMM"} |
michael@0 | 205 | Md{"d.M."} |
michael@0 | 206 | d{"d"} |
michael@0 | 207 | h{"h a"} |
michael@0 | 208 | hm{"h:mm a"} |
michael@0 | 209 | hms{"h:mm:ss a"} |
michael@0 | 210 | ms{"mm:ss"} |
michael@0 | 211 | y{"U"} |
michael@0 | 212 | yyyy{"U"} |
michael@0 | 213 | yyyyM{"M.y"} |
michael@0 | 214 | yyyyMEd{"E, d.M.y"} |
michael@0 | 215 | yyyyMMM{"MMM U"} |
michael@0 | 216 | yyyyMMMEd{"E, d. MMM U"} |
michael@0 | 217 | yyyyMMMM{"MMMM U"} |
michael@0 | 218 | yyyyMMMd{"d. MMM U"} |
michael@0 | 219 | yyyyMd{"d.M.y"} |
michael@0 | 220 | yyyyQQQ{"QQQ U"} |
michael@0 | 221 | yyyyQQQQ{"QQQQ U"} |
michael@0 | 222 | } |
michael@0 | 223 | } |
michael@0 | 224 | generic{ |
michael@0 | 225 | DateTimePatterns{ |
michael@0 | 226 | "HH:mm:ss zzzz", |
michael@0 | 227 | "HH:mm:ss z", |
michael@0 | 228 | "HH:mm:ss", |
michael@0 | 229 | "HH:mm", |
michael@0 | 230 | "EEEE, d. MMMM y G", |
michael@0 | 231 | "d. MMMM y G", |
michael@0 | 232 | "dd.MM.y G", |
michael@0 | 233 | "dd.MM.yy GGGGG", |
michael@0 | 234 | "{1} {0}", |
michael@0 | 235 | "{1} {0}", |
michael@0 | 236 | "{1} {0}", |
michael@0 | 237 | "{1} {0}", |
michael@0 | 238 | "{1} {0}", |
michael@0 | 239 | } |
michael@0 | 240 | availableFormats{ |
michael@0 | 241 | Ed{"E, d."} |
michael@0 | 242 | Gy{"y G"} |
michael@0 | 243 | GyMMM{"MMM y G"} |
michael@0 | 244 | GyMMMEd{"E, d. MMM y G"} |
michael@0 | 245 | GyMMMd{"d. MMM y G"} |
michael@0 | 246 | H{"HH 'Uhr'"} |
michael@0 | 247 | Hm{"HH:mm"} |
michael@0 | 248 | Hms{"HH:mm:ss"} |
michael@0 | 249 | M{"L"} |
michael@0 | 250 | MEd{"E, d.M."} |
michael@0 | 251 | MMM{"LLL"} |
michael@0 | 252 | MMMEd{"E, d. MMM"} |
michael@0 | 253 | MMMd{"d. MMM"} |
michael@0 | 254 | Md{"d.M."} |
michael@0 | 255 | d{"d"} |
michael@0 | 256 | h{"h a"} |
michael@0 | 257 | hm{"h:mm a"} |
michael@0 | 258 | hms{"h:mm:ss a"} |
michael@0 | 259 | ms{"mm:ss"} |
michael@0 | 260 | y{"y G"} |
michael@0 | 261 | yyyy{"y G"} |
michael@0 | 262 | yyyyM{"M.y GGGGG"} |
michael@0 | 263 | yyyyMEd{"E, d.M.y GGGGG"} |
michael@0 | 264 | yyyyMMM{"MMM y G"} |
michael@0 | 265 | yyyyMMMEd{"E, d. MMM y G"} |
michael@0 | 266 | yyyyMMMM{"MMMM y G"} |
michael@0 | 267 | yyyyMMMd{"d. MMM y G"} |
michael@0 | 268 | yyyyMd{"d.M.y GGGGG"} |
michael@0 | 269 | yyyyQQQ{"QQQ y G"} |
michael@0 | 270 | yyyyQQQQ{"QQQQ y G"} |
michael@0 | 271 | } |
michael@0 | 272 | intervalFormats{ |
michael@0 | 273 | H{ |
michael@0 | 274 | H{"HH-HH 'Uhr'"} |
michael@0 | 275 | } |
michael@0 | 276 | Hm{ |
michael@0 | 277 | H{"HH:mm-HH:mm"} |
michael@0 | 278 | m{"HH:mm-HH:mm"} |
michael@0 | 279 | } |
michael@0 | 280 | Hmv{ |
michael@0 | 281 | H{"HH:mm-HH:mm v"} |
michael@0 | 282 | m{"HH:mm-HH:mm v"} |
michael@0 | 283 | } |
michael@0 | 284 | Hv{ |
michael@0 | 285 | H{"HH-HH 'Uhr' v"} |
michael@0 | 286 | } |
michael@0 | 287 | M{ |
michael@0 | 288 | M{"M.-M."} |
michael@0 | 289 | } |
michael@0 | 290 | MEd{ |
michael@0 | 291 | M{"E, dd.MM. - E, dd.MM."} |
michael@0 | 292 | d{"E, dd.MM. - E, dd.MM."} |
michael@0 | 293 | } |
michael@0 | 294 | MMM{ |
michael@0 | 295 | M{"MMM-MMM"} |
michael@0 | 296 | } |
michael@0 | 297 | MMMEd{ |
michael@0 | 298 | M{"E, d. MMM - E, d. MMM"} |
michael@0 | 299 | d{"E, d. - E, d. MMM"} |
michael@0 | 300 | } |
michael@0 | 301 | MMMM{ |
michael@0 | 302 | M{"LLLL-LLLL"} |
michael@0 | 303 | } |
michael@0 | 304 | MMMd{ |
michael@0 | 305 | M{"d. MMM - d. MMM"} |
michael@0 | 306 | d{"d.-d. MMM"} |
michael@0 | 307 | } |
michael@0 | 308 | Md{ |
michael@0 | 309 | M{"dd.MM. - dd.MM."} |
michael@0 | 310 | d{"dd.MM. - dd.MM."} |
michael@0 | 311 | } |
michael@0 | 312 | d{ |
michael@0 | 313 | d{"d.-d."} |
michael@0 | 314 | } |
michael@0 | 315 | fallback{"{0} - {1}"} |
michael@0 | 316 | h{ |
michael@0 | 317 | a{"h a - h a"} |
michael@0 | 318 | h{"h-h a"} |
michael@0 | 319 | } |
michael@0 | 320 | hm{ |
michael@0 | 321 | a{"h:mm a - h:mm a"} |
michael@0 | 322 | h{"h:mm-h:mm a"} |
michael@0 | 323 | m{"h:mm-h:mm a"} |
michael@0 | 324 | } |
michael@0 | 325 | hmv{ |
michael@0 | 326 | a{"h:mm a - h:mm a v"} |
michael@0 | 327 | h{"h:mm-h:mm a v"} |
michael@0 | 328 | m{"h:mm-h:mm a v"} |
michael@0 | 329 | } |
michael@0 | 330 | hv{ |
michael@0 | 331 | a{"h a - h a v"} |
michael@0 | 332 | h{"h-h a v"} |
michael@0 | 333 | } |
michael@0 | 334 | y{ |
michael@0 | 335 | y{"y-y G"} |
michael@0 | 336 | } |
michael@0 | 337 | yM{ |
michael@0 | 338 | M{"MM.y - MM.y G"} |
michael@0 | 339 | y{"MM.y - MM.y G"} |
michael@0 | 340 | } |
michael@0 | 341 | yMEd{ |
michael@0 | 342 | M{"E, dd.MM.y - E, dd.MM.y G"} |
michael@0 | 343 | d{"E, dd.MM.y - E, dd.MM.y G"} |
michael@0 | 344 | y{"E, dd.MM.y - E, dd.MM.y G"} |
michael@0 | 345 | } |
michael@0 | 346 | yMMM{ |
michael@0 | 347 | M{"MMM-MMM y G"} |
michael@0 | 348 | y{"MMM y - MMM y G"} |
michael@0 | 349 | } |
michael@0 | 350 | yMMMEd{ |
michael@0 | 351 | M{"E, d. MMM - E, d. MMM y G"} |
michael@0 | 352 | d{"E, d. - E, d. MMM y G"} |
michael@0 | 353 | y{"E, d. MMM y - E, d. MMM y G"} |
michael@0 | 354 | } |
michael@0 | 355 | yMMMM{ |
michael@0 | 356 | M{"MMMM-MMMM y G"} |
michael@0 | 357 | y{"MMMM y - MMMM y G"} |
michael@0 | 358 | } |
michael@0 | 359 | yMMMd{ |
michael@0 | 360 | M{"d. MMM - d. MMM y G"} |
michael@0 | 361 | d{"d.-d. MMM y G"} |
michael@0 | 362 | y{"d. MMM y - d. MMM y G"} |
michael@0 | 363 | } |
michael@0 | 364 | yMd{ |
michael@0 | 365 | M{"dd.MM.y - dd.MM.y G"} |
michael@0 | 366 | d{"dd.MM.y - dd.MM.y G"} |
michael@0 | 367 | y{"dd.MM.y - dd.MM.y G"} |
michael@0 | 368 | } |
michael@0 | 369 | } |
michael@0 | 370 | } |
michael@0 | 371 | gregorian{ |
michael@0 | 372 | AmPmMarkers{ |
michael@0 | 373 | "vorm.", |
michael@0 | 374 | "nachm.", |
michael@0 | 375 | } |
michael@0 | 376 | DateTimePatterns{ |
michael@0 | 377 | "HH:mm:ss zzzz", |
michael@0 | 378 | "HH:mm:ss z", |
michael@0 | 379 | "HH:mm:ss", |
michael@0 | 380 | "HH:mm", |
michael@0 | 381 | "EEEE, d. MMMM y", |
michael@0 | 382 | "d. MMMM y", |
michael@0 | 383 | "dd.MM.y", |
michael@0 | 384 | "dd.MM.yy", |
michael@0 | 385 | "{1} {0}", |
michael@0 | 386 | "{1} {0}", |
michael@0 | 387 | "{1} {0}", |
michael@0 | 388 | "{1} {0}", |
michael@0 | 389 | "{1} {0}", |
michael@0 | 390 | } |
michael@0 | 391 | appendItems{ |
michael@0 | 392 | Timezone{"{0} {1}"} |
michael@0 | 393 | } |
michael@0 | 394 | availableFormats{ |
michael@0 | 395 | EHm{"E, HH:mm"} |
michael@0 | 396 | EHms{"E, HH:mm:ss"} |
michael@0 | 397 | Ed{"E, d."} |
michael@0 | 398 | Ehm{"E h:mm a"} |
michael@0 | 399 | Ehms{"E, h:mm:ss a"} |
michael@0 | 400 | Gy{"y G"} |
michael@0 | 401 | GyMMM{"MMM y G"} |
michael@0 | 402 | GyMMMEd{"E, d. MMM y G"} |
michael@0 | 403 | GyMMMd{"d. MMM y G"} |
michael@0 | 404 | H{"HH 'Uhr'"} |
michael@0 | 405 | Hm{"HH:mm"} |
michael@0 | 406 | Hms{"HH:mm:ss"} |
michael@0 | 407 | M{"L"} |
michael@0 | 408 | MEd{"E, d.M."} |
michael@0 | 409 | MMM{"LLL"} |
michael@0 | 410 | MMMEd{"E, d. MMM"} |
michael@0 | 411 | MMMMEd{"E, d. MMMM"} |
michael@0 | 412 | MMMMdd{"dd. MMMM"} |
michael@0 | 413 | MMMd{"d. MMM"} |
michael@0 | 414 | MMd{"d.MM."} |
michael@0 | 415 | MMdd{"dd.MM."} |
michael@0 | 416 | Md{"d.M."} |
michael@0 | 417 | d{"d"} |
michael@0 | 418 | h{"h a"} |
michael@0 | 419 | hm{"h:mm a"} |
michael@0 | 420 | hms{"h:mm:ss a"} |
michael@0 | 421 | ms{"mm:ss"} |
michael@0 | 422 | y{"y"} |
michael@0 | 423 | yM{"M.y"} |
michael@0 | 424 | yMEd{"E, d.M.y"} |
michael@0 | 425 | yMM{"MM.y"} |
michael@0 | 426 | yMMM{"MMM y"} |
michael@0 | 427 | yMMMEd{"E, d. MMM y"} |
michael@0 | 428 | yMMMM{"MMMM y"} |
michael@0 | 429 | yMMMd{"d. MMM y"} |
michael@0 | 430 | yMMdd{"dd.MM.y"} |
michael@0 | 431 | yMd{"d.M.y"} |
michael@0 | 432 | yQQQ{"QQQ y"} |
michael@0 | 433 | yQQQQ{"QQQQ y"} |
michael@0 | 434 | } |
michael@0 | 435 | dayNames{ |
michael@0 | 436 | format{ |
michael@0 | 437 | abbreviated{ |
michael@0 | 438 | "So.", |
michael@0 | 439 | "Mo.", |
michael@0 | 440 | "Di.", |
michael@0 | 441 | "Mi.", |
michael@0 | 442 | "Do.", |
michael@0 | 443 | "Fr.", |
michael@0 | 444 | "Sa.", |
michael@0 | 445 | } |
michael@0 | 446 | narrow{ |
michael@0 | 447 | "S", |
michael@0 | 448 | "M", |
michael@0 | 449 | "D", |
michael@0 | 450 | "M", |
michael@0 | 451 | "D", |
michael@0 | 452 | "F", |
michael@0 | 453 | "S", |
michael@0 | 454 | } |
michael@0 | 455 | short{ |
michael@0 | 456 | "So.", |
michael@0 | 457 | "Mo.", |
michael@0 | 458 | "Di.", |
michael@0 | 459 | "Mi.", |
michael@0 | 460 | "Do.", |
michael@0 | 461 | "Fr.", |
michael@0 | 462 | "Sa.", |
michael@0 | 463 | } |
michael@0 | 464 | wide{ |
michael@0 | 465 | "Sonntag", |
michael@0 | 466 | "Montag", |
michael@0 | 467 | "Dienstag", |
michael@0 | 468 | "Mittwoch", |
michael@0 | 469 | "Donnerstag", |
michael@0 | 470 | "Freitag", |
michael@0 | 471 | "Samstag", |
michael@0 | 472 | } |
michael@0 | 473 | } |
michael@0 | 474 | stand-alone{ |
michael@0 | 475 | abbreviated{ |
michael@0 | 476 | "So", |
michael@0 | 477 | "Mo", |
michael@0 | 478 | "Di", |
michael@0 | 479 | "Mi", |
michael@0 | 480 | "Do", |
michael@0 | 481 | "Fr", |
michael@0 | 482 | "Sa", |
michael@0 | 483 | } |
michael@0 | 484 | narrow{ |
michael@0 | 485 | "S", |
michael@0 | 486 | "M", |
michael@0 | 487 | "D", |
michael@0 | 488 | "M", |
michael@0 | 489 | "D", |
michael@0 | 490 | "F", |
michael@0 | 491 | "S", |
michael@0 | 492 | } |
michael@0 | 493 | short{ |
michael@0 | 494 | "So.", |
michael@0 | 495 | "Mo.", |
michael@0 | 496 | "Di.", |
michael@0 | 497 | "Mi.", |
michael@0 | 498 | "Do.", |
michael@0 | 499 | "Fr.", |
michael@0 | 500 | "Sa.", |
michael@0 | 501 | } |
michael@0 | 502 | wide{ |
michael@0 | 503 | "Sonntag", |
michael@0 | 504 | "Montag", |
michael@0 | 505 | "Dienstag", |
michael@0 | 506 | "Mittwoch", |
michael@0 | 507 | "Donnerstag", |
michael@0 | 508 | "Freitag", |
michael@0 | 509 | "Samstag", |
michael@0 | 510 | } |
michael@0 | 511 | } |
michael@0 | 512 | } |
michael@0 | 513 | eras{ |
michael@0 | 514 | abbreviated{ |
michael@0 | 515 | "v. Chr.", |
michael@0 | 516 | "n. Chr.", |
michael@0 | 517 | } |
michael@0 | 518 | narrow{ |
michael@0 | 519 | "v. Chr.", |
michael@0 | 520 | "n. Chr.", |
michael@0 | 521 | } |
michael@0 | 522 | wide{ |
michael@0 | 523 | "v. Chr.", |
michael@0 | 524 | "n. Chr.", |
michael@0 | 525 | } |
michael@0 | 526 | } |
michael@0 | 527 | intervalFormats{ |
michael@0 | 528 | H{ |
michael@0 | 529 | H{"HH-HH 'Uhr'"} |
michael@0 | 530 | } |
michael@0 | 531 | Hm{ |
michael@0 | 532 | H{"HH:mm-HH:mm"} |
michael@0 | 533 | m{"HH:mm-HH:mm"} |
michael@0 | 534 | } |
michael@0 | 535 | Hmv{ |
michael@0 | 536 | H{"HH:mm-HH:mm v"} |
michael@0 | 537 | m{"HH:mm-HH:mm v"} |
michael@0 | 538 | } |
michael@0 | 539 | Hv{ |
michael@0 | 540 | H{"HH-HH 'Uhr' v"} |
michael@0 | 541 | } |
michael@0 | 542 | M{ |
michael@0 | 543 | M{"M.-M."} |
michael@0 | 544 | } |
michael@0 | 545 | MEd{ |
michael@0 | 546 | M{"E, dd.MM. - E, dd.MM."} |
michael@0 | 547 | d{"E, dd.MM. - E, dd.MM."} |
michael@0 | 548 | } |
michael@0 | 549 | MMM{ |
michael@0 | 550 | M{"MMM-MMM"} |
michael@0 | 551 | } |
michael@0 | 552 | MMMEd{ |
michael@0 | 553 | M{"E, d. MMM - E, d. MMM"} |
michael@0 | 554 | d{"E, d. - E, d. MMM"} |
michael@0 | 555 | } |
michael@0 | 556 | MMMM{ |
michael@0 | 557 | M{"LLLL-LLLL"} |
michael@0 | 558 | } |
michael@0 | 559 | MMMd{ |
michael@0 | 560 | M{"d. MMM - d. MMM"} |
michael@0 | 561 | d{"d.-d. MMM"} |
michael@0 | 562 | } |
michael@0 | 563 | Md{ |
michael@0 | 564 | M{"dd.MM. - dd.MM."} |
michael@0 | 565 | d{"dd.MM. - dd.MM."} |
michael@0 | 566 | } |
michael@0 | 567 | d{ |
michael@0 | 568 | d{"d.-d."} |
michael@0 | 569 | } |
michael@0 | 570 | fallback{"{0} - {1}"} |
michael@0 | 571 | h{ |
michael@0 | 572 | a{"h a - h a"} |
michael@0 | 573 | h{"h-h a"} |
michael@0 | 574 | } |
michael@0 | 575 | hm{ |
michael@0 | 576 | a{"h:mm a - h:mm a"} |
michael@0 | 577 | h{"h:mm-h:mm a"} |
michael@0 | 578 | m{"h:mm-h:mm a"} |
michael@0 | 579 | } |
michael@0 | 580 | hmv{ |
michael@0 | 581 | a{"h:mm a - h:mm a v"} |
michael@0 | 582 | h{"h:mm-h:mm a v"} |
michael@0 | 583 | m{"h:mm-h:mm a v"} |
michael@0 | 584 | } |
michael@0 | 585 | hv{ |
michael@0 | 586 | a{"h a - h a v"} |
michael@0 | 587 | h{"h-h a v"} |
michael@0 | 588 | } |
michael@0 | 589 | y{ |
michael@0 | 590 | y{"y-y"} |
michael@0 | 591 | } |
michael@0 | 592 | yM{ |
michael@0 | 593 | M{"MM.y - MM.y"} |
michael@0 | 594 | y{"MM.y - MM.y"} |
michael@0 | 595 | } |
michael@0 | 596 | yMEd{ |
michael@0 | 597 | M{"E, dd.MM.y - E, dd.MM.y"} |
michael@0 | 598 | d{"E, dd.MM.y - E, dd.MM.y"} |
michael@0 | 599 | y{"E, dd.MM.y - E, dd.MM.y"} |
michael@0 | 600 | } |
michael@0 | 601 | yMMM{ |
michael@0 | 602 | M{"MMM-MMM y"} |
michael@0 | 603 | y{"MMM y - MMM y"} |
michael@0 | 604 | } |
michael@0 | 605 | yMMMEd{ |
michael@0 | 606 | M{"E, d. MMM - E, d. MMM y"} |
michael@0 | 607 | d{"E, d. - E, d. MMM y"} |
michael@0 | 608 | y{"E, d. MMM y - E, d. MMM y"} |
michael@0 | 609 | } |
michael@0 | 610 | yMMMM{ |
michael@0 | 611 | M{"MMMM-MMMM y"} |
michael@0 | 612 | y{"MMMM y - MMMM y"} |
michael@0 | 613 | } |
michael@0 | 614 | yMMMd{ |
michael@0 | 615 | M{"d. MMM - d. MMM y"} |
michael@0 | 616 | d{"d.-d. MMM y"} |
michael@0 | 617 | y{"d. MMM y - d. MMM y"} |
michael@0 | 618 | } |
michael@0 | 619 | yMd{ |
michael@0 | 620 | M{"dd.MM.y - dd.MM.y"} |
michael@0 | 621 | d{"dd.MM.y - dd.MM.y"} |
michael@0 | 622 | y{"dd.MM.y - dd.MM.y"} |
michael@0 | 623 | } |
michael@0 | 624 | } |
michael@0 | 625 | monthNames{ |
michael@0 | 626 | format{ |
michael@0 | 627 | abbreviated{ |
michael@0 | 628 | "Jan.", |
michael@0 | 629 | "Feb.", |
michael@0 | 630 | "März", |
michael@0 | 631 | "Apr.", |
michael@0 | 632 | "Mai", |
michael@0 | 633 | "Juni", |
michael@0 | 634 | "Juli", |
michael@0 | 635 | "Aug.", |
michael@0 | 636 | "Sep.", |
michael@0 | 637 | "Okt.", |
michael@0 | 638 | "Nov.", |
michael@0 | 639 | "Dez.", |
michael@0 | 640 | } |
michael@0 | 641 | narrow{ |
michael@0 | 642 | "J", |
michael@0 | 643 | "F", |
michael@0 | 644 | "M", |
michael@0 | 645 | "A", |
michael@0 | 646 | "M", |
michael@0 | 647 | "J", |
michael@0 | 648 | "J", |
michael@0 | 649 | "A", |
michael@0 | 650 | "S", |
michael@0 | 651 | "O", |
michael@0 | 652 | "N", |
michael@0 | 653 | "D", |
michael@0 | 654 | } |
michael@0 | 655 | wide{ |
michael@0 | 656 | "Januar", |
michael@0 | 657 | "Februar", |
michael@0 | 658 | "März", |
michael@0 | 659 | "April", |
michael@0 | 660 | "Mai", |
michael@0 | 661 | "Juni", |
michael@0 | 662 | "Juli", |
michael@0 | 663 | "August", |
michael@0 | 664 | "September", |
michael@0 | 665 | "Oktober", |
michael@0 | 666 | "November", |
michael@0 | 667 | "Dezember", |
michael@0 | 668 | } |
michael@0 | 669 | } |
michael@0 | 670 | stand-alone{ |
michael@0 | 671 | abbreviated{ |
michael@0 | 672 | "Jan", |
michael@0 | 673 | "Feb", |
michael@0 | 674 | "Mär", |
michael@0 | 675 | "Apr", |
michael@0 | 676 | "Mai", |
michael@0 | 677 | "Jun", |
michael@0 | 678 | "Jul", |
michael@0 | 679 | "Aug", |
michael@0 | 680 | "Sep", |
michael@0 | 681 | "Okt", |
michael@0 | 682 | "Nov", |
michael@0 | 683 | "Dez", |
michael@0 | 684 | } |
michael@0 | 685 | narrow{ |
michael@0 | 686 | "J", |
michael@0 | 687 | "F", |
michael@0 | 688 | "M", |
michael@0 | 689 | "A", |
michael@0 | 690 | "M", |
michael@0 | 691 | "J", |
michael@0 | 692 | "J", |
michael@0 | 693 | "A", |
michael@0 | 694 | "S", |
michael@0 | 695 | "O", |
michael@0 | 696 | "N", |
michael@0 | 697 | "D", |
michael@0 | 698 | } |
michael@0 | 699 | wide{ |
michael@0 | 700 | "Januar", |
michael@0 | 701 | "Februar", |
michael@0 | 702 | "März", |
michael@0 | 703 | "April", |
michael@0 | 704 | "Mai", |
michael@0 | 705 | "Juni", |
michael@0 | 706 | "Juli", |
michael@0 | 707 | "August", |
michael@0 | 708 | "September", |
michael@0 | 709 | "Oktober", |
michael@0 | 710 | "November", |
michael@0 | 711 | "Dezember", |
michael@0 | 712 | } |
michael@0 | 713 | } |
michael@0 | 714 | } |
michael@0 | 715 | quarters{ |
michael@0 | 716 | format{ |
michael@0 | 717 | abbreviated{ |
michael@0 | 718 | "Q1", |
michael@0 | 719 | "Q2", |
michael@0 | 720 | "Q3", |
michael@0 | 721 | "Q4", |
michael@0 | 722 | } |
michael@0 | 723 | narrow{ |
michael@0 | 724 | "1", |
michael@0 | 725 | "2", |
michael@0 | 726 | "3", |
michael@0 | 727 | "4", |
michael@0 | 728 | } |
michael@0 | 729 | wide{ |
michael@0 | 730 | "1. Quartal", |
michael@0 | 731 | "2. Quartal", |
michael@0 | 732 | "3. Quartal", |
michael@0 | 733 | "4. Quartal", |
michael@0 | 734 | } |
michael@0 | 735 | } |
michael@0 | 736 | stand-alone{ |
michael@0 | 737 | abbreviated{ |
michael@0 | 738 | "Q1", |
michael@0 | 739 | "Q2", |
michael@0 | 740 | "Q3", |
michael@0 | 741 | "Q4", |
michael@0 | 742 | } |
michael@0 | 743 | narrow{ |
michael@0 | 744 | "1", |
michael@0 | 745 | "2", |
michael@0 | 746 | "3", |
michael@0 | 747 | "4", |
michael@0 | 748 | } |
michael@0 | 749 | wide{ |
michael@0 | 750 | "1. Quartal", |
michael@0 | 751 | "2. Quartal", |
michael@0 | 752 | "3. Quartal", |
michael@0 | 753 | "4. Quartal", |
michael@0 | 754 | } |
michael@0 | 755 | } |
michael@0 | 756 | } |
michael@0 | 757 | } |
michael@0 | 758 | hebrew{ |
michael@0 | 759 | eras{ |
michael@0 | 760 | abbreviated{ |
michael@0 | 761 | "AM", |
michael@0 | 762 | } |
michael@0 | 763 | } |
michael@0 | 764 | } |
michael@0 | 765 | islamic{ |
michael@0 | 766 | eras{ |
michael@0 | 767 | abbreviated{ |
michael@0 | 768 | "AH", |
michael@0 | 769 | } |
michael@0 | 770 | } |
michael@0 | 771 | } |
michael@0 | 772 | japanese{ |
michael@0 | 773 | DateTimePatterns{ |
michael@0 | 774 | "HH:mm:ss zzzz", |
michael@0 | 775 | "HH:mm:ss z", |
michael@0 | 776 | "HH:mm:ss", |
michael@0 | 777 | "HH:mm", |
michael@0 | 778 | "EEEE, d. MMMM y G", |
michael@0 | 779 | "d. MMMM y G", |
michael@0 | 780 | "dd.MM.y G", |
michael@0 | 781 | "dd.MM.yy GGGGG", |
michael@0 | 782 | "{1} {0}", |
michael@0 | 783 | "{1} {0}", |
michael@0 | 784 | "{1} {0}", |
michael@0 | 785 | "{1} {0}", |
michael@0 | 786 | "{1} {0}", |
michael@0 | 787 | } |
michael@0 | 788 | } |
michael@0 | 789 | roc{ |
michael@0 | 790 | eras{ |
michael@0 | 791 | abbreviated{ |
michael@0 | 792 | "Before R.O.C.", |
michael@0 | 793 | "Minguo", |
michael@0 | 794 | } |
michael@0 | 795 | } |
michael@0 | 796 | } |
michael@0 | 797 | } |
michael@0 | 798 | delimiters{ |
michael@0 | 799 | alternateQuotationEnd{"‘"} |
michael@0 | 800 | alternateQuotationStart{"‚"} |
michael@0 | 801 | quotationEnd{"“"} |
michael@0 | 802 | quotationStart{"„"} |
michael@0 | 803 | } |
michael@0 | 804 | durationUnits{ |
michael@0 | 805 | hm{"h:mm"} |
michael@0 | 806 | hms{"h:mm:ss"} |
michael@0 | 807 | ms{"m:ss"} |
michael@0 | 808 | } |
michael@0 | 809 | fields{ |
michael@0 | 810 | day{ |
michael@0 | 811 | dn{"Tag"} |
michael@0 | 812 | relative{ |
michael@0 | 813 | "-1"{"Gestern"} |
michael@0 | 814 | "-2"{"Vorgestern"} |
michael@0 | 815 | "0"{"Heute"} |
michael@0 | 816 | "1"{"Morgen"} |
michael@0 | 817 | "2"{"Übermorgen"} |
michael@0 | 818 | } |
michael@0 | 819 | relativeTime{ |
michael@0 | 820 | future{ |
michael@0 | 821 | one{"In {0} Tag"} |
michael@0 | 822 | other{"In {0} Tagen"} |
michael@0 | 823 | } |
michael@0 | 824 | past{ |
michael@0 | 825 | one{"Vor {0} Tag"} |
michael@0 | 826 | other{"Vor {0} Tagen"} |
michael@0 | 827 | } |
michael@0 | 828 | } |
michael@0 | 829 | } |
michael@0 | 830 | dayperiod{ |
michael@0 | 831 | dn{"Tageshälfte"} |
michael@0 | 832 | } |
michael@0 | 833 | era{ |
michael@0 | 834 | dn{"Epoche"} |
michael@0 | 835 | } |
michael@0 | 836 | fri{ |
michael@0 | 837 | relative{ |
michael@0 | 838 | "-1"{"Letzten Freitag"} |
michael@0 | 839 | "0"{"Diesen Freitag"} |
michael@0 | 840 | "1"{"Nächsten Freitag"} |
michael@0 | 841 | } |
michael@0 | 842 | } |
michael@0 | 843 | hour{ |
michael@0 | 844 | dn{"Stunde"} |
michael@0 | 845 | relativeTime{ |
michael@0 | 846 | future{ |
michael@0 | 847 | one{"In {0} Stunde"} |
michael@0 | 848 | other{"In {0} Stunden"} |
michael@0 | 849 | } |
michael@0 | 850 | past{ |
michael@0 | 851 | one{"Vor {0} Stunde"} |
michael@0 | 852 | other{"Vor {0} Stunden"} |
michael@0 | 853 | } |
michael@0 | 854 | } |
michael@0 | 855 | } |
michael@0 | 856 | minute{ |
michael@0 | 857 | dn{"Minute"} |
michael@0 | 858 | relativeTime{ |
michael@0 | 859 | future{ |
michael@0 | 860 | one{"In {0} Minute"} |
michael@0 | 861 | other{"In {0} Minuten"} |
michael@0 | 862 | } |
michael@0 | 863 | past{ |
michael@0 | 864 | one{"Vor {0} Minute"} |
michael@0 | 865 | other{"Vor {0} Minuten"} |
michael@0 | 866 | } |
michael@0 | 867 | } |
michael@0 | 868 | } |
michael@0 | 869 | mon{ |
michael@0 | 870 | relative{ |
michael@0 | 871 | "-1"{"Letzten Montag"} |
michael@0 | 872 | "0"{"Diesen Montag"} |
michael@0 | 873 | "1"{"Nächsten Montag"} |
michael@0 | 874 | } |
michael@0 | 875 | } |
michael@0 | 876 | month{ |
michael@0 | 877 | dn{"Monat"} |
michael@0 | 878 | relative{ |
michael@0 | 879 | "-1"{"Letzter Monat"} |
michael@0 | 880 | "0"{"Dieser Monat"} |
michael@0 | 881 | "1"{"Nächster Monat"} |
michael@0 | 882 | } |
michael@0 | 883 | relativeTime{ |
michael@0 | 884 | future{ |
michael@0 | 885 | one{"In {0} Monat"} |
michael@0 | 886 | other{"In {0} Monaten"} |
michael@0 | 887 | } |
michael@0 | 888 | past{ |
michael@0 | 889 | one{"Vor {0} Monat"} |
michael@0 | 890 | other{"Vor {0} Monaten"} |
michael@0 | 891 | } |
michael@0 | 892 | } |
michael@0 | 893 | } |
michael@0 | 894 | sat{ |
michael@0 | 895 | relative{ |
michael@0 | 896 | "-1"{"Letzten Samstag"} |
michael@0 | 897 | "0"{"Diesen Samstag"} |
michael@0 | 898 | "1"{"Nächsten Samstag"} |
michael@0 | 899 | } |
michael@0 | 900 | } |
michael@0 | 901 | second{ |
michael@0 | 902 | dn{"Sekunde"} |
michael@0 | 903 | relative{ |
michael@0 | 904 | "0"{"jetzt"} |
michael@0 | 905 | } |
michael@0 | 906 | relativeTime{ |
michael@0 | 907 | future{ |
michael@0 | 908 | one{"In {0} Sekunde"} |
michael@0 | 909 | other{"In {0} Sekunden"} |
michael@0 | 910 | } |
michael@0 | 911 | past{ |
michael@0 | 912 | one{"Vor {0} Sekunde"} |
michael@0 | 913 | other{"Vor {0} Sekunden"} |
michael@0 | 914 | } |
michael@0 | 915 | } |
michael@0 | 916 | } |
michael@0 | 917 | sun{ |
michael@0 | 918 | relative{ |
michael@0 | 919 | "-1"{"Letzten Sonntag"} |
michael@0 | 920 | "0"{"Diesen Sonntag"} |
michael@0 | 921 | "1"{"Nächsten Sonntag"} |
michael@0 | 922 | } |
michael@0 | 923 | } |
michael@0 | 924 | thu{ |
michael@0 | 925 | relative{ |
michael@0 | 926 | "-1"{"Letzten Donnerstag"} |
michael@0 | 927 | "0"{"Diesen Donnerstag"} |
michael@0 | 928 | "1"{"Nächsten Donnerstag"} |
michael@0 | 929 | } |
michael@0 | 930 | } |
michael@0 | 931 | tue{ |
michael@0 | 932 | relative{ |
michael@0 | 933 | "-1"{"Letzten Dienstag"} |
michael@0 | 934 | "0"{"Diesen Dienstag"} |
michael@0 | 935 | "1"{"Nächsten Dienstag"} |
michael@0 | 936 | } |
michael@0 | 937 | } |
michael@0 | 938 | wed{ |
michael@0 | 939 | relative{ |
michael@0 | 940 | "-1"{"Letzten Mittwoch"} |
michael@0 | 941 | "0"{"Diesen Mittwoch"} |
michael@0 | 942 | "1"{"Nächsten Mittwoch"} |
michael@0 | 943 | } |
michael@0 | 944 | } |
michael@0 | 945 | week{ |
michael@0 | 946 | dn{"Woche"} |
michael@0 | 947 | relative{ |
michael@0 | 948 | "-1"{"Letzte Woche"} |
michael@0 | 949 | "0"{"Diese Woche"} |
michael@0 | 950 | "1"{"Nächste Woche"} |
michael@0 | 951 | } |
michael@0 | 952 | relativeTime{ |
michael@0 | 953 | future{ |
michael@0 | 954 | one{"In {0} Woche"} |
michael@0 | 955 | other{"In {0} Wochen"} |
michael@0 | 956 | } |
michael@0 | 957 | past{ |
michael@0 | 958 | one{"Vor {0} Woche"} |
michael@0 | 959 | other{"Vor {0} Wochen"} |
michael@0 | 960 | } |
michael@0 | 961 | } |
michael@0 | 962 | } |
michael@0 | 963 | weekday{ |
michael@0 | 964 | dn{"Wochentag"} |
michael@0 | 965 | } |
michael@0 | 966 | year{ |
michael@0 | 967 | dn{"Jahr"} |
michael@0 | 968 | relative{ |
michael@0 | 969 | "-1"{"Letztes Jahr"} |
michael@0 | 970 | "0"{"Dieses Jahr"} |
michael@0 | 971 | "1"{"Nächstes Jahr"} |
michael@0 | 972 | } |
michael@0 | 973 | relativeTime{ |
michael@0 | 974 | future{ |
michael@0 | 975 | one{"In {0} Jahr"} |
michael@0 | 976 | other{"In {0} Jahren"} |
michael@0 | 977 | } |
michael@0 | 978 | past{ |
michael@0 | 979 | one{"Vor {0} Jahr"} |
michael@0 | 980 | other{"Vor {0} Jahren"} |
michael@0 | 981 | } |
michael@0 | 982 | } |
michael@0 | 983 | } |
michael@0 | 984 | zone{ |
michael@0 | 985 | dn{"Zeitzone"} |
michael@0 | 986 | } |
michael@0 | 987 | } |
michael@0 | 988 | listPattern{ |
michael@0 | 989 | standard{ |
michael@0 | 990 | 2{"{0} und {1}"} |
michael@0 | 991 | end{"{0} und {1}"} |
michael@0 | 992 | middle{"{0}, {1}"} |
michael@0 | 993 | start{"{0}, {1}"} |
michael@0 | 994 | } |
michael@0 | 995 | unit{ |
michael@0 | 996 | 2{"{0} und {1}"} |
michael@0 | 997 | end{"{0} und {1}"} |
michael@0 | 998 | middle{"{0}, {1}"} |
michael@0 | 999 | start{"{0}, {1}"} |
michael@0 | 1000 | } |
michael@0 | 1001 | unit-narrow{ |
michael@0 | 1002 | 2{"{0}, {1}"} |
michael@0 | 1003 | end{"{0} und {1}"} |
michael@0 | 1004 | middle{"{0}, {1}"} |
michael@0 | 1005 | start{"{0}, {1}"} |
michael@0 | 1006 | } |
michael@0 | 1007 | unit-short{ |
michael@0 | 1008 | 2{"{0}, {1}"} |
michael@0 | 1009 | end{"{0} und {1}"} |
michael@0 | 1010 | middle{"{0}, {1}"} |
michael@0 | 1011 | start{"{0}, {1}"} |
michael@0 | 1012 | } |
michael@0 | 1013 | } |
michael@0 | 1014 | measurementSystemNames{ |
michael@0 | 1015 | UK{"Englisches"} |
michael@0 | 1016 | US{"Angloamerikanisches"} |
michael@0 | 1017 | metric{"Internationales (SI)"} |
michael@0 | 1018 | } |
michael@0 | 1019 | transformNames{ |
michael@0 | 1020 | BGN{"BGN"} |
michael@0 | 1021 | Numeric{"Numerisch"} |
michael@0 | 1022 | Tone{"Tonsprache"} |
michael@0 | 1023 | UNGEGN{"UNGEGN"} |
michael@0 | 1024 | x-Accents{"Akzente"} |
michael@0 | 1025 | x-Fullwidth{"Breit"} |
michael@0 | 1026 | x-Halfwidth{"Halbe Breite"} |
michael@0 | 1027 | x-Jamo{"Jamo"} |
michael@0 | 1028 | x-Pinyin{"Pinyin"} |
michael@0 | 1029 | x-Publishing{"Veröffentlichung"} |
michael@0 | 1030 | } |
michael@0 | 1031 | units{ |
michael@0 | 1032 | acceleration{ |
michael@0 | 1033 | g-force{ |
michael@0 | 1034 | one{"{0}-fache Erdbeschleunigung"} |
michael@0 | 1035 | other{"{0}-fache Erdbeschleunigung"} |
michael@0 | 1036 | } |
michael@0 | 1037 | } |
michael@0 | 1038 | angle{ |
michael@0 | 1039 | arc-minute{ |
michael@0 | 1040 | one{"{0} Winkelminute"} |
michael@0 | 1041 | other{"{0} Winkelminuten"} |
michael@0 | 1042 | } |
michael@0 | 1043 | arc-second{ |
michael@0 | 1044 | one{"{0} Winkelsekunde"} |
michael@0 | 1045 | other{"{0} Winkelsekunden"} |
michael@0 | 1046 | } |
michael@0 | 1047 | degree{ |
michael@0 | 1048 | one{"{0} Grad"} |
michael@0 | 1049 | other{"{0} Grad"} |
michael@0 | 1050 | } |
michael@0 | 1051 | } |
michael@0 | 1052 | area{ |
michael@0 | 1053 | acre{ |
michael@0 | 1054 | one{"{0} Acre"} |
michael@0 | 1055 | other{"{0} Acres"} |
michael@0 | 1056 | } |
michael@0 | 1057 | hectare{ |
michael@0 | 1058 | one{"{0} Hektar"} |
michael@0 | 1059 | other{"{0} Hektar"} |
michael@0 | 1060 | } |
michael@0 | 1061 | square-foot{ |
michael@0 | 1062 | one{"{0} Quadratfuß"} |
michael@0 | 1063 | other{"{0} Quadratfuß"} |
michael@0 | 1064 | } |
michael@0 | 1065 | square-kilometer{ |
michael@0 | 1066 | one{"{0} Quadratkilometer"} |
michael@0 | 1067 | other{"{0} Quadratkilometer"} |
michael@0 | 1068 | } |
michael@0 | 1069 | square-meter{ |
michael@0 | 1070 | one{"{0} Quadratmeter"} |
michael@0 | 1071 | other{"{0} Quadratmeter"} |
michael@0 | 1072 | } |
michael@0 | 1073 | square-mile{ |
michael@0 | 1074 | one{"{0} Quadratmeile"} |
michael@0 | 1075 | other{"{0} Quadratmeilen"} |
michael@0 | 1076 | } |
michael@0 | 1077 | } |
michael@0 | 1078 | compound{ |
michael@0 | 1079 | per{"{0} pro {1}"} |
michael@0 | 1080 | } |
michael@0 | 1081 | duration{ |
michael@0 | 1082 | day{ |
michael@0 | 1083 | one{"{0} Tag"} |
michael@0 | 1084 | other{"{0} Tage"} |
michael@0 | 1085 | } |
michael@0 | 1086 | hour{ |
michael@0 | 1087 | one{"{0} Stunde"} |
michael@0 | 1088 | other{"{0} Stunden"} |
michael@0 | 1089 | } |
michael@0 | 1090 | millisecond{ |
michael@0 | 1091 | one{"{0} Millisekunde"} |
michael@0 | 1092 | other{"{0} Millisekunden"} |
michael@0 | 1093 | } |
michael@0 | 1094 | minute{ |
michael@0 | 1095 | one{"{0} Minute"} |
michael@0 | 1096 | other{"{0} Minuten"} |
michael@0 | 1097 | } |
michael@0 | 1098 | month{ |
michael@0 | 1099 | one{"{0} Monat"} |
michael@0 | 1100 | other{"{0} Monate"} |
michael@0 | 1101 | } |
michael@0 | 1102 | second{ |
michael@0 | 1103 | one{"{0} Sekunde"} |
michael@0 | 1104 | other{"{0} Sekunden"} |
michael@0 | 1105 | } |
michael@0 | 1106 | week{ |
michael@0 | 1107 | one{"{0} Woche"} |
michael@0 | 1108 | other{"{0} Wochen"} |
michael@0 | 1109 | } |
michael@0 | 1110 | year{ |
michael@0 | 1111 | one{"{0} Jahr"} |
michael@0 | 1112 | other{"{0} Jahre"} |
michael@0 | 1113 | } |
michael@0 | 1114 | } |
michael@0 | 1115 | length{ |
michael@0 | 1116 | centimeter{ |
michael@0 | 1117 | one{"{0} Zentimeter"} |
michael@0 | 1118 | other{"{0} Zentimeter"} |
michael@0 | 1119 | } |
michael@0 | 1120 | foot{ |
michael@0 | 1121 | one{"{0} Fuß"} |
michael@0 | 1122 | other{"{0} Fuß"} |
michael@0 | 1123 | } |
michael@0 | 1124 | inch{ |
michael@0 | 1125 | one{"{0} Zoll"} |
michael@0 | 1126 | other{"{0} Zoll"} |
michael@0 | 1127 | } |
michael@0 | 1128 | kilometer{ |
michael@0 | 1129 | one{"{0} Kilometer"} |
michael@0 | 1130 | other{"{0} Kilometer"} |
michael@0 | 1131 | } |
michael@0 | 1132 | light-year{ |
michael@0 | 1133 | one{"{0} Lichtjahr"} |
michael@0 | 1134 | other{"{0} Lichtjahre"} |
michael@0 | 1135 | } |
michael@0 | 1136 | meter{ |
michael@0 | 1137 | one{"{0} Meter"} |
michael@0 | 1138 | other{"{0} Meter"} |
michael@0 | 1139 | } |
michael@0 | 1140 | mile{ |
michael@0 | 1141 | one{"{0} Meile"} |
michael@0 | 1142 | other{"{0} Meilen"} |
michael@0 | 1143 | } |
michael@0 | 1144 | millimeter{ |
michael@0 | 1145 | one{"{0} Millimeter"} |
michael@0 | 1146 | other{"{0} Millimeter"} |
michael@0 | 1147 | } |
michael@0 | 1148 | picometer{ |
michael@0 | 1149 | one{"{0} Pikometer"} |
michael@0 | 1150 | other{"{0} Pikometer"} |
michael@0 | 1151 | } |
michael@0 | 1152 | yard{ |
michael@0 | 1153 | one{"{0} Yard"} |
michael@0 | 1154 | other{"{0} Yards"} |
michael@0 | 1155 | } |
michael@0 | 1156 | } |
michael@0 | 1157 | mass{ |
michael@0 | 1158 | gram{ |
michael@0 | 1159 | one{"{0} Gramm"} |
michael@0 | 1160 | other{"{0} Gramm"} |
michael@0 | 1161 | } |
michael@0 | 1162 | kilogram{ |
michael@0 | 1163 | one{"{0} Kilogramm"} |
michael@0 | 1164 | other{"{0} Kilogramm"} |
michael@0 | 1165 | } |
michael@0 | 1166 | ounce{ |
michael@0 | 1167 | one{"{0} Unze"} |
michael@0 | 1168 | other{"{0} Unzen"} |
michael@0 | 1169 | } |
michael@0 | 1170 | pound{ |
michael@0 | 1171 | one{"{0} Pfund"} |
michael@0 | 1172 | other{"{0} Pfund"} |
michael@0 | 1173 | } |
michael@0 | 1174 | } |
michael@0 | 1175 | power{ |
michael@0 | 1176 | horsepower{ |
michael@0 | 1177 | one{"{0} Pferdestärke"} |
michael@0 | 1178 | other{"{0} Pferdestärken"} |
michael@0 | 1179 | } |
michael@0 | 1180 | kilowatt{ |
michael@0 | 1181 | one{"{0} Kilowatt"} |
michael@0 | 1182 | other{"{0} Kilowatt"} |
michael@0 | 1183 | } |
michael@0 | 1184 | watt{ |
michael@0 | 1185 | one{"{0} Watt"} |
michael@0 | 1186 | other{"{0} Watt"} |
michael@0 | 1187 | } |
michael@0 | 1188 | } |
michael@0 | 1189 | pressure{ |
michael@0 | 1190 | hectopascal{ |
michael@0 | 1191 | one{"{0} Hektopascal"} |
michael@0 | 1192 | other{"{0} Hektopascal"} |
michael@0 | 1193 | } |
michael@0 | 1194 | inch-hg{ |
michael@0 | 1195 | one{"{0} Zoll Quecksilbersäule"} |
michael@0 | 1196 | other{"{0} Zoll Quecksilbersäule"} |
michael@0 | 1197 | } |
michael@0 | 1198 | millibar{ |
michael@0 | 1199 | one{"{0} Millibar"} |
michael@0 | 1200 | other{"{0} Millibar"} |
michael@0 | 1201 | } |
michael@0 | 1202 | } |
michael@0 | 1203 | speed{ |
michael@0 | 1204 | kilometer-per-hour{ |
michael@0 | 1205 | one{"{0} Kilometer pro Stunde"} |
michael@0 | 1206 | other{"{0} Kilometer pro Stunde"} |
michael@0 | 1207 | } |
michael@0 | 1208 | meter-per-second{ |
michael@0 | 1209 | one{"{0} Meter pro Sekunde"} |
michael@0 | 1210 | other{"{0} Meter pro Sekunde"} |
michael@0 | 1211 | } |
michael@0 | 1212 | mile-per-hour{ |
michael@0 | 1213 | one{"{0} Meile pro Stunde"} |
michael@0 | 1214 | other{"{0} Meilen pro Stunde"} |
michael@0 | 1215 | } |
michael@0 | 1216 | } |
michael@0 | 1217 | temperature{ |
michael@0 | 1218 | celsius{ |
michael@0 | 1219 | one{"{0} Grad Celsius"} |
michael@0 | 1220 | other{"{0} Grad Celsius"} |
michael@0 | 1221 | } |
michael@0 | 1222 | fahrenheit{ |
michael@0 | 1223 | one{"{0} Grad Fahrenheit"} |
michael@0 | 1224 | other{"{0} Grad Fahrenheit"} |
michael@0 | 1225 | } |
michael@0 | 1226 | } |
michael@0 | 1227 | volume{ |
michael@0 | 1228 | cubic-kilometer{ |
michael@0 | 1229 | one{"{0} Kubikkilometer"} |
michael@0 | 1230 | other{"{0} Kubikkilometer"} |
michael@0 | 1231 | } |
michael@0 | 1232 | cubic-mile{ |
michael@0 | 1233 | one{"{0} Kubikmeile"} |
michael@0 | 1234 | other{"{0} Kubikmeilen"} |
michael@0 | 1235 | } |
michael@0 | 1236 | liter{ |
michael@0 | 1237 | one{"{0} Liter"} |
michael@0 | 1238 | other{"{0} Liter"} |
michael@0 | 1239 | } |
michael@0 | 1240 | } |
michael@0 | 1241 | } |
michael@0 | 1242 | unitsNarrow{ |
michael@0 | 1243 | acceleration{ |
michael@0 | 1244 | g-force{ |
michael@0 | 1245 | one{"{0} G"} |
michael@0 | 1246 | other{"{0} G"} |
michael@0 | 1247 | } |
michael@0 | 1248 | } |
michael@0 | 1249 | angle{ |
michael@0 | 1250 | arc-minute{ |
michael@0 | 1251 | one{"{0}′"} |
michael@0 | 1252 | other{"{0}′"} |
michael@0 | 1253 | } |
michael@0 | 1254 | arc-second{ |
michael@0 | 1255 | one{"{0}″"} |
michael@0 | 1256 | other{"{0}″"} |
michael@0 | 1257 | } |
michael@0 | 1258 | degree{ |
michael@0 | 1259 | one{"{0}°"} |
michael@0 | 1260 | other{"{0}°"} |
michael@0 | 1261 | } |
michael@0 | 1262 | } |
michael@0 | 1263 | area{ |
michael@0 | 1264 | acre{ |
michael@0 | 1265 | one{"{0} ac"} |
michael@0 | 1266 | other{"{0} ac"} |
michael@0 | 1267 | } |
michael@0 | 1268 | hectare{ |
michael@0 | 1269 | one{"{0} ha"} |
michael@0 | 1270 | other{"{0} ha"} |
michael@0 | 1271 | } |
michael@0 | 1272 | square-foot{ |
michael@0 | 1273 | one{"{0} ft²"} |
michael@0 | 1274 | other{"{0} ft²"} |
michael@0 | 1275 | } |
michael@0 | 1276 | square-kilometer{ |
michael@0 | 1277 | one{"{0} km²"} |
michael@0 | 1278 | other{"{0} km²"} |
michael@0 | 1279 | } |
michael@0 | 1280 | square-meter{ |
michael@0 | 1281 | one{"{0} m²"} |
michael@0 | 1282 | other{"{0} m²"} |
michael@0 | 1283 | } |
michael@0 | 1284 | square-mile{ |
michael@0 | 1285 | one{"{0} mi²"} |
michael@0 | 1286 | other{"{0} mi²"} |
michael@0 | 1287 | } |
michael@0 | 1288 | } |
michael@0 | 1289 | compound{ |
michael@0 | 1290 | per{"{0}/{1}"} |
michael@0 | 1291 | } |
michael@0 | 1292 | duration{ |
michael@0 | 1293 | day{ |
michael@0 | 1294 | one{"{0} T"} |
michael@0 | 1295 | other{"{0} T"} |
michael@0 | 1296 | } |
michael@0 | 1297 | hour{ |
michael@0 | 1298 | one{"{0} Std."} |
michael@0 | 1299 | other{"{0} Std."} |
michael@0 | 1300 | } |
michael@0 | 1301 | millisecond{ |
michael@0 | 1302 | one{"{0} ms"} |
michael@0 | 1303 | other{"{0} ms"} |
michael@0 | 1304 | } |
michael@0 | 1305 | minute{ |
michael@0 | 1306 | one{"{0} Min."} |
michael@0 | 1307 | other{"{0} Min."} |
michael@0 | 1308 | } |
michael@0 | 1309 | month{ |
michael@0 | 1310 | one{"{0} M"} |
michael@0 | 1311 | other{"{0} M"} |
michael@0 | 1312 | } |
michael@0 | 1313 | second{ |
michael@0 | 1314 | one{"{0} s"} |
michael@0 | 1315 | other{"{0} s"} |
michael@0 | 1316 | } |
michael@0 | 1317 | week{ |
michael@0 | 1318 | one{"{0} W"} |
michael@0 | 1319 | other{"{0} W"} |
michael@0 | 1320 | } |
michael@0 | 1321 | year{ |
michael@0 | 1322 | one{"{0} J"} |
michael@0 | 1323 | other{"{0} J"} |
michael@0 | 1324 | } |
michael@0 | 1325 | } |
michael@0 | 1326 | length{ |
michael@0 | 1327 | centimeter{ |
michael@0 | 1328 | one{"{0} cm"} |
michael@0 | 1329 | other{"{0} cm"} |
michael@0 | 1330 | } |
michael@0 | 1331 | foot{ |
michael@0 | 1332 | one{"{0} ft"} |
michael@0 | 1333 | other{"{0} ft"} |
michael@0 | 1334 | } |
michael@0 | 1335 | inch{ |
michael@0 | 1336 | one{"{0} in"} |
michael@0 | 1337 | other{"{0} in"} |
michael@0 | 1338 | } |
michael@0 | 1339 | kilometer{ |
michael@0 | 1340 | one{"{0} km"} |
michael@0 | 1341 | other{"{0} km"} |
michael@0 | 1342 | } |
michael@0 | 1343 | light-year{ |
michael@0 | 1344 | one{"{0} ly"} |
michael@0 | 1345 | other{"{0} ly"} |
michael@0 | 1346 | } |
michael@0 | 1347 | meter{ |
michael@0 | 1348 | one{"{0} m"} |
michael@0 | 1349 | other{"{0} m"} |
michael@0 | 1350 | } |
michael@0 | 1351 | mile{ |
michael@0 | 1352 | one{"{0} mi"} |
michael@0 | 1353 | other{"{0} mi"} |
michael@0 | 1354 | } |
michael@0 | 1355 | millimeter{ |
michael@0 | 1356 | one{"{0} mm"} |
michael@0 | 1357 | other{"{0} mm"} |
michael@0 | 1358 | } |
michael@0 | 1359 | picometer{ |
michael@0 | 1360 | one{"{0} pm"} |
michael@0 | 1361 | other{"{0} pm"} |
michael@0 | 1362 | } |
michael@0 | 1363 | yard{ |
michael@0 | 1364 | one{"{0} yd"} |
michael@0 | 1365 | other{"{0} yd"} |
michael@0 | 1366 | } |
michael@0 | 1367 | } |
michael@0 | 1368 | mass{ |
michael@0 | 1369 | gram{ |
michael@0 | 1370 | one{"{0} g"} |
michael@0 | 1371 | other{"{0} g"} |
michael@0 | 1372 | } |
michael@0 | 1373 | kilogram{ |
michael@0 | 1374 | one{"{0} kg"} |
michael@0 | 1375 | other{"{0} kg"} |
michael@0 | 1376 | } |
michael@0 | 1377 | ounce{ |
michael@0 | 1378 | one{"{0} oz"} |
michael@0 | 1379 | other{"{0} oz"} |
michael@0 | 1380 | } |
michael@0 | 1381 | pound{ |
michael@0 | 1382 | one{"{0} lb"} |
michael@0 | 1383 | other{"{0} lb"} |
michael@0 | 1384 | } |
michael@0 | 1385 | } |
michael@0 | 1386 | power{ |
michael@0 | 1387 | horsepower{ |
michael@0 | 1388 | one{"{0} PS"} |
michael@0 | 1389 | other{"{0} PS"} |
michael@0 | 1390 | } |
michael@0 | 1391 | kilowatt{ |
michael@0 | 1392 | one{"{0} kW"} |
michael@0 | 1393 | other{"{0} kW"} |
michael@0 | 1394 | } |
michael@0 | 1395 | watt{ |
michael@0 | 1396 | one{"{0} W"} |
michael@0 | 1397 | other{"{0} W"} |
michael@0 | 1398 | } |
michael@0 | 1399 | } |
michael@0 | 1400 | pressure{ |
michael@0 | 1401 | hectopascal{ |
michael@0 | 1402 | one{"{0} hPa"} |
michael@0 | 1403 | other{"{0} hPa"} |
michael@0 | 1404 | } |
michael@0 | 1405 | inch-hg{ |
michael@0 | 1406 | one{"{0} inHg"} |
michael@0 | 1407 | other{"{0} inHg"} |
michael@0 | 1408 | } |
michael@0 | 1409 | millibar{ |
michael@0 | 1410 | one{"{0} mbar"} |
michael@0 | 1411 | other{"{0} mbar"} |
michael@0 | 1412 | } |
michael@0 | 1413 | } |
michael@0 | 1414 | speed{ |
michael@0 | 1415 | kilometer-per-hour{ |
michael@0 | 1416 | one{"{0} km/h"} |
michael@0 | 1417 | other{"{0} km/h"} |
michael@0 | 1418 | } |
michael@0 | 1419 | meter-per-second{ |
michael@0 | 1420 | one{"{0} m/s"} |
michael@0 | 1421 | other{"{0} m/s"} |
michael@0 | 1422 | } |
michael@0 | 1423 | mile-per-hour{ |
michael@0 | 1424 | one{"{0} mi/h"} |
michael@0 | 1425 | other{"{0} mi/h"} |
michael@0 | 1426 | } |
michael@0 | 1427 | } |
michael@0 | 1428 | temperature{ |
michael@0 | 1429 | celsius{ |
michael@0 | 1430 | one{"{0}°"} |
michael@0 | 1431 | other{"{0}°"} |
michael@0 | 1432 | } |
michael@0 | 1433 | fahrenheit{ |
michael@0 | 1434 | one{"{0}°F"} |
michael@0 | 1435 | other{"{0}°F"} |
michael@0 | 1436 | } |
michael@0 | 1437 | } |
michael@0 | 1438 | volume{ |
michael@0 | 1439 | cubic-kilometer{ |
michael@0 | 1440 | one{"{0} km³"} |
michael@0 | 1441 | other{"{0} km³"} |
michael@0 | 1442 | } |
michael@0 | 1443 | cubic-mile{ |
michael@0 | 1444 | one{"{0} mi³"} |
michael@0 | 1445 | other{"{0} mi³"} |
michael@0 | 1446 | } |
michael@0 | 1447 | liter{ |
michael@0 | 1448 | one{"{0} l"} |
michael@0 | 1449 | other{"{0} l"} |
michael@0 | 1450 | } |
michael@0 | 1451 | } |
michael@0 | 1452 | } |
michael@0 | 1453 | unitsShort{ |
michael@0 | 1454 | acceleration{ |
michael@0 | 1455 | g-force{ |
michael@0 | 1456 | one{"{0} G"} |
michael@0 | 1457 | other{"{0} G"} |
michael@0 | 1458 | } |
michael@0 | 1459 | } |
michael@0 | 1460 | angle{ |
michael@0 | 1461 | arc-minute{ |
michael@0 | 1462 | one{"{0}′"} |
michael@0 | 1463 | other{"{0}′"} |
michael@0 | 1464 | } |
michael@0 | 1465 | arc-second{ |
michael@0 | 1466 | one{"{0}″"} |
michael@0 | 1467 | other{"{0}″"} |
michael@0 | 1468 | } |
michael@0 | 1469 | degree{ |
michael@0 | 1470 | one{"{0}°"} |
michael@0 | 1471 | other{"{0}°"} |
michael@0 | 1472 | } |
michael@0 | 1473 | } |
michael@0 | 1474 | area{ |
michael@0 | 1475 | acre{ |
michael@0 | 1476 | one{"{0} ac"} |
michael@0 | 1477 | other{"{0} ac"} |
michael@0 | 1478 | } |
michael@0 | 1479 | hectare{ |
michael@0 | 1480 | one{"{0} ha"} |
michael@0 | 1481 | other{"{0} ha"} |
michael@0 | 1482 | } |
michael@0 | 1483 | square-foot{ |
michael@0 | 1484 | one{"{0} ft²"} |
michael@0 | 1485 | other{"{0} ft²"} |
michael@0 | 1486 | } |
michael@0 | 1487 | square-kilometer{ |
michael@0 | 1488 | one{"{0} km²"} |
michael@0 | 1489 | other{"{0} km²"} |
michael@0 | 1490 | } |
michael@0 | 1491 | square-meter{ |
michael@0 | 1492 | one{"{0} m²"} |
michael@0 | 1493 | other{"{0} m²"} |
michael@0 | 1494 | } |
michael@0 | 1495 | square-mile{ |
michael@0 | 1496 | one{"{0} mi²"} |
michael@0 | 1497 | other{"{0} mi²"} |
michael@0 | 1498 | } |
michael@0 | 1499 | } |
michael@0 | 1500 | compound{ |
michael@0 | 1501 | per{"{0}/{1}"} |
michael@0 | 1502 | } |
michael@0 | 1503 | duration{ |
michael@0 | 1504 | day{ |
michael@0 | 1505 | one{"{0} T"} |
michael@0 | 1506 | other{"{0} T"} |
michael@0 | 1507 | } |
michael@0 | 1508 | hour{ |
michael@0 | 1509 | one{"{0} Std."} |
michael@0 | 1510 | other{"{0} Std."} |
michael@0 | 1511 | } |
michael@0 | 1512 | millisecond{ |
michael@0 | 1513 | one{"{0} ms"} |
michael@0 | 1514 | other{"{0} ms"} |
michael@0 | 1515 | } |
michael@0 | 1516 | minute{ |
michael@0 | 1517 | one{"{0} Min."} |
michael@0 | 1518 | other{"{0} Min."} |
michael@0 | 1519 | } |
michael@0 | 1520 | month{ |
michael@0 | 1521 | one{"{0} Mon"} |
michael@0 | 1522 | other{"{0} Mon"} |
michael@0 | 1523 | } |
michael@0 | 1524 | second{ |
michael@0 | 1525 | one{"{0} Sek."} |
michael@0 | 1526 | other{"{0} Sek."} |
michael@0 | 1527 | } |
michael@0 | 1528 | week{ |
michael@0 | 1529 | one{"{0} W"} |
michael@0 | 1530 | other{"{0} W"} |
michael@0 | 1531 | } |
michael@0 | 1532 | year{ |
michael@0 | 1533 | one{"{0} J"} |
michael@0 | 1534 | other{"{0} J"} |
michael@0 | 1535 | } |
michael@0 | 1536 | } |
michael@0 | 1537 | length{ |
michael@0 | 1538 | centimeter{ |
michael@0 | 1539 | one{"{0} cm"} |
michael@0 | 1540 | other{"{0} cm"} |
michael@0 | 1541 | } |
michael@0 | 1542 | foot{ |
michael@0 | 1543 | one{"{0} ft"} |
michael@0 | 1544 | other{"{0} ft"} |
michael@0 | 1545 | } |
michael@0 | 1546 | inch{ |
michael@0 | 1547 | one{"{0} in"} |
michael@0 | 1548 | other{"{0} in"} |
michael@0 | 1549 | } |
michael@0 | 1550 | kilometer{ |
michael@0 | 1551 | one{"{0} km"} |
michael@0 | 1552 | other{"{0} km"} |
michael@0 | 1553 | } |
michael@0 | 1554 | light-year{ |
michael@0 | 1555 | one{"{0} ly"} |
michael@0 | 1556 | other{"{0} ly"} |
michael@0 | 1557 | } |
michael@0 | 1558 | meter{ |
michael@0 | 1559 | one{"{0} m"} |
michael@0 | 1560 | other{"{0} m"} |
michael@0 | 1561 | } |
michael@0 | 1562 | mile{ |
michael@0 | 1563 | one{"{0} mi"} |
michael@0 | 1564 | other{"{0} mi"} |
michael@0 | 1565 | } |
michael@0 | 1566 | millimeter{ |
michael@0 | 1567 | one{"{0} mm"} |
michael@0 | 1568 | other{"{0} mm"} |
michael@0 | 1569 | } |
michael@0 | 1570 | picometer{ |
michael@0 | 1571 | one{"{0} pm"} |
michael@0 | 1572 | other{"{0} pm"} |
michael@0 | 1573 | } |
michael@0 | 1574 | yard{ |
michael@0 | 1575 | one{"{0} yd"} |
michael@0 | 1576 | other{"{0} yd"} |
michael@0 | 1577 | } |
michael@0 | 1578 | } |
michael@0 | 1579 | mass{ |
michael@0 | 1580 | gram{ |
michael@0 | 1581 | one{"{0} g"} |
michael@0 | 1582 | other{"{0} g"} |
michael@0 | 1583 | } |
michael@0 | 1584 | kilogram{ |
michael@0 | 1585 | one{"{0} kg"} |
michael@0 | 1586 | other{"{0} kg"} |
michael@0 | 1587 | } |
michael@0 | 1588 | ounce{ |
michael@0 | 1589 | one{"{0} oz"} |
michael@0 | 1590 | other{"{0} oz"} |
michael@0 | 1591 | } |
michael@0 | 1592 | pound{ |
michael@0 | 1593 | one{"{0} lb"} |
michael@0 | 1594 | other{"{0} lb"} |
michael@0 | 1595 | } |
michael@0 | 1596 | } |
michael@0 | 1597 | power{ |
michael@0 | 1598 | horsepower{ |
michael@0 | 1599 | one{"{0} PS"} |
michael@0 | 1600 | other{"{0} PS"} |
michael@0 | 1601 | } |
michael@0 | 1602 | kilowatt{ |
michael@0 | 1603 | one{"{0} kW"} |
michael@0 | 1604 | other{"{0} kW"} |
michael@0 | 1605 | } |
michael@0 | 1606 | watt{ |
michael@0 | 1607 | one{"{0} W"} |
michael@0 | 1608 | other{"{0} W"} |
michael@0 | 1609 | } |
michael@0 | 1610 | } |
michael@0 | 1611 | pressure{ |
michael@0 | 1612 | hectopascal{ |
michael@0 | 1613 | one{"{0} hPa"} |
michael@0 | 1614 | other{"{0} hPa"} |
michael@0 | 1615 | } |
michael@0 | 1616 | inch-hg{ |
michael@0 | 1617 | one{"{0} inHg"} |
michael@0 | 1618 | other{"{0} inHg"} |
michael@0 | 1619 | } |
michael@0 | 1620 | millibar{ |
michael@0 | 1621 | one{"{0} mbar"} |
michael@0 | 1622 | other{"{0} mbar"} |
michael@0 | 1623 | } |
michael@0 | 1624 | } |
michael@0 | 1625 | speed{ |
michael@0 | 1626 | kilometer-per-hour{ |
michael@0 | 1627 | one{"{0} km/h"} |
michael@0 | 1628 | other{"{0} km/h"} |
michael@0 | 1629 | } |
michael@0 | 1630 | meter-per-second{ |
michael@0 | 1631 | one{"{0} m/s"} |
michael@0 | 1632 | other{"{0} m/s"} |
michael@0 | 1633 | } |
michael@0 | 1634 | mile-per-hour{ |
michael@0 | 1635 | one{"{0} mi/h"} |
michael@0 | 1636 | other{"{0} mi/h"} |
michael@0 | 1637 | } |
michael@0 | 1638 | } |
michael@0 | 1639 | temperature{ |
michael@0 | 1640 | celsius{ |
michael@0 | 1641 | one{"{0}°C"} |
michael@0 | 1642 | other{"{0}°C"} |
michael@0 | 1643 | } |
michael@0 | 1644 | fahrenheit{ |
michael@0 | 1645 | one{"{0}°F"} |
michael@0 | 1646 | other{"{0}°F"} |
michael@0 | 1647 | } |
michael@0 | 1648 | } |
michael@0 | 1649 | volume{ |
michael@0 | 1650 | cubic-kilometer{ |
michael@0 | 1651 | one{"{0} km³"} |
michael@0 | 1652 | other{"{0} km³"} |
michael@0 | 1653 | } |
michael@0 | 1654 | cubic-mile{ |
michael@0 | 1655 | one{"{0} mi³"} |
michael@0 | 1656 | other{"{0} mi³"} |
michael@0 | 1657 | } |
michael@0 | 1658 | liter{ |
michael@0 | 1659 | one{"{0} l"} |
michael@0 | 1660 | other{"{0} l"} |
michael@0 | 1661 | } |
michael@0 | 1662 | } |
michael@0 | 1663 | } |
michael@0 | 1664 | } |