README.md in translation_center-1.4.1 vs README.md in translation_center-1.5.0

- old
+ new

@@ -23,10 +23,11 @@ ## Features * Different roles: translators and admins * Add new locales easily + * Support right-to-left and left-to-right translations * Detect new translation keys in code and store them in DB for users to translate * Inspect translation keys from your application view directly * Import and Export translations in yaml format * Switch translations backend between DB and yaml * Admin dashboard for languages status and activity @@ -54,12 +55,18 @@ This will add three languages to the translation center, you need to add them in the config/translation_center.yaml ```ruby development: lang: - en: 'English' - ar: 'Arabic' - de: 'German' + en: + name: 'English' + direction: 'ltr' + ar: + name: 'Arabic' + direction: 'rtl' + de: + name: 'German' + direction: 'ltr' ``` if you don't supply languages for the generator it will support only English. And run the migrations