Skip to main content

Command line tools for extracting and importing translations from and to excel files

Project description

translations-util

Command line tools for extracting and importing translations from and to Excel files.

Installation

CLI tool

Installs the package globally so that you can use the command line tool from anywhere.

pip install translations-util
Install as a Python package

Installation with Poetry

To install using Poetry:

poetry add -D translations-util

Which will install the utils as a development dependency in your local python environment.

Usage

This tool allows you to update translations in a TypeScript file based on an Excel file. The Excel file should contain the translations in a specific format.

CLI usage

Command

translation-util {import,export} ...

Import Command

translation-util import <excel_file> <ts_file> <sheet_name>
  • <excel_file>: Path to the Excel file containing the translations.
  • <ts_file>: Path to the TypeScript file to be updated.
  • <sheet_name>: Name of the sheet in the Excel file that contains the translations.

Export Command

translation-util export <ts_file> <excel_file> <sheet_name>
  • <ts_file>: Path to the TypeScript file containing translations.
  • <excel_file>: Path to the Excel file to save exported translations.
  • <sheet_name>: Sheet name to save translations under in the Excel file.

Example

translation-util import path/to/translations.xlsx path/to/translations-french.ts French

This command will update the translations-french.ts file with the French translations from the translations.xlsx file, under the French Excel sheet name.

translation-util export path/to/translations-french.ts path/to/translations.xlsx French

This command will export the translations from the translations-french.ts file to the translations.xlsx file, under the French Excel sheet name. The Excel will follow the format from the Excel File Format section.

Excel File Format

The Excel file should have at least three columns:

  1. Key: The key for the translation.
  2. English Text: The original English text.
  3. Translation: The translated text.

Features

  • Placeholder Matching: Ensures that placeholders in the format {variable} are consistent between the English text and the translation.
  • Translation Blocks: Detects and processes translation blocks marked by // TODO: vvv Translate below vvv and // TODO: ^^^ Translate above ^^^.

Example

Assuming the Excel workbook has a sheet named French with the following content:

Key English Text French text
common.greeting-{name} Hello, {name}! Bonjour, {name}!
common.goodbye Goodbye! Au revoir!
login.username Username Nom d'utilisateur
login.password Password
error.invalid-translation-of-variable-{name} Invalid translation of variable {name} Traduction invalide de variable {nom}

The import-translations command will update the TypeScript file with the following content:

export const translations = {
    ..., // Other translations
    'common.existing-translation': 'Traduction existante',
    'common.greeting-{name}': 'Bonjour, {name}!',
    'common.goodbye': 'Au revoir!',
    'login.username': "Nom d'utilisateur",
    'login.password': '', // TODO Translate
    'error.invalid-translation-of-variable-{name}': '', // TODO Translate
    ... // Other translations
};

Development

To contribute to this project, clone the repository and install the dependencies using Poetry:

git clone <repository-url>
cd translations-util
poetry install

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

translations_util-0.2.4.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

translations_util-0.2.4-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file translations_util-0.2.4.tar.gz.

File metadata

  • Download URL: translations_util-0.2.4.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.9.10 Darwin/24.1.0

File hashes

Hashes for translations_util-0.2.4.tar.gz
Algorithm Hash digest
SHA256 41cf5b3be1897d956419eabb9d381f4693b2155dadf2687a7b4efc34ca94912b
MD5 bebb5c7443367dd91aa1cebc078f1ce6
BLAKE2b-256 5c4a2d2aa97f5db1680d59013f198af2d9c81afad17891538f468d3feb80f4fb

See more details on using hashes here.

File details

Details for the file translations_util-0.2.4-py3-none-any.whl.

File metadata

  • Download URL: translations_util-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.9.10 Darwin/24.1.0

File hashes

Hashes for translations_util-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 002175f4eb304300088c4e9a09dbb7e3eae07a9cf438f865e120609a98ae79c9
MD5 c4d8b8c4adcd78393ba9e791801a2a47
BLAKE2b-256 ad907aae82de3a2a5c6e7ba840b17d291ad891f86b3b81000c7bb2eb0bc06b4e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page