-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
47 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"SessionManager.ACTIVITY_TOOLTIP_TEXT": "Signed in {signedIn}, Last active {lastActive}", | ||
"SessionManager.AUTHENTICATED": "authenticated {createdElapsed}...", | ||
"SessionManager.CONFIRMATION_TITLE": "Are you sure?", | ||
"SessionManager.COULD_NOT_LOGOUT": "Could not log out of session. Try again later.", | ||
"SessionManager.CURRENT": "Current", | ||
"SessionManager.DELETE_CONFIRMATION_BUTTON": "Remove login session", | ||
"SessionManager.LAST_ACTIVE": "last active {lastAccessedElapsed}...", | ||
"SessionManager.LOGGING_OUT": "Logging out...", | ||
"SessionManager.LOG_OUT": "Log out" | ||
"SessionManager.ACTIVITY_TOOLTIP_TEXT": "Prihlásený {signedIn}, naposledy aktívny {lastActive}", | ||
"SessionManager.AUTHENTICATED": "overený {createdElapsed}...", | ||
"SessionManager.CONFIRMATION_TITLE": "Ste si istý?", | ||
"SessionManager.COULD_NOT_LOGOUT": "Nepodarilo sa odhlásiť z relácie. Skúste to znovu neskôr.", | ||
"SessionManager.CURRENT": "Aktuálny", | ||
"SessionManager.DELETE_CONFIRMATION_BUTTON": "Odstrániť reláciu prihlásenia", | ||
"SessionManager.LAST_ACTIVE": "naposledy aktívny {lastAccessedElapsed}...", | ||
"SessionManager.LOGGING_OUT": "Odhlasuje sa...", | ||
"SessionManager.LOG_OUT": "Odhlásiť sa" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
sk: | ||
SilverStripe\SessionManager\Controllers\LoginSessionController: | ||
INVALID_REQUEST: 'Neplatná požiadavka' | ||
REMOVE_SUCCESS: 'Relácia bola úspešne odstránená.' | ||
SESSION_COULD_NOT_BE_FOUND_OR_NO_LONGER_ACTIVE: 'Táto relácia sa nenašla alebo už nie je aktívna.' | ||
YOUR_SESSION_HAS_EXPIRED: 'Platnosť vašej relácie vypršala' | ||
SilverStripe\SessionManager\Extensions\MemberExtension: | ||
LEARN_MORE: 'Zistiť viac' | ||
LOGIN_SESSIONS: 'Relácie prihlásenia' | ||
has_many_LoginSessions: 'Relácie prihlásenia' | ||
SilverStripe\SessionManager\Extensions\RememberLoginHashExtension: | ||
has_one_LoginSession: 'Relácia prihlásenia' | ||
SilverStripe\SessionManager\Jobs\GarbageCollectionJob: | ||
TITLE: 'Zber odpadu správcu relácie' | ||
SilverStripe\SessionManager\Models\LoginSession: | ||
BROWSER_ON_OS: '{browser} na {os}.' | ||
PLURALNAME: 'Relácie prihlásenia' | ||
PLURALS: | ||
few: '{count} relácie prihlásenia' | ||
many: '{count} relácií prihlásenia' | ||
one: 'Relácia prihlásenia' | ||
other: '{count} relácií prihlásenia' | ||
SINGULARNAME: 'Relácia prihlásenia' | ||
belongs_to_LoginHash: 'Hash prihlásenia' | ||
db_IPAddress: 'IP adresa' | ||
db_LastAccessed: 'Posledný prístup' | ||
db_Persistent: Trvalý | ||
db_UserAgent: Prehliadač | ||
has_one_Member: Člen |