跳转到内容

File Processing Modules Overview

此内容尚不支持你的语言。

在 Crowdin 中翻译

File processing modules allow apps to add support for new custom file formats and customize processing for supported file formats.

ModuleTypeApp ScopeCrowdinCrowdin Enterprise
Custom File Formatcustom-file-formatAccount/Organization
File Pre-Import Processingfile-pre-importAccount/Organization
File Post-Import Processingfile-post-importAccount/Organization
File Pre-Export Processingfile-pre-exportAccount/Organization
File Post-Export Processingfile-post-exportAccount/Organization
Translation Alignment Processingfile-translations-alignmentAccount/Organization

To use a module in your app, declare the module in your App Descriptor file under modules, including any required properties. The properties you include control the customization options for your module.

manifest.json
{
"identifier": "application-identifier",
"name": "New Cool App",
"logo": "/app-logo.png",
"baseUrl": "https://app.example.com",
"authentication": {
"type": "none"
},
"scopes": [],
"modules": {
"{module_type}": [
{
"key": "your-module-key",
"name": "Module Name"
}
]
}
}
{module_type}

Type: string

Required: yes

Description: The type of module Crowdin app uses.

key

Type: string

Required: yes

Description: Module identifier within the Crowdin app.

name

Type: string

Required: yes

Description: The human-readable name of the module.

此页面对您有帮助吗?