feedback.php 535 B

12345678910111213141516171819202122
  1. <?php
  2. return array(
  3. 'extensions' => array(
  4. 'already_enabled' => '%s is already enabled',
  5. 'disabled' => '%s is now disabled',
  6. 'enabled' => '%s is now enabled',
  7. 'no_access' => 'You have no access on %s',
  8. 'not_enabled' => '%s is not enabled yet',
  9. 'not_found' => '%s does not exist',
  10. ),
  11. 'login' => array(
  12. 'error' => 'Login is invalid',
  13. 'success' => 'You are connected',
  14. ),
  15. 'logout' => array(
  16. 'success' => 'You are disconnected',
  17. ),
  18. 'user_profile' => array(
  19. 'updated' => 'Your profile has been modified',
  20. ),
  21. );