This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 27
Feature/#190 i18n #293
Closed
Closed
Feature/#190 i18n #293
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d3e5e5b
added i18n WIP #190
kschulz90 ca7e1e2
added language dropdown and more i18n #190
kschulz90 b21556c
i18n for shopfilter and characterStats
kschulz90 b83399f
added ger i18n
kschulz90 18ee6d3
improved splitted i18n #190
kschulz90 5adc8a9
added shop i18n #190
kschulz90 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,55 @@ | ||
{ | ||
"Logging": { | ||
"LogLevel": { | ||
"Default": "Debug", | ||
"Microsoft": "Information", | ||
"System": "Information" | ||
"Logging": { | ||
"LogLevel": { | ||
"Default": "Debug", | ||
"Microsoft": "Information", | ||
"System": "Information" | ||
}, | ||
"Console": { | ||
"FormatterName": "simple", | ||
"FormatterOptions": { | ||
"SingleLine": true | ||
} | ||
} | ||
}, | ||
"Console": { | ||
"FormatterName": "simple", | ||
"FormatterOptions": { | ||
"SingleLine": true | ||
} | ||
} | ||
}, | ||
"IdentityServer": { | ||
"Authority": "https://localhost:8000", | ||
"Clients": [ | ||
{ | ||
"ClientId": "crpg-web-ui", | ||
"ClientName": "cRPG Web UI", | ||
"ClientSecrets": [{ "Value": "" }], | ||
"RequireClientSecret": false, | ||
"AllowedGrantTypes": ["authorization_code"], | ||
"AllowedScopes": ["openid", "user_api"], | ||
"AllowedCorsOrigins": ["http://localhost:8080"], | ||
"RedirectUris": ["http://localhost:8080", "http://localhost:8080/silent-renew.html"], | ||
"PostLogoutRedirectUris": ["http://localhost:8080"], | ||
"AccessTokenType": "Jwt", | ||
"RequireConsent": false, | ||
"AccessTokenLifetime": 3600, | ||
"IdentityTokenLifetime": 300, | ||
"RequirePkce": true, | ||
"AllowAccessTokensViaBrowser": true, | ||
"AllowOfflineAccess": true | ||
}, | ||
{ | ||
"ClientId": "crpg-game-server", | ||
"ClientName": "cRPG Game Server", | ||
"ClientSecrets": [{ "Value": "rA1Rpt3Nf9mwBQNsWP2Zzl+DrFkhnHVki8uwN1pycCU=" }], | ||
"AllowedGrantTypes": ["client_credentials"], | ||
"AllowedScopes": ["openid", "game_api"], | ||
"AccessTokenLifetime": 31536000 | ||
} | ||
], | ||
"Providers": { | ||
"Steam": { "ApplicationKey": "CD25FE3041550BD0F4B36A53F35E033F" } | ||
} | ||
}, | ||
"Urls": "https://localhost:8000" | ||
"IdentityServer": { | ||
"Authority": "https://localhost:8000", | ||
"Clients": [ | ||
{ | ||
"ClientId": "crpg-web-ui", | ||
"ClientName": "cRPG Web UI", | ||
"ClientSecrets": [{ "Value": "" }], | ||
"RequireClientSecret": false, | ||
"AllowedGrantTypes": ["authorization_code"], | ||
"AllowedScopes": ["openid", "user_api"], | ||
"AllowedCorsOrigins": ["http://localhost:8080"], | ||
"RedirectUris": [ | ||
"http://localhost:8080", | ||
"http://localhost:8080/silent-renew.html" | ||
], | ||
"PostLogoutRedirectUris": ["http://localhost:8080"], | ||
"AccessTokenType": "Jwt", | ||
"RequireConsent": false, | ||
"AccessTokenLifetime": 3600, | ||
"IdentityTokenLifetime": 300, | ||
"RequirePkce": true, | ||
"AllowAccessTokensViaBrowser": true, | ||
"AllowOfflineAccess": true | ||
}, | ||
{ | ||
"ClientId": "crpg-game-server", | ||
"ClientName": "cRPG Game Server", | ||
"ClientSecrets": [ | ||
{ "Value": "rA1Rpt3Nf9mwBQNsWP2Zzl+DrFkhnHVki8uwN1pycCU=" } | ||
], | ||
"AllowedGrantTypes": ["client_credentials"], | ||
"AllowedScopes": ["openid", "game_api"], | ||
"AccessTokenLifetime": 31536000 | ||
} | ||
], | ||
"Providers": { | ||
"Steam": { "ApplicationKey": "FE0A32B959ED3C6561E1F3F3BE68F75D" } | ||
} | ||
}, | ||
"Urls": "https://localhost:8000" | ||
} |
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 |
---|---|---|
|
@@ -6,5 +6,6 @@ | |
"tabWidth": 2, | ||
"htmlWhitespaceSensitivity": "ignore", | ||
"arrowParens": "avoid", | ||
"trailingComma": "es5" | ||
"trailingComma": "es5", | ||
"endOfLine": "auto" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not sure if you need to change the default value ( |
||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
discarding pls, just add to
git stash