Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsgiehl <stefan@piwik.org>2013-10-11 17:25:06 +0400
committersgiehl <stefan@piwik.org>2013-10-12 12:24:51 +0400
commit8d72beba7fb66943760c854e9e2a1a51e17f00c3 (patch)
treec8d2e3f1923f3cd5bc7602f6e0b9854c9128d9f7 /core/Console.php
parentb04dd862305443101107cccccec49c96106cea52 (diff)
added some translation tool scripts to core console
Diffstat (limited to 'core/Console.php')
-rw-r--r--core/Console.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/Console.php b/core/Console.php
index 2dc2c0d1a6..6473ba573b 100644
--- a/core/Console.php
+++ b/core/Console.php
@@ -17,6 +17,9 @@ use Piwik\Plugins\CoreConsole\GitCommit;
use Piwik\Plugins\CoreConsole\GitPull;
use Piwik\Plugins\CoreConsole\GitPush;
use Piwik\Plugins\CoreConsole\RunTests;
+use Piwik\Plugins\CoreConsole\Translations\LanguageCodes;
+use Piwik\Plugins\CoreConsole\Translations\LanguageNames;
+use Piwik\Plugins\CoreConsole\Translations\PluginsWithTranslations;
use Piwik\Plugins\CoreConsole\WatchLog;
use Symfony\Component\Console\Application;
@@ -34,6 +37,9 @@ class Console
$console->add(new GitPull());
$console->add(new GitCommit());
$console->add(new GitPush());
+ $console->add(new PluginsWithTranslations());
+ $console->add(new LanguageCodes());
+ $console->add(new LanguageNames());
$console->run();
}