Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 801 Bytes

i18n-am-pm.md

File metadata and controls

29 lines (23 loc) · 801 Bytes
title description toc canonical
Switch to AM/PM
Using AM/PM instead of 24h-format
false
/documentation/i18n-am-pm.html

Kimai uses the 24-hour format by default.

If you want to use the AM/PM format instead, you can set the locale config key 24_hours to false to activate it. The changes need to be applied in your [local.yaml]({% link _documentation/local-yaml.md %}).

This example uses the locale en:

kimai:
    languages:
        en:
            date_time_type: 'yyyy-MM-dd hh:mm a'
            date_type: 'yyyy-MM-dd'
            date: 'Y-m-d'
            date_time: 'm-d H:i'
            duration: '%%h:%%m h'
            time: 'h:i a'
            24_hours: false

After making these changes, you need to [reload the cache]({% link _documentation/cache.md %}).