@bagelink/vue 1.12.8 → 1.12.11
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/dist/components/Menu.vue.d.ts.map +1 -1
- package/dist/components/NavBar.vue.d.ts.map +1 -1
- package/dist/components/layout/AppSidebar.vue.d.ts.map +1 -1
- package/dist/components/layout/TabsNav.vue.d.ts.map +1 -1
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/index.cjs +42 -42
- package/dist/index.mjs +20978 -20750
- package/dist/style.css +1 -1
- package/dist/types/NavLink.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/Menu.vue +3 -2
- package/src/components/NavBar.vue +3 -2
- package/src/components/layout/AppSidebar.vue +6 -5
- package/src/components/layout/TabsNav.vue +4 -3
- package/src/i18n/locales/en.json +38 -0
- package/src/i18n/locales/es.json +38 -0
- package/src/i18n/locales/fr.json +38 -0
- package/src/i18n/locales/he.json +38 -0
- package/src/i18n/locales/it.json +38 -0
- package/src/i18n/locales/ru.json +38 -0
- package/src/styles/layout.css +21 -0
- package/src/styles/mobilLayout.css +20 -0
- package/src/types/NavLink.ts +2 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NavLink.d.ts","sourceRoot":"","sources":["../../src/types/NavLink.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAEvC,MAAM,WAAW,OAAO;IACvB,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"NavLink.d.ts","sourceRoot":"","sources":["../../src/types/NavLink.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;AACjD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAEvC,MAAM,WAAW,OAAO;IACvB,KAAK,EAAE,kBAAkB,CAAA;IACzB,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,QAAQ,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;CACd"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bagelink/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.12.
|
|
4
|
+
"version": "1.12.11",
|
|
5
5
|
"description": "Bagel core sdk packages",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Bagel Studio",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"signature_pad": "^5.0.9",
|
|
91
91
|
"vue-i18n": "^11.2.8",
|
|
92
92
|
"vue-toastification": "^2.0.0-rc.5",
|
|
93
|
-
"@bagelink/utils": "1.12.
|
|
93
|
+
"@bagelink/utils": "1.12.11"
|
|
94
94
|
},
|
|
95
95
|
"scripts": {
|
|
96
96
|
"dev": "tsx watch src/index.ts",
|
package/src/components/Menu.vue
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import type { NavLink } from '@bagelink/vue'
|
|
3
3
|
import { Btn, Icon, Dropdown } from '@bagelink/vue'
|
|
4
|
+
import { resolveI18n } from '../i18n'
|
|
4
5
|
|
|
5
6
|
defineProps<{ items: NavLink[] }>()
|
|
6
7
|
</script>
|
|
@@ -9,12 +10,12 @@ defineProps<{ items: NavLink[] }>()
|
|
|
9
10
|
<div class="flex space-between m_w-100vw overflow m_-ms-1 m_px-05 m_py-025 bglTopMenu">
|
|
10
11
|
<div class="flex gap-025 m_gap-05">
|
|
11
12
|
<template v-for="item in items" :key="item.label">
|
|
12
|
-
<Dropdown v-if="item.children" :value="item.label" iconEnd="keyboard_arrow_down">
|
|
13
|
+
<Dropdown v-if="item.children" :value="resolveI18n(item.label)" iconEnd="keyboard_arrow_down">
|
|
13
14
|
<template #trigger="{ show }">
|
|
14
15
|
<Btn thin flat :class="item.class" @click="show()">
|
|
15
16
|
<Icon :name="item.icon" size="0.8" style="margin-bottom: -0.1rem" />
|
|
16
17
|
<p class="-ms-025">
|
|
17
|
-
{{ item.label }}
|
|
18
|
+
{{ resolveI18n(item.label) }}
|
|
18
19
|
</p>
|
|
19
20
|
<Icon name="keyboard_arrow_down" size="0.8" style="margin-bottom: -0.1rem" />
|
|
20
21
|
</Btn>
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import type { IconType, NavLink } from '@bagelink/vue'
|
|
3
3
|
import { Icon } from '@bagelink/vue'
|
|
4
4
|
import { onMounted, ref } from 'vue'
|
|
5
|
+
import { resolveI18n } from '../i18n'
|
|
5
6
|
|
|
6
7
|
withDefaults(
|
|
7
8
|
defineProps<{
|
|
@@ -64,7 +65,7 @@ onMounted(calcIsOpen)
|
|
|
64
65
|
>
|
|
65
66
|
<Icon :icon="link.icon" />
|
|
66
67
|
<div class="tooltip">
|
|
67
|
-
{{ link.label }}
|
|
68
|
+
{{ resolveI18n(link.label) }}
|
|
68
69
|
</div>
|
|
69
70
|
</component>
|
|
70
71
|
</div>
|
|
@@ -81,7 +82,7 @@ onMounted(calcIsOpen)
|
|
|
81
82
|
>
|
|
82
83
|
<Icon :icon="link.icon" />
|
|
83
84
|
<div class="tooltip">
|
|
84
|
-
{{ link.label }}
|
|
85
|
+
{{ resolveI18n(link.label) }}
|
|
85
86
|
</div>
|
|
86
87
|
</component>
|
|
87
88
|
<slot name="floor" />
|
|
@@ -3,6 +3,7 @@ import type { NavLink } from '@bagelink/vue'
|
|
|
3
3
|
import { Btn, Icon } from '@bagelink/vue'
|
|
4
4
|
import { inject, computed, ref, watch } from 'vue'
|
|
5
5
|
import { useRoute } from 'vue-router'
|
|
6
|
+
import { resolveI18n } from '../../i18n'
|
|
6
7
|
|
|
7
8
|
// Extended interface for links with active route tracking
|
|
8
9
|
interface LinkWithAction extends NavLink {
|
|
@@ -71,7 +72,7 @@ watch(
|
|
|
71
72
|
function isActiveRoute(link: LinkWithAction): boolean {
|
|
72
73
|
const linkPath = link.to
|
|
73
74
|
|
|
74
|
-
if (
|
|
75
|
+
if (linkPath == null || linkPath === '') {
|
|
75
76
|
return false
|
|
76
77
|
}
|
|
77
78
|
|
|
@@ -177,7 +178,7 @@ const sidebarStyles = computed(() => {
|
|
|
177
178
|
<nav class="sidebar-nav flex column flex-stretch gap-025 align-items-start scrollbar-gutter-stable">
|
|
178
179
|
<Btn
|
|
179
180
|
v-for="link in props.navLinks" :key="link.to"
|
|
180
|
-
:title="!menuState.isOpen.value && !menuState.isMobile.value ? link.label : ''" fullWidth
|
|
181
|
+
:title="!menuState.isOpen.value && !menuState.isMobile.value ? resolveI18n(link.label) : ''" fullWidth
|
|
181
182
|
alignTxt="start" class="flex-shrink-0 px-1" :class="{ 'nav-btn-active': isActiveRoute(link) }"
|
|
182
183
|
:style="{
|
|
183
184
|
backgroundColor: isActiveRoute(link) ? props.activeColor : props.bgColor,
|
|
@@ -186,7 +187,7 @@ const sidebarStyles = computed(() => {
|
|
|
186
187
|
>
|
|
187
188
|
<Icon :name="link.icon" size="1.2" />
|
|
188
189
|
<span class="nav-text">
|
|
189
|
-
{{ link.label }}
|
|
190
|
+
{{ resolveI18n(link.label) }}
|
|
190
191
|
</span>
|
|
191
192
|
</Btn>
|
|
192
193
|
</nav>
|
|
@@ -195,11 +196,11 @@ const sidebarStyles = computed(() => {
|
|
|
195
196
|
<!-- Footer Links -->
|
|
196
197
|
<Btn
|
|
197
198
|
v-for="link in props.footerLinks" :key="link.to || link.label"
|
|
198
|
-
:title="!menuState.isOpen.value && !menuState.isMobile.value ? link.label : ''" alignTxt="start"
|
|
199
|
+
:title="!menuState.isOpen.value && !menuState.isMobile.value ? resolveI18n(link.label) : ''" alignTxt="start"
|
|
199
200
|
fullWidth flat :icon="link.icon" class="flex-shrink-0 px-1" :to="link.to" @click="link.action"
|
|
200
201
|
>
|
|
201
202
|
<span class="nav-text">
|
|
202
|
-
{{ link.label }}
|
|
203
|
+
{{ resolveI18n(link.label) }}
|
|
203
204
|
</span>
|
|
204
205
|
</Btn>
|
|
205
206
|
<!-- Custom Footer Content Slot -->
|
|
@@ -116,6 +116,7 @@ onBeforeUnmount(() => {
|
|
|
116
116
|
--bgl_tabs-border-radius: var(--input-border-radius);
|
|
117
117
|
--bgl-tab-hover-bg: rgba(255, 255, 255, .4);
|
|
118
118
|
--bgl_tabs-indicator-color: var(--bgl-popup-bg);
|
|
119
|
+
--bgl-tabs-flat-indicator-color: var(--bgl-primary);
|
|
119
120
|
}
|
|
120
121
|
</style>
|
|
121
122
|
|
|
@@ -169,7 +170,7 @@ onBeforeUnmount(() => {
|
|
|
169
170
|
}
|
|
170
171
|
.bgl_flat-tabs.bgl_tabs_wrap::before{
|
|
171
172
|
background: transparent;
|
|
172
|
-
border-bottom: 1px solid var(--bgl-
|
|
173
|
+
border-bottom: 1px solid var(--bgl-tabs-flat-indicator-color);
|
|
173
174
|
border-radius: 0;
|
|
174
175
|
top: calc(var(--btn-padding) * 1.25);
|
|
175
176
|
bottom: unset;
|
|
@@ -194,11 +195,11 @@ onBeforeUnmount(() => {
|
|
|
194
195
|
}
|
|
195
196
|
.bgl_vertical-tabs .bgl_tab:hover{
|
|
196
197
|
background: transparent;
|
|
197
|
-
border-bottom: 1px solid var(--bgl-
|
|
198
|
+
border-bottom: 1px solid var(--bgl-tabs-flat-indicator-color);
|
|
198
199
|
|
|
199
200
|
}
|
|
200
201
|
.bgl_vertical-tabs .bgl_tab.active{
|
|
201
|
-
border-bottom: 1px solid var(--bgl-
|
|
202
|
+
border-bottom: 1px solid var(--bgl-tabs-flat-indicator-color);
|
|
202
203
|
}
|
|
203
204
|
.bgl_vertical-tabs.bgl_tabs_wrap::before{
|
|
204
205
|
border: none;
|
package/src/i18n/locales/en.json
CHANGED
|
@@ -209,5 +209,43 @@
|
|
|
209
209
|
"notPublished": "Not published yet",
|
|
210
210
|
"production": "Production",
|
|
211
211
|
"publishFailed": "Publish failed"
|
|
212
|
+
},
|
|
213
|
+
"admin": {
|
|
214
|
+
"content": "Content",
|
|
215
|
+
"blox": "Blox",
|
|
216
|
+
"whatsapp": "WhatsApp",
|
|
217
|
+
"newsletter": "Newsletter",
|
|
218
|
+
"agent": "Agents",
|
|
219
|
+
"users": "Users",
|
|
220
|
+
"tenants": "Organizations"
|
|
221
|
+
},
|
|
222
|
+
"userManagement": {
|
|
223
|
+
"title": "Users",
|
|
224
|
+
"notConfigured": "User management interface is not configured",
|
|
225
|
+
"notConfiguredHint": "Pass userApi to createAuthAdmin() to enable this screen.",
|
|
226
|
+
"team": "Team",
|
|
227
|
+
"filterByRole": "Filter by role",
|
|
228
|
+
"invite": "Invite",
|
|
229
|
+
"pendingInvitations": "Pending invitations",
|
|
230
|
+
"pending": "Pending",
|
|
231
|
+
"resend": "Resend",
|
|
232
|
+
"delete": "Delete",
|
|
233
|
+
"activeUsers": "Active users",
|
|
234
|
+
"active": "Active",
|
|
235
|
+
"edit": "Edit",
|
|
236
|
+
"remove": "Remove",
|
|
237
|
+
"noUsers": "No users yet",
|
|
238
|
+
"inviteFirst": "Invite the first one",
|
|
239
|
+
"inviteTitle": "Invite user",
|
|
240
|
+
"firstName": "First name",
|
|
241
|
+
"lastName": "Last name",
|
|
242
|
+
"email": "Email",
|
|
243
|
+
"role": "Role",
|
|
244
|
+
"message": "Message",
|
|
245
|
+
"inviteSent": "Invitation sent again",
|
|
246
|
+
"inviteError": "Error sending invitation",
|
|
247
|
+
"deleteInviteConfirm": "Delete the invitation?",
|
|
248
|
+
"deleteInviteError": "Error deleting invitation",
|
|
249
|
+
"removeUserConfirm": "Remove {email}?"
|
|
212
250
|
}
|
|
213
251
|
}
|
package/src/i18n/locales/es.json
CHANGED
|
@@ -209,5 +209,43 @@
|
|
|
209
209
|
"notPublished": "No publicado aún",
|
|
210
210
|
"production": "Producción",
|
|
211
211
|
"publishFailed": "Error al publicar"
|
|
212
|
+
},
|
|
213
|
+
"admin": {
|
|
214
|
+
"content": "Contenido",
|
|
215
|
+
"blox": "Blox",
|
|
216
|
+
"whatsapp": "WhatsApp",
|
|
217
|
+
"newsletter": "Boletín",
|
|
218
|
+
"agent": "Agentes",
|
|
219
|
+
"users": "Usuarios",
|
|
220
|
+
"tenants": "Organizaciones"
|
|
221
|
+
},
|
|
222
|
+
"userManagement": {
|
|
223
|
+
"title": "Usuarios",
|
|
224
|
+
"notConfigured": "La interfaz de gestión de usuarios no está configurada",
|
|
225
|
+
"notConfiguredHint": "Pasa userApi a createAuthAdmin() para habilitar esta pantalla.",
|
|
226
|
+
"team": "Equipo",
|
|
227
|
+
"filterByRole": "Filtrar por rol",
|
|
228
|
+
"invite": "Invitar",
|
|
229
|
+
"pendingInvitations": "Invitaciones pendientes",
|
|
230
|
+
"pending": "Pendiente",
|
|
231
|
+
"resend": "Reenviar",
|
|
232
|
+
"delete": "Eliminar",
|
|
233
|
+
"activeUsers": "Usuarios activos",
|
|
234
|
+
"active": "Activo",
|
|
235
|
+
"edit": "Editar",
|
|
236
|
+
"remove": "Eliminar",
|
|
237
|
+
"noUsers": "No hay usuarios aún",
|
|
238
|
+
"inviteFirst": "Invita al primero",
|
|
239
|
+
"inviteTitle": "Invitar usuario",
|
|
240
|
+
"firstName": "Nombre",
|
|
241
|
+
"lastName": "Apellido",
|
|
242
|
+
"email": "Correo electrónico",
|
|
243
|
+
"role": "Rol",
|
|
244
|
+
"message": "Mensaje",
|
|
245
|
+
"inviteSent": "Invitación reenviada",
|
|
246
|
+
"inviteError": "Error al enviar la invitación",
|
|
247
|
+
"deleteInviteConfirm": "¿Eliminar la invitación?",
|
|
248
|
+
"deleteInviteError": "Error al eliminar la invitación",
|
|
249
|
+
"removeUserConfirm": "¿Eliminar a {email}?"
|
|
212
250
|
}
|
|
213
251
|
}
|
package/src/i18n/locales/fr.json
CHANGED
|
@@ -209,5 +209,43 @@
|
|
|
209
209
|
"notPublished": "Pas encore publié",
|
|
210
210
|
"production": "Production",
|
|
211
211
|
"publishFailed": "Échec de la publication"
|
|
212
|
+
},
|
|
213
|
+
"admin": {
|
|
214
|
+
"content": "Contenu",
|
|
215
|
+
"blox": "Blox",
|
|
216
|
+
"whatsapp": "WhatsApp",
|
|
217
|
+
"newsletter": "Newsletter",
|
|
218
|
+
"agent": "Agents",
|
|
219
|
+
"users": "Utilisateurs",
|
|
220
|
+
"tenants": "Organisations"
|
|
221
|
+
},
|
|
222
|
+
"userManagement": {
|
|
223
|
+
"title": "Utilisateurs",
|
|
224
|
+
"notConfigured": "L'interface de gestion des utilisateurs n'est pas configurée",
|
|
225
|
+
"notConfiguredHint": "Passez userApi à createAuthAdmin() pour activer cet écran.",
|
|
226
|
+
"team": "Équipe",
|
|
227
|
+
"filterByRole": "Filtrer par rôle",
|
|
228
|
+
"invite": "Inviter",
|
|
229
|
+
"pendingInvitations": "Invitations en attente",
|
|
230
|
+
"pending": "En attente",
|
|
231
|
+
"resend": "Renvoyer",
|
|
232
|
+
"delete": "Supprimer",
|
|
233
|
+
"activeUsers": "Utilisateurs actifs",
|
|
234
|
+
"active": "Actif",
|
|
235
|
+
"edit": "Modifier",
|
|
236
|
+
"remove": "Retirer",
|
|
237
|
+
"noUsers": "Aucun utilisateur pour l'instant",
|
|
238
|
+
"inviteFirst": "Invitez le premier",
|
|
239
|
+
"inviteTitle": "Inviter un utilisateur",
|
|
240
|
+
"firstName": "Prénom",
|
|
241
|
+
"lastName": "Nom",
|
|
242
|
+
"email": "E-mail",
|
|
243
|
+
"role": "Rôle",
|
|
244
|
+
"message": "Message",
|
|
245
|
+
"inviteSent": "Invitation renvoyée",
|
|
246
|
+
"inviteError": "Erreur lors de l'envoi de l'invitation",
|
|
247
|
+
"deleteInviteConfirm": "Supprimer l'invitation ?",
|
|
248
|
+
"deleteInviteError": "Erreur lors de la suppression de l'invitation",
|
|
249
|
+
"removeUserConfirm": "Retirer {email} ?"
|
|
212
250
|
}
|
|
213
251
|
}
|
package/src/i18n/locales/he.json
CHANGED
|
@@ -230,5 +230,43 @@
|
|
|
230
230
|
"notPublished": "טרם פורסם",
|
|
231
231
|
"production": "פרודקשן",
|
|
232
232
|
"publishFailed": "פרסום נכשל"
|
|
233
|
+
},
|
|
234
|
+
"admin": {
|
|
235
|
+
"content": "תוכן",
|
|
236
|
+
"blox": "בלוקס",
|
|
237
|
+
"whatsapp": "וואטסאפ",
|
|
238
|
+
"newsletter": "ניוזלטר",
|
|
239
|
+
"agent": "סוכנים",
|
|
240
|
+
"users": "משתמשים",
|
|
241
|
+
"tenants": "ארגונים"
|
|
242
|
+
},
|
|
243
|
+
"userManagement": {
|
|
244
|
+
"title": "משתמשים",
|
|
245
|
+
"notConfigured": "ממשק ניהול משתמשים לא מוגדר",
|
|
246
|
+
"notConfiguredHint": "העבר userApi ל-createAuthAdmin() כדי להפעיל מסך זה.",
|
|
247
|
+
"team": "צוות",
|
|
248
|
+
"filterByRole": "סנן לפי תפקיד",
|
|
249
|
+
"invite": "הזמנה",
|
|
250
|
+
"pendingInvitations": "הזמנות ממתינות",
|
|
251
|
+
"pending": "ממתין",
|
|
252
|
+
"resend": "שלח מחדש",
|
|
253
|
+
"delete": "מחיקה",
|
|
254
|
+
"activeUsers": "משתמשים פעילים",
|
|
255
|
+
"active": "פעיל",
|
|
256
|
+
"edit": "עריכה",
|
|
257
|
+
"remove": "הסרה",
|
|
258
|
+
"noUsers": "אין משתמשים עדיין",
|
|
259
|
+
"inviteFirst": "הזמן את הראשון",
|
|
260
|
+
"inviteTitle": "הזמנת משתמש",
|
|
261
|
+
"firstName": "שם פרטי",
|
|
262
|
+
"lastName": "שם משפחה",
|
|
263
|
+
"email": "אימייל",
|
|
264
|
+
"role": "תפקיד",
|
|
265
|
+
"message": "הודעה",
|
|
266
|
+
"inviteSent": "ההזמנה נשלחה מחדש",
|
|
267
|
+
"inviteError": "שגיאה בשליחת ההזמנה",
|
|
268
|
+
"deleteInviteConfirm": "למחוק את ההזמנה?",
|
|
269
|
+
"deleteInviteError": "שגיאה במחיקת ההזמנה",
|
|
270
|
+
"removeUserConfirm": "להסיר את {email}?"
|
|
233
271
|
}
|
|
234
272
|
}
|
package/src/i18n/locales/it.json
CHANGED
|
@@ -209,5 +209,43 @@
|
|
|
209
209
|
"notPublished": "Non ancora pubblicato",
|
|
210
210
|
"production": "Produzione",
|
|
211
211
|
"publishFailed": "Pubblicazione fallita"
|
|
212
|
+
},
|
|
213
|
+
"admin": {
|
|
214
|
+
"content": "Contenuto",
|
|
215
|
+
"blox": "Blox",
|
|
216
|
+
"whatsapp": "WhatsApp",
|
|
217
|
+
"newsletter": "Newsletter",
|
|
218
|
+
"agent": "Agenti",
|
|
219
|
+
"users": "Utenti",
|
|
220
|
+
"tenants": "Organizzazioni"
|
|
221
|
+
},
|
|
222
|
+
"userManagement": {
|
|
223
|
+
"title": "Utenti",
|
|
224
|
+
"notConfigured": "L'interfaccia di gestione utenti non è configurata",
|
|
225
|
+
"notConfiguredHint": "Passa userApi a createAuthAdmin() per abilitare questa schermata.",
|
|
226
|
+
"team": "Team",
|
|
227
|
+
"filterByRole": "Filtra per ruolo",
|
|
228
|
+
"invite": "Invita",
|
|
229
|
+
"pendingInvitations": "Inviti in sospeso",
|
|
230
|
+
"pending": "In sospeso",
|
|
231
|
+
"resend": "Reinvia",
|
|
232
|
+
"delete": "Elimina",
|
|
233
|
+
"activeUsers": "Utenti attivi",
|
|
234
|
+
"active": "Attivo",
|
|
235
|
+
"edit": "Modifica",
|
|
236
|
+
"remove": "Rimuovi",
|
|
237
|
+
"noUsers": "Nessun utente ancora",
|
|
238
|
+
"inviteFirst": "Invita il primo",
|
|
239
|
+
"inviteTitle": "Invita utente",
|
|
240
|
+
"firstName": "Nome",
|
|
241
|
+
"lastName": "Cognome",
|
|
242
|
+
"email": "Email",
|
|
243
|
+
"role": "Ruolo",
|
|
244
|
+
"message": "Messaggio",
|
|
245
|
+
"inviteSent": "Invito reinviato",
|
|
246
|
+
"inviteError": "Errore durante l'invio dell'invito",
|
|
247
|
+
"deleteInviteConfirm": "Eliminare l'invito?",
|
|
248
|
+
"deleteInviteError": "Errore durante l'eliminazione dell'invito",
|
|
249
|
+
"removeUserConfirm": "Rimuovere {email}?"
|
|
212
250
|
}
|
|
213
251
|
}
|
package/src/i18n/locales/ru.json
CHANGED
|
@@ -209,5 +209,43 @@
|
|
|
209
209
|
"notPublished": "Ещё не опубликовано",
|
|
210
210
|
"production": "Продакшн",
|
|
211
211
|
"publishFailed": "Ошибка публикации"
|
|
212
|
+
},
|
|
213
|
+
"admin": {
|
|
214
|
+
"content": "Контент",
|
|
215
|
+
"blox": "Блокс",
|
|
216
|
+
"whatsapp": "WhatsApp",
|
|
217
|
+
"newsletter": "Рассылка",
|
|
218
|
+
"agent": "Агенты",
|
|
219
|
+
"users": "Пользователи",
|
|
220
|
+
"tenants": "Организации"
|
|
221
|
+
},
|
|
222
|
+
"userManagement": {
|
|
223
|
+
"title": "Пользователи",
|
|
224
|
+
"notConfigured": "Интерфейс управления пользователями не настроен",
|
|
225
|
+
"notConfiguredHint": "Передайте userApi в createAuthAdmin(), чтобы активировать этот экран.",
|
|
226
|
+
"team": "Команда",
|
|
227
|
+
"filterByRole": "Фильтр по роли",
|
|
228
|
+
"invite": "Пригласить",
|
|
229
|
+
"pendingInvitations": "Ожидающие приглашения",
|
|
230
|
+
"pending": "Ожидает",
|
|
231
|
+
"resend": "Отправить ещё раз",
|
|
232
|
+
"delete": "Удалить",
|
|
233
|
+
"activeUsers": "Активные пользователи",
|
|
234
|
+
"active": "Активен",
|
|
235
|
+
"edit": "Редактировать",
|
|
236
|
+
"remove": "Удалить",
|
|
237
|
+
"noUsers": "Пользователейещё нет",
|
|
238
|
+
"inviteFirst": "Пригласить первого",
|
|
239
|
+
"inviteTitle": "Приглашение пользователя",
|
|
240
|
+
"firstName": "Имя",
|
|
241
|
+
"lastName": "Фамилия",
|
|
242
|
+
"email": "Эл. почта",
|
|
243
|
+
"role": "Роль",
|
|
244
|
+
"message": "Сообщение",
|
|
245
|
+
"inviteSent": "Приглашение отправлено повторно",
|
|
246
|
+
"inviteError": "Ошибка при отправке приглашения",
|
|
247
|
+
"deleteInviteConfirm": "Удалить приглашение?",
|
|
248
|
+
"deleteInviteError": "Ошибка при удалении приглашения",
|
|
249
|
+
"removeUserConfirm": "Удалить {email}?"
|
|
212
250
|
}
|
|
213
251
|
}
|
package/src/styles/layout.css
CHANGED
|
@@ -7638,6 +7638,27 @@
|
|
|
7638
7638
|
grid-template-rows: 1fr auto;
|
|
7639
7639
|
}
|
|
7640
7640
|
|
|
7641
|
+
|
|
7642
|
+
.grid-rows-1fr-auto-auto {
|
|
7643
|
+
grid-template-rows: 1fr auto auto;
|
|
7644
|
+
}
|
|
7645
|
+
|
|
7646
|
+
.grid-rows-auto-1fr-auto {
|
|
7647
|
+
grid-template-rows: auto 1fr auto;
|
|
7648
|
+
}
|
|
7649
|
+
|
|
7650
|
+
.grid-rows-auto-auto-1fr {
|
|
7651
|
+
grid-template-rows: auto auto 1fr;
|
|
7652
|
+
}
|
|
7653
|
+
|
|
7654
|
+
.grid-rows-1fr-auto {
|
|
7655
|
+
grid-template-rows: 1fr auto;
|
|
7656
|
+
}
|
|
7657
|
+
|
|
7658
|
+
.grid-rows-auto-1fr {
|
|
7659
|
+
grid-template-rows: auto 1fr;
|
|
7660
|
+
}
|
|
7661
|
+
|
|
7641
7662
|
.grid-overlap {
|
|
7642
7663
|
display: grid;
|
|
7643
7664
|
grid-template-columns: 1fr;
|
|
@@ -294,6 +294,26 @@
|
|
|
294
294
|
grid-auto-flow: column;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
|
+
.m_grid-rows-1fr-auto-auto {
|
|
298
|
+
grid-template-rows: 1fr auto auto;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.m_grid-rows-auto-1fr-auto {
|
|
302
|
+
grid-template-rows: auto 1fr auto;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.m_grid-rows-auto-auto-1fr {
|
|
306
|
+
grid-template-rows: auto auto 1fr;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.m_grid-rows-1fr-auto {
|
|
310
|
+
grid-template-rows: 1fr auto;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.m_grid-rows-auto-1fr {
|
|
314
|
+
grid-template-rows: auto 1fr;
|
|
315
|
+
}
|
|
316
|
+
|
|
297
317
|
.m_grid-2-col {
|
|
298
318
|
grid-template-columns: 1fr 1fr;
|
|
299
319
|
}
|