Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pendulum / locales / nl / custom.py
Size: Mime:
"""
nl custom locale file.
"""
from __future__ import annotations


translations = {
    "units": {"few_second": "enkele seconden"},
    # Relative time
    "ago": "{} geleden",
    "from_now": "over {}",
    "after": "{0} later",
    "before": "{0} eerder",
    # Ordinals
    "ordinal": {"other": "e"},
    # Date formats
    "date_formats": {
        "L": "DD-MM-YYYY",
        "LL": "D MMMM YYYY",
        "LLL": "D MMMM YYYY HH:mm",
        "LLLL": "dddd D MMMM YYYY HH:mm",
        "LT": "HH:mm",
        "LTS": "HH:mm:ss",
    },
}