Lingua is a tool designed to streamline the localization process for iOS and Android platforms. It provides a unified solution for generating localization files from a single source, Google Sheets.
There are several benefits of using the tool:
-
Unified translation system for iOS and Android platforms
-
Seamless integration with project workflows for automatic translation imports
-
Minimized risk of typo errors in localization usage
-
Enhanced productivity through intelligent auto-completion and semantic clarity
-
Safeguard against referencing non-existent translations
In order to setup Google sheet, we need to complete two steps. First one is to create a sheet with predefined structure, and the second one is to obtain api key and sheet id.
We have prepared a tamplate for sheet structure for you. What you have to do is to open the link below and make a copy File > Make a copy
Mobile Localizations Template - Google Sheets
Sheet structure: For detailed information about the sheet structure used in the Lingua localization tool, please refer to the Sheet Structure Documentation.
Important: Make sure to replace the existing API key in your application with the newly generated one. Also, ensure that the Google Sheet you're trying to access has its sharing settings configured to allow access to anyone with the link. You can do this by clicking on "Share" in the upper right corner of the Google Sheet and selecting "Anyone with the link."
The sheet id can easly be accessed from the url after you have create a copy of the document tamplate.
https://docs.google.com/spreadsheets/d/
1GpaPpO4JMleZPd8paSW4qPBQxjImm2xD8yJhvZOP-8w
Here are the steps to enable the Google Sheets API and create an API key:
-
Go to the https://console.cloud.google.com/.
-
If you haven't already, create a new project or select an existing one.
-
In the left sidebar, click on "APIs & Services"
-
Click on "+ ENABLE APIS AND SERVICES" at the top of the page.
-
In the search bar, type "Google Sheets API" and select it from the list.
-
Click on "ENABLE" to enable the Google Sheets API for your project.
-
After the API is enabled, go back to the "APIs & Services" > "Credendtials" page.
-
Click on "CREATE CREDENTIALS" at the top of the page.
-
In the dropdown, select "API key"
Wait a bit until the key is generated and an information modal with the message API key created
will be shown.
The Lingua macOS app provides a user-friendly interface for managing your localization process seamlessly. You can configure your settings and initiate the translation process directly from the app.
You can download the macOS app from App Store. Follow the installation guide available on the page to get started with the app.
- Settings Configuration: Easily configure and manage your settings through the app's settings panel.
- Translation Initiation: Initiate the translation process with a single click without the need for terminal commands.
For those who prefer using the terminal or require scriptable solutions, Lingua offers a terminal app that allows you to manage and initiate translations directly from the command line.
Currently we support the tool to be installed via Homebrew
$ brew tap poviolabs/lingua
$ brew install lingua
Lingua runs on Linux as well.
-
Download the latest release
Lingua_Linux
from GitHub Releases based on your machine, eitherLingua_Linux_x86_64
orLingua_Linux_arm64
-
Make the binary executable:
$ chmod +x /path/to/Lingua_Linux_x86_64 $ mv Lingua_Linux lingua $ sudo mv /path/to/lingua /usr/local/bin
Please follow below instructions to use Lingua in terminal.
Create a configuration file as a starting point to adapt as your needs, lingua_config.json
or any other .json
file.
To create a sample configuration file as a starting point to adapt to your needs, run lingua config init
. The tool will create a file named lingua_config.json
in the directory you are running the Lingua tool.
Then in the configuration file created you need to provide your data, like below:
{
"localization": {
"apiKey": "<google_api_key>",
"sheetId": "<google_spreadsheet_id>",
"outputDirectory": "path/to/Resources/Localization"
}
}
The output directory property should be the path where you want the tool to create localization files.
-
For iOS it can be any directory on your project.
After you run the command, for the first time, you have to
Add files to 'YourProject'
in Xcode.
NOTE: If you are using Xcode 16 and have structured your project using Folders instead of Groups, this step is not necessary. -
For Android, since the translation are placed in a specific project directory, the output directory it should look something like this:
path/YourProject/app/src/main/res
Since iOS does not have a built in feature to access the localization safely, we have made this possible using Lingua tool. In the configuration file you have to provide the path where the default language strings are stored and where the Swift file you want to be created. With that the tool will create Lingua.swift with an enumeration to easily access localizations in your app.
{
"localization": {
"apiKey": "<google_api_key>",
"sheetId": "<google_spreadsheet_id>",
"outputDirectory": "path/to/Resources/Localization",
"swiftCode": {
"stringsDirectory": "path/to/Resources/Localization/en.lproj",
"outputSwiftCodeFileDirectory": "path/to/Resources/Localization"
}
}
}
Now you can run the tool in terminal, switch to your project directory and run:
iOS
$ lingua ios /path/to/lingua_config.json
Android
$ lingua android /path/to/lingua_config.json
Best Usage Practices
To ensure you're leveraging the tool optimally, both locally and in the context of CICD, we recommend you delve into our Best Usage Practices guide.