We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15f0cf2 commit 030ac20Copy full SHA for 030ac20
projects/igniteui-angular/src/lib/core/i18n/tests/tests.ts
@@ -16,7 +16,7 @@ class i18nTests {
16
public i18nFilesMatchForAllLanguages(): void {
17
this.getDirectories(i18nLanguagesPath).forEach(dir => {
18
const curDirPath = path.join(i18nLanguagesPath, dir);
19
- if (this.getFiles(curDirPath).length === this.getFiles(i18nProductPath).length) {
+ if (this.getFiles(curDirPath).length !== this.getFiles(i18nProductPath).length) {
20
errors.push(`Not all i18n component files that are available for localization have matching files for ${dir} language.
21
Check and add the appropriate resource strings with EN translation and mark the PR as 'pending localization'`
22
);
0 commit comments