This module implements an interface for the internationalization of timecount. It allows users to easily change the language of time writers based on translation files.
Employ one of the following snippets to use it in your project:
EcmaScript 6 or equivalent:
import { Locale } from"timecount/localization";
Older EcmaScripts:
var localization = require("timecount").localization;
// -orvar timecount = require("timecount/localization");
This module implements an interface for the internationalization of timecount. It allows users to easily change the language of time writers based on translation files.
Employ one of the following snippets to use it in your project:
import { Locale } from "timecount/localization";
var localization = require("timecount").localization; // -or var timecount = require("timecount/localization");
Currently supported languages
If you wish to contribute with a new translation, please see Contributing: Translating.