├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── locale ├── de-DE.go ├── en-US.go ├── es-MX.go ├── fa-IR.go ├── fr-FR.go ├── hi-IN.go ├── id-ID.go ├── it-IT.go ├── ja-JP.go ├── ko-KR.go ├── locale.go ├── pl-PL.go ├── pt-BR.go ├── ru-RU.go ├── tr-TR.go └── zh-cn.go ├── timediff.go ├── timediff_fa_IR_test.go ├── timediff_fr_FR_test.go ├── timediff_id_ID_test.go ├── timediff_ja_JP_test.go ├── timediff_ko_KR_test.go ├── timediff_pt_BR_test.go ├── timediff_ru_RU_test.go ├── timediff_test.go └── timediff_tr_TR_test.go /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mergestat/timediff 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /locale/de-DE.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/de-DE.go -------------------------------------------------------------------------------- /locale/en-US.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/en-US.go -------------------------------------------------------------------------------- /locale/es-MX.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/es-MX.go -------------------------------------------------------------------------------- /locale/fa-IR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/fa-IR.go -------------------------------------------------------------------------------- /locale/fr-FR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/fr-FR.go -------------------------------------------------------------------------------- /locale/hi-IN.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/hi-IN.go -------------------------------------------------------------------------------- /locale/id-ID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/id-ID.go -------------------------------------------------------------------------------- /locale/it-IT.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/it-IT.go -------------------------------------------------------------------------------- /locale/ja-JP.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/ja-JP.go -------------------------------------------------------------------------------- /locale/ko-KR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/ko-KR.go -------------------------------------------------------------------------------- /locale/locale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/locale.go -------------------------------------------------------------------------------- /locale/pl-PL.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/pl-PL.go -------------------------------------------------------------------------------- /locale/pt-BR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/pt-BR.go -------------------------------------------------------------------------------- /locale/ru-RU.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/ru-RU.go -------------------------------------------------------------------------------- /locale/tr-TR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/tr-TR.go -------------------------------------------------------------------------------- /locale/zh-cn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/locale/zh-cn.go -------------------------------------------------------------------------------- /timediff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/timediff.go -------------------------------------------------------------------------------- /timediff_fa_IR_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/timediff_fa_IR_test.go -------------------------------------------------------------------------------- /timediff_fr_FR_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/timediff_fr_FR_test.go -------------------------------------------------------------------------------- /timediff_id_ID_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/timediff_id_ID_test.go -------------------------------------------------------------------------------- /timediff_ja_JP_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/timediff_ja_JP_test.go -------------------------------------------------------------------------------- /timediff_ko_KR_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/timediff_ko_KR_test.go -------------------------------------------------------------------------------- /timediff_pt_BR_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/timediff_pt_BR_test.go -------------------------------------------------------------------------------- /timediff_ru_RU_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/timediff_ru_RU_test.go -------------------------------------------------------------------------------- /timediff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/timediff_test.go -------------------------------------------------------------------------------- /timediff_tr_TR_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergestat/timediff/HEAD/timediff_tr_TR_test.go --------------------------------------------------------------------------------