Skip to content

Latest commit

History

History
76 lines (49 loc) 路 3.33 KB

development-commands.md

File metadata and controls

76 lines (49 loc) 路 3.33 KB

Laravel Nova Lang

Language files for Laravel Nova translated into 40+ languages.

This is not an official Laravel package, but is built from community contributions. If you are able to help by submitting a new language, reviewing an existing language, or adding missing keys, please read our contributing guidelines and raise a PR.


Development Commands

These commands should only be run in your own local fork of the repository. They should not be run from within a Laravel application where this package is installed.

Clone the repository into a standalone directory and run composer install before running any of the below commands.

Missing Command

This command is to assist contributors to find any untranslated keys for their chosen language.

Any keys which are untranslated in the target language will be added to the file with the placeholder message "<MISSING>", ready for you to translate. Any "<MISSING>" values which you have not translated must be removed before you raise your pull request.

Insert missing translation keys for one or more languages:
php nova-lang missing de,ru
Insert missing translation keys for all languages:
php nova-lang missing --all

Reorder Command

This command is to assist contributors to ensure that the translation keys for their chosen language are in the same order as the en.json source file from Laravel Nova.

If you have imported the keys you are translating into a translation string management tool, the original order of the keys may be lost when you reexport the file. This makes the diff difficult to read because it will highlight all keys rather than just those which you have added or updated.

The language file will be updated with the correct key order. You should then commit the changes and raise a pull request.

Reorder translation keys for one or more languages:
php nova-lang reorder de,ru
Reorder translation keys for all languages:
php nova-lang reorder --all

Country Names Command

This command is to assist contributors to download the country names automatically from the Unicode Common Locale Data Repository (CLDR). We use the CLDR as the definitive source for country names, as described in the contribution guidelines.

The language file will be updated with the country names. You should then commit the changes and raise a pull request.

Insert country names for one or more languages:
php nova-lang country de,ru
Insert country names for all languages:
php nova-lang country --all

Stats Command

This command is to assist maintainers to update the completeness of each language and list of contributors in the README file.

The files README.md, docs/introduction.md and contributors.json files will be updated with the latest translated line counts and contributor usernames.

Update the list of languages, lines translated and contributors:
php nova-lang stats

Ensure you have created a GitHub personal access token and saved it in a file named .github_token in order to download the most recent contributions.