Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n + FR #1610

Merged
merged 51 commits into from
Apr 11, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
0e42520
add localization tags and 3 translation examples
pciavald Mar 23, 2021
79f5a25
build all locales, warn on missing translation
pciavald Mar 23, 2021
2991cd3
Version française V1.0 de la traduction
Mar 25, 2021
5f45a66
delete yarn.lock
pciavald Mar 25, 2021
42fd53a
update package.json with upstream
pciavald Mar 26, 2021
7fe0d10
re-add @angular/localize
pciavald Mar 26, 2021
d0f5b97
merge upstream
pciavald Mar 26, 2021
5a17b8d
fix merge
pciavald Mar 26, 2021
5455084
re-add extract command
pciavald Mar 26, 2021
58bfd22
add ids
pciavald Mar 26, 2021
e85b3ec
replace added spans by ng-containers
pciavald Mar 26, 2021
ff7648a
fix duplicate id
pciavald Mar 26, 2021
aca0c8b
replace spans by ng-containers
pciavald Mar 26, 2021
989c3a7
basic docs
pciavald Mar 27, 2021
50a6370
Prise en compte des review pour la traduction française V1.00
Mar 27, 2021
77fe58c
Merge branch 'i18n' of https://git.iostud.io/vs-projects/octodash int…
Mar 27, 2021
2032b28
remove irrelevant change
pciavald Mar 27, 2021
c25edcb
cleanup angular.json
pciavald Mar 27, 2021
225c7b3
fix FR translations and merge ids
pciavald Mar 27, 2021
a33ea6e
fix package-lock conflict
pciavald Mar 27, 2021
c3dcd51
revert to fr instead of fr-FR
pciavald Mar 27, 2021
165510f
revert fr-FR to fr
pciavald Mar 27, 2021
7394404
fix targets that were sources
pciavald Mar 27, 2021
e8552c8
revert out-file
pciavald Mar 27, 2021
c6673d5
revert package-lock
pciavald Mar 27, 2021
f5cb861
install angular i18n
pciavald Mar 27, 2021
e28498e
fix build issues
pciavald Mar 27, 2021
56cfc57
enable serving custom locales, build detects host lang
pciavald Mar 28, 2021
e4c400b
update command name
pciavald Mar 28, 2021
4bd4017
correct source language
pciavald Mar 28, 2021
97b8477
update locales
pciavald Mar 28, 2021
07e999e
add target language
pciavald Mar 28, 2021
e538f80
add missing semicolons
pciavald Mar 28, 2021
f9be03f
fix duplicate url setting
pciavald Mar 28, 2021
e5a3166
fix sourcelocale basehref
pciavald Mar 28, 2021
2e3105c
fix typo
pciavald Mar 28, 2021
c55ecf9
Nettoyage de coquilles de traduction fance V1.00
Mar 28, 2021
c988918
remove irrelevant files
pciavald Mar 28, 2021
4a7c8b3
Nettoyage de doublons de traduction France V1.00
Mar 29, 2021
7a97c24
Merge branch 'i18n' of https://git.iostud.io/vs-projects/octodash int…
Mar 29, 2021
15472b4
fix adjust screen
pciavald Apr 8, 2021
7e7b431
fix spacing
pciavald Apr 8, 2021
24760f4
comment fixes
pciavald Apr 9, 2021
38a2b08
Merge branch 'upstream' into i18n
pciavald Apr 9, 2021
66907de
translation adjustments
pciavald Apr 9, 2021
44991c3
please linter
pciavald Apr 9, 2021
a3de092
please linter
pciavald Apr 9, 2021
8f57b66
trailing whitespace
pciavald Apr 9, 2021
04d2608
lint autofix
pciavald Apr 9, 2021
1b49d59
use lodash and update package-lock.json
UnchartedBull Apr 11, 2021
156fd4f
revert lodash
UnchartedBull Apr 11, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,21 @@
"root": "",
"sourceRoot": "src",
"prefix": "app",
"i18n": {
"sourceLocale": "en-US",
"locales": {
"fr": "src/locale/messages.fr.xlf"
}
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"localize": true,
"aot": true,
"outputPath": "dist",
"index": "src/index.html",
"i18nMissingTranslation": "warning",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
Expand Down
Loading