Skip to content
This repository was archived by the owner on Aug 1, 2021. It is now read-only.

Commit 4f15cfb

Browse files
Merge pull request #44 from brunohbrito/dev
Added translation
2 parents cbf8116 + dc500a9 commit 4f15cfb

File tree

125 files changed

+8189
-1258
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+8189
-1258
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*.userosscache
88
*.sln.docstates
99

10+
1011
# User-specific files (MonoDevelop/Xamarin Studio)
1112
*.userprefs
1213

@@ -24,6 +25,7 @@ bld/
2425

2526
# Visual Studio 2015 cache/options directory
2627
.vs/
28+
.sonarqube/
2729
# Uncomment if you have tasks that create the project's static files in wwwroot
2830
#wwwroot/
2931

@@ -37,6 +39,7 @@ bld/
3739
# NUNIT
3840
*.VisualState.xml
3941
TestResult.xml
42+
coverage.opencover.xml
4043

4144
# Build Results of an ATL Project
4245
[Dd]ebugPS/

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# v1.4.0
2+
1. Added Translations (auto-generate)
3+
* Spanish
4+
* French
5+
* Dutch
6+
* Russian
7+
* Chinese Simplified
8+
* Chinese Traditional
9+
10+
2. Added integration with Azure DevOps for full CI/CD.
11+
12+
3. Bug fixes
13+
14+
15+
16+
# v1.3
17+
18+
- Bug fixes
19+
- angular-oauth2-oidc Session Improvements for Angular Apps. Incluind Admin UI
20+
- Some Action attributes was HttpPost instead HttpPut (fixed)
21+
- New unity tests
122
# v1.2.3
223

324
Bug fixes

README.md

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,22 @@ We'll love it! Please [Read the docs](https://jp-project.readthedocs.io/en/lates
111111
If you need help building or running your Jp Project platform
112112
There are several ways we can help you out.
113113

114+
## v1.4.0
115+
116+
1. Added :boom: **New Translations** (auto-generate) :green_heart: :blue_heart:
117+
* Spanish
118+
* French
119+
* Dutch
120+
* Russian
121+
* Chinese Simplified
122+
* Chinese Traditional
123+
124+
<small>If you find some mistakes feel free to PR</small>
125+
126+
2. Added integration with Azure DevOps for full CI/CD. ASAP SonarQube
127+
128+
3. Bug fixesz
129+
114130
## v1.3
115131

116132
- Bug fixes
@@ -130,18 +146,10 @@ There are several ways we can help you out.
130146

131147
Check [Changelog.md](https://github.com/brunohbrito/JP-Project/blob/master/CHANGELOG.md) for a complete list of changes.
132148

133-
## v1.1
134-
- Minor bugs correction
135-
- Added localization feature to SSO
136-
- Added translation feature to User Management
137-
- Silent refresh for angular-oauth2-oidc both for User Management and Admin
138-
- Changed Security Headers to accept Azure Application Insights
139-
140-
141-
## v1.0
142-
* First release
143-
144149
# What comes next?
145150

146151
Code coverage
147152

153+
UI for Device codes
154+
155+
CI with SonarCloud

src/Backend/Jp.UserManagement/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"SendEmail": "false"
3131
},
3232
"ApplicationSettings": {
33-
"DatabaseType": "SqlServer",
33+
"DatabaseType": "MySql",
3434
"Authority": "https://localhost:5001"
3535
}
3636
}

src/Frontend/Jp.AdminUI/src/app/core/translator/translator.service.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ export class TranslatorService {
1010
{ code: "en", text: "English" },
1111
{ code: "es", text: "Spanish" },
1212
{ code: "pt", text: "Portuguese" },
13+
{ code: "fr", text: "French" },
14+
{ code: "nl", text: "Dutch" },
15+
{ code: "ru", text: "Russian" },
16+
{ code: "zh-cn", text: "Chinese Simplified" },
17+
{ code: "zh-tw", text: "Chinese Traditional" },
1318
];
1419

1520
constructor(public translate: TranslateService) {

src/Frontend/Jp.AdminUI/src/assets/i18n/en.json

Lines changed: 409 additions & 410 deletions
Large diffs are not rendered by default.

src/Frontend/Jp.AdminUI/src/assets/i18n/es.json

Lines changed: 409 additions & 402 deletions
Large diffs are not rendered by default.

src/Frontend/Jp.AdminUI/src/assets/i18n/fr.json

Lines changed: 410 additions & 0 deletions
Large diffs are not rendered by default.

src/Frontend/Jp.AdminUI/src/assets/i18n/nl.json

Lines changed: 410 additions & 0 deletions
Large diffs are not rendered by default.

src/Frontend/Jp.AdminUI/src/assets/i18n/pt.json

Lines changed: 409 additions & 402 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)