- Automating Internationalization Workflow in Emacs
- Using react-intl to Render Strings
- Adding Translations with Google Translate Web
- Adding Translations with Google Translate in Emacs
- Adding Translations with a Custom Emacs Command
- Let Your Text Editor Work for You
Using react-intl to Render Strings
// dashboard.js
<div>
...
<FormattedMessage id='dashboard.carts.quantity-label' />
...
</div>
// en-US.json
{ ..., "dashboard.carts.quantity-label": "Quantity", ... }
// nl-NL-google.json
{ ..., "dashboard.carts.quantity-label": "Aantal Stuks", ... }
Adding Translations with Google Translate Web
Adding Translations with Google Translate in Emacs
Adding Translations with a Custom Emacs Command
(defun ri-translate ()
(interactive)
(let ((key (read-string "Specify a key: ")))
(message "Adding translation entries...")
(ri-translate--add-english-entry key)
(ri-translate--add-dutch-entry key)
(ri-translate--insert-formatted-message key)
(message "Added translation entries.")))
Let Your Text Editor Work for You