Make group suffix in share dialog translatable

This commit is contained in:
dampfklon 2013-08-22 19:52:08 +02:00
parent 02b2b5a808
commit 87c3f34a93
1 changed files with 5 additions and 1 deletions

View File

@ -213,6 +213,10 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
} }
} }
$count = 0; $count = 0;
// enable l10n support
$l = OC_L10N::get('core');
foreach ($groups as $group) { foreach ($groups as $group) {
if ($count < 15) { if ($count < 15) {
if (stripos($group, $_GET['search']) !== false if (stripos($group, $_GET['search']) !== false
@ -221,7 +225,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
|| !is_array($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP]) || !is_array($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])
|| !in_array($group, $_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP]))) { || !in_array($group, $_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP]))) {
$shareWith[] = array( $shareWith[] = array(
'label' => $group.' (group)', 'label' => $group.' ('.$l->t('group').')',
'value' => array( 'value' => array(
'shareType' => OCP\Share::SHARE_TYPE_GROUP, 'shareType' => OCP\Share::SHARE_TYPE_GROUP,
'shareWith' => $group 'shareWith' => $group