summaryrefslogtreecommitdiffstats
path: root/settings/l10n/ug.js
Commit message (Expand)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2017-08-051-2/+2
* [tx-robot] updated from transifexNextcloud bot2017-07-151-7/+7
* [tx-robot] updated from transifexNextcloud bot2017-06-301-9/+9
* [tx-robot] updated from transifexNextcloud bot2017-06-231-1/+1
* [tx-robot] updated from transifexNextcloud bot2017-06-071-2/+2
* [tx-robot] updated from transifexNextcloud bot2017-03-271-6/+1
* [tx-robot] updated from transifexNextcloud bot2017-01-241-3/+3
* [tx-robot] updated from transifexNextcloud bot2016-12-201-1/+1
* [tx-robot] updated from transifexNextcloud bot2016-11-291-9/+7
* [tx-robot] updated from transifexJenkins for ownCloud2016-06-231-1/+1
* [tx-robot] updated from transifexJenkins for ownCloud2016-05-251-0/+1
* [tx-robot] updated from transifexJenkins for ownCloud2016-04-091-2/+2
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-021-1/+1
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-251-1/+0
* [tx-robot] updated from transifexJenkins for ownCloud2016-01-261-1/+0
* [tx-robot] updated from transifexJenkins for ownCloud2016-01-071-3/+3
* [tx-robot] updated from transifexJenkins for ownCloud2015-12-111-1/+1
* [tx-robot] updated from transifexJenkins for ownCloud2015-11-201-1/+0
* [tx-robot] updated from transifexJenkins for ownCloud2015-07-231-1/+0
* [tx-robot] updated from transifexJenkins for ownCloud2015-04-141-3/+1
* [tx-robot] updated from transifexJenkins for ownCloud2015-03-251-2/+0
* [tx-robot] updated from transifexJenkins for ownCloud2015-03-181-1/+0
* [tx-robot] updated from transifexJenkins for ownCloud2015-03-051-1/+0
* [tx-robot] updated from transifexJenkins for ownCloud2015-02-251-1/+0
* [tx-robot] updated from transifexJenkins for ownCloud2014-12-201-2/+1
* [tx-robot] updated from transifexJenkins for ownCloud2014-12-091-4/+0
* [tx-robot] updated from transifexJenkins for ownCloud2014-11-111-2/+1
* [tx-robot] updated from transifexJenkins for ownCloud2014-10-311-3/+3
* update all translation files to js and jsonThomas Müller2014-10-291-0/+72
>(strpos(@ini_get('disable_functions'), 'set_time_limit') === false) { @set_time_limit(0); } if (!OC::$CLI) { echo "This script can be run from the command line only" . PHP_EOL; exit(1); } set_exception_handler('exceptionHandler'); if (!function_exists('posix_getuid')) { echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL; exit(1); } $user = posix_getpwuid(posix_getuid()); $configUser = posix_getpwuid(fileowner(OC::$configDir . 'config.php')); if ($user['name'] !== $configUser['name']) { echo "Console has to be executed with the user that owns the file config/config.php" . PHP_EOL; echo "Current user: " . $user['name'] . PHP_EOL; echo "Owner of config.php: " . $configUser['name'] . PHP_EOL; echo "Try adding 'sudo -u " . $configUser['name'] . " ' to the beginning of the command (without the single quotes)" . PHP_EOL; exit(1); } $oldWorkingDir = getcwd(); if ($oldWorkingDir === false) { echo "This script can be run from the Nextcloud root directory only." . PHP_EOL; echo "Can't determine current working dir - the script will continue to work but be aware of the above fact." . PHP_EOL; } else if ($oldWorkingDir !== __DIR__ && !chdir(__DIR__)) { echo "This script can be run from the Nextcloud root directory only." . PHP_EOL; echo "Can't change to Nextcloud root directory." . PHP_EOL; exit(1); } if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) { echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php" . PHP_EOL; } $application = new Application(\OC::$server->getConfig(), \OC::$server->getEventDispatcher(), \OC::$server->getRequest(), \OC::$server->getLogger()); $application->loadCommands(new ArgvInput(), new ConsoleOutput()); $application->run(); } catch (Exception $ex) { exceptionHandler($ex); } catch (Error $ex) { exceptionHandler($ex); }