Skip to content

Commit

Permalink
correct base href values for i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
auumgn committed Jan 22, 2024
1 parent 6fdf8c3 commit bc8b8cb
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions ui/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,47 +5,47 @@
"projects": {
"ui": {
"i18n": {
"sourceLocale": { "code": "en", "baseHref": "en/../" },
"sourceLocale": { "code": "en", "baseHref": "en/" },
"locales": {
"cs": {
"translation": "src/i18n/messages.cs.xlf",
"baseHref": "cs/../"
"baseHref": "cs/"
},
"es": {
"translation": "src/i18n/messages.es.xlf",
"baseHref": "es/../"
"baseHref": "es/"
},
"fr": {
"translation": "src/i18n/messages.fr.xlf",
"baseHref": "fr/../"
"baseHref": "fr/"
},
"it": {
"translation": "src/i18n/messages.it.xlf",
"baseHref": "it/../"
"baseHref": "it/"
},
"ja": {
"translation": "src/i18n/messages.ja.xlf",
"baseHref": "ja/../"
"baseHref": "ja/"
},
"ko": {
"translation": "src/i18n/messages.ko.xlf",
"baseHref": "ko/../"
"baseHref": "ko/"
},
"pt": {
"translation": "src/i18n/messages.pt.xlf",
"baseHref": "pt/../"
"baseHref": "pt/"
},
"ru": {
"translation": "src/i18n/messages.ru.xlf",
"baseHref": "ru/../"
"baseHref": "ru/"
},
"zh-CN": {
"translation": "src/i18n/messages.zh-CN.xlf",
"baseHref": "zh-CN/../"
"baseHref": "zh-CN/"
},
"zh-TW": {
"translation": "src/i18n/messages.zh-TW.xlf",
"baseHref": "zh-TW/../"
"baseHref": "zh-TW/"
}
}
},
Expand Down

0 comments on commit bc8b8cb

Please sign in to comment.