{
  "srcDir": "src directory",
  "languages": [
    {
      "name": "en",
      "file": "json file path. EX: path/to/messages/en.json"
    },
    {
      "name": "sw",
      "file": "json file path. EX: path/to/messages/sw.json"
    }
  ],
  "import": {
    "functionName": "function name. EX: useTranslation",
    "packagePath": "package path. EX: @/utils/translate",
    "statement": "OPTIONAL: different import statement. EX: import test as useTranslation from '@/utils/translate'"
  },
  "hook": {
    "variableName": "variable name. EX: t (must match the function name)",
    "functionName": "function name. EX: useTranslation",
    "statement": "OPTIONAL: different hook statement. EX: const t = test()"
  },
  "textReplacement": {
    "format": "text replacement format. EX: {t(\"$KEY\")} (must use $KEY as a placeholder for the translation key)"
  }
}
