Add Ukrainian (uk) language support #3526
Merged
+1,718
−36
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.
Summary
This pull request adds support for the Ukrainian language (uk) to the application. It includes adding the language to the list of supported languages, updating various language-related configurations, and adding the Ukrainian translation file.
Files Changed
project.inlang/settings.json
: Added "uk" to thelanguageTags
array.src/app/app.constants.ts
: Added Ukrainian language support to various language-related enums and imports.src/app/features/config/form-cfgs/language-selection-form.const.ts
: Added Ukrainian language option to the language selection form.src/app/t.const.ts
: Added Ukrainian language constant.src/assets/i18n/en.json
: Added Ukrainian language name to the English translations.src/assets/i18n/uk.json
: Added new file containing Ukrainian translations.Code Changes
project.inlang/settings.json
src/app/app.constants.ts
src/app/features/config/form-cfgs/language-selection-form.const.ts
src/app/t.const.ts
src/assets/i18n/en.json
src/assets/i18n/uk.json
A new file was added containing the complete Ukrainian translation for the application. This file includes translations for all UI elements, messages, and settings.
Reason for Changes
These changes were made to add support for the Ukrainian language in the application. This will allow Ukrainian-speaking users to use the application in their native language, improving accessibility and user experience for this demographic.
Impact of Changes
Test Plan