This document describes how currency and language settings work in the Stood CRM application, including how to configure them for different teams and regions.
The application supports:
Multi-language support with 7 languages (English, French, German, Spanish, Portuguese, Dutch, Italian)
Currency configuration per team with ISO codes and symbols
Dynamic loading of translations and currency settings
Team-specific customization through the admin interface
(for other languages, just ask your Stood support team)
Language Code | Language Name | File Location |
| English |
|
| Français |
|
| Deutsch |
|
| Español |
|
| Português |
|
| Nederlands |
|
| Italiano |
|
Each team's language is determined by the "language" key in their labels:
{
"language": "fr",
"stood": "Stood",
"dealsInProgress": "Affaires en cours",
// ... other labels
}Default: If no "language" key is found, defaults to English ("en")
Sync Behavior: The sync function automatically detects each team's language and loads the appropriate translation file
Go to Admin Console
Click Sync and refresh labels - automatically syncs with correct language for each team
View language statistics in success message (e.g., "French: 3 teams, German: 2 teams")
Open Manage Labels for any team
Select language from dropdown
Click Load Translations to load all labels from selected language
Save changes to apply translations to the team
Each language file contains currency settings:
{
"currencyCode": "EUR",
"currencySymbol": "€"
}All language files currently use:
Currency Code: EUR (ISO 4217)
Currency Symbol: €
To add a new currency for a specific language:Edit the language file: Update currencyCode and currencySymbol
// web/labels.json
{
"language": "en",
"currencyCode": "USD",
"currencySymbol": "$",
// ... other labels
}