diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-24 13:53:01 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-29 10:09:12 +0100 |
commit | 2f19de11e4c77b0f9195c3868960d8105541359f (patch) | |
tree | ce8e3e45d519c392a7582e2fe452402e070301c0 /core/register_command.php | |
parent | d71cd680dd6133ad254fd296319aeab6deb77686 (diff) | |
download | nextcloud-server-2f19de11e4c77b0f9195c3868960d8105541359f.tar.gz nextcloud-server-2f19de11e4c77b0f9195c3868960d8105541359f.zip |
adding console command to generate javascript translation files based on existing php translation files
read server side translations from json files
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php index aaf10d946b2..c5d9b6e342d 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -22,4 +22,5 @@ $application->add(new OC\Core\Command\Maintenance\Repair($repair, OC_Config::get $application->add(new OC\Core\Command\User\Report()); $application->add(new OC\Core\Command\User\ResetPassword(\OC::$server->getUserManager())); $application->add(new OC\Core\Command\User\LastSeen()); +$application->add(new OC\Core\Command\L10n\CreateJs()); |