aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index b5ccaf3..98ee3aa 100644
--- a/README.md
+++ b/README.md
@@ -30,20 +30,20 @@ This project uses [Prettier](https://prettier.io/) formatting. All pull requests
30 30
31We would love for you to contribute to different languages and help make it even better than it is today! As a language contributor, here are some steps we would like you to follow: 31We would love for you to contribute to different languages and help make it even better than it is today! As a language contributor, here are some steps we would like you to follow:
32 32
331. Add a translation to [`./src/translations.js`](./src/translations.js), e.g.: 331. Add a translation to [`./src/translations.js`](./src/translations.js). Here's an example of the German translation:
34 34
35 ``` 35 ```
36 { 36 {
37 id: 'de-DE', // locale code 37 id: 'de-DE', // locale code
38 name: 'German - Deutsch', // Display name in the format 'latinName - nativeName' 38 name: 'German - Deutsch', // Display name in the format 'latinName - nativeName'
39 rtl: true, // Optional, true if this is a right-to-left language 39 rtl: false, // Optional, true if this is a right-to-left language
40 translation: { 40 translation: {
41 ... 41 ...
42 } 42 }
43 } 43 }
44 ``` 44 ```
45 45
462. Append an entry to the [Supported Languages](#supported-languages) table in below. 462. Append an entry to the [Supported Languages](#supported-languages) table below.
47 47
48## Supported Languages 48## Supported Languages
49 49