How to include a translation in SCA for my extensi...
# ask-stanley-ai
c
How to include a translation in SCA for my extension? Where to add this file in the structure?
c
AI generated answer (using internal Slack threads):
To include a translation in SuiteCommerce Advanced (SCA) for your extension, you need to add a JSON file with the translations in the correct directory structure. Here's how you can do it: 1. Create a new JSON file in your extension's
Languages
folder. The name of the file should be in the format
xx_XX.json
, where
xx_XX
is the locale code for the language you're translating to. For example, for French, the file would be
fr_FR.json
. 2. In this JSON file, you'll add key-value pairs where the key is the original text in English and the value is the translated text. Here's an example:
Copy code
json
{
    "Hello": "Bonjour",
    "Goodbye": "Au revoir"
}
3. Once you've added all the translations, you need to include this file in the
distro.json
file of your SCA application. Under the
languages
section, add the path to your new JSON file. It should look something like this:
Copy code
json
"languages": [
    "Modules/YourExtension@1.0.0/Languages/fr_FR.json"
]
4. After you've done this, the new translations should be included in your SCA application. You can use the
translate
function in your templates to display the translated text. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.806951642
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.786374748
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.778934121
Please provide your feedback on this answer.