Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki-plugin-oauthgeneric
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
709
public
dokuwiki-plugin-oauthgeneric
Commits
2be6d676
Unverified
Commit
2be6d676
authored
Feb 15, 2022
by
Andreas Gohr
Committed by
GitHub
Feb 15, 2022
Browse files
Options
Downloads
Plain Diff
Merge pull request #4 from ilicz/master
Add CS localization and fix issue #3
parents
9d0f577c
68ca9c81
Branches
main
Tags
3.0.0
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
lang/cs/settings.php
+31
-0
31 additions, 0 deletions
lang/cs/settings.php
lang/en/settings.php
+3
-3
3 additions, 3 deletions
lang/en/settings.php
with
34 additions
and
3 deletions
lang/cs/settings.php
0 → 100644
+
31
−
0
View file @
2be6d676
<?php
/**
* Czech language file for oauthgeneric plugin
*
* @author David 'ilicz' Klementa <ilicz@inmail.cz>
*/
$lang
[
'key'
]
=
'Aplikační UID'
;
$lang
[
'secret'
]
=
'Aplikační heslo'
;
$lang
[
'authurl'
]
=
'URL pro autentizaci'
;
$lang
[
'tokenurl'
]
=
'URL pro získání tokenu'
;
$lang
[
'userurl'
]
=
'Relativní URL pro získání uživatelských informací z API (musí vracet JSON data autentizovaného uživatele)'
;
$lang
[
'authmethod'
]
=
'Autorizační metoda pro získání uživatelských informací z API'
;
$lang
[
'scopes'
]
=
'Scopes to request (comma separated)'
;
$lang
[
'scopes'
]
=
'Požadovaná oprávnění (scopes, oddělená čárkou)'
;
$lang
[
'json-user'
]
=
'Objektová cesta k uživatelskému jménu (tečková notace)'
;
$lang
[
'json-name'
]
=
'Objektová cesta k celému jménu uživatele (tečkovánotace)'
;
$lang
[
'json-mail'
]
=
'Objektová cesta k emailu uživatele (tečková notace)'
;
$lang
[
'json-grps'
]
=
'Objektová cesta ke skupinám uživatele (tečková notace)'
;
$lang
[
'label'
]
=
'Titulek přihlašovacího tlačítka'
;
$lang
[
'color'
]
=
'Barva přihlašovacího tlačítka'
;
$lang
[
'authmethod_o_0'
]
=
'Hlavička OAuth'
;
$lang
[
'authmethod_o_1'
]
=
'Hlavička Bearer'
;
$lang
[
'authmethod_o_6'
]
=
'Hlavička Token'
;
$lang
[
'authmethod_o_2'
]
=
'Query String v1'
;
$lang
[
'authmethod_o_3'
]
=
'Query String v2'
;
$lang
[
'authmethod_o_4'
]
=
'Query String v3'
;
$lang
[
'authmethod_o_5'
]
=
'Query String v4'
;
This diff is collapsed.
Click to expand it.
lang/en/settings.php
+
3
−
3
View file @
2be6d676
...
@@ -14,9 +14,9 @@ $lang['authmethod'] = 'Authorization method used when talking to the user API';
...
@@ -14,9 +14,9 @@ $lang['authmethod'] = 'Authorization method used when talking to the user API';
$lang
[
'scopes'
]
=
'Scopes to request (comma separated)'
;
$lang
[
'scopes'
]
=
'Scopes to request (comma separated)'
;
$lang
[
'json-user'
]
=
'Access to the username in dot notation'
;
$lang
[
'json-user'
]
=
'Access to the username in dot notation'
;
$lang
[
'json-name'
]
=
'Access to the
user
name in dot notation'
;
$lang
[
'json-name'
]
=
'Access to the
full
name in dot notation'
;
$lang
[
'json-mail'
]
=
'Access to the user
name
in dot notation'
;
$lang
[
'json-mail'
]
=
'Access to the user
email
in dot notation'
;
$lang
[
'json-grps'
]
=
'Access to the user
name
in dot notation'
;
$lang
[
'json-grps'
]
=
'Access to the user
groups
in dot notation'
;
$lang
[
'label'
]
=
'Label to display on the login button'
;
$lang
[
'label'
]
=
'Label to display on the login button'
;
$lang
[
'color'
]
=
'Color to use with the login button'
;
$lang
[
'color'
]
=
'Color to use with the login button'
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment