aboutsummaryrefslogtreecommitdiffstats
path: root/src/i18n/apply-branding.ts
blob: 7943c099dfb70fc5080076d338f2b28af64f1c6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**
 * Apply Ferdi branding to i18n translations
 */
import { readdirSync, readJson, writeJson } from 'fs-extra';
import { join } from 'path';

console.log('Applying Ferdi branding to translations...');

// Keys to ignore when applying branding
const ignore = new Set([
  'login.customServerSuggestion',
  'login.customServerQuestion',
  'settings.app.todoServerInfo',
  'settings.app.serverMoneyInfo',
  'settings.team.teamsUnavailableInfo',
  'settings.team.contentHeadline',
  'settings.team.intro',
  'settings.team.copy',
  'settings.team.manageAction',
  'settings.app.serverMoneyInfo',
]);

// Files to ignore when applying branding
const ignoreFiles = new Set(['.DS_Store', '.', '..']);

// What to replace
const replace = {
  'meetfranz.com': 'getferdi.com',
  'meetferdi.com': 'getferdi.com', // If Franz already got replaced with Ferdi
  franz: 'Ferdi',
  '!!!': '',
};

const locales = join(__dirname, 'locales');
const files = readdirSync(locales);

const replaceFind = Object.keys(replace);
const replaceReplaceWith = Object.values(replace);

const replaceStr = (str: string, find: any[], replaceWith: string[]) => {
  for (const [i, element] of find.entries()) {
    str = str.replace(new RegExp(element, 'gi'), replaceWith[i]);
  }
  return str;
};

// eslint-disable-next-line unicorn/no-array-for-each
files.forEach(async file => {
  if (ignoreFiles.has(file)) return;

  // Read locale data
  const filePath = join(locales, file);
  const locale = await readJson(filePath);

  // Replace branding
  for (const key in locale) {
    if (!ignore.has(key)) {
      locale[key] = replaceStr(locale[key], replaceFind, replaceReplaceWith);
    }
  }

  await writeJson(filePath, locale, {
    spaces: 2,
    EOL: '\n',
  });
});