☎️Translate AppFlowy
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.
Modify an Already-Supported Language
Using the inlang no-code editor
Open the inlang-editor
Edit translations (filter & search can help)
From the
frontend
directory, runsh ./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 hittingF1
, selectingTasks: Run Task
, then searching for the task.Verify that the translation has changed appropriately by compiling and running the app.
Directly in the source code
Modify the specific translation file located at:
frontend/resources/translations/<language-code>-<country_code>.json
From the
frontend
directory, runsh ./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 hittingF1
, selectingTasks: Run Task
, then searching for the task.Verify that the translation has changed appropriately by compiling and running the app.
Add an Unsupported Language
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.The name of the file should be
<language_code>-<country_code>.json
, wherelanguage_code
follows the ISO-639-1 standard and thecountry_code
is a valid ISO3166 alpha2 country code. For example, Spanish in Venezuela would bees-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
.From the
frontend
directory, runsh ./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 hittingF1
, selectingTasks: Run Task
, then searching for the task.In
frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart
, search for theInitAppWidgetTask
class and add the new language (e.g.Locale('en', 'IN')
) to thesupportedLocales
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
.
How to test your changes
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.
Last updated