This repository contains Textpacks for Textpattern CMS. Textpacks are the translation file format Textpattern will eventually use in a future version.
To make corrections to existing translations, or to add new ones, fork the repository. Once you are done, send in a pull request. To boost workflow the repository contains synchronisation scripts and automated tests.
Adding and removing strings happens through the main translation file, en-gb.textpack. Open up the file and add or remove strings as needed (remember to place new strings where they belong). Once you are done, run the sync tool:
$ ./textpackThe Textpack tool will sync your alterations to all other Textpack files. It creates new empty strings and removes anything that is no longer present in the root translation.
When creating entirely new translations, always use the en-gb.textpack as your template and reference point – this file is always up to date.
Start by creating a new empty Textpack file:
$ touch textpacks/xx-xx.textpackThen run the Textpack sync tool:
$ ./textpackThis will populate your empty xx-xx.textpack file with an empty Textpack template.
The project uses PHPunit for running its unit tests. Before running the tests, make sure you have installed dev-requirements using Composer:
$ composer install --devTo run a test:
$ ./vendor/bin/phpunit