Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MichaelChirico/potools
Tools for working with translations in R
https://github.com/MichaelChirico/potools
i18n translation
Last synced: 3 months ago
JSON representation
Tools for working with translations in R
- Host: GitHub
- URL: https://github.com/MichaelChirico/potools
- Owner: MichaelChirico
- Created: 2020-07-23T12:51:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-21T13:00:51.000Z (5 months ago)
- Last Synced: 2024-07-24T09:12:48.033Z (4 months ago)
- Topics: i18n, translation
- Language: R
- Homepage: https://michaelchirico.github.io/potools/
- Size: 5.13 MB
- Stars: 55
- Watchers: 3
- Forks: 3
- Open Issues: 47
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - MichaelChirico/potools - Tools for working with translations in R (R)
README
# potools: Tools for Portability and Internationalization of R packages
## Overview
R users are a global community. From Xiamen to Santiago, Addis Ababa to Tbilisi, Ogallala to Adelaide, R users are legion and speak many different languages. To serve these diverse communities, R includes built-in tools based on the [GNU gettext system](https://www.gnu.org/software/gettext/) that make it possible to translate user-facing communications like messages, warnings, and errors. Unfortunately, this system uses new file types (`.pot` templates, `.po` files, and `.mo` binaries) that come with their own quirks and idiosyncrasies. The goal of potools is make it as easy as possible to translate your package by abstracting away as many details of the gettext system as possible.
The potool logo features a [potoo](https://en.wikipedia.org/wiki/Potoo) and was designed by [Allison Horst](https://www.allisonhorst.com).
## Installation
Start by installing the released version potools from CRAN:
```R
install.packages("potools")
```Or the development version from GitHub:
```R
# install.packages("remotes")
remotes::install_github("MichaelChirico/potools")
```You'll also need to install gettext, the GNU command line toolkit that powers potools. Installation depends on your operating system:
* On Windows, gettext is bundled with [Rtools](https://cran.r-project.org/bin/windows/Rtools/), so if you're developing packages you probably already have it.
* On Mac, it's easiest to install with [brew](https://brew.sh): `brew install gettext`
* On Linux, it's usually already installed; otherwise you'll need to install `gettext` with your distro's standard tool.
## Workflow
There are two core workflows provided by potools:
* `translate_package()` is a one-stop-shop for interactively setting your package and providing translations, as described in `?translate_package`.
* `po_extract()`, `po_create()`, `po_update()`, and `po_compile()` let you perform the individual steps of `translate_package()` as described in `vignette("developers")` and `vignette("translators")`.
## Alternative software
`potools` is by no means the first tool for facilitating internationalization; other open-source projects have deeper
experience in this domain and as a result there are some relatively mature options for working with gettext/the po
ecosystem in general. Here is a smattering of such tools that I've come across:- Poedit - https://poedit.net/ - GUI Software for writing translations
- Gtranslator - https://wiki.gnome.org/Apps/Gtranslator - GNOME Translation editor
- Lokalize - https://userbase.kde.org/Lokalize - KDE's Computer-Aided Translation system
- Virtaal - https://virtaal.translatehouse.org/ - Another FOSS software for translation on the desktop; not actively maintained
- Pootle - https://pootle.translatehouse.org/ - Web-based translation server, from the same team as Virtaal ([thesis comparing both](https://archive-ouverte.unige.ch/unige:75916)); not actively maintained
- Translate Toolkit - https://toolkit.translatehouse.org/ - Command-line utilities and Python library underlying Virtaal and Pootle, and even Weblate
- Weblate - https://weblate.org/ - Web-based translation server with git integration, [used by the R project](https://translate.rx.studio/) for its core and recommended packages [(the latter since the 2023 Sprint)](https://contributor.r-project.org/r-project-sprint-2023/projects/weblate-improvements/)
- PO mode in Emacs - https://www.emacswiki.org/emacs/PoMode