Translate AppFlowy
Last updated
Was this helpful?
Last updated
Was this helpful?
We'd like AppFlowy to be usable by people from all over the globe. You can help us reach that goal by contributing to our translation efforts. See below on how to fill out missing translations, modify existing translations, or add a language that isn't supported yet.
Open the
Edit translations (filter & search can help)
From the frontend
directory, run sh ./scripts/code_generation/language_files/generate_language_files.sh
on Linux and macOS, or .\scripts\code_generation\language_files\generate_language_files.cmd
on Windows to generate.
Alternatively, run the AF: Generate Language Task
from VSCode by hitting F1
, selecting Tasks: Run Task
, then searching for the task.
Verify that the translation has changed appropriately by compiling and running the app.
Modify the specific translation file located at: frontend/resources/translations/<language-code>-<country_code>.json
From the frontend
directory, run sh ./scripts/code_generation/language_files/generate_language_files.sh
on Linux and macOS, or .\scripts\code_generation\language_files\generate_language_files.cmd
on Windows to generate.
Alternatively, run the AF: Generate Language Task
from VSCode by hitting F1
, selecting Tasks: Run Task
, then searching for the task.
Verify that the translation has changed appropriately by compiling and running the app.
Adding new languages from within the inlang editor is not supported yet, but you can add the language and then do the translations in inlang. (Adding via inlang is coming soon)
Create a JSON file that contains the translation tokens and values. You can simply copy frontend/resources/translations/en.json
and edit it from there.
From the frontend
directory, run sh ./scripts/code_generation/language_files/generate_language_files.sh
on Linux and macOS, or .\scripts\code_generation\language_files\generate_language_files.cmd
on Windows to generate.
Alternatively, run the AF: Generate Language Task
from VSCode by hitting F1
, selecting Tasks: Run Task
, then searching for the task.
In frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart
, search for the InitAppWidgetTask
class and add the new language (e.g. Locale('en', 'IN')
) to the supportedLocales
list :
Add the name of the language in that language to the list of language names in frontend/appflowy_flutter/packages/flowy_infra/lib/language.dart
.
Once you are pleased with your translations, compile AppFlowy, select the language and see your work come to life! If everything is working fine, don't forget to create a PR on Github so that others can also benefit from your effort.
The name of the file should be <language_code>-<country_code>.json
, where language_code
follows the and the country_code
is a valid . For example, Spanish in Venezuela would be es-VE.json
. If the language doesn't change much between countries that use it, you can simply use the language code instead, e.g. pl.json
.