Remove unneeded addTranslations() calls

This commit is contained in:
Vincent Petry 2015-01-14 14:36:23 +01:00
parent d6f1ff7993
commit 87f81e5926
8 changed files with 0 additions and 11 deletions

View File

@ -29,7 +29,6 @@ OCP\User::checkLoggedIn();
OCP\Util::addStyle('files', 'files');
OCP\Util::addStyle('files', 'upload');
OCP\Util::addStyle('files', 'mobile');
OCP\Util::addTranslations('files');
OCP\Util::addscript('files', 'app');
OCP\Util::addscript('files', 'file-upload');
OCP\Util::addscript('files', 'jquery.iframe-transport');

View File

@ -1,6 +1,5 @@
<?php
\OCP\Util::addTranslations('files_encryption');
\OCP\Util::addscript('files_encryption', 'encryption');
\OCP\Util::addscript('files_encryption', 'detect-migration');

View File

@ -21,8 +21,6 @@ OC::$CLASSPATH['OC\Files\Storage\SFTP'] = 'files_external/lib/sftp.php';
OC::$CLASSPATH['OC_Mount_Config'] = 'files_external/lib/config.php';
OC::$CLASSPATH['OCA\Files\External\Api'] = 'files_external/lib/api.php';
OCP\Util::addTranslations('files_external');
OCP\App::registerAdmin('files_external', 'settings');
if (OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') == 'yes') {
OCP\App::registerPersonal('files_external', 'personal');

View File

@ -21,7 +21,6 @@ OC::$CLASSPATH['OCA\Files_Sharing\Exceptions\BrokenPath'] = 'files_sharing/lib/e
OCP\Share::registerBackend('file', 'OC_Share_Backend_File');
OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file');
OCP\Util::addTranslations('files_sharing');
OCP\Util::addScript('files_sharing', 'share');
OCP\Util::addScript('files_sharing', 'external');

View File

@ -1,8 +1,6 @@
<?php
$l = \OC::$server->getL10N('files_trashbin');
OCP\Util::addTranslations('files_trashbin');
// register hooks
\OCA\Files_Trashbin\Trashbin::registerHooks();

View File

@ -1,6 +1,5 @@
<?php
OCP\Util::addTranslations('files_versions');
OCP\Util::addscript('files_versions', 'versions');
OCP\Util::addStyle('files_versions', 'versions');

View File

@ -57,7 +57,6 @@ if(count($configPrefixes) > 0) {
OC_Group::useBackend($groupBackend);
}
OCP\Util::addTranslations('user_ldap');
OCP\Backgroundjob::registerJob('OCA\user_ldap\lib\Jobs');
OCP\Backgroundjob::registerJob('\OCA\User_LDAP\Jobs\CleanUp');

View File

@ -28,8 +28,6 @@ OC_APP::registerAdmin('user_webdavauth', 'settings');
OC_User::registerBackend("WEBDAVAUTH");
OC_User::useBackend( "WEBDAVAUTH" );
OCP\Util::addTranslations('user_webdavauth');
// add settings page to navigation
$entry = array(
'id' => "user_webdavauth_settings",