Skip to content

Commit

Permalink
chore: fix some issues (#8024)
Browse files Browse the repository at this point in the history
Co-authored-by: taiga-family-bot <[email protected]>
  • Loading branch information
waterplea and taiga-family-bot authored Jul 3, 2024
1 parent 7523890 commit 6a4e908
Show file tree
Hide file tree
Showing 156 changed files with 183 additions and 216 deletions.
2 changes: 1 addition & 1 deletion projects/addon-commerce/tokens/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
tuiCreateToken,
tuiCreateTokenFromFactory,
} from '@taiga-ui/cdk/utils/miscellaneous';
import {tuiExtractI18n} from '@taiga-ui/i18n/tools';
import {tuiExtractI18n} from '@taiga-ui/i18n/utils';
import type {Observable} from 'rxjs';
import {of} from 'rxjs';

Expand Down
1 change: 1 addition & 0 deletions projects/addon-doc/components/example/example.style.less
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@

.t-tabs {
flex-grow: 1;
box-shadow: none;
}

.t-code-editor {
Expand Down
5 changes: 2 additions & 3 deletions projects/addon-doc/components/language-switcher/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ import {ChangeDetectionStrategy, Component, inject} from '@angular/core';
import {FormControl, ReactiveFormsModule} from '@angular/forms';
import {TuiDataList} from '@taiga-ui/core/components/data-list';
import {TuiFlagPipe} from '@taiga-ui/core/pipes/flag';
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/enums';
import type {TuiLanguageName} from '@taiga-ui/i18n/interfaces';
import {TuiLanguageSwitcherService} from '@taiga-ui/i18n/switch';
import type {TuiCountryIsoCode, TuiLanguageName} from '@taiga-ui/i18n/types';
import {TuiLanguageSwitcherService} from '@taiga-ui/i18n/utils';
import {TuiSelectModule} from '@taiga-ui/legacy/components/select';

@Component({
Expand Down
1 change: 1 addition & 0 deletions projects/addon-doc/components/page/page.style.less
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
.t-tabs {
flex: 1;
margin: 1.125rem 0.3125rem 0 0;
box-shadow: none;

:host-context(tui-root._mobile) & {
margin-top: 0.25rem;
Expand Down
2 changes: 1 addition & 1 deletion projects/addon-table/tokens/i18n.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {tuiCreateTokenFromFactory} from '@taiga-ui/cdk/utils/miscellaneous';
import {tuiExtractI18n} from '@taiga-ui/i18n/tools';
import {tuiExtractI18n} from '@taiga-ui/i18n/utils';

/**
* tui-reorder i18n button
Expand Down
2 changes: 1 addition & 1 deletion projects/core/pipes/flag/flag.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type {PipeTransform} from '@angular/core';
import {inject, Pipe} from '@angular/core';
import {TUI_ASSETS_PATH} from '@taiga-ui/core/tokens';
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/enums';
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/types';

@Pipe({
standalone: true,
Expand Down
2 changes: 1 addition & 1 deletion projects/core/tokens/i18n.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {tuiCreateTokenFromFactory} from '@taiga-ui/cdk/utils/miscellaneous';
import {tuiExtractI18n} from '@taiga-ui/i18n/tools';
import {tuiExtractI18n} from '@taiga-ui/i18n/utils';

/**
* Localized months names
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
import {Component} from '@angular/core';
import {Component, inject} from '@angular/core';
import {FormControl, FormGroup, ReactiveFormsModule} from '@angular/forms';
import {changeDetection} from '@demo/emulate/change-detection';
import {encapsulation} from '@demo/emulate/encapsulation';
import {TuiDay} from '@taiga-ui/cdk';
import {TUI_DATE_FORMAT, TUI_DEFAULT_DATE_FORMAT} from '@taiga-ui/core';
import type {TuiLanguage} from '@taiga-ui/i18n';
import {TUI_LANGUAGE} from '@taiga-ui/i18n';
import {TuiInputDateModule} from '@taiga-ui/legacy';
import type {BehaviorSubject, Observable} from 'rxjs';
import {map, switchMap} from 'rxjs';
import {map} from 'rxjs';

@Component({
standalone: true,
Expand All @@ -19,10 +17,8 @@ import {map, switchMap} from 'rxjs';
providers: [
{
provide: TUI_DATE_FORMAT,
deps: [TUI_LANGUAGE],
useFactory: (lang: BehaviorSubject<Observable<TuiLanguage>>) =>
lang.pipe(
switchMap(lang => lang),
useFactory: () =>
inject(TUI_LANGUAGE).pipe(
map(({name}) => ({
...TUI_DEFAULT_DATE_FORMAT,
mode: name === 'english' ? 'MDY' : 'DMY',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import {Component} from '@angular/core';
import {Component, inject} from '@angular/core';
import {FormsModule} from '@angular/forms';
import {changeDetection} from '@demo/emulate/change-detection';
import {encapsulation} from '@demo/emulate/encapsulation';
import {TUI_DEFAULT_NUMBER_FORMAT, TUI_NUMBER_FORMAT} from '@taiga-ui/core';
import type {TuiLanguage} from '@taiga-ui/i18n';
import {TUI_LANGUAGE} from '@taiga-ui/i18n';
import {TuiInputNumberModule, TuiTextfieldControllerModule} from '@taiga-ui/legacy';
import type {BehaviorSubject, Observable} from 'rxjs';
import {map, switchMap} from 'rxjs';
import {map} from 'rxjs';

@Component({
standalone: true,
Expand All @@ -18,10 +16,8 @@ import {map, switchMap} from 'rxjs';
providers: [
{
provide: TUI_NUMBER_FORMAT,
deps: [TUI_LANGUAGE],
useFactory: (lang: BehaviorSubject<Observable<TuiLanguage>>) =>
lang.pipe(
switchMap(lang => lang),
useFactory: () =>
inject(TUI_LANGUAGE).pipe(
map(({name}) => ({
...TUI_DEFAULT_NUMBER_FORMAT,
thousandSeparator: name === 'english' ? ',' : ' ',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```ts
import {TuiLanguageName} from '@taiga-ui/i18n/interfaces';
import {tuiDocLanguageSwitcher} from '@taiga-ui/i18n/switch';
import {TuiLanguageName} from '@taiga-ui/i18n/types';
import {tuiDocLanguageSwitcher} from '@taiga-ui/i18n/utils';

@Component({
standalone: true,
Expand Down
2 changes: 1 addition & 1 deletion projects/demo/src/modules/customization/i18n/app.module.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```ts
import {TuiLanguageName} from '@taiga-ui/i18n/interfaces';
import {TuiLanguageName} from '@taiga-ui/i18n/types';
import {tuiDocLanguageSwitcher} from '@taiga-ui/i18n/switch';

@Component({
Expand Down
1 change: 0 additions & 1 deletion projects/i18n/enums/index.ts

This file was deleted.

6 changes: 2 additions & 4 deletions projects/i18n/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
export * from '@taiga-ui/i18n/enums';
export * from '@taiga-ui/i18n/interfaces';
export * from '@taiga-ui/i18n/languages';
export * from '@taiga-ui/i18n/switch';
export * from '@taiga-ui/i18n/tokens';
export * from '@taiga-ui/i18n/tools';
export * from '@taiga-ui/i18n/types';
export * from '@taiga-ui/i18n/utils';
2 changes: 1 addition & 1 deletion projects/i18n/languages/belarusian/addon-commerce.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/types';

export const TUI_BELARUSIAN_LANGUAGE_ADDON_COMMERCE: TuiLanguageCommerce = {
cardNumber: ['Нумар', 'Нумар карты'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/belarusian/addon-editor.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageEditor} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageEditor} from '@taiga-ui/i18n/types';

export const TUI_BELARUSIAN_LANGUAGE_ADDON_EDITOR: TuiLanguageEditor = {
colorSelectorModeNames: ['Колер', 'Градыент'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/belarusian/addon-table.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageTable} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageTable} from '@taiga-ui/i18n/types';

export const TUI_BELARUSIAN_LANGUAGE_ADDON_TABLE: TuiLanguageTable = {
showHideText: 'Паказаць/Схаваць',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/belarusian/belarusian.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguage} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguage} from '@taiga-ui/i18n/types';

import {TUI_BELARUSIAN_LANGUAGE_ADDON_COMMERCE} from './addon-commerce';
import {TUI_BELARUSIAN_LANGUAGE_ADDON_EDITOR} from './addon-editor';
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/belarusian/core.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCore} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCore} from '@taiga-ui/i18n/types';

import {TUI_BELARUSIAN_LANGUAGE_COUNTRIES} from './countries';

Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/belarusian/countries.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/enums';
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/types';

export const TUI_BELARUSIAN_LANGUAGE_COUNTRIES: Record<TuiCountryIsoCode, string> = {
AD: 'Андора',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/belarusian/kit.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageKit} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageKit} from '@taiga-ui/i18n/types';

export const TUI_BELARUSIAN_LANGUAGE_KIT: TuiLanguageKit = {
cancel: 'Скасаваць',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/chinese/addon-commerce.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/types';

export const TUI_CHINESE_LANGUAGE_ADDON_COMMERCE: TuiLanguageCommerce = {
cardNumber: ['号码', '信用卡号码'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/chinese/addon-editor.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageEditor} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageEditor} from '@taiga-ui/i18n/types';

export const TUI_CHINESE_LANGUAGE_ADDON_EDITOR: TuiLanguageEditor = {
colorSelectorModeNames: ['纯色', '渐变色'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/chinese/addon-table.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageTable} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageTable} from '@taiga-ui/i18n/types';

export const TUI_CHINESE_LANGUAGE_ADDON_TABLE: TuiLanguageTable = {
showHideText: '显示/隐藏',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/chinese/chinese.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguage} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguage} from '@taiga-ui/i18n/types';

import {TUI_CHINESE_LANGUAGE_ADDON_COMMERCE} from './addon-commerce';
import {TUI_CHINESE_LANGUAGE_ADDON_EDITOR} from './addon-editor';
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/chinese/core.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCore} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCore} from '@taiga-ui/i18n/types';

import {TUI_CHINESE_LANGUAGE_COUNTRIES} from './countries';

Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/chinese/countries.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/enums';
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/types';

export const TUI_CHINESE_LANGUAGE_COUNTRIES: Record<TuiCountryIsoCode, string> = {
AD: '安道尔',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/chinese/kit.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageKit} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageKit} from '@taiga-ui/i18n/types';

export const TUI_CHINESE_LANGUAGE_KIT: TuiLanguageKit = {
cancel: '撤消',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/dutch/addon-commerce.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/types';

export const TUI_DUTCH_LANGUAGE_ADDON_COMMERCE: TuiLanguageCommerce = {
cardNumber: ['Nummer', 'Kaartnummer'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/dutch/addon-editor.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageEditor} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageEditor} from '@taiga-ui/i18n/types';

export const TUI_DUTCH_LANGUAGE_ADDON_EDITOR: TuiLanguageEditor = {
colorSelectorModeNames: ['Effen kleur', 'Kleurverloop'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/dutch/addon-table.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageTable} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageTable} from '@taiga-ui/i18n/types';

export const TUI_DUTCH_LANGUAGE_ADDON_TABLE: TuiLanguageTable = {
showHideText: 'Toon/Verberg',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/dutch/core.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCore} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCore} from '@taiga-ui/i18n/types';

import {TUI_DUTCH_LANGUAGE_COUNTRIES} from './countries';

Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/dutch/countries.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/enums';
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/types';

export const TUI_DUTCH_LANGUAGE_COUNTRIES: Record<TuiCountryIsoCode, string> = {
AD: 'Andorra',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/dutch/dutch.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguage} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguage} from '@taiga-ui/i18n/types';

import {TUI_DUTCH_LANGUAGE_ADDON_COMMERCE} from './addon-commerce';
import {TUI_DUTCH_LANGUAGE_ADDON_EDITOR} from './addon-editor';
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/dutch/kit.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageKit} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageKit} from '@taiga-ui/i18n/types';

export const TUI_DUTCH_LANGUAGE_KIT: TuiLanguageKit = {
cancel: 'Annuleren',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/english/addon-commerce.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/types';

export const TUI_ENGLISH_LANGUAGE_ADDON_COMMERCE: TuiLanguageCommerce = {
cardNumber: ['Number', 'Card number'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/english/addon-editor.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageEditor} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageEditor} from '@taiga-ui/i18n/types';

export const TUI_ENGLISH_LANGUAGE_ADDON_EDITOR: TuiLanguageEditor = {
colorSelectorModeNames: ['Solid color', 'Gradient'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/english/addon-table.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageTable} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageTable} from '@taiga-ui/i18n/types';

export const TUI_ENGLISH_LANGUAGE_ADDON_TABLE: TuiLanguageTable = {
showHideText: 'Show/Hide',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/english/core.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCore} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCore} from '@taiga-ui/i18n/types';

import {TUI_ENGLISH_LANGUAGE_COUNTRIES} from './countries';

Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/english/countries.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/enums';
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/types';

export const TUI_ENGLISH_LANGUAGE_COUNTRIES: Record<TuiCountryIsoCode, string> = {
AD: 'Andorra',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/english/english.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguage} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguage} from '@taiga-ui/i18n/types';

import {TUI_ENGLISH_LANGUAGE_ADDON_COMMERCE} from './addon-commerce';
import {TUI_ENGLISH_LANGUAGE_ADDON_EDITOR} from './addon-editor';
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/english/kit.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageKit} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageKit} from '@taiga-ui/i18n/types';

export const TUI_ENGLISH_LANGUAGE_KIT: TuiLanguageKit = {
cancel: 'Cancel',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/french/addon-commerce.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/types';

export const TUI_FRENCH_LANGUAGE_ADDON_COMMERCE: TuiLanguageCommerce = {
cardNumber: ['Number', 'Numéro de carte'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/french/addon-editor.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageEditor} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageEditor} from '@taiga-ui/i18n/types';

export const TUI_FRENCH_LANGUAGE_ADDON_EDITOR: TuiLanguageEditor = {
colorSelectorModeNames: ['Couleur unie', 'Dégradé de couleur'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/french/addon-table.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageTable} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageTable} from '@taiga-ui/i18n/types';

export const TUI_FRENCH_LANGUAGE_ADDON_TABLE: TuiLanguageTable = {
showHideText: 'Afficher/Cacher',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/french/core.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCore} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCore} from '@taiga-ui/i18n/types';

import {TUI_FRENCH_LANGUAGE_COUNTRIES} from './countries';

Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/french/countries.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/enums';
import type {TuiCountryIsoCode} from '@taiga-ui/i18n/types';

export const TUI_FRENCH_LANGUAGE_COUNTRIES: Record<TuiCountryIsoCode, string> = {
AD: 'Andorre',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/french/french.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguage} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguage} from '@taiga-ui/i18n/types';

import {TUI_FRENCH_LANGUAGE_ADDON_COMMERCE} from './addon-commerce';
import {TUI_FRENCH_LANGUAGE_ADDON_EDITOR} from './addon-editor';
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/french/kit.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageKit} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageKit} from '@taiga-ui/i18n/types';

export const TUI_FRENCH_LANGUAGE_KIT: TuiLanguageKit = {
cancel: 'Annuler',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/german/addon-commerce.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/types';

export const TUI_GERMAN_LANGUAGE_ADDON_COMMERCE: TuiLanguageCommerce = {
cardNumber: ['Nummer', 'Kartennummer'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/german/addon-editor.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageEditor} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageEditor} from '@taiga-ui/i18n/types';

export const TUI_GERMAN_LANGUAGE_ADDON_EDITOR: TuiLanguageEditor = {
colorSelectorModeNames: ['Farbe', 'Verlauf'],
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/german/addon-table.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageTable} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageTable} from '@taiga-ui/i18n/types';

export const TUI_GERMAN_LANGUAGE_ADDON_TABLE: TuiLanguageTable = {
showHideText: 'Anzeigen/Ausblenden',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/german/core.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type {TuiLanguageCore} from '@taiga-ui/i18n/interfaces';
import {TUI_ENGLISH_LANGUAGE_COUNTRIES} from '@taiga-ui/i18n/languages/english';
import type {TuiLanguageCore} from '@taiga-ui/i18n/types';

export const TUI_GERMAN_LANGUAGE_CORE: TuiLanguageCore = {
months: [
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/german/german.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguage} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguage} from '@taiga-ui/i18n/types';

import {TUI_GERMAN_LANGUAGE_ADDON_COMMERCE} from './addon-commerce';
import {TUI_GERMAN_LANGUAGE_ADDON_EDITOR} from './addon-editor';
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/german/kit.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageKit} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageKit} from '@taiga-ui/i18n/types';

export const TUI_GERMAN_LANGUAGE_KIT: TuiLanguageKit = {
cancel: 'Abbrechen',
Expand Down
2 changes: 1 addition & 1 deletion projects/i18n/languages/italian/addon-commerce.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/interfaces';
import type {TuiLanguageCommerce} from '@taiga-ui/i18n/types';

export const TUI_ITALIAN_LANGUAGE_ADDON_COMMERCE: TuiLanguageCommerce = {
cardNumber: ['Numero', 'Numero carta'],
Expand Down
Loading

0 comments on commit 6a4e908

Please sign in to comment.