igniteui-i18n-core 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/i18n/EN/chat-resources.d.ts +5 -0
- package/i18n/EN/chat-resources.js +13 -0
- package/i18n/EN/index.d.ts +1 -0
- package/i18n/EN/index.js +1 -0
- package/i18n/EN/resources.js +2 -0
- package/i18n/interfaces/chat.interface.d.ts +10 -0
- package/i18n/interfaces/chat.interface.js +1 -0
- package/i18n/interfaces/resources.interface.d.ts +2 -1
- package/index.d.ts +2 -0
- package/index.js +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* English resource strings for Ignite UI Chat
|
|
3
|
+
*/
|
|
4
|
+
export const ChatResourceStringsEN = {
|
|
5
|
+
chat_suggestions_header: 'Suggestions',
|
|
6
|
+
chat_reaction_copy: 'Copy',
|
|
7
|
+
chat_reaction_like: 'Like',
|
|
8
|
+
chat_reaction_dislike: 'Dislike',
|
|
9
|
+
chat_reaction_regenerate: 'Regenerate',
|
|
10
|
+
chat_attachment_label: 'Attachment',
|
|
11
|
+
chat_attachments_list_label: 'Attachments',
|
|
12
|
+
chat_message_copied: 'Message copied to clipboard',
|
|
13
|
+
};
|
package/i18n/EN/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from './action-strip-resources.js';
|
|
|
2
2
|
export * from './banner-resources.js';
|
|
3
3
|
export * from './calendar-resources.js';
|
|
4
4
|
export * from './carousel-resources.js';
|
|
5
|
+
export * from './chat-resources.js';
|
|
5
6
|
export * from './chip-resources.js';
|
|
6
7
|
export * from './combo-resources.js';
|
|
7
8
|
export * from './date-picker-resources.js';
|
package/i18n/EN/index.js
CHANGED
|
@@ -2,6 +2,7 @@ export * from './action-strip-resources.js';
|
|
|
2
2
|
export * from './banner-resources.js';
|
|
3
3
|
export * from './calendar-resources.js';
|
|
4
4
|
export * from './carousel-resources.js';
|
|
5
|
+
export * from './chat-resources.js';
|
|
5
6
|
export * from './chip-resources.js';
|
|
6
7
|
export * from './combo-resources.js';
|
|
7
8
|
export * from './date-picker-resources.js';
|
package/i18n/EN/resources.js
CHANGED
|
@@ -2,6 +2,7 @@ import { ActionStripResourceStringsEN } from './action-strip-resources.js';
|
|
|
2
2
|
import { BannerResourceStringsEN } from './banner-resources.js';
|
|
3
3
|
import { CalendarResourceStringsEN } from './calendar-resources.js';
|
|
4
4
|
import { CarouselResourceStringsEN } from './carousel-resources.js';
|
|
5
|
+
import { ChatResourceStringsEN } from './chat-resources.js';
|
|
5
6
|
import { ChipResourceStringsEN } from './chip-resources.js';
|
|
6
7
|
import { ComboResourceStringsEN } from './combo-resources.js';
|
|
7
8
|
import { DatePickerResourceStringsEN } from './date-picker-resources.js';
|
|
@@ -23,6 +24,7 @@ export const ResourceStringsEN = {
|
|
|
23
24
|
...BannerResourceStringsEN,
|
|
24
25
|
...CalendarResourceStringsEN,
|
|
25
26
|
...CarouselResourceStringsEN,
|
|
27
|
+
...ChatResourceStringsEN,
|
|
26
28
|
...ChipResourceStringsEN,
|
|
27
29
|
...ComboResourceStringsEN,
|
|
28
30
|
...DatePickerResourceStringsEN,
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface IChatResourceStrings {
|
|
2
|
+
chat_suggestions_header?: string;
|
|
3
|
+
chat_reaction_copy?: string;
|
|
4
|
+
chat_reaction_like?: string;
|
|
5
|
+
chat_reaction_dislike?: string;
|
|
6
|
+
chat_reaction_regenerate?: string;
|
|
7
|
+
chat_attachment_label?: string;
|
|
8
|
+
chat_attachments_list_label?: string;
|
|
9
|
+
chat_message_copied?: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -2,6 +2,7 @@ import type { IActionStripResourceStrings } from './action-strip.interface.js';
|
|
|
2
2
|
import type { IBannerResourceStrings } from './banner.interface.js';
|
|
3
3
|
import type { ICalendarResourceStrings } from './calendar.interface.js';
|
|
4
4
|
import type { ICarouselResourceStrings } from './carousel.interface.js';
|
|
5
|
+
import type { IChatResourceStrings } from './chat.interface.js';
|
|
5
6
|
import type { IChipResourceStrings } from './chip.interface.js';
|
|
6
7
|
import type { IComboResourceStrings } from './combo.interface.js';
|
|
7
8
|
import type { IDatePickerResourceStrings } from './date-picker.interface.js';
|
|
@@ -15,5 +16,5 @@ import type { IQueryBuilderResourceStrings } from './query-builder.interface.js'
|
|
|
15
16
|
import type { ITimePickerResourceStrings } from './time-picker.interface.js';
|
|
16
17
|
import type { ITreeResourceStrings } from './tree.interface.js';
|
|
17
18
|
import type { IValidationResourceStrings } from './validation.interface.js';
|
|
18
|
-
export interface IResourceStrings extends IGridResourceStrings, IActionStripResourceStrings, IBannerResourceStrings, ICalendarResourceStrings, ICarouselResourceStrings, IChipResourceStrings, IComboResourceStrings, IDatePickerResourceStrings, IDateRangePickerResourceStrings, IDockManagerResourceStrings, IFileInputResourceStrings, IListResourceStrings, IPaginatorResourceStrings, IQueryBuilderResourceStrings, ITimePickerResourceStrings, ITreeResourceStrings, IValidationResourceStrings {
|
|
19
|
+
export interface IResourceStrings extends IGridResourceStrings, IActionStripResourceStrings, IBannerResourceStrings, ICalendarResourceStrings, ICarouselResourceStrings, IChatResourceStrings, IChipResourceStrings, IComboResourceStrings, IDatePickerResourceStrings, IDateRangePickerResourceStrings, IDockManagerResourceStrings, IFileInputResourceStrings, IListResourceStrings, IPaginatorResourceStrings, IQueryBuilderResourceStrings, ITimePickerResourceStrings, ITreeResourceStrings, IValidationResourceStrings {
|
|
19
20
|
}
|
package/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from './i18n/EN/action-strip-resources.js';
|
|
|
2
2
|
export * from './i18n/EN/banner-resources.js';
|
|
3
3
|
export * from './i18n/EN/calendar-resources.js';
|
|
4
4
|
export * from './i18n/EN/carousel-resources.js';
|
|
5
|
+
export * from './i18n/EN/chat-resources.js';
|
|
5
6
|
export * from './i18n/EN/chip-resources.js';
|
|
6
7
|
export * from './i18n/EN/combo-resources.js';
|
|
7
8
|
export * from './i18n/EN/date-picker-resources.js';
|
|
@@ -20,6 +21,7 @@ export type * from './i18n/interfaces/action-strip.interface.js';
|
|
|
20
21
|
export type * from './i18n/interfaces/banner.interface.js';
|
|
21
22
|
export type * from './i18n/interfaces/calendar.interface.js';
|
|
22
23
|
export type * from './i18n/interfaces/carousel.interface.js';
|
|
24
|
+
export type * from './i18n/interfaces/chat.interface.js';
|
|
23
25
|
export type * from './i18n/interfaces/chip.interface.js';
|
|
24
26
|
export type * from './i18n/interfaces/combo.interface.js';
|
|
25
27
|
export type * from './i18n/interfaces/date-picker.interface.js';
|
package/index.js
CHANGED
|
@@ -2,6 +2,7 @@ export * from './i18n/EN/action-strip-resources.js';
|
|
|
2
2
|
export * from './i18n/EN/banner-resources.js';
|
|
3
3
|
export * from './i18n/EN/calendar-resources.js';
|
|
4
4
|
export * from './i18n/EN/carousel-resources.js';
|
|
5
|
+
export * from './i18n/EN/chat-resources.js';
|
|
5
6
|
export * from './i18n/EN/chip-resources.js';
|
|
6
7
|
export * from './i18n/EN/combo-resources.js';
|
|
7
8
|
export * from './i18n/EN/date-picker-resources.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-i18n-core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "IgniteUI for Angular localization resources package",
|
|
5
5
|
"author": "Infragistics",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"igniteui-i18n-resources": "1.0.
|
|
34
|
+
"igniteui-i18n-resources": "1.0.5"
|
|
35
35
|
},
|
|
36
36
|
"peerDependenciesMeta": {
|
|
37
37
|
"igniteui-i18n-resources": {
|