Skip to main content
You can create multilingual READMEs for your plugin, which will be displayed in Dify Marketplace and other locations based on the user’s preferred language.

README File Specifications

LanguageRequiredFilenamePathDescription
EnglishYesREADME.mdPlugin root directory/
Other LanguagesNoREADME_<language_code>.mdIn the readme folder under the plugin root directoryCurrently supports Japanese, Portuguese, and Simplified Chinese.
Here’s an example of the directory structure:
...
├── main.py
├── manifest.yaml
├── readme
│   ├── README_ja_JP.md
│   ├── README_pt_BR.md
│   └── README_zh_Hans.md
├── README.md
...

How Multilingual READMEs are Displayed in Marketplace

When your plugin has a README in the user’s preferred language, the plugin’s detail page in Dify Marketplace will display that language version of the README.
Edit this page | Report an issue