feat: add French, Turkish, Russian, Greek and Chinese UI languages + TRY/RUB currencies

This commit is contained in:
Ulas
2026-04-13 09:40:38 +02:00
parent 01d1f583b8
commit e61644702c
13 changed files with 3002 additions and 6 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ const router = express.Router();
const VALID_MEAL_TYPES = ['breakfast', 'lunch', 'dinner', 'snack'];
const DEFAULT_MEAL_TYPES = VALID_MEAL_TYPES.join(',');
const VALID_CURRENCIES = ['EUR', 'USD', 'GBP', 'SEK', 'NOK', 'DKK', 'CHF', 'CNY', 'PLN', 'CZK', 'HUF', 'JPY', 'AUD', 'CAD'];
const VALID_CURRENCIES = ['EUR', 'USD', 'GBP', 'SEK', 'NOK', 'DKK', 'CHF', 'CNY', 'PLN', 'CZK', 'HUF', 'JPY', 'AUD', 'CAD', 'TRY', 'RUB'];
const DEFAULT_CURRENCY = 'EUR';
// --------------------------------------------------------