This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #15: Remove hard-coded Dutch labels
- Controller\GuardStatsController replaced label values by translation keys replaced options and their lookup by methods and calls ::addStatsPeriodForm now passes datetype and datetime pattern to formtype ::translateRelativeDate adapted ::initDateFormatAndPattern, ::initDateTimeTransformer now use configuration parameter and support locale-dependent date formatting - Form\Type\StatsPeriodType now expects and uses datetype and datetime pattern - Resources/translations/metaclass_auth_guard.nl.yml added with Dutch translations - Resources/translations/metaclass_auth_guard.en.yml added with English translations - Resources/views/Guard/statistics_content.html.twig added trans calls - DependencyInjection\Configuration::getConfigTreeBuilder added ui.dateTimeFormat - DependencyInjection\MetaclassAuthenticationGuardExtension::load now sets param: metaclass_auth_guard.ui.dateTimeFormat - Readme.md restored the Web based user interface feature - Resources/doc/Installation.md added doc on: - Bundle parameter metaclass_auth_guard.ui.dateTimeFormat - services parameter metaclass_auth_guard.statistics.StatsPeriod.formType - Available translations (&clone me on Github) Issue #17: Default configuration set without adding to config.yml - DependencyInjection\Configuration::getConfigTreeBuilder added ->addDefaultsIfNotSet() to each arraynode Make web based user interface more extendable: - Resources/config/services.yml added parameters metaclass_auth_guard.statistics.StatsPeriod.formType - Controller\GuardStatsController::addStatsPeriodForm now uses parameter metaclass_auth_guard.statistics.StatsPeriod.formType ::initDateFormatAndPattern may be overridden for setting locale dependent (custom) patterns
- Loading branch information
1 parent
726865c
commit b2bb71c
Showing
11 changed files
with
329 additions
and
101 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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,55 @@ | ||
statistics: | ||
title: Authentication Guard | ||
|
||
history: | ||
title: Authentication history | ||
show: Show authentication history | ||
|
||
statisticsByUserName: | ||
isUsernameBlocked: Username blocked | ||
|
||
tresholds_governor_params: | ||
countingSince: Counting since | ||
blockUsernamesFor: Block usernames for | ||
blockIpAddressesFor: Block IP addresses for | ||
allowReleasedUserOnAddressFor: Release user on address for | ||
limitPerUserName: Maximum per username | ||
limitBasePerIpAddress: Maximum per IP adress | ||
|
||
secu_requests: | ||
username: Username | ||
loginsFailed: Failed logins | ||
loginsSucceeded: Successfull logins | ||
col: | ||
dtFrom: From | ||
username: Username | ||
ipAddress: Address | ||
loginsSucceeded: Succeeded | ||
loginsFailed: Failed | ||
ipAddressBlocked: address | ||
usernameBlocked: name | ||
usernameBlockedForIpAddress: name on addresd | ||
usernameBlockedForCookie: name on cookie | ||
blockedColumns: Number of attepmts blocked for | ||
|
||
countsGroupedByIpAddress: | ||
col: | ||
blocked: Blocked | ||
usernames: Names | ||
|
||
StatsPeriod: | ||
From: From | ||
Until: Until | ||
history: History | ||
statistics: IP Adresses | ||
submit: Show | ||
|
||
relativeDate: | ||
minutes: minutes | ||
hours: hours | ||
days: days | ||
|
||
boolean: | ||
0: Yes | ||
1: No | ||
|
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,55 @@ | ||
statistics: | ||
title: Inlogbeveiliging | ||
|
||
history: | ||
title: Inloghistorie | ||
show: Toon inloghistorie | ||
|
||
statisticsByUserName: | ||
isUsernameBlocked: Gebruikersnaam geblokkeerd | ||
|
||
tresholds_governor_params: | ||
countingSince: Telt sinds | ||
blockUsernamesFor: Blokkeeer gebruikersnamen voor | ||
blockIpAddressesFor: Blokkeeer IP adressen voor | ||
allowReleasedUserOnAddressFor: Gebruikersnaam op adres vrijgeven voor | ||
limitPerUserName: Maximum per gebruikersnaam | ||
limitBasePerIpAddress: Maximum per Adres | ||
|
||
secu_requests: | ||
username: Gebruikersnaam | ||
loginsFailed: Mislukte inlogpogingen | ||
loginsSucceeded: Succesvolle inlogpogingen | ||
col: | ||
dtFrom: Vanaf | ||
username: Naam | ||
ipAddress: Adres | ||
loginsSucceeded: Succesvol | ||
loginsFailed: Mislukt | ||
ipAddressBlocked: adres | ||
usernameBlocked: naam | ||
usernameBlockedForIpAddress: naam op adres | ||
usernameBlockedForCookie: naam op cookie | ||
blockedColumns: Aantal pogingen geblokkeerd op | ||
|
||
countsGroupedByIpAddress: | ||
col: | ||
blocked: Blok | ||
usernames: Namen | ||
|
||
StatsPeriod: | ||
From: Van | ||
Until: Tot | ||
history: Historie | ||
statistics: IP Adressen | ||
submit: Tonen | ||
|
||
relativeDate: | ||
minutes: minuten | ||
hours: uren | ||
days: dagen | ||
|
||
boolean: | ||
0: Nee | ||
1: Ja | ||
|
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