diff --git a/README.md b/README.md
index 4667ca6..dd04dda 100644
--- a/README.md
+++ b/README.md
@@ -179,9 +179,42 @@ function onChange(event) {
## 🌐 Localization
+By default date picker uses english locale. And at the moment there are only `en` and `de` localizations available
+(PRs for additional locales are more than welcome).
+
+So if you want to change it to german (or other locale in the future), use this:
+
+```svelte
+
+
+
+```
+### Global locale setting
+
+You can also change locale globally through setting `i18n` property in global config like below. So all pickers created
+*AFTER* this setting has been changed, will be in the new locale.
+
+```svelte
+
+
+
+```
+
+### Adding additional locales
+
Localization file has following structure.
```js
+// default i18n structure
export const en = {
days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'],
daysShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
@@ -196,7 +229,6 @@ export const en = {
backToDate: 'Back to calendar view'
}
```
-PRs for extending built-in localization are welcome 🥳
## 🏆 Thanks to:
diff --git a/src/lib/.gitignore b/src/lib/.gitignore
new file mode 100644
index 0000000..da49c52
--- /dev/null
+++ b/src/lib/.gitignore
@@ -0,0 +1,9 @@
+.DS_Store
+node_modules
+/build
+/.svelte-kit
+/package
+.env
+.env.*
+!.env.example
+.vscode
\ No newline at end of file
diff --git a/src/lib/components/Calendar.svelte b/src/lib/components/Calendar.svelte
index d01487c..8b753e1 100644
--- a/src/lib/components/Calendar.svelte
+++ b/src/lib/components/Calendar.svelte
@@ -1,8 +1,8 @@
@@ -7,10 +7,10 @@
+
+
+### Global locale setting
+
+You can also change locale globally through setting `i18n` property in global config like below. So all pickers created
+*AFTER* this setting has been changed, will be in the new locale.
+
+```svelte
+
+
+
+```
+
+### Adding additional locales
+
Localization file has following structure.
```js
+// default i18n structure
export const en = {
days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'],
daysShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
@@ -26,12 +70,3 @@ export const en = {
backToDate: 'Back to calendar view'
}
```
-PRs for extending built-in localization are welcome 🥳
-
-