blob: df1dc57257f489deb462c168e74b30f2892a42ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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',
),
);
|