Welcome to mirror list, hosted at ThFree Co, Russian Federation.

en.php « lang « UsersManager « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9375b22176425db2fad59d3ffc6afe86ae9df3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
$translations = array(
	'UsersManager_ManageAccess' => 'Manage access',
	'UsersManager_Sites' => 'Sites',
	'UsersManager_AllWebsites' => 'All websites',
	'UsersManager_ApplyToAllWebsites' => 'Apply to all websites',
	'UsersManager_User' => 'User',
	'UsersManager_PrivNone' => 'No access',
	'UsersManager_PrivView' => 'View',
	'UsersManager_PrivAdmin' => 'Admin',
	'UsersManager_ChangeAllConfirm' => 'Are you sure you want to change \'%s\' permissions on all the websites?',
	'UsersManager_Login' => 'Login',
	'UsersManager_Password' => 'Password',
	'UsersManager_Email' => 'Email',
	'UsersManager_Alias' => 'Alias',
	'UsersManager_Token' => 'token_auth',
	'UsersManager_Edit' => 'Edit',
	'UsersManager_AddUser' => 'Add a new user',
	
	'UsersManager_MenuUsers' => 'Users',

	'UsersManager_DeleteConfirm_js' => 'Are you sure you want to delete the user %s?',
	
	'UsersManager_ExceptionLoginExists' => "Login '%s' already exists.",
	'UsersManager_ExceptionEmailExists' => "User with email '%s' already exists.",
	'UsersManager_ExceptionInvalidLogin' => "The login must contain only letters, numbers, or the characters '_' or '-' or '.'",
	'UsersManager_ExceptionInvalidPassword' => "The password length must be between 6 and 26 characters.",
	'UsersManager_ExceptionInvalidEmail' => "The email doesn't have a valid format.",
	'UsersManager_ExceptionDeleteDoesNotExist' => "User '%s' doesn't exist therefore it can't be deleted.",
	'UsersManager_ExceptionAdminAnonymous' => "You cannot grant 'admin' access to the 'anonymous' user.",
	'UsersManager_ExceptionEditAnonymous' => "The anonymous user cannot be edited or deleted. It is used by Piwik to define a user that has not logged in yet. For example, you can make your statistics public by granting the 'view' access to the 'anonymous' user.",
	'UsersManager_ExceptionUserDoesNotExist' => "User '%s' doesn't exist.",
	'UsersManager_ExceptionAccessValues' => "The parameter access must have one of the following values : [ %s ]",

);