summaryrefslogtreecommitdiffstats
path: root/lib/l10n/hu_HU.php
Commit message (Expand)AuthorAgeFilesLines
* [tx-robot] updated from transifexJenkins for ownCloud2013-05-261-0/+1
* [tx-robot] updated from transifexJenkins for ownCloud2013-05-241-1/+1
* [tx-robot] updated from transifexJenkins for ownCloud2013-04-281-3/+0
* [tx-robot] updated from transifexJenkins for ownCloud2013-04-271-3/+3
* [tx-robot] updated from transifexJenkins for ownCloud2013-04-181-1/+0
* [tx-robot] updated from transifexJenkins for ownCloud2013-03-011-0/+1
* [tx-robot] updated from transifexJenkins for ownCloud2013-02-271-1/+0
* [tx-robot] updated from transifexJenkins for ownCloud2013-02-271-0/+1
* [tx-robot] updated from transifexJenkins for ownCloud2013-02-141-2/+22
* [tx-robot] updated from transifexJenkins for ownCloud2013-01-261-2/+2
* [tx-robot] updated from transifexJenkins for ownCloud2013-01-201-1/+2
* [tx-robot] updated from transifexJenkins for ownCloud2012-12-311-10/+18
* [tx-robot] updated from transifexJenkins for ownCloud2012-11-151-1/+0
* [tx-robot] updated from transifexJenkins for ownCloud2012-10-251-0/+2
* [tx-robot] updated from transifexJenkins for ownCloud2012-09-011-0/+25
onfig; $config = new Config(); $config ->getFinder() ->ignoreVCSIgnored(true) ->exclude('config') ->exclude('data') ->notPath('3rdparty') ->notPath('build/integration/vendor') ->notPath('build/lib') ->notPath('build/node_modules') ->notPath('build/stubs') ->notPath('composer') ->notPath('node_modules') ->notPath('vendor') ->in('apps') ->in(__DIR__); // Ignore additional app directories $rootDir = new \DirectoryIterator(__DIR__); foreach ($rootDir as $node) { if (str_starts_with($node->getFilename(), 'apps')) { $return = shell_exec('git check-ignore ' . escapeshellarg($node->getFilename() . '/')); if ($return !== null) { $config->getFinder()->exclude($node->getFilename()); } } } return $config;