From ae0c23eadaa3d57c8edfc5f66ee83ed5a5f8cbb8 Mon Sep 17 00:00:00 2001 From: symonbaikov Date: Sat, 5 Jul 2025 23:09:01 +0300 Subject: [PATCH] chore: remove unrelated config and locale files from feature branch --- server/config/i18n.js | 43 -------------------------------- server/config/locales/de-DE.json | 16 ------------ 2 files changed, 59 deletions(-) delete mode 100644 server/config/i18n.js delete mode 100644 server/config/locales/de-DE.json diff --git a/server/config/i18n.js b/server/config/i18n.js deleted file mode 100644 index 574a6b55..00000000 --- a/server/config/i18n.js +++ /dev/null @@ -1,43 +0,0 @@ -/** - * Internationalization / Localization Settings - * (sails.config.i18n) - * - * If your app will touch people from all over the world, i18n (or internationalization) - * may be an important part of your international strategy. - * - * For a complete list of options for Sails' built-in i18n support, see: - * https://sailsjs.com/config/i-18-n - * - * For more info on i18n in Sails in general, check out: - * https://sailsjs.com/docs/concepts/internationalization - */ - -module.exports.i18n = { - /** - * - * Which locales are supported? - * - */ - - locales: ['en-GB', 'en-US', 'es-ES', 'it-IT', 'ru-RU', 'de-DE'], - - /** - * - * What is the default locale for the site? Note that this setting will be - * overridden for any request that sends an "Accept-Language" header (i.e. - * most browsers), but it's still useful if you need to localize the - * response for requests made by non-browser clients (e.g. cURL). - * - */ - - defaultLocale: process.env.DEFAULT_LANGUAGE || 'en-US', - - /** - * - * Path (relative to app root) of directory to store locale (translation) - * files in. - * - */ - - // localesDirectory: 'config/locales', -}; diff --git a/server/config/locales/de-DE.json b/server/config/locales/de-DE.json deleted file mode 100644 index ceb546df..00000000 --- a/server/config/locales/de-DE.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "Card Created": "Karte erstellt", - "Card Moved": "Karte verschoben", - "New Comment": "Neuer Kommentar", - "Test Title": "Testtitel", - "This is a test text message!": "Dies ist eine Test-Textnachricht!", - "This is a *test* **markdown** `message`!": "Dies ist eine *Test*-**Markdown**-`Nachricht`!", - "This is a test html message": "Dies ist eine Test-HTML-Nachricht", - "You Were Added to Card": "Sie wurden zur Karte hinzugefügt", - "You Were Mentioned in Comment": "Sie wurden in einem Kommentar erwähnt", - "%s added you to %s on %s": "%s hat Sie zu %s am %s hinzugefügt", - "%s created %s in %s on %s": "%s hat %s in %s am %s erstellt", - "%s left a new comment to %s on %s": "%s hat einen neuen Kommentar zu %s am %s hinterlassen", - "%s mentioned you in %s on %s": "%s hat Sie in %s am %s erwähnt", - "%s moved %s from %s to %s on %s": "%s hat %s von %s nach %s am %s verschoben" -}