vcernik / easy-translations
Converting translation NEON files to Excel and back (Excel to NEON)
Installs: 10 481
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
Requires
- nette/neon: ^3.4
- nette/utils: ^4.0
- spatie/simple-excel: ^3.4
Requires (Dev)
- nette/tester: ^2.3
This package is not auto-updated.
Last update: 2024-12-20 00:11:48 UTC
README
Converting translation NEON files to Excel and back (Excel to NEON)
Install
To install the latest version of vcernik/easy-translations
use Composer.
composer require vcernik/easy-translations
Converting NEON files to Excel
You can convert to .xlsx or .csv file (it depends just on extension).
use vcernik\EasyTranslations\EasyTranslations;
EasyTranslations::NeonToExcel('FOLDER WITH NEON FILES','output.xlsx');
Converting Excel to NEON
You can convert from .xlsx or .csv file (it depends just on extension).
use vcernik\EasyTranslations\EasyTranslations;
EasyTranslations::ExcelToNeon('input.xlsx','OUTPUT FOLDER');
In case of empty strings, by default it will not generate empty line in neon file. You can change it by this:
EasyTranslations::ExcelToNeon('input.xlsx','OUTPUT FOLDER', true);