We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2d1ae commit d518873Copy full SHA for d518873
README.md
@@ -363,6 +363,7 @@ You can use the property `locale` to set the display language. Available languag
363
- `br` (Brazilian Portuguese)
364
- `nl` (Netherlands)
365
- `fr` (French)
366
+- `de` (German)
367
368
> You can very easily contribute a locale. Just clone `locales/en.json` and `require` in `locales/index.js`
369
src/locales/de.json
@@ -0,0 +1,6 @@
1
+{
2
+ "rows_per_page": "Zeilen pro Seite",
3
+ "out_of_pages": "von",
4
+ "all": "Alle",
5
+ "search_data": "Suchen"
6
+}
src/locales/index.js
@@ -6,4 +6,5 @@ module.exports = {
cat: require('./cat.json'),
7
fr: require('./fr.json'),
8
nl: require('./nl.json'),
9
+ de: require('./de.json'),
10
};
0 commit comments