const GoogleSheetToJson = require('sheetms-webpack-plugin');

Create a Google Spreadsheet and fill it with wanted data. In "A" column place keys and in the "B" column type the relevant translation.

Name the spreadsheets as languages name provided by browser namespace.
Example languages
List you can find here: browser languages list
npm i sheetms-webpack-pluginRun yarn add or npm install command in order to add the package to your project
//Add this config in your plugins in webpack.config.jsnew GoogleSheetToJson({ spreadsheetId: 'mySecretSpreadsheetId',output: path.join(__dirname, '../src/translations/'),apiKey: yourApiKey,forceCreate: isEnvDevelopment})Create a configuration of the plugin in webpack.config.js
//This is an example output in .json file{"pt-BR": {"title":"Título em Potuguês"}"en-GB": {"title":"Title in English"}"pl-PL": {"title":"Tytuł po polsku"}}Use content generated in .json files