Implements hook_permission().
function entity_test_permission() {
$permissions = array(
'administer entity_test content' => array(
'title' => t('Administer entity_test content'),
'description' => t('Manage entity_test content'),
),
'view test entity' => array(
'title' => t('View test entities'),
),
'view test entity translations' => array(
'title' => t('View translations of test entities'),
),
);
return $permissions;
}