| 12345678910111213141516171819202122 |
- <?php
- return array(
- 'extensions' => array(
- 'already_enabled' => '%s is already enabled',
- 'disabled' => '%s is now disabled',
- 'enabled' => '%s is now enabled',
- 'no_access' => 'You have no access on %s',
- 'not_enabled' => '%s is not enabled yet',
- 'not_found' => '%s does not exist',
- ),
- 'login' => array(
- 'error' => 'Login is invalid',
- 'success' => 'You are connected',
- ),
- 'logout' => array(
- 'success' => 'You are disconnected',
- ),
- 'user_profile' => array(
- 'updated' => 'Your profile has been modified',
- ),
- );
|