Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { Messages } from '@zeedhi/core';
Messages.add({
'pt-BR': {
translation: {
NO_NOTIFICATIONS: 'Nenhuma Notificação',
MARK_ALL_AS_READ: 'Marcar todas como lidas',
NOTIFICATIONS: 'Notificações',
SEE_ALL_NOTIFICATIONS: 'Ver todas notificações',
UNAVAILABLE_IMAGE: 'Imagem indisponível',
REFRESH: 'Atualizar',
ACTIONS: 'Ações',
FILTER: 'Filtro',
LAYOUT: 'Layout: ',
NEW_LAYOUT: 'Novo layout',
DEFAULT_LAYOUT: 'Padrão',
},
},
'en-US': {
translation: {
NO_NOTIFICATIONS: 'No Notifications',
MARK_ALL_AS_READ: 'Mark all as read',
NOTIFICATIONS: 'Notifications',
SEE_ALL_NOTIFICATIONS: 'See all notifications',
UNAVAILABLE_IMAGE: 'Unavailable image',
REFRESH: 'Refresh',
ACTIONS: 'Actions',
FILTER: 'Filter',
LAYOUT: 'Layout: ',
NEW_LAYOUT: 'New layout',
DEFAULT_LAYOUT: 'Default',
},
},
'es-ES': {
translation: {
NO_NOTIFICATIONS: 'Sin Notificación',
MARK_ALL_AS_READ: 'Marcar todo como leído',
NOTIFICATIONS: 'Notificaciones',
SEE_ALL_NOTIFICATIONS: 'Ver todas las notificaciones',
UNAVAILABLE_IMAGE: 'Imagen no disponible',
REFRESH: 'Actualizar',
ACTIONS: 'Acciones',
FILTER: 'Filtro',
LAYOUT: 'Disposición: ',
NEW_LAYOUT: 'Nueva disposición',
DEFAULT_LAYOUT: 'Default',
},
},
});
export * from './crud/crud-form';
export * from './crud/crud-button';
export * from './crud/crud-add-button';
export * from './crud/crud-cancel-button';
export * from './crud/crud-delete-button';
export * from './crud/crud-save-button';
export * from './crud/interfaces';
export * from './tek-breadcrumb-header/breadcrumb-header';
export * from './tek-breadcrumb-header/interfaces';
export * from './tek-card-title/card-title';
export * from './tek-card-title/interfaces';
export * from './tek-image/image';
export * from './tek-image/interfaces';
export * from './tek-product-card/product-card';
export * from './tek-product-card/interfaces';
export * from './tek-iterable-component-render/iterable-component-render';
export * from './tek-iterable-component-render/interfaces';
export * from './tek-iterable-carousel/iterable-carousel';
export * from './tek-iterable-carousel/interfaces';
export * from './tek-loading/loading';
export * from './tek-loading/interfaces';
export * from './tek-notifications/notifications';
export * from './tek-notifications/interfaces';
export * from './tek-grid/interfaces';
export * from './tek-grid/grid';
export * from './tek-grid/grid-column';
export * from './tek-grid/grid-columns-button';
export * from './tek-grid/grid-filter-button';
export * from './tek-grid/layout-options';
export * from './tek-grid/filter-helper';
export * from './tek-datasource/interfaces';
export * from './tek-datasource/rest-datasource';
export * from './tek-datasource/memory-datasource';
export * from './tek-tree-grid/interfaces';
export * from './tek-tree-grid/tree-grid';
export * from './tek-user-info/interfaces';
export * from './tek-user-info/tek-user-info';
export * from './tek-user-info/tek-user-info-list';
export * from './tek-drag-grid/interfaces';
export * from './tek-drag-grid/tek-drag-grid';
|