Issue #1807776 follow-up by plach: Minor fixes for Support both simple and editorial workflows for translating entities.

8.0.x
webchick 2013-01-30 13:41:03 -08:00
parent 4ccedfb04e
commit 008b9e69f8
2 changed files with 3 additions and 3 deletions

View File

@ -462,7 +462,7 @@ abstract class WebTestBase extends TestBase {
* @param array $permissions
* Array of permission names to assign to user. Note that the user always
* has the default permissions derived from the "authenticated users" role.
* @param $name
* @param string $name
* The user name.
*
* @return object|false

View File

@ -559,9 +559,9 @@ function translation_entity_permission() {
case 'bundle':
foreach (entity_get_bundles($entity_type) as $bundle => $bundle_info) {
if (translation_entity_enabled($entity_type, $bundle)) {
$t_args['%bundle_label'] = isset($info['bundles'][$bundle]['label']) ? $info['bundles'][$bundle]['label'] : $bundle;
$t_args['%bundle_label'] = isset($bundle_info['label']) ? $bundle_info['label'] : $bundle;
$permission["translate $bundle $entity_type"] = array(
'title' => t('Translate %bundle_label @entity_label', $t_args),
'title' => t('Translate %bundle_label @entity_label', $t_args),
);
}
}