CJay
CJay

Reputation: 1

Extended Language Support for Infragistics

Currently, my application has the following infragistics language files loaded.

infragistics-bg.js
infragistics-de.js
infragistics-es.js
infragistics-fr.js
infragistics-ja.js
infragistics-ru.js

Based on the infragistics documentation, other languages are supported already. May I ask where can I download the complete set of files to fully introduce a new language to my application like the following.

infragistics.ui.popover-bg.js
infragistics.ui.scroll-bg.js
infragistics.ui.splitter-bg.js
infragistics.ui.toolbar-bg.js
.....etc.

I am aware that in infragistics, a custom language file can be created from scratch but I was wondering if these types of files are readily available for all of their supported languages. I was hoping to introduce support for Portuguese(pt-PT).

I tried checking the contents of the other language files I have thinking that I might be able to replicate it with other language by translating them one at a time, but it seems like it would be tedious and counter-efficient.

Upvotes: 0

Views: 52

Answers (1)

Zdravko Kolev
Zdravko Kolev

Reputation: 1607

This respository stores resource strings for the Ignite UI for Angular internacionalization.

The English resource strings and the interfaces for each localizable component's resourceStrings property are stored in the Ignite UI for Angular repository. The interfaces can be used as a schema for creating custom resource strings.

You can check the PRs for more detailed examples on how the previous i18n's were added.

Enjoy.

Upvotes: 1

Related Questions