bkubicki / magento2-polish-noun-numeral-declension-adapter
Magento 2 adapter for polish noun numeral declension library
Requires
- php: ^7.2.0|~7.3.0
- bkubicki/polish-noun-numeral-declension: ^1.0
- magento/framework: ^101.0|^102.0
Requires (Dev)
- phpunit/phpunit: ^8.0.0
This package is auto-updated.
Last update: 2024-10-11 02:35:55 UTC
README
Overview
Magento 2 adapter for library bkubicki/magento2-polish-noun-numeral-declination-adapter
Usage
__p
returns phrase with count argument. If we have all strings in store in english and we translate them onto other languages (as we should),
for words that needs numeral declension, we should provide distinctive strings even in english, so translation will pick
proper declension in polish. For example for word comment:
For en_US.csv:
"comment","comment"
"comments","comments"
"comments-g","comments"
For pl_PL.csv it should look like:
"comment","komentarz"
"comments","komentarzy"
"comments-g","komentarze"
and in phtml usage will be like
<?= __p($count, 'comment', 'comments', 'comments-g') ?>
Drawback of this approach may be necessity of keeping en_US translation, but magento provides it out of the box. Although, special, numeral noun declension doesn't seem to be common and will be used only from time to time.
Prerequisites
- Magento 2.2/2.3+
- PHP 7.2/7.3
Installation
To install the extension use the following commands:
composer require bkubicki/magento2-polish-noun-numeral-declination-adapter
Tests
Unit
- Run command
./vendor/bin/phpunit -c phpunit.xml --testsuite "Unit" --coverage-html coverage/coverage-html --colors=always
- You can also use some alias:
test-unit-coverage
-vendor/bin/phpunit -c phpunit.xml --testsuite "Unit" --coverage-html coverage/coverage-html --colors=always
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Authors
License
This project is licensed under the MIT License - see the LICENSE file for details.