diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-09-01 13:23:37 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-09-01 13:23:37 +0200 |
commit | 10bd64debdf15a181def233ef8685c15d528c5e1 (patch) | |
tree | 3e6b9f1d7c9dee398d0b799c559bcfce150ebd58 /settings | |
parent | 0d6b84dad330c386c5675cd5b039fcd41caca4f5 (diff) | |
download | nextcloud-server-10bd64debdf15a181def233ef8685c15d528c5e1.tar.gz nextcloud-server-10bd64debdf15a181def233ef8685c15d528c5e1.zip |
translation support enhanced
Diffstat (limited to 'settings')
-rw-r--r-- | settings/js/users.js | 2 | ||||
-rw-r--r--[-rwxr-xr-x] | settings/templates/admin.php | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/settings/js/users.js b/settings/js/users.js index 6026b22d1aa..d0a3c1c21ab 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -182,7 +182,7 @@ UserList={ }; var label; if(isadmin){ - label = t('files', 'add group'); + label = t('core', 'add group'); }else{ label = null; } diff --git a/settings/templates/admin.php b/settings/templates/admin.php index b701b0e839a..a02d3f5cfe4 100755..100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -13,7 +13,9 @@ if(!$_['htaccessworking']) { <fieldset class="personalblock"> <legend><strong><?php echo $l->t('Security Warning');?></strong></legend> - <span class="securitywarning">Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root.</span> + <span class="securitywarning"> + <?php echo $l->t('Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root.'); ?> + </span> </fieldset> <?php @@ -100,6 +102,6 @@ if(!$_['htaccessworking']) { <p class="personalblock"> <strong>ownCloud</strong> <?php echo(OC_Util::getVersionString()); ?> <?php echo(OC_Util::getEditionString()); ?> (<?php echo(OC_Updater::ShowUpdatingHint()); ?>)<br /> - Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>. + <? echo $l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.'); ?> </p> |