-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSimpleSamlAuth.i18n.php
107 lines (97 loc) · 3.35 KB
/
SimpleSamlAuth.i18n.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
/**
* Internationalisation file for the SimpleSamlAuth extension
*
* @copyright (C) 2015, Jørn Åne
* @license http://www.gnu.org/licenses/lgpl.html LGPL (GNU Lesser General Public License)
*
* @file
* @ingroup SimpleSamlAuth
*/
$messages = array();
/** English
* @author Jørn Åne
* @author Kghbln
*/
$messages['en'] = array(
'simplesamlauth-desc' => 'Enables SAML authentication using '
. '[//simplesamlphp.org/ SimpleSAMLphp].',
'simplesamlauth-login' => 'Log in using SAML',
'simplesamlauth-pagedisabled' => 'This page has been disabled by the '
. '[//github.com/jornane/mwSimpleSamlAuth SimpleSamlAuth] extension.',
);
/** German (Deutsch)
* @author Kghbln
*/
$messages['de'] = array(
'simplesamlauth-desc' => 'Ermöglicht SAML-Authentifizierung mit '
. '[//simplesamlphp.org/ SimpleSAMLphp].',
);
/** Norwegian (bokmål)
* @author Jørn Åne
*/
$messages['nb'] = array(
'simplesamlauth-desc' => 'Gjør SAML-autentisering mulig ved hjelp av '
. '[//simplesamlphp.org/ SimpleSAMLphp].',
'simplesamlauth-login' => 'Logg inn ved hjelp av SAML',
'simplesamlauth-pagedisabled' => 'Denne siden er deaktivert av '
. '[//github.com/jornane/mwSimpleSamlAuth SimpleSamlAuth]-utvidelsen.',
);
/** Norwegian (nynorsk)
* @author Jørn Åne
*/
$messages['nn'] = array(
'simplesamlauth-desc' => 'Gjer SAML-autentisering mogeleg ved hjelp av '
. '[//simplesamlphp.org/ SimpleSAMLphp].',
'simplesamlauth-login' => 'Logg inn ved hjelp av SAML',
'simplesamlauth-pagedisabled' => 'Denne sida er deaktivert av '
. '[//github.com/jornane/mwSimpleSamlAuth SimpleSamlAuth]-utvidinga.',
);
/** Dutch (Nederlands)
* @author Jørn Åne
*/
$messages['nl'] = array(
'simplesamlauth-desc' => 'Maakt SAML-authenticatie mogelijk via '
. '[//simplesamlphp.org/ SimpleSAMLphp].',
'simplesamlauth-login' => 'Aanmelden via SAML',
'simplesamlauth-pagedisabled' => 'Deze pagina is uitgeschakeld door de '
. '[//github.com/jornane/mwSimpleSamlAuth SimpleSamlAuth] uitbreiding.',
);
/** Frisian (Frysk)
* @author Jørn Åne
*/
$messages['fy'] = array(
'simplesamlauth-desc' => 'Makket SAML-autentikaasje mooglik fia '
. '[//simplesamlphp.org/ SimpleSAMLphp].',
'simplesamlauth-login' => 'Oanmelde mei SAML',
'simplesamlauth-pagedisabled' => 'Dizze side is útskeakele troch de '
. '[//github.com/jornane/mwSimpleSamlAuth SimpleSamlAuth] útwreiding.',
);
/** Estonian
* @author Kristian Kankainen
*/
$messages['et'] = array(
'simplesamlauth-desc' => 'Võimaldab SAML-iga autentimise kasutades '
. '[//simplesamlphp.org/ SimpleSAMLphp].',
'simplesamlauth-login' => 'Logi sisse SAMLi kaudu',
);
/** Russian
* @author Anton Kheystver
*/
$messages['ru'] = array(
'simplesamlauth-desc' => 'Активирует SAML аутентификацию с помощью '
. '[//simplesamlphp.org/ SimpleSAMLphp].',
'simplesamlauth-login' => 'Войти с помощью SAML',
'simplesamlauth-pagedisabled' => 'Эта страница была отключена модулем '
. '[//github.com/jornane/mwSimpleSamlAuth SimpleSamlAuth].',
);
/** Chinese
* @author Liang Zhu
*/
$messages['zh'] = array(
'simplesamlauth-desc' => '使用 '
. '[//simplesamlphp.org/ SimpleSAMLphp] 启动SAML认证。',
'simplesamlauth-login' => '使用SAML登录',
'simplesamlauth-pagedisabled' => '此页面已被 '
. '[//github.com/jornane/mwSimpleSamlAuth SimpleSamlAuth] 扩展禁用。',
);