Skip to main content

Additional I18n Support APIs

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

This package provides additional I18n and L10n features. In particular it provides an API to compute the time duratrions over various timezones.

Detailed Dcoumentation

Time Duration Computation

The duration format code is not ideal, but as the code notes, the icu library does not appear to support internationalizing dates. Therefore, this approach tries to get close enough to be flexible enough for most localization. Only time, and localizers, will tell if it is a reasonable approach.

The formatter always gives the first two pertinent measures of a duration, leaving off the rest. The rest of the file just shows some examples.

>>> from zc.i18n.duration import format
>>> from zope.publisher.browser import TestRequest
>>> request = TestRequest()
>>> from datetime import timedelta
>>> format(request, timedelta(days=5))
u'5 days '
>>> format(request, timedelta(days=1))
u'1 day '
>>> format(request, timedelta(days=1, hours=13, minutes=12))
u'1 day 13 hours '
>>> format(request, timedelta(hours=13, minutes=12))
u'13 hours 12 minutes '
>>> format(request, timedelta(hours=13))
u'13 hours '
>>> format(request, timedelta(hours=1, minutes=1, seconds=1))
u'1 hour 1 minute '
>>> format(request, timedelta(minutes=45, seconds=1))
u'45 minutes 1 second'
>>> format(request, timedelta(seconds=5))
u'5 seconds'
>>> format(request, timedelta(days=-1, hours=-2))
u'-1 day -2 hours '
>>> format(request, timedelta(days=-2, hours=22))
u'-1 day -2 hours '
>>> format(request, timedelta(days=-1))
u'-1 day '
>>> format(request, timedelta(days=-1, hours=-13, minutes=-12))
u'-1 day -13 hours '
>>> format(request, timedelta(hours=-13, minutes=-12))
u'-13 hours -12 minutes '
>>> format(request, timedelta(hours=-13))
u'-13 hours '
>>> format(request, timedelta(hours=-1, minutes=-1, seconds=-1))
u'-1 hour -1 minute '
>>> format(request, timedelta(minutes=-45, seconds=-1))
u'-45 minutes -1 second'
>>> format(request, timedelta(seconds=-5))
u'-5 seconds'
>>> format(request, timedelta())
u'No time'

CHANGES

0.5.2 (2007-11-03)

  • Improve package data.

0.5.1 (2006-05-24)

  • Package data update.

0.5.0 (2006-05-24)

  • Initial release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zc.i18n-0.5.2.tar.gz (6.8 kB view details)

Uploaded Source

File details

Details for the file zc.i18n-0.5.2.tar.gz.

File metadata

  • Download URL: zc.i18n-0.5.2.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for zc.i18n-0.5.2.tar.gz
Algorithm Hash digest
SHA256 c6a30447eea8e2e819952255cb7fb972c494f7e822b814c096bc74a8bc5c2c2e
MD5 2900fbc5489d07df2540993b60b95d9a
BLAKE2b-256 8384fce571c32dc543157caa768925b4afb4a6c8da1465b36ee99d615e7671e6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page