From 0a688809789231a0be45c7a3584339ca6fc34987 Mon Sep 17 00:00:00 2001 From: profitroll Date: Wed, 26 Apr 2023 16:08:11 +0200 Subject: [PATCH] Added defaults --- config.json | 5 +++++ configs/de.json | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 config.json create mode 100644 configs/de.json diff --git a/config.json b/config.json new file mode 100644 index 0000000..dda9621 --- /dev/null +++ b/config.json @@ -0,0 +1,5 @@ +{ + "languages": [ + "de" + ] +} \ No newline at end of file diff --git a/configs/de.json b/configs/de.json new file mode 100644 index 0000000..b4f98f3 --- /dev/null +++ b/configs/de.json @@ -0,0 +1,40 @@ +{ + "locale": "de_DE", + "header": { + "formats": { + "date": "%#d. %B %Y", + "address": "{street} {number}, {zip} {city}" + }, + "placeholders": { + "birth_date_place": "{date} in {city} ({country})" + } + }, + "jobs": { + "formats": { + "default": "%B %Y" + }, + "placeholders": { + "single": "{start}", + "from_to": "{start} bis {end}", + "ongoing": "{start} bis Heute" + } + }, + "education": { + "formats": { + "default": "%Y" + }, + "placeholders": { + "single": "{start}", + "from_to": "{start} bis {end}", + "ongoing": "{start} bis Heute" + } + }, + "footer": { + "formats": { + "date": "%d.%m.%Y" + }, + "placeholders": { + "signature": "{city} den {date}" + } + } +} \ No newline at end of file