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/es_MX.xml |
michael@0 | 7 | // * |
michael@0 | 8 | // *************************************************************************** |
michael@0 | 9 | es_MX{ |
michael@0 | 10 | %%Parent{"es_419"} |
michael@0 | 11 | Ellipsis{ |
michael@0 | 12 | final{"{0}…"} |
michael@0 | 13 | initial{"… {0}"} |
michael@0 | 14 | medial{"{0}… {1}"} |
michael@0 | 15 | word-final{"{0}…"} |
michael@0 | 16 | word-initial{"… {0}"} |
michael@0 | 17 | word-medial{"{0}… {1}"} |
michael@0 | 18 | } |
michael@0 | 19 | MoreInformation{"[...]"} |
michael@0 | 20 | NumberElements{ |
michael@0 | 21 | latn{ |
michael@0 | 22 | miscPatterns{ |
michael@0 | 23 | atLeast{"Más de {0}"} |
michael@0 | 24 | range{"{0}-{1}"} |
michael@0 | 25 | } |
michael@0 | 26 | patterns{ |
michael@0 | 27 | currencyFormat{"¤#,##0.00"} |
michael@0 | 28 | decimalFormat{"#,##0.###"} |
michael@0 | 29 | percentFormat{"#,##0%"} |
michael@0 | 30 | scientificFormat{"#E0"} |
michael@0 | 31 | } |
michael@0 | 32 | patternsLong{ |
michael@0 | 33 | decimalFormat{ |
michael@0 | 34 | 1000{ |
michael@0 | 35 | one{"0 mil"} |
michael@0 | 36 | other{"0 mil"} |
michael@0 | 37 | } |
michael@0 | 38 | 10000{ |
michael@0 | 39 | one{"00 mil"} |
michael@0 | 40 | other{"00 mil"} |
michael@0 | 41 | } |
michael@0 | 42 | 100000{ |
michael@0 | 43 | one{"000 mil"} |
michael@0 | 44 | other{"000 mil"} |
michael@0 | 45 | } |
michael@0 | 46 | 1000000{ |
michael@0 | 47 | one{"0 millón"} |
michael@0 | 48 | other{"0 millones"} |
michael@0 | 49 | } |
michael@0 | 50 | 10000000{ |
michael@0 | 51 | one{"00 millones"} |
michael@0 | 52 | other{"00 millones"} |
michael@0 | 53 | } |
michael@0 | 54 | 100000000{ |
michael@0 | 55 | one{"000 millones"} |
michael@0 | 56 | other{"000 millones"} |
michael@0 | 57 | } |
michael@0 | 58 | 1000000000{ |
michael@0 | 59 | one{"0 mil millones"} |
michael@0 | 60 | other{"0 mil millones"} |
michael@0 | 61 | } |
michael@0 | 62 | 10000000000{ |
michael@0 | 63 | one{"00 mil millones"} |
michael@0 | 64 | other{"00 mil millones"} |
michael@0 | 65 | } |
michael@0 | 66 | 100000000000{ |
michael@0 | 67 | one{"000 mil millones"} |
michael@0 | 68 | other{"000 mil millones"} |
michael@0 | 69 | } |
michael@0 | 70 | 1000000000000{ |
michael@0 | 71 | one{"0 billón"} |
michael@0 | 72 | other{"0 billones"} |
michael@0 | 73 | } |
michael@0 | 74 | 10000000000000{ |
michael@0 | 75 | one{"00 billones"} |
michael@0 | 76 | other{"00 billones"} |
michael@0 | 77 | } |
michael@0 | 78 | 100000000000000{ |
michael@0 | 79 | one{"000 billones"} |
michael@0 | 80 | other{"000 billones"} |
michael@0 | 81 | } |
michael@0 | 82 | } |
michael@0 | 83 | } |
michael@0 | 84 | patternsShort{ |
michael@0 | 85 | decimalFormat{ |
michael@0 | 86 | 10000{ |
michael@0 | 87 | one{"00k"} |
michael@0 | 88 | other{"00k"} |
michael@0 | 89 | } |
michael@0 | 90 | 100000{ |
michael@0 | 91 | one{"000k"} |
michael@0 | 92 | other{"000k"} |
michael@0 | 93 | } |
michael@0 | 94 | 1000000{ |
michael@0 | 95 | one{"0 M"} |
michael@0 | 96 | other{"0 M"} |
michael@0 | 97 | } |
michael@0 | 98 | 10000000{ |
michael@0 | 99 | one{"00 M"} |
michael@0 | 100 | other{"00 M"} |
michael@0 | 101 | } |
michael@0 | 102 | 100000000{ |
michael@0 | 103 | one{"000 M"} |
michael@0 | 104 | other{"000 M"} |
michael@0 | 105 | } |
michael@0 | 106 | 1000000000{ |
michael@0 | 107 | one{"0k M"} |
michael@0 | 108 | other{"0k M"} |
michael@0 | 109 | } |
michael@0 | 110 | 10000000000{ |
michael@0 | 111 | one{"00k M"} |
michael@0 | 112 | other{"00k M"} |
michael@0 | 113 | } |
michael@0 | 114 | 100000000000{ |
michael@0 | 115 | one{"000k M"} |
michael@0 | 116 | other{"000k M"} |
michael@0 | 117 | } |
michael@0 | 118 | 1000000000000{ |
michael@0 | 119 | one{"0 B"} |
michael@0 | 120 | other{"0 B"} |
michael@0 | 121 | } |
michael@0 | 122 | 10000000000000{ |
michael@0 | 123 | one{"00 B"} |
michael@0 | 124 | other{"00 B"} |
michael@0 | 125 | } |
michael@0 | 126 | 100000000000000{ |
michael@0 | 127 | one{"000 B"} |
michael@0 | 128 | other{"000 B"} |
michael@0 | 129 | } |
michael@0 | 130 | } |
michael@0 | 131 | } |
michael@0 | 132 | symbols{ |
michael@0 | 133 | decimal{"."} |
michael@0 | 134 | exponential{"E"} |
michael@0 | 135 | group{","} |
michael@0 | 136 | infinity{"∞"} |
michael@0 | 137 | minusSign{"-"} |
michael@0 | 138 | nan{"NaN"} |
michael@0 | 139 | perMille{"‰"} |
michael@0 | 140 | percentSign{"%"} |
michael@0 | 141 | plusSign{"+"} |
michael@0 | 142 | superscriptingExponent{"×"} |
michael@0 | 143 | } |
michael@0 | 144 | } |
michael@0 | 145 | } |
michael@0 | 146 | Version{"2.0.92.87"} |
michael@0 | 147 | calendar{ |
michael@0 | 148 | generic{ |
michael@0 | 149 | DateTimePatterns{ |
michael@0 | 150 | "HH:mm:ss zzzz", |
michael@0 | 151 | "HH:mm:ss z", |
michael@0 | 152 | "HH:mm:ss", |
michael@0 | 153 | "HH:mm", |
michael@0 | 154 | "EEEE, d 'de' MMMM 'de' y G", |
michael@0 | 155 | "d 'de' MMMM 'de' y G", |
michael@0 | 156 | "d MMM, y G", |
michael@0 | 157 | "dd/MM/yy GGGGG", |
michael@0 | 158 | "{1} {0}", |
michael@0 | 159 | "{1} {0}", |
michael@0 | 160 | "{1}, {0}", |
michael@0 | 161 | "{1} {0}", |
michael@0 | 162 | "{1} {0}", |
michael@0 | 163 | } |
michael@0 | 164 | availableFormats{ |
michael@0 | 165 | Ed{"E d"} |
michael@0 | 166 | Gy{"y G"} |
michael@0 | 167 | GyMMM{"MMM y G"} |
michael@0 | 168 | GyMMMEd{"E, d 'de' MMMM 'de' y G"} |
michael@0 | 169 | GyMMMd{"d MMM y G"} |
michael@0 | 170 | M{"L"} |
michael@0 | 171 | MEd{"E, d/M"} |
michael@0 | 172 | MMM{"LLL"} |
michael@0 | 173 | MMMEd{"E d MMM"} |
michael@0 | 174 | MMMMd{"d 'de' MMM"} |
michael@0 | 175 | MMMd{"d MMM"} |
michael@0 | 176 | Md{"d/M"} |
michael@0 | 177 | d{"d"} |
michael@0 | 178 | y{"y G"} |
michael@0 | 179 | yMEd{"E d/M/y G"} |
michael@0 | 180 | yyyy{"y G"} |
michael@0 | 181 | yyyyM{"M/y GGGGG"} |
michael@0 | 182 | yyyyMEd{"E, d/M/y GGGGG"} |
michael@0 | 183 | yyyyMMM{"MMM y G"} |
michael@0 | 184 | yyyyMMMEd{"E, d 'de' MMMM 'de' y G"} |
michael@0 | 185 | yyyyMMMM{"MMMM 'de' y G"} |
michael@0 | 186 | yyyyMMMd{"d MMM y G"} |
michael@0 | 187 | yyyyMd{"d/M/y GGGGG"} |
michael@0 | 188 | yyyyQQQ{"QQQ y G"} |
michael@0 | 189 | yyyyQQQQ{"QQQQ 'de' y G"} |
michael@0 | 190 | } |
michael@0 | 191 | intervalFormats{ |
michael@0 | 192 | M{ |
michael@0 | 193 | M{"M–M"} |
michael@0 | 194 | } |
michael@0 | 195 | MEd{ |
michael@0 | 196 | M{"E, d/M–E, d/M"} |
michael@0 | 197 | d{"E, d/M–E, d/M"} |
michael@0 | 198 | } |
michael@0 | 199 | MMM{ |
michael@0 | 200 | M{"MMM–MMM"} |
michael@0 | 201 | } |
michael@0 | 202 | MMMEd{ |
michael@0 | 203 | M{"E, d 'de' MMM–E, d 'de' MMM"} |
michael@0 | 204 | d{"E, d 'de' MMM–E, d 'de' MMM"} |
michael@0 | 205 | } |
michael@0 | 206 | MMMd{ |
michael@0 | 207 | M{"d 'de' MMM–d 'de' MMM"} |
michael@0 | 208 | d{"d–d 'de' MMM"} |
michael@0 | 209 | } |
michael@0 | 210 | Md{ |
michael@0 | 211 | M{"d/M – d/M"} |
michael@0 | 212 | d{"d/M – d/M"} |
michael@0 | 213 | } |
michael@0 | 214 | d{ |
michael@0 | 215 | d{"d–d"} |
michael@0 | 216 | } |
michael@0 | 217 | fallback{"{0} – {1}"} |
michael@0 | 218 | y{ |
michael@0 | 219 | y{"y–y G"} |
michael@0 | 220 | } |
michael@0 | 221 | yM{ |
michael@0 | 222 | M{"M/y – M/y G"} |
michael@0 | 223 | y{"M/y – M/y G"} |
michael@0 | 224 | } |
michael@0 | 225 | yMEd{ |
michael@0 | 226 | M{"E, d/M/y–E, d/M/y G"} |
michael@0 | 227 | d{"E, d/M/y–E, d/M/y G"} |
michael@0 | 228 | y{"E, d/M/y–E, d/M/y G"} |
michael@0 | 229 | } |
michael@0 | 230 | yMMM{ |
michael@0 | 231 | M{"MMM–MMM 'de' y G"} |
michael@0 | 232 | y{"MMM 'de' y–MMM 'de' y G"} |
michael@0 | 233 | } |
michael@0 | 234 | yMMMEd{ |
michael@0 | 235 | M{"E, d 'de' MMM–E, d 'de' MMM 'de' y G"} |
michael@0 | 236 | d{"E, d 'de' MMM–E, d 'de' MMM 'de' y G"} |
michael@0 | 237 | y{"E, d 'de' MMM 'de' y–E, d 'de' MMM 'de' y G"} |
michael@0 | 238 | } |
michael@0 | 239 | yMMMM{ |
michael@0 | 240 | M{"MMMM–MMMM 'de' y G"} |
michael@0 | 241 | y{"MMMM 'de' y–MMMM 'de' y G"} |
michael@0 | 242 | } |
michael@0 | 243 | yMMMd{ |
michael@0 | 244 | M{"d 'de' MMM–d 'de' MMM y G"} |
michael@0 | 245 | d{"d–d 'de' MMM 'de' y G"} |
michael@0 | 246 | y{"d 'de' MMM 'de' y–d 'de' MMM 'de' y G"} |
michael@0 | 247 | } |
michael@0 | 248 | yMd{ |
michael@0 | 249 | M{"d/M/y – d/M/y G"} |
michael@0 | 250 | d{"d/M/y – d/M/y G"} |
michael@0 | 251 | y{"d/M/y – d/M/y G"} |
michael@0 | 252 | } |
michael@0 | 253 | } |
michael@0 | 254 | } |
michael@0 | 255 | gregorian{ |
michael@0 | 256 | AmPmMarkers{ |
michael@0 | 257 | "a.m.", |
michael@0 | 258 | "p.m.", |
michael@0 | 259 | } |
michael@0 | 260 | DateTimePatterns{ |
michael@0 | 261 | "HH:mm:ss zzzz", |
michael@0 | 262 | "HH:mm:ss z", |
michael@0 | 263 | "HH:mm:ss", |
michael@0 | 264 | "HH:mm", |
michael@0 | 265 | "EEEE, d 'de' MMMM 'de' y", |
michael@0 | 266 | "d 'de' MMMM 'de' y", |
michael@0 | 267 | "dd/MM/y", |
michael@0 | 268 | "dd/MM/yy", |
michael@0 | 269 | "{1} {0}", |
michael@0 | 270 | "{1} {0}", |
michael@0 | 271 | "{1} {0}", |
michael@0 | 272 | "{1} {0}", |
michael@0 | 273 | "{1} {0}", |
michael@0 | 274 | } |
michael@0 | 275 | appendItems{ |
michael@0 | 276 | Timezone{"{0} {1}"} |
michael@0 | 277 | } |
michael@0 | 278 | availableFormats{ |
michael@0 | 279 | EHm{"E H:mm"} |
michael@0 | 280 | EHms{"E H:mm:ss"} |
michael@0 | 281 | Ed{"E d"} |
michael@0 | 282 | Ehm{"E h:mm a"} |
michael@0 | 283 | Ehms{"E h:mm:ss a"} |
michael@0 | 284 | Gy{"y G"} |
michael@0 | 285 | GyMMM{"MMM y G"} |
michael@0 | 286 | GyMMMEd{"E, d 'de' MMMM 'de' y G"} |
michael@0 | 287 | GyMMMd{"d MMM y G"} |
michael@0 | 288 | H{"HH"} |
michael@0 | 289 | Hm{"HH:mm"} |
michael@0 | 290 | Hms{"HH:mm:ss"} |
michael@0 | 291 | M{"L"} |
michael@0 | 292 | MEd{"E, d/M"} |
michael@0 | 293 | MMM{"LLL"} |
michael@0 | 294 | MMMEd{"E d 'de' MMM"} |
michael@0 | 295 | MMMMd{"d 'de' MMMM"} |
michael@0 | 296 | MMMd{"d 'de' MMM"} |
michael@0 | 297 | MMMdd{"dd-MMM"} |
michael@0 | 298 | MMd{"d/MM"} |
michael@0 | 299 | MMdd{"dd/MM"} |
michael@0 | 300 | Md{"d/M"} |
michael@0 | 301 | d{"d"} |
michael@0 | 302 | h{"hh a"} |
michael@0 | 303 | hm{"hh:mm a"} |
michael@0 | 304 | hms{"hh:mm:ss a"} |
michael@0 | 305 | ms{"mm:ss"} |
michael@0 | 306 | y{"y"} |
michael@0 | 307 | yM{"M/y"} |
michael@0 | 308 | yMEd{"E d/M/y"} |
michael@0 | 309 | yMM{"MM/y"} |
michael@0 | 310 | yMMM{"MMM 'de' y"} |
michael@0 | 311 | yMMMEd{"EEE, d 'de' MMMM 'de' y"} |
michael@0 | 312 | yMMMM{"MMMM 'de' y"} |
michael@0 | 313 | yMMMd{"d 'de' MMM 'de' y"} |
michael@0 | 314 | yMd{"d/M/y"} |
michael@0 | 315 | yQQQ{"QQQ y"} |
michael@0 | 316 | yQQQQ{"QQQQ 'de' y"} |
michael@0 | 317 | } |
michael@0 | 318 | dayNames{ |
michael@0 | 319 | format{ |
michael@0 | 320 | abbreviated{ |
michael@0 | 321 | "dom.", |
michael@0 | 322 | "lun.", |
michael@0 | 323 | "mar.", |
michael@0 | 324 | "miér.", |
michael@0 | 325 | "jue.", |
michael@0 | 326 | "vier.", |
michael@0 | 327 | "sáb", |
michael@0 | 328 | } |
michael@0 | 329 | narrow{ |
michael@0 | 330 | "D", |
michael@0 | 331 | "L", |
michael@0 | 332 | "M", |
michael@0 | 333 | "X", |
michael@0 | 334 | "J", |
michael@0 | 335 | "V", |
michael@0 | 336 | "S", |
michael@0 | 337 | } |
michael@0 | 338 | short{ |
michael@0 | 339 | "do.", |
michael@0 | 340 | "lu.", |
michael@0 | 341 | "ma.", |
michael@0 | 342 | "mi.", |
michael@0 | 343 | "ju.", |
michael@0 | 344 | "vi.", |
michael@0 | 345 | "sá.", |
michael@0 | 346 | } |
michael@0 | 347 | wide{ |
michael@0 | 348 | "domingo", |
michael@0 | 349 | "lunes", |
michael@0 | 350 | "martes", |
michael@0 | 351 | "miércoles", |
michael@0 | 352 | "jueves", |
michael@0 | 353 | "viernes", |
michael@0 | 354 | "sábado", |
michael@0 | 355 | } |
michael@0 | 356 | } |
michael@0 | 357 | stand-alone{ |
michael@0 | 358 | abbreviated{ |
michael@0 | 359 | "dom.", |
michael@0 | 360 | "lun", |
michael@0 | 361 | "mar.", |
michael@0 | 362 | "mié.", |
michael@0 | 363 | "jue.", |
michael@0 | 364 | "vie", |
michael@0 | 365 | "sáb.", |
michael@0 | 366 | } |
michael@0 | 367 | narrow{ |
michael@0 | 368 | "D", |
michael@0 | 369 | "L", |
michael@0 | 370 | "M", |
michael@0 | 371 | "X", |
michael@0 | 372 | "J", |
michael@0 | 373 | "V", |
michael@0 | 374 | "S", |
michael@0 | 375 | } |
michael@0 | 376 | short{ |
michael@0 | 377 | "do.", |
michael@0 | 378 | "lu.", |
michael@0 | 379 | "ma.", |
michael@0 | 380 | "mi.", |
michael@0 | 381 | "ju.", |
michael@0 | 382 | "vi.", |
michael@0 | 383 | "sá.", |
michael@0 | 384 | } |
michael@0 | 385 | wide{ |
michael@0 | 386 | "domingo", |
michael@0 | 387 | "lunes", |
michael@0 | 388 | "martes", |
michael@0 | 389 | "miércoles", |
michael@0 | 390 | "jueves", |
michael@0 | 391 | "viernes", |
michael@0 | 392 | "sábado", |
michael@0 | 393 | } |
michael@0 | 394 | } |
michael@0 | 395 | } |
michael@0 | 396 | eras{ |
michael@0 | 397 | abbreviated{ |
michael@0 | 398 | "a.C.", |
michael@0 | 399 | "d.C.", |
michael@0 | 400 | } |
michael@0 | 401 | } |
michael@0 | 402 | intervalFormats{ |
michael@0 | 403 | H{ |
michael@0 | 404 | H{"HH–HH"} |
michael@0 | 405 | } |
michael@0 | 406 | Hm{ |
michael@0 | 407 | H{"HH:mm – HH:mm"} |
michael@0 | 408 | m{"HH:mm – HH:mm"} |
michael@0 | 409 | } |
michael@0 | 410 | Hmv{ |
michael@0 | 411 | H{"HH:mm – HH:mm v"} |
michael@0 | 412 | m{"HH:mm – HH:mm v"} |
michael@0 | 413 | } |
michael@0 | 414 | Hv{ |
michael@0 | 415 | H{"HH–HH v"} |
michael@0 | 416 | } |
michael@0 | 417 | M{ |
michael@0 | 418 | M{"M–M"} |
michael@0 | 419 | } |
michael@0 | 420 | MEd{ |
michael@0 | 421 | M{"E d/M – E d/M"} |
michael@0 | 422 | d{"E d/M – E d/M"} |
michael@0 | 423 | } |
michael@0 | 424 | MMM{ |
michael@0 | 425 | M{"MMM–MMM"} |
michael@0 | 426 | } |
michael@0 | 427 | MMMEd{ |
michael@0 | 428 | M{"E d 'de' MMM – E d 'de' MMM"} |
michael@0 | 429 | d{"E d 'de' MMM – E d 'de' MMM"} |
michael@0 | 430 | } |
michael@0 | 431 | MMMd{ |
michael@0 | 432 | M{"d 'de' MMM – d 'de' MMM"} |
michael@0 | 433 | d{"d–d 'de' MMM"} |
michael@0 | 434 | } |
michael@0 | 435 | Md{ |
michael@0 | 436 | M{"d/M – d/M"} |
michael@0 | 437 | d{"d/M – d/M"} |
michael@0 | 438 | } |
michael@0 | 439 | d{ |
michael@0 | 440 | d{"d–d"} |
michael@0 | 441 | } |
michael@0 | 442 | fallback{"{0} – {1}"} |
michael@0 | 443 | h{ |
michael@0 | 444 | a{"h a – h a"} |
michael@0 | 445 | h{"h–h a"} |
michael@0 | 446 | } |
michael@0 | 447 | hm{ |
michael@0 | 448 | a{"h:mm a – h:mm a"} |
michael@0 | 449 | h{"h:mm – h:mm a"} |
michael@0 | 450 | m{"h:mm – h:mm a"} |
michael@0 | 451 | } |
michael@0 | 452 | hmv{ |
michael@0 | 453 | a{"h:mm a – h:mm a v"} |
michael@0 | 454 | h{"h:mm – h:mm a v"} |
michael@0 | 455 | m{"h:mm – h:mm a v"} |
michael@0 | 456 | } |
michael@0 | 457 | hv{ |
michael@0 | 458 | a{"h a – h a v"} |
michael@0 | 459 | h{"h–h a v"} |
michael@0 | 460 | } |
michael@0 | 461 | y{ |
michael@0 | 462 | y{"y–y"} |
michael@0 | 463 | } |
michael@0 | 464 | yM{ |
michael@0 | 465 | M{"M/y – M/y"} |
michael@0 | 466 | y{"M/y – M/y"} |
michael@0 | 467 | } |
michael@0 | 468 | yMEd{ |
michael@0 | 469 | M{"E d/M/y – E d/M/y"} |
michael@0 | 470 | d{"E d/M/y – E d/M/y"} |
michael@0 | 471 | y{"E d/M/y – E d/M/y"} |
michael@0 | 472 | } |
michael@0 | 473 | yMMM{ |
michael@0 | 474 | M{"MMM–MMM 'de' y"} |
michael@0 | 475 | y{"MMM 'de' y – MMM 'de' y"} |
michael@0 | 476 | } |
michael@0 | 477 | yMMMEd{ |
michael@0 | 478 | M{"E d 'de' MMM – E d 'de' MMM 'de' y"} |
michael@0 | 479 | d{"E d 'de' MMM – E d 'de' MMM 'de' y"} |
michael@0 | 480 | y{"E d 'de' MMM 'de' y – E d 'de' MMM 'de' y"} |
michael@0 | 481 | } |
michael@0 | 482 | yMMMM{ |
michael@0 | 483 | M{"MMMM–MMMM 'de' y"} |
michael@0 | 484 | y{"MMMM 'de' y – MMMM 'de' y"} |
michael@0 | 485 | } |
michael@0 | 486 | yMMMd{ |
michael@0 | 487 | M{"d 'de' MMM – d 'de' MMM y"} |
michael@0 | 488 | d{"d–d 'de' MMM 'de' y"} |
michael@0 | 489 | y{"d 'de' MMM 'de' y – d 'de' MMM 'de' y"} |
michael@0 | 490 | } |
michael@0 | 491 | yMd{ |
michael@0 | 492 | M{"d/M/y – d/M/y"} |
michael@0 | 493 | d{"d/M/y – d/M/y"} |
michael@0 | 494 | y{"d/M/y – d/M/y"} |
michael@0 | 495 | } |
michael@0 | 496 | } |
michael@0 | 497 | monthNames{ |
michael@0 | 498 | format{ |
michael@0 | 499 | abbreviated{ |
michael@0 | 500 | "ene.", |
michael@0 | 501 | "febr.", |
michael@0 | 502 | "mzo.", |
michael@0 | 503 | "abr.", |
michael@0 | 504 | "my.", |
michael@0 | 505 | "jun.", |
michael@0 | 506 | "jul.", |
michael@0 | 507 | "ag.", |
michael@0 | 508 | "set.", |
michael@0 | 509 | "oct.", |
michael@0 | 510 | "nov.", |
michael@0 | 511 | "dic.", |
michael@0 | 512 | } |
michael@0 | 513 | narrow{ |
michael@0 | 514 | "E", |
michael@0 | 515 | "F", |
michael@0 | 516 | "Ma", |
michael@0 | 517 | "A", |
michael@0 | 518 | "My", |
michael@0 | 519 | "Jn", |
michael@0 | 520 | "Jl", |
michael@0 | 521 | "Ag", |
michael@0 | 522 | "S", |
michael@0 | 523 | "O", |
michael@0 | 524 | "N", |
michael@0 | 525 | "D", |
michael@0 | 526 | } |
michael@0 | 527 | wide{ |
michael@0 | 528 | "enero", |
michael@0 | 529 | "febrero", |
michael@0 | 530 | "marzo", |
michael@0 | 531 | "abril", |
michael@0 | 532 | "mayo", |
michael@0 | 533 | "junio", |
michael@0 | 534 | "julio", |
michael@0 | 535 | "agosto", |
michael@0 | 536 | "septiembre", |
michael@0 | 537 | "octubre", |
michael@0 | 538 | "noviembre", |
michael@0 | 539 | "diciembre", |
michael@0 | 540 | } |
michael@0 | 541 | } |
michael@0 | 542 | stand-alone{ |
michael@0 | 543 | abbreviated{ |
michael@0 | 544 | "en.", |
michael@0 | 545 | "febr.", |
michael@0 | 546 | "mzo.", |
michael@0 | 547 | "abr.", |
michael@0 | 548 | "my.", |
michael@0 | 549 | "jun", |
michael@0 | 550 | "jul", |
michael@0 | 551 | "ag.", |
michael@0 | 552 | "set.", |
michael@0 | 553 | "oct.", |
michael@0 | 554 | "nov.", |
michael@0 | 555 | "dic.", |
michael@0 | 556 | } |
michael@0 | 557 | narrow{ |
michael@0 | 558 | "E", |
michael@0 | 559 | "F", |
michael@0 | 560 | "Ma", |
michael@0 | 561 | "A", |
michael@0 | 562 | "My", |
michael@0 | 563 | "Jn", |
michael@0 | 564 | "Jl", |
michael@0 | 565 | "Ag", |
michael@0 | 566 | "S", |
michael@0 | 567 | "O", |
michael@0 | 568 | "N", |
michael@0 | 569 | "D", |
michael@0 | 570 | } |
michael@0 | 571 | wide{ |
michael@0 | 572 | "enero", |
michael@0 | 573 | "febrero", |
michael@0 | 574 | "marzo", |
michael@0 | 575 | "abril", |
michael@0 | 576 | "mayo", |
michael@0 | 577 | "junio", |
michael@0 | 578 | "julio", |
michael@0 | 579 | "agosto", |
michael@0 | 580 | "septiembre", |
michael@0 | 581 | "octubre", |
michael@0 | 582 | "noviembre", |
michael@0 | 583 | "diciembre", |
michael@0 | 584 | } |
michael@0 | 585 | } |
michael@0 | 586 | } |
michael@0 | 587 | quarters{ |
michael@0 | 588 | format{ |
michael@0 | 589 | abbreviated{ |
michael@0 | 590 | "T1", |
michael@0 | 591 | "T2", |
michael@0 | 592 | "T3", |
michael@0 | 593 | "T4", |
michael@0 | 594 | } |
michael@0 | 595 | narrow{ |
michael@0 | 596 | "1", |
michael@0 | 597 | "2", |
michael@0 | 598 | "3", |
michael@0 | 599 | "4", |
michael@0 | 600 | } |
michael@0 | 601 | wide{ |
michael@0 | 602 | "1.er trimestre", |
michael@0 | 603 | "2.º trimestre", |
michael@0 | 604 | "3.er trimestre", |
michael@0 | 605 | "4.º trimestre", |
michael@0 | 606 | } |
michael@0 | 607 | } |
michael@0 | 608 | stand-alone{ |
michael@0 | 609 | abbreviated{ |
michael@0 | 610 | "T1", |
michael@0 | 611 | "T2", |
michael@0 | 612 | "T3", |
michael@0 | 613 | "T4", |
michael@0 | 614 | } |
michael@0 | 615 | narrow{ |
michael@0 | 616 | "1T", |
michael@0 | 617 | "2T", |
michael@0 | 618 | "3T", |
michael@0 | 619 | "4T", |
michael@0 | 620 | } |
michael@0 | 621 | wide{ |
michael@0 | 622 | "1.er trimestre", |
michael@0 | 623 | "2.º trimestre", |
michael@0 | 624 | "3.er trimestre", |
michael@0 | 625 | "4.º trimestre", |
michael@0 | 626 | } |
michael@0 | 627 | } |
michael@0 | 628 | } |
michael@0 | 629 | } |
michael@0 | 630 | } |
michael@0 | 631 | delimiters{ |
michael@0 | 632 | alternateQuotationEnd{"”"} |
michael@0 | 633 | alternateQuotationStart{"“"} |
michael@0 | 634 | quotationEnd{"»"} |
michael@0 | 635 | quotationStart{"«"} |
michael@0 | 636 | } |
michael@0 | 637 | durationUnits{ |
michael@0 | 638 | hm{"h:mm"} |
michael@0 | 639 | hms{"h:mm:ss"} |
michael@0 | 640 | ms{"m:ss"} |
michael@0 | 641 | } |
michael@0 | 642 | fields{ |
michael@0 | 643 | day{ |
michael@0 | 644 | dn{"Día"} |
michael@0 | 645 | relative{ |
michael@0 | 646 | "-1"{"ayer"} |
michael@0 | 647 | "-2"{"antes de ayer"} |
michael@0 | 648 | "0"{"hoy"} |
michael@0 | 649 | "1"{"mañana"} |
michael@0 | 650 | "2"{"pasado mañana"} |
michael@0 | 651 | } |
michael@0 | 652 | relativeTime{ |
michael@0 | 653 | future{ |
michael@0 | 654 | one{"En {0} día"} |
michael@0 | 655 | other{"En {0} días"} |
michael@0 | 656 | } |
michael@0 | 657 | } |
michael@0 | 658 | } |
michael@0 | 659 | dayperiod{ |
michael@0 | 660 | dn{"a.m./p.m."} |
michael@0 | 661 | } |
michael@0 | 662 | era{ |
michael@0 | 663 | dn{"era"} |
michael@0 | 664 | } |
michael@0 | 665 | fri{ |
michael@0 | 666 | relative{ |
michael@0 | 667 | "-1"{"el viernes pasado"} |
michael@0 | 668 | "0"{"este viernes"} |
michael@0 | 669 | "1"{"el viernes próximo"} |
michael@0 | 670 | } |
michael@0 | 671 | } |
michael@0 | 672 | hour{ |
michael@0 | 673 | dn{"Hora"} |
michael@0 | 674 | relativeTime{ |
michael@0 | 675 | future{ |
michael@0 | 676 | one{"En {0} hora"} |
michael@0 | 677 | other{"En {0} horas"} |
michael@0 | 678 | } |
michael@0 | 679 | } |
michael@0 | 680 | } |
michael@0 | 681 | minute{ |
michael@0 | 682 | dn{"Minuto"} |
michael@0 | 683 | relativeTime{ |
michael@0 | 684 | future{ |
michael@0 | 685 | one{"En {0} minuto"} |
michael@0 | 686 | other{"En {0} minutos"} |
michael@0 | 687 | } |
michael@0 | 688 | } |
michael@0 | 689 | } |
michael@0 | 690 | mon{ |
michael@0 | 691 | relative{ |
michael@0 | 692 | "-1"{"el lunes pasado"} |
michael@0 | 693 | "0"{"este lunes"} |
michael@0 | 694 | "1"{"el lunes próximo"} |
michael@0 | 695 | } |
michael@0 | 696 | } |
michael@0 | 697 | month{ |
michael@0 | 698 | dn{"Mes"} |
michael@0 | 699 | relative{ |
michael@0 | 700 | "-1"{"el mes pasado"} |
michael@0 | 701 | "0"{"este mes"} |
michael@0 | 702 | "1"{"el mes próximo"} |
michael@0 | 703 | } |
michael@0 | 704 | } |
michael@0 | 705 | sat{ |
michael@0 | 706 | relative{ |
michael@0 | 707 | "-1"{"el sábado pasado"} |
michael@0 | 708 | "0"{"este sábado"} |
michael@0 | 709 | "1"{"el sábado próximo"} |
michael@0 | 710 | } |
michael@0 | 711 | } |
michael@0 | 712 | second{ |
michael@0 | 713 | dn{"Segundo"} |
michael@0 | 714 | relativeTime{ |
michael@0 | 715 | future{ |
michael@0 | 716 | one{"En {0} segundo"} |
michael@0 | 717 | other{"En {0} segundos"} |
michael@0 | 718 | } |
michael@0 | 719 | } |
michael@0 | 720 | } |
michael@0 | 721 | sun{ |
michael@0 | 722 | relative{ |
michael@0 | 723 | "-1"{"el domingo pasado"} |
michael@0 | 724 | "0"{"este domingo"} |
michael@0 | 725 | "1"{"el domingo próximo"} |
michael@0 | 726 | } |
michael@0 | 727 | } |
michael@0 | 728 | thu{ |
michael@0 | 729 | relative{ |
michael@0 | 730 | "-1"{"el jueves pasado"} |
michael@0 | 731 | "0"{"este jueves"} |
michael@0 | 732 | "1"{"el jueves próximo"} |
michael@0 | 733 | } |
michael@0 | 734 | } |
michael@0 | 735 | tue{ |
michael@0 | 736 | relative{ |
michael@0 | 737 | "-1"{"el martes pasado"} |
michael@0 | 738 | "0"{"este martes"} |
michael@0 | 739 | "1"{"el martes próximo"} |
michael@0 | 740 | } |
michael@0 | 741 | } |
michael@0 | 742 | wed{ |
michael@0 | 743 | relative{ |
michael@0 | 744 | "-1"{"el miércoles pasado"} |
michael@0 | 745 | "0"{"este miércoles"} |
michael@0 | 746 | "1"{"el miércoles próximo"} |
michael@0 | 747 | } |
michael@0 | 748 | } |
michael@0 | 749 | week{ |
michael@0 | 750 | dn{"Semana"} |
michael@0 | 751 | relative{ |
michael@0 | 752 | "-1"{"la semana pasada"} |
michael@0 | 753 | "0"{"esta semana"} |
michael@0 | 754 | "1"{"la semana próxima"} |
michael@0 | 755 | } |
michael@0 | 756 | relativeTime{ |
michael@0 | 757 | future{ |
michael@0 | 758 | one{"En {0} semana"} |
michael@0 | 759 | other{"En {0} semanas"} |
michael@0 | 760 | } |
michael@0 | 761 | } |
michael@0 | 762 | } |
michael@0 | 763 | weekday{ |
michael@0 | 764 | dn{"Día de la semana"} |
michael@0 | 765 | } |
michael@0 | 766 | year{ |
michael@0 | 767 | dn{"Año"} |
michael@0 | 768 | relative{ |
michael@0 | 769 | "-1"{"el año pasado"} |
michael@0 | 770 | "0"{"este año"} |
michael@0 | 771 | "1"{"el año próximo"} |
michael@0 | 772 | } |
michael@0 | 773 | relativeTime{ |
michael@0 | 774 | future{ |
michael@0 | 775 | one{"En {0} año"} |
michael@0 | 776 | other{"En {0} años"} |
michael@0 | 777 | } |
michael@0 | 778 | } |
michael@0 | 779 | } |
michael@0 | 780 | zone{ |
michael@0 | 781 | dn{"Zona horaria"} |
michael@0 | 782 | } |
michael@0 | 783 | } |
michael@0 | 784 | listPattern{ |
michael@0 | 785 | standard{ |
michael@0 | 786 | 2{"{0} y {1}"} |
michael@0 | 787 | end{"{0} y {1}"} |
michael@0 | 788 | middle{"{0}, {1}"} |
michael@0 | 789 | start{"{0}, {1}"} |
michael@0 | 790 | } |
michael@0 | 791 | unit{ |
michael@0 | 792 | 2{"{0} y {1}"} |
michael@0 | 793 | end{"{0} y {1}"} |
michael@0 | 794 | middle{"{0}, {1}"} |
michael@0 | 795 | start{"{0}, {1}"} |
michael@0 | 796 | } |
michael@0 | 797 | unit-narrow{ |
michael@0 | 798 | 2{"{0} y {1}"} |
michael@0 | 799 | end{"{0}, {1}"} |
michael@0 | 800 | middle{"{0}, {1}"} |
michael@0 | 801 | start{"{0}, {1}"} |
michael@0 | 802 | } |
michael@0 | 803 | unit-short{ |
michael@0 | 804 | 2{"{0} y {1}"} |
michael@0 | 805 | end{"{0}, {1}"} |
michael@0 | 806 | middle{"{0}, {1}"} |
michael@0 | 807 | start{"{0}, {1}"} |
michael@0 | 808 | } |
michael@0 | 809 | } |
michael@0 | 810 | measurementSystemNames{ |
michael@0 | 811 | UK{"Reino Unido"} |
michael@0 | 812 | US{"estadounidense"} |
michael@0 | 813 | metric{"métrico"} |
michael@0 | 814 | } |
michael@0 | 815 | units{ |
michael@0 | 816 | acceleration{ |
michael@0 | 817 | g-force{ |
michael@0 | 818 | one{"{0} unidad de fuerza gravitacional"} |
michael@0 | 819 | other{"{0} unidades de fuerza gravitacional"} |
michael@0 | 820 | } |
michael@0 | 821 | } |
michael@0 | 822 | angle{ |
michael@0 | 823 | arc-minute{ |
michael@0 | 824 | one{"{0} minuto"} |
michael@0 | 825 | other{"{0} minutos"} |
michael@0 | 826 | } |
michael@0 | 827 | arc-second{ |
michael@0 | 828 | one{"{0} segundo"} |
michael@0 | 829 | other{"{0} segundos"} |
michael@0 | 830 | } |
michael@0 | 831 | degree{ |
michael@0 | 832 | one{"{0} grado"} |
michael@0 | 833 | other{"{0} grados"} |
michael@0 | 834 | } |
michael@0 | 835 | } |
michael@0 | 836 | area{ |
michael@0 | 837 | acre{ |
michael@0 | 838 | one{"{0} acre"} |
michael@0 | 839 | other{"{0} acres"} |
michael@0 | 840 | } |
michael@0 | 841 | hectare{ |
michael@0 | 842 | one{"{0} hectárea"} |
michael@0 | 843 | other{"{0} hectáreas"} |
michael@0 | 844 | } |
michael@0 | 845 | square-foot{ |
michael@0 | 846 | one{"{0} pie cuadrado"} |
michael@0 | 847 | other{"{0} pies cuadrados"} |
michael@0 | 848 | } |
michael@0 | 849 | square-kilometer{ |
michael@0 | 850 | one{"{0} kilómetro cuadrado"} |
michael@0 | 851 | other{"{0} kilómetros cuadrados"} |
michael@0 | 852 | } |
michael@0 | 853 | square-meter{ |
michael@0 | 854 | one{"{0} metro cuadrado"} |
michael@0 | 855 | other{"{0} metros cuadrados"} |
michael@0 | 856 | } |
michael@0 | 857 | square-mile{ |
michael@0 | 858 | one{"{0} milla cuadrada"} |
michael@0 | 859 | other{"{0} millas cuadradas"} |
michael@0 | 860 | } |
michael@0 | 861 | } |
michael@0 | 862 | compound{ |
michael@0 | 863 | per{"{0} por {1}"} |
michael@0 | 864 | } |
michael@0 | 865 | duration{ |
michael@0 | 866 | day{ |
michael@0 | 867 | one{"{0} día"} |
michael@0 | 868 | other{"{0} días"} |
michael@0 | 869 | } |
michael@0 | 870 | hour{ |
michael@0 | 871 | one{"{0} hora"} |
michael@0 | 872 | other{"{0} horas"} |
michael@0 | 873 | } |
michael@0 | 874 | millisecond{ |
michael@0 | 875 | one{"{0} milisegundo"} |
michael@0 | 876 | other{"{0} milisegundos"} |
michael@0 | 877 | } |
michael@0 | 878 | minute{ |
michael@0 | 879 | one{"{0} minuto"} |
michael@0 | 880 | other{"{0} minutos"} |
michael@0 | 881 | } |
michael@0 | 882 | month{ |
michael@0 | 883 | one{"{0} mes"} |
michael@0 | 884 | other{"{0} meses"} |
michael@0 | 885 | } |
michael@0 | 886 | second{ |
michael@0 | 887 | one{"{0} segundo"} |
michael@0 | 888 | other{"{0} segundos"} |
michael@0 | 889 | } |
michael@0 | 890 | week{ |
michael@0 | 891 | one{"{0} semana"} |
michael@0 | 892 | other{"{0} semanas"} |
michael@0 | 893 | } |
michael@0 | 894 | year{ |
michael@0 | 895 | one{"{0} año"} |
michael@0 | 896 | other{"{0} años"} |
michael@0 | 897 | } |
michael@0 | 898 | } |
michael@0 | 899 | length{ |
michael@0 | 900 | centimeter{ |
michael@0 | 901 | one{"{0} centímetro"} |
michael@0 | 902 | other{"{0} centímetros"} |
michael@0 | 903 | } |
michael@0 | 904 | foot{ |
michael@0 | 905 | one{"{0} pie"} |
michael@0 | 906 | other{"{0} pies"} |
michael@0 | 907 | } |
michael@0 | 908 | inch{ |
michael@0 | 909 | one{"{0} pulgada"} |
michael@0 | 910 | other{"{0} pulgadas"} |
michael@0 | 911 | } |
michael@0 | 912 | kilometer{ |
michael@0 | 913 | one{"{0} kilómetro"} |
michael@0 | 914 | other{"{0} kilómetros"} |
michael@0 | 915 | } |
michael@0 | 916 | light-year{ |
michael@0 | 917 | one{"{0} año luz"} |
michael@0 | 918 | other{"{0} años luz"} |
michael@0 | 919 | } |
michael@0 | 920 | meter{ |
michael@0 | 921 | one{"{0} metro"} |
michael@0 | 922 | other{"{0} metros"} |
michael@0 | 923 | } |
michael@0 | 924 | mile{ |
michael@0 | 925 | one{"{0} milla"} |
michael@0 | 926 | other{"{0} millas"} |
michael@0 | 927 | } |
michael@0 | 928 | millimeter{ |
michael@0 | 929 | one{"{0} milímetro"} |
michael@0 | 930 | other{"{0} milímetros"} |
michael@0 | 931 | } |
michael@0 | 932 | picometer{ |
michael@0 | 933 | one{"{0} picómetro"} |
michael@0 | 934 | other{"{0} picómetros"} |
michael@0 | 935 | } |
michael@0 | 936 | yard{ |
michael@0 | 937 | one{"{0} yarda"} |
michael@0 | 938 | other{"{0} yardas"} |
michael@0 | 939 | } |
michael@0 | 940 | } |
michael@0 | 941 | mass{ |
michael@0 | 942 | gram{ |
michael@0 | 943 | one{"{0} gramo"} |
michael@0 | 944 | other{"{0} gramos"} |
michael@0 | 945 | } |
michael@0 | 946 | kilogram{ |
michael@0 | 947 | one{"{0} kilogramo"} |
michael@0 | 948 | other{"{0} kilogramos"} |
michael@0 | 949 | } |
michael@0 | 950 | ounce{ |
michael@0 | 951 | one{"{0} onza"} |
michael@0 | 952 | other{"{0} onzas"} |
michael@0 | 953 | } |
michael@0 | 954 | pound{ |
michael@0 | 955 | one{"{0} libra"} |
michael@0 | 956 | other{"{0} libras"} |
michael@0 | 957 | } |
michael@0 | 958 | } |
michael@0 | 959 | power{ |
michael@0 | 960 | horsepower{ |
michael@0 | 961 | one{"{0} caballo de vapor"} |
michael@0 | 962 | other{"{0} caballos de vapor"} |
michael@0 | 963 | } |
michael@0 | 964 | kilowatt{ |
michael@0 | 965 | one{"{0} kilovatio"} |
michael@0 | 966 | other{"{0} kilovatios"} |
michael@0 | 967 | } |
michael@0 | 968 | watt{ |
michael@0 | 969 | one{"{0} vatio"} |
michael@0 | 970 | other{"{0} vatios"} |
michael@0 | 971 | } |
michael@0 | 972 | } |
michael@0 | 973 | pressure{ |
michael@0 | 974 | hectopascal{ |
michael@0 | 975 | one{"{0} hectopascal"} |
michael@0 | 976 | other{"{0} hectopascales"} |
michael@0 | 977 | } |
michael@0 | 978 | inch-hg{ |
michael@0 | 979 | one{"{0} pulgada de mercurio"} |
michael@0 | 980 | other{"{0} pulgadas de mercurio"} |
michael@0 | 981 | } |
michael@0 | 982 | millibar{ |
michael@0 | 983 | one{"{0} milibar"} |
michael@0 | 984 | other{"{0} milibares"} |
michael@0 | 985 | } |
michael@0 | 986 | } |
michael@0 | 987 | speed{ |
michael@0 | 988 | kilometer-per-hour{ |
michael@0 | 989 | one{"{0} kilómetro por hora"} |
michael@0 | 990 | other{"{0} kilómetros por hora"} |
michael@0 | 991 | } |
michael@0 | 992 | meter-per-second{ |
michael@0 | 993 | one{"{0} metro por segundo"} |
michael@0 | 994 | other{"{0} metros por segundo"} |
michael@0 | 995 | } |
michael@0 | 996 | mile-per-hour{ |
michael@0 | 997 | one{"{0} milla por hora"} |
michael@0 | 998 | other{"{0} millas por hora"} |
michael@0 | 999 | } |
michael@0 | 1000 | } |
michael@0 | 1001 | temperature{ |
michael@0 | 1002 | celsius{ |
michael@0 | 1003 | one{"{0} grado Celsius"} |
michael@0 | 1004 | other{"{0} grados Celsius"} |
michael@0 | 1005 | } |
michael@0 | 1006 | fahrenheit{ |
michael@0 | 1007 | one{"{0} grado Fahrenheit"} |
michael@0 | 1008 | other{"{0} grados Fahrenheit"} |
michael@0 | 1009 | } |
michael@0 | 1010 | } |
michael@0 | 1011 | volume{ |
michael@0 | 1012 | cubic-kilometer{ |
michael@0 | 1013 | one{"{0} kilómetro cúbico"} |
michael@0 | 1014 | other{"{0} kilómetros cúbicos"} |
michael@0 | 1015 | } |
michael@0 | 1016 | cubic-mile{ |
michael@0 | 1017 | one{"{0} milla cúbica"} |
michael@0 | 1018 | other{"{0} millas cúbicas"} |
michael@0 | 1019 | } |
michael@0 | 1020 | liter{ |
michael@0 | 1021 | one{"{0} litro"} |
michael@0 | 1022 | other{"{0} litros"} |
michael@0 | 1023 | } |
michael@0 | 1024 | } |
michael@0 | 1025 | } |
michael@0 | 1026 | unitsNarrow{ |
michael@0 | 1027 | angle{ |
michael@0 | 1028 | arc-minute{ |
michael@0 | 1029 | one{"{0}'"} |
michael@0 | 1030 | other{"{0}'"} |
michael@0 | 1031 | } |
michael@0 | 1032 | arc-second{ |
michael@0 | 1033 | one{"{0}\u0022"} |
michael@0 | 1034 | other{"{0}\u0022"} |
michael@0 | 1035 | } |
michael@0 | 1036 | degree{ |
michael@0 | 1037 | one{"{0}°"} |
michael@0 | 1038 | other{"{0}°"} |
michael@0 | 1039 | } |
michael@0 | 1040 | } |
michael@0 | 1041 | compound{ |
michael@0 | 1042 | per{"{0}/{1}"} |
michael@0 | 1043 | } |
michael@0 | 1044 | duration{ |
michael@0 | 1045 | day{ |
michael@0 | 1046 | one{"{0} d"} |
michael@0 | 1047 | other{"{0} d"} |
michael@0 | 1048 | } |
michael@0 | 1049 | hour{ |
michael@0 | 1050 | one{"{0} h"} |
michael@0 | 1051 | other{"{0} h"} |
michael@0 | 1052 | } |
michael@0 | 1053 | millisecond{ |
michael@0 | 1054 | one{"{0} ms"} |
michael@0 | 1055 | other{"{0} ms"} |
michael@0 | 1056 | } |
michael@0 | 1057 | minute{ |
michael@0 | 1058 | one{"{0} min"} |
michael@0 | 1059 | other{"{0} min"} |
michael@0 | 1060 | } |
michael@0 | 1061 | month{ |
michael@0 | 1062 | one{"{0} m"} |
michael@0 | 1063 | other{"{0} m"} |
michael@0 | 1064 | } |
michael@0 | 1065 | week{ |
michael@0 | 1066 | one{"{0} sem"} |
michael@0 | 1067 | other{"{0} sem"} |
michael@0 | 1068 | } |
michael@0 | 1069 | year{ |
michael@0 | 1070 | one{"{0}a"} |
michael@0 | 1071 | other{"{0} a"} |
michael@0 | 1072 | } |
michael@0 | 1073 | } |
michael@0 | 1074 | } |
michael@0 | 1075 | unitsShort{ |
michael@0 | 1076 | angle{ |
michael@0 | 1077 | arc-minute{ |
michael@0 | 1078 | one{"{0} min"} |
michael@0 | 1079 | other{"{0} min"} |
michael@0 | 1080 | } |
michael@0 | 1081 | arc-second{ |
michael@0 | 1082 | one{"{0} s"} |
michael@0 | 1083 | other{"{0} s"} |
michael@0 | 1084 | } |
michael@0 | 1085 | degree{ |
michael@0 | 1086 | one{"{0}°"} |
michael@0 | 1087 | other{"{0}°"} |
michael@0 | 1088 | } |
michael@0 | 1089 | } |
michael@0 | 1090 | area{ |
michael@0 | 1091 | acre{ |
michael@0 | 1092 | one{"{0} ac"} |
michael@0 | 1093 | other{"{0} ac"} |
michael@0 | 1094 | } |
michael@0 | 1095 | hectare{ |
michael@0 | 1096 | one{"{0} ha"} |
michael@0 | 1097 | other{"{0} ha"} |
michael@0 | 1098 | } |
michael@0 | 1099 | square-foot{ |
michael@0 | 1100 | one{"{0} ft²"} |
michael@0 | 1101 | other{"{0} ft²"} |
michael@0 | 1102 | } |
michael@0 | 1103 | square-kilometer{ |
michael@0 | 1104 | one{"{0} km²"} |
michael@0 | 1105 | other{"{0} km²"} |
michael@0 | 1106 | } |
michael@0 | 1107 | square-meter{ |
michael@0 | 1108 | one{"{0} m²"} |
michael@0 | 1109 | other{"{0} m²"} |
michael@0 | 1110 | } |
michael@0 | 1111 | square-mile{ |
michael@0 | 1112 | one{"{0} mi²"} |
michael@0 | 1113 | other{"{0} mi²"} |
michael@0 | 1114 | } |
michael@0 | 1115 | } |
michael@0 | 1116 | compound{ |
michael@0 | 1117 | per{"{0}/{1}"} |
michael@0 | 1118 | } |
michael@0 | 1119 | duration{ |
michael@0 | 1120 | day{ |
michael@0 | 1121 | one{"{0} día"} |
michael@0 | 1122 | other{"{0} días"} |
michael@0 | 1123 | } |
michael@0 | 1124 | hour{ |
michael@0 | 1125 | one{"{0} h"} |
michael@0 | 1126 | other{"{0} h"} |
michael@0 | 1127 | } |
michael@0 | 1128 | millisecond{ |
michael@0 | 1129 | one{"{0} ms"} |
michael@0 | 1130 | other{"{0} ms"} |
michael@0 | 1131 | } |
michael@0 | 1132 | minute{ |
michael@0 | 1133 | one{"{0} min"} |
michael@0 | 1134 | other{"{0} min"} |
michael@0 | 1135 | } |
michael@0 | 1136 | month{ |
michael@0 | 1137 | one{"{0} m"} |
michael@0 | 1138 | other{"{0} m"} |
michael@0 | 1139 | } |
michael@0 | 1140 | second{ |
michael@0 | 1141 | one{"{0} s"} |
michael@0 | 1142 | other{"{0} s"} |
michael@0 | 1143 | } |
michael@0 | 1144 | week{ |
michael@0 | 1145 | one{"{0} sem"} |
michael@0 | 1146 | other{"{0} sem"} |
michael@0 | 1147 | } |
michael@0 | 1148 | year{ |
michael@0 | 1149 | one{"{0} a"} |
michael@0 | 1150 | other{"{0} a"} |
michael@0 | 1151 | } |
michael@0 | 1152 | } |
michael@0 | 1153 | length{ |
michael@0 | 1154 | centimeter{ |
michael@0 | 1155 | one{"{0} cm"} |
michael@0 | 1156 | other{"{0} cm"} |
michael@0 | 1157 | } |
michael@0 | 1158 | foot{ |
michael@0 | 1159 | one{"{0} ft"} |
michael@0 | 1160 | other{"{0} ft"} |
michael@0 | 1161 | } |
michael@0 | 1162 | inch{ |
michael@0 | 1163 | one{"{0} in"} |
michael@0 | 1164 | other{"{0} in"} |
michael@0 | 1165 | } |
michael@0 | 1166 | kilometer{ |
michael@0 | 1167 | one{"{0} km"} |
michael@0 | 1168 | other{"{0} km"} |
michael@0 | 1169 | } |
michael@0 | 1170 | light-year{ |
michael@0 | 1171 | one{"{0} a. l."} |
michael@0 | 1172 | other{"{0} a. l."} |
michael@0 | 1173 | } |
michael@0 | 1174 | meter{ |
michael@0 | 1175 | one{"{0} m"} |
michael@0 | 1176 | other{"{0} m"} |
michael@0 | 1177 | } |
michael@0 | 1178 | mile{ |
michael@0 | 1179 | one{"{0} mi"} |
michael@0 | 1180 | other{"{0} mi"} |
michael@0 | 1181 | } |
michael@0 | 1182 | millimeter{ |
michael@0 | 1183 | one{"{0} mm"} |
michael@0 | 1184 | other{"{0} mm"} |
michael@0 | 1185 | } |
michael@0 | 1186 | picometer{ |
michael@0 | 1187 | one{"{0} pm"} |
michael@0 | 1188 | other{"{0} pm"} |
michael@0 | 1189 | } |
michael@0 | 1190 | yard{ |
michael@0 | 1191 | one{"{0} yd"} |
michael@0 | 1192 | other{"{0} yd"} |
michael@0 | 1193 | } |
michael@0 | 1194 | } |
michael@0 | 1195 | mass{ |
michael@0 | 1196 | gram{ |
michael@0 | 1197 | one{"{0} g"} |
michael@0 | 1198 | other{"{0} g"} |
michael@0 | 1199 | } |
michael@0 | 1200 | kilogram{ |
michael@0 | 1201 | one{"{0} kg"} |
michael@0 | 1202 | other{"{0} kg"} |
michael@0 | 1203 | } |
michael@0 | 1204 | ounce{ |
michael@0 | 1205 | one{"{0} oz"} |
michael@0 | 1206 | other{"{0} oz"} |
michael@0 | 1207 | } |
michael@0 | 1208 | pound{ |
michael@0 | 1209 | one{"{0} lb"} |
michael@0 | 1210 | other{"{0} lb"} |
michael@0 | 1211 | } |
michael@0 | 1212 | } |
michael@0 | 1213 | power{ |
michael@0 | 1214 | horsepower{ |
michael@0 | 1215 | one{"{0} CV"} |
michael@0 | 1216 | other{"{0} CV"} |
michael@0 | 1217 | } |
michael@0 | 1218 | kilowatt{ |
michael@0 | 1219 | one{"{0} kW"} |
michael@0 | 1220 | other{"{0} kW"} |
michael@0 | 1221 | } |
michael@0 | 1222 | watt{ |
michael@0 | 1223 | one{"{0} W"} |
michael@0 | 1224 | other{"{0} W"} |
michael@0 | 1225 | } |
michael@0 | 1226 | } |
michael@0 | 1227 | pressure{ |
michael@0 | 1228 | hectopascal{ |
michael@0 | 1229 | one{"{0} hPa"} |
michael@0 | 1230 | other{"{0} hPa"} |
michael@0 | 1231 | } |
michael@0 | 1232 | inch-hg{ |
michael@0 | 1233 | one{"{0} inHg"} |
michael@0 | 1234 | other{"{0} inHg"} |
michael@0 | 1235 | } |
michael@0 | 1236 | millibar{ |
michael@0 | 1237 | one{"{0} mbar"} |
michael@0 | 1238 | other{"{0} mbar"} |
michael@0 | 1239 | } |
michael@0 | 1240 | } |
michael@0 | 1241 | speed{ |
michael@0 | 1242 | kilometer-per-hour{ |
michael@0 | 1243 | one{"{0} km/h"} |
michael@0 | 1244 | other{"{0} km/h"} |
michael@0 | 1245 | } |
michael@0 | 1246 | meter-per-second{ |
michael@0 | 1247 | one{"{0} m/s"} |
michael@0 | 1248 | other{"{0} m/s"} |
michael@0 | 1249 | } |
michael@0 | 1250 | mile-per-hour{ |
michael@0 | 1251 | one{"{0} mi/h"} |
michael@0 | 1252 | other{"{0} mi/h"} |
michael@0 | 1253 | } |
michael@0 | 1254 | } |
michael@0 | 1255 | temperature{ |
michael@0 | 1256 | celsius{ |
michael@0 | 1257 | one{"{0} °C"} |
michael@0 | 1258 | other{"{0} °C"} |
michael@0 | 1259 | } |
michael@0 | 1260 | fahrenheit{ |
michael@0 | 1261 | one{"{0} °F"} |
michael@0 | 1262 | other{"{0} °F"} |
michael@0 | 1263 | } |
michael@0 | 1264 | } |
michael@0 | 1265 | volume{ |
michael@0 | 1266 | cubic-kilometer{ |
michael@0 | 1267 | one{"{0} km³"} |
michael@0 | 1268 | other{"{0} km³"} |
michael@0 | 1269 | } |
michael@0 | 1270 | cubic-mile{ |
michael@0 | 1271 | one{"{0} mi³"} |
michael@0 | 1272 | other{"{0} mi³"} |
michael@0 | 1273 | } |
michael@0 | 1274 | liter{ |
michael@0 | 1275 | one{"{0} l"} |
michael@0 | 1276 | other{"{0} l"} |
michael@0 | 1277 | } |
michael@0 | 1278 | } |
michael@0 | 1279 | } |
michael@0 | 1280 | } |