Use custom code to import and export your proprietary file format.
This app allows you to import and export proprietary or uncommon (single-language) file formats into Crowdin. It ensures that your file's structure, metadata and contextual information are preserved throughout the translation process.
Check the Crowdin Store for the custom file format app if you need to translate a multilingual file.
The app needs to be configured before use; otherwise, it won’t be able to process files. Please use it only in projects where a custom format is truly required. When enabled, the app won’t support other file formats in the project. Be cautious when selecting projects for its activation.
To use this app, you will need to provide two code snippets: one for importing your file format into Crowdin and another for exporting translations back into the original format. You can use this GPT to generate the necessary code, tailored specifically to your file format. If you need assistance, the Crowdin Support team is available to help you create these code snippets, ensuring a smooth integration process.
This is the importer and exporter for a JSON file like the following:
{
"appName": {
"message": "string 1",
"description": "context_1"
},
"extName": {
"message": "string 2",
"description": "context_2"
},
"extDesc": {
"message": "string 3",
"description": "context_3"
}
}
// Importer Code
const contentObj = JSON.parse(content);
for (const key in contentObj) {
const item = contentObj[key];
const stringObj = {
identifier: key,
text: item.message,
context: item.description || null, // Optional: Only include context if it's provided
};
// If importing translations
if (targetLanguages.length > 0) {
stringObj.translations = {};
for (const lang of targetLanguages) {
stringObj.translations[lang.id] = {
text: item.message, // Assuming that the source text is the same as the translated text if not translated
status: "untranslated" // Default status
};
}
}
strings.push(stringObj);
}
// Exporter Code
const translatedContent = JSON.parse(content);
for (const stringObj of strings) {
if (translatedContent[stringObj.identifier]) {
translatedContent[stringObj.identifier].message = stringObj.text;
// If exporting translations
if (stringObj.translations) {
for (const lang in stringObj.translations) {
if (stringObj.translations[lang] && stringObj.translations[lang].text) {
translatedContent[stringObj.identifier].message = stringObj.translations[lang].text;
}
}
}
}
}
// Overwrite content with the translated content
content = JSON.stringify(translatedContent, null, 2);
Your importer code should convert the file content into an array of Crowdin string objects. Here’s an example structure:
[
{
"identifier": "string-key-1",
"context": "Some context", // optional
"maxLength": 10, // optional, default null
"isHidden": false, // optional, default null
"labels": ["label-one", "label-two"], // optional, default []
"text": "String source text", // required
"translations": {
"uk": {
"text": "Переклад стрічки", // required
"status": "untranslated | translated | approved" // optional, default "translated"
}
}
}
]
strings
array.The exporter code should convert Crowdin string objects back into the original file format, with translations included. You will need to:
content
variable with the new translated content before the code exits.Crowdin is a platform that helps you manage and translate content into different languages. Integrate Crowdin with your repo, CMS, or other systems. Source content is always up to date for your translators, and translated content is returned automatically.
Learn MoreReleased on Aug 11, 2024
Updated on Oct 24, 2024
Published by Awesome Crowdin
Identifier:cff