-
Notifications
You must be signed in to change notification settings - Fork 0
/
en.dict.jb-authenticationmethod.php
34 lines (26 loc) · 1.56 KB
/
en.dict.jb-authenticationmethod.php
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
<?php
/**
* @copyright Copyright (c) 2019-2024 Jeffrey Bostoen
* @license https://www.gnu.org/licenses/gpl-3.0.en.html
*
* Localized data
*/
Dict::Add('EN US', 'English', 'English', array(
// 'Class:SomeClass' => 'Class name',
// 'Class:SomeClass+' => 'More info on class name',
// 'Class:SomeClass/Attribute:some_attribute' => 'your translation for the label',
// 'Class:SomeClass/Attribute:some_attribute/Value:some_value' => 'your translation for a value',
// 'Class:SomeClass/Attribute:some_attribute/Value:some_value+' => 'your translation for more info on the value',
'Class:Person/Attribute:contact_methods' => 'Authentication methods',
'Class:AuthenticationMethod/Attribute:user_id' => 'iTop User',
'Class:AuthenticationMethod/Attribute:authentication_method' => 'Authentication method',
'Class:AuthenticationMethod/Attribute:authentication_method/Value:email' => 'Email',
'Class:AuthenticationMethod/Attribute:authentication_method/Value:facebook_id' => 'Facebook ID',
'Class:AuthenticationMethod/Attribute:authentication_method/Value:twitter_id' => 'Twitter ID',
'Class:AuthenticationMethod/Attribute:authentication_method/Value:token' => 'Token',
'Class:AuthenticationMethod/Attribute:authentication_detail' => 'Authentication detail',
'Class:AuthenticationMethod/Attribute:first_used' => 'First used',
'Class:AuthenticationMethod/Attribute:last_used' => 'Last used',
'Errors/AuthenticationMethod/InvalidEmail' => 'Invalid email address.',
'Errors/AuthenticationMethod/Duplicate' => 'Duplicate authentication method (case insensitive!).',
));