@alfadocs/ui-kit 0.83.0 → 0.84.1
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/_chunks/dashboard-grid-D2dm0IRN.js +691 -0
- package/dist/_chunks/widget-picker-DEmTVuFL.js +193 -0
- package/dist/agent-catalog.json +182 -1
- package/dist/agent-i18n/en.json +20 -0
- package/dist/components/dashboard-grid/dashboard-grid-engine.d.ts +37 -0
- package/dist/components/dashboard-grid/dashboard-grid.agent.d.ts +4 -0
- package/dist/components/dashboard-grid/dashboard-grid.d.ts +74 -0
- package/dist/components/dashboard-grid/index.d.ts +3 -0
- package/dist/components/dashboard-grid/index.js +6 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/select/select.d.ts +8 -5
- package/dist/components/widget-picker/index.d.ts +3 -0
- package/dist/components/widget-picker/index.js +6 -0
- package/dist/components/widget-picker/widget-picker.agent.d.ts +4 -0
- package/dist/components/widget-picker/widget-picker.d.ts +49 -0
- package/dist/i18n/locales/ar.d.ts +21 -0
- package/dist/i18n/locales/ar.js +21 -0
- package/dist/i18n/locales/de.d.ts +21 -0
- package/dist/i18n/locales/de.js +21 -0
- package/dist/i18n/locales/el.d.ts +21 -0
- package/dist/i18n/locales/el.js +21 -0
- package/dist/i18n/locales/en.d.ts +21 -0
- package/dist/i18n/locales/en.js +21 -0
- package/dist/i18n/locales/es.d.ts +21 -0
- package/dist/i18n/locales/es.js +21 -0
- package/dist/i18n/locales/fr.d.ts +21 -0
- package/dist/i18n/locales/fr.js +21 -0
- package/dist/i18n/locales/hi.d.ts +21 -0
- package/dist/i18n/locales/hi.js +21 -0
- package/dist/i18n/locales/it.d.ts +21 -0
- package/dist/i18n/locales/it.js +21 -0
- package/dist/i18n/locales/ja.d.ts +21 -0
- package/dist/i18n/locales/ja.js +21 -0
- package/dist/i18n/locales/nl.d.ts +21 -0
- package/dist/i18n/locales/nl.js +21 -0
- package/dist/i18n/locales/pl.d.ts +21 -0
- package/dist/i18n/locales/pl.js +21 -0
- package/dist/i18n/locales/pt.d.ts +21 -0
- package/dist/i18n/locales/pt.js +21 -0
- package/dist/i18n/locales/ro.d.ts +21 -0
- package/dist/i18n/locales/ro.js +21 -0
- package/dist/i18n/locales/ru.d.ts +21 -0
- package/dist/i18n/locales/ru.js +21 -0
- package/dist/i18n/locales/sq.d.ts +21 -0
- package/dist/i18n/locales/sq.js +21 -0
- package/dist/i18n/locales/sv.d.ts +21 -0
- package/dist/i18n/locales/sv.js +21 -0
- package/dist/i18n/locales/tr.d.ts +21 -0
- package/dist/i18n/locales/tr.js +21 -0
- package/dist/i18n/locales/zh.d.ts +21 -0
- package/dist/i18n/locales/zh.js +21 -0
- package/dist/index.js +74 -68
- package/dist/locales/ar.json +21 -0
- package/dist/locales/de.json +21 -0
- package/dist/locales/el.json +21 -0
- package/dist/locales/en.json +21 -0
- package/dist/locales/es.json +21 -0
- package/dist/locales/fr.json +21 -0
- package/dist/locales/hi.json +21 -0
- package/dist/locales/it.json +21 -0
- package/dist/locales/ja.json +21 -0
- package/dist/locales/nl.json +21 -0
- package/dist/locales/pl.json +21 -0
- package/dist/locales/pt.json +21 -0
- package/dist/locales/ro.json +21 -0
- package/dist/locales/ru.json +21 -0
- package/dist/locales/sq.json +21 -0
- package/dist/locales/sv.json +21 -0
- package/dist/locales/tr.json +21 -0
- package/dist/locales/zh.json +21 -0
- package/dist/tokens.css +1 -1
- package/package.json +9 -1
|
@@ -2633,6 +2633,27 @@ export declare const ptUi: {
|
|
|
2633
2633
|
readonly donut: "Anel";
|
|
2634
2634
|
};
|
|
2635
2635
|
};
|
|
2636
|
+
readonly dashboardGrid: {
|
|
2637
|
+
readonly move: "Mover {{title}}";
|
|
2638
|
+
readonly resize: "Redimensionar {{title}}";
|
|
2639
|
+
readonly remove: "Remover {{title}}";
|
|
2640
|
+
readonly add: "Adicionar widget";
|
|
2641
|
+
readonly grabbed: "Selecionado. Use as setas para mover, Enter para soltar, Esc para cancelar.";
|
|
2642
|
+
readonly resizeGrabbed: "A redimensionar. Use as setas para alterar o tamanho, Enter para confirmar, Esc para cancelar.";
|
|
2643
|
+
readonly movedTo: "Coluna {{col}}, linha {{row}}.";
|
|
2644
|
+
readonly resizedTo: "{{cols}} × {{rows}}.";
|
|
2645
|
+
readonly droppedAt: "Widget colocado na coluna {{col}}, linha {{row}}.";
|
|
2646
|
+
readonly removed: "Widget removido.";
|
|
2647
|
+
readonly cancelled: "Alteração cancelada.";
|
|
2648
|
+
};
|
|
2649
|
+
readonly widgetPicker: {
|
|
2650
|
+
readonly title: "Adicionar um widget";
|
|
2651
|
+
readonly description: "Escolha um widget para adicionar ao painel.";
|
|
2652
|
+
readonly searchLabel: "Pesquisar widgets";
|
|
2653
|
+
readonly searchPlaceholder: "Pesquisar widgets…";
|
|
2654
|
+
readonly empty: "Nenhum widget corresponde à pesquisa.";
|
|
2655
|
+
readonly none: "Nenhum widget disponível.";
|
|
2656
|
+
};
|
|
2636
2657
|
readonly editor: {
|
|
2637
2658
|
readonly toolbarLabel: "Formatação de texto";
|
|
2638
2659
|
readonly regionLabel: "Editor de texto formatado";
|
package/dist/i18n/locales/pt.js
CHANGED
|
@@ -2617,6 +2617,27 @@ const e = {
|
|
|
2617
2617
|
donut: "Anel"
|
|
2618
2618
|
}
|
|
2619
2619
|
},
|
|
2620
|
+
dashboardGrid: {
|
|
2621
|
+
move: "Mover {{title}}",
|
|
2622
|
+
resize: "Redimensionar {{title}}",
|
|
2623
|
+
remove: "Remover {{title}}",
|
|
2624
|
+
add: "Adicionar widget",
|
|
2625
|
+
grabbed: "Selecionado. Use as setas para mover, Enter para soltar, Esc para cancelar.",
|
|
2626
|
+
resizeGrabbed: "A redimensionar. Use as setas para alterar o tamanho, Enter para confirmar, Esc para cancelar.",
|
|
2627
|
+
movedTo: "Coluna {{col}}, linha {{row}}.",
|
|
2628
|
+
resizedTo: "{{cols}} × {{rows}}.",
|
|
2629
|
+
droppedAt: "Widget colocado na coluna {{col}}, linha {{row}}.",
|
|
2630
|
+
removed: "Widget removido.",
|
|
2631
|
+
cancelled: "Alteração cancelada."
|
|
2632
|
+
},
|
|
2633
|
+
widgetPicker: {
|
|
2634
|
+
title: "Adicionar um widget",
|
|
2635
|
+
description: "Escolha um widget para adicionar ao painel.",
|
|
2636
|
+
searchLabel: "Pesquisar widgets",
|
|
2637
|
+
searchPlaceholder: "Pesquisar widgets…",
|
|
2638
|
+
empty: "Nenhum widget corresponde à pesquisa.",
|
|
2639
|
+
none: "Nenhum widget disponível."
|
|
2640
|
+
},
|
|
2620
2641
|
editor: {
|
|
2621
2642
|
toolbarLabel: "Formatação de texto",
|
|
2622
2643
|
regionLabel: "Editor de texto formatado",
|
|
@@ -2632,6 +2632,27 @@ export declare const roUi: {
|
|
|
2632
2632
|
readonly donut: "Inel";
|
|
2633
2633
|
};
|
|
2634
2634
|
};
|
|
2635
|
+
readonly dashboardGrid: {
|
|
2636
|
+
readonly move: "Mută {{title}}";
|
|
2637
|
+
readonly resize: "Redimensionează {{title}}";
|
|
2638
|
+
readonly remove: "Elimină {{title}}";
|
|
2639
|
+
readonly add: "Adaugă widget";
|
|
2640
|
+
readonly grabbed: "Selectat. Folosește săgețile pentru a muta, Enter pentru a plasa, Escape pentru a anula.";
|
|
2641
|
+
readonly resizeGrabbed: "Redimensionare. Folosește săgețile pentru a schimba dimensiunea, Enter pentru a confirma, Escape pentru a anula.";
|
|
2642
|
+
readonly movedTo: "Coloana {{col}}, rândul {{row}}.";
|
|
2643
|
+
readonly resizedTo: "{{cols}} × {{rows}}.";
|
|
2644
|
+
readonly droppedAt: "Widget plasat în coloana {{col}}, rândul {{row}}.";
|
|
2645
|
+
readonly removed: "Widget eliminat.";
|
|
2646
|
+
readonly cancelled: "Modificare anulată.";
|
|
2647
|
+
};
|
|
2648
|
+
readonly widgetPicker: {
|
|
2649
|
+
readonly title: "Adaugă un widget";
|
|
2650
|
+
readonly description: "Alege un widget de adăugat pe tablou.";
|
|
2651
|
+
readonly searchLabel: "Caută widgeturi";
|
|
2652
|
+
readonly searchPlaceholder: "Caută widgeturi…";
|
|
2653
|
+
readonly empty: "Niciun widget nu corespunde căutării.";
|
|
2654
|
+
readonly none: "Niciun widget disponibil.";
|
|
2655
|
+
};
|
|
2635
2656
|
readonly editor: {
|
|
2636
2657
|
readonly toolbarLabel: "Formatare text";
|
|
2637
2658
|
readonly regionLabel: "Editor de text îmbogățit";
|
package/dist/i18n/locales/ro.js
CHANGED
|
@@ -2616,6 +2616,27 @@ const e = {
|
|
|
2616
2616
|
donut: "Inel"
|
|
2617
2617
|
}
|
|
2618
2618
|
},
|
|
2619
|
+
dashboardGrid: {
|
|
2620
|
+
move: "Mută {{title}}",
|
|
2621
|
+
resize: "Redimensionează {{title}}",
|
|
2622
|
+
remove: "Elimină {{title}}",
|
|
2623
|
+
add: "Adaugă widget",
|
|
2624
|
+
grabbed: "Selectat. Folosește săgețile pentru a muta, Enter pentru a plasa, Escape pentru a anula.",
|
|
2625
|
+
resizeGrabbed: "Redimensionare. Folosește săgețile pentru a schimba dimensiunea, Enter pentru a confirma, Escape pentru a anula.",
|
|
2626
|
+
movedTo: "Coloana {{col}}, rândul {{row}}.",
|
|
2627
|
+
resizedTo: "{{cols}} × {{rows}}.",
|
|
2628
|
+
droppedAt: "Widget plasat în coloana {{col}}, rândul {{row}}.",
|
|
2629
|
+
removed: "Widget eliminat.",
|
|
2630
|
+
cancelled: "Modificare anulată."
|
|
2631
|
+
},
|
|
2632
|
+
widgetPicker: {
|
|
2633
|
+
title: "Adaugă un widget",
|
|
2634
|
+
description: "Alege un widget de adăugat pe tablou.",
|
|
2635
|
+
searchLabel: "Caută widgeturi",
|
|
2636
|
+
searchPlaceholder: "Caută widgeturi…",
|
|
2637
|
+
empty: "Niciun widget nu corespunde căutării.",
|
|
2638
|
+
none: "Niciun widget disponibil."
|
|
2639
|
+
},
|
|
2619
2640
|
editor: {
|
|
2620
2641
|
toolbarLabel: "Formatare text",
|
|
2621
2642
|
regionLabel: "Editor de text îmbogățit",
|
|
@@ -2632,6 +2632,27 @@ export declare const ruUi: {
|
|
|
2632
2632
|
readonly donut: "Кольцевая";
|
|
2633
2633
|
};
|
|
2634
2634
|
};
|
|
2635
|
+
readonly dashboardGrid: {
|
|
2636
|
+
readonly move: "Переместить {{title}}";
|
|
2637
|
+
readonly resize: "Изменить размер {{title}}";
|
|
2638
|
+
readonly remove: "Удалить {{title}}";
|
|
2639
|
+
readonly add: "Добавить виджет";
|
|
2640
|
+
readonly grabbed: "Захвачено. Стрелки — переместить, Enter — отпустить, Escape — отменить.";
|
|
2641
|
+
readonly resizeGrabbed: "Изменение размера. Стрелки — изменить размер, Enter — подтвердить, Escape — отменить.";
|
|
2642
|
+
readonly movedTo: "Столбец {{col}}, строка {{row}}.";
|
|
2643
|
+
readonly resizedTo: "{{cols}} × {{rows}}.";
|
|
2644
|
+
readonly droppedAt: "Виджет размещён: столбец {{col}}, строка {{row}}.";
|
|
2645
|
+
readonly removed: "Виджет удалён.";
|
|
2646
|
+
readonly cancelled: "Изменение отменено.";
|
|
2647
|
+
};
|
|
2648
|
+
readonly widgetPicker: {
|
|
2649
|
+
readonly title: "Добавить виджет";
|
|
2650
|
+
readonly description: "Выберите виджет для панели.";
|
|
2651
|
+
readonly searchLabel: "Поиск виджетов";
|
|
2652
|
+
readonly searchPlaceholder: "Поиск виджетов…";
|
|
2653
|
+
readonly empty: "Ни один виджет не соответствует запросу.";
|
|
2654
|
+
readonly none: "Нет доступных виджетов.";
|
|
2655
|
+
};
|
|
2635
2656
|
readonly editor: {
|
|
2636
2657
|
readonly toolbarLabel: "Форматирование текста";
|
|
2637
2658
|
readonly regionLabel: "Редактор форматированного текста";
|
package/dist/i18n/locales/ru.js
CHANGED
|
@@ -2609,6 +2609,27 @@ const e = {
|
|
|
2609
2609
|
donut: "Кольцевая"
|
|
2610
2610
|
}
|
|
2611
2611
|
},
|
|
2612
|
+
dashboardGrid: {
|
|
2613
|
+
move: "Переместить {{title}}",
|
|
2614
|
+
resize: "Изменить размер {{title}}",
|
|
2615
|
+
remove: "Удалить {{title}}",
|
|
2616
|
+
add: "Добавить виджет",
|
|
2617
|
+
grabbed: "Захвачено. Стрелки — переместить, Enter — отпустить, Escape — отменить.",
|
|
2618
|
+
resizeGrabbed: "Изменение размера. Стрелки — изменить размер, Enter — подтвердить, Escape — отменить.",
|
|
2619
|
+
movedTo: "Столбец {{col}}, строка {{row}}.",
|
|
2620
|
+
resizedTo: "{{cols}} × {{rows}}.",
|
|
2621
|
+
droppedAt: "Виджет размещён: столбец {{col}}, строка {{row}}.",
|
|
2622
|
+
removed: "Виджет удалён.",
|
|
2623
|
+
cancelled: "Изменение отменено."
|
|
2624
|
+
},
|
|
2625
|
+
widgetPicker: {
|
|
2626
|
+
title: "Добавить виджет",
|
|
2627
|
+
description: "Выберите виджет для панели.",
|
|
2628
|
+
searchLabel: "Поиск виджетов",
|
|
2629
|
+
searchPlaceholder: "Поиск виджетов…",
|
|
2630
|
+
empty: "Ни один виджет не соответствует запросу.",
|
|
2631
|
+
none: "Нет доступных виджетов."
|
|
2632
|
+
},
|
|
2612
2633
|
editor: {
|
|
2613
2634
|
toolbarLabel: "Форматирование текста",
|
|
2614
2635
|
regionLabel: "Редактор форматированного текста",
|
|
@@ -2632,6 +2632,27 @@ export declare const sqUi: {
|
|
|
2632
2632
|
readonly donut: "Unazë";
|
|
2633
2633
|
};
|
|
2634
2634
|
};
|
|
2635
|
+
readonly dashboardGrid: {
|
|
2636
|
+
readonly move: "Zhvendos {{title}}";
|
|
2637
|
+
readonly resize: "Ripërmaso {{title}}";
|
|
2638
|
+
readonly remove: "Hiq {{title}}";
|
|
2639
|
+
readonly add: "Shto widget";
|
|
2640
|
+
readonly grabbed: "U mor. Përdor shigjetat për të zhvendosur, Enter për të lëshuar, Escape për të anuluar.";
|
|
2641
|
+
readonly resizeGrabbed: "Ripërmasim. Përdor shigjetat për madhësinë, Enter për të konfirmuar, Escape për të anuluar.";
|
|
2642
|
+
readonly movedTo: "Kolona {{col}}, rreshti {{row}}.";
|
|
2643
|
+
readonly resizedTo: "{{cols}} × {{rows}}.";
|
|
2644
|
+
readonly droppedAt: "Widget-i u vendos në kolonën {{col}}, rreshtin {{row}}.";
|
|
2645
|
+
readonly removed: "Widget-i u hoq.";
|
|
2646
|
+
readonly cancelled: "Ndryshimi u anulua.";
|
|
2647
|
+
};
|
|
2648
|
+
readonly widgetPicker: {
|
|
2649
|
+
readonly title: "Shto një widget";
|
|
2650
|
+
readonly description: "Zgjidh një widget për panelin.";
|
|
2651
|
+
readonly searchLabel: "Kërko widget-e";
|
|
2652
|
+
readonly searchPlaceholder: "Kërko widget-e…";
|
|
2653
|
+
readonly empty: "Asnjë widget nuk përputhet me kërkimin.";
|
|
2654
|
+
readonly none: "Nuk ka miniaplikacione të disponueshme.";
|
|
2655
|
+
};
|
|
2635
2656
|
readonly editor: {
|
|
2636
2657
|
readonly toolbarLabel: "Formatimi i tekstit";
|
|
2637
2658
|
readonly regionLabel: "Redaktues teksti i pasur";
|
package/dist/i18n/locales/sq.js
CHANGED
|
@@ -2613,6 +2613,27 @@ const e = {
|
|
|
2613
2613
|
donut: "Unazë"
|
|
2614
2614
|
}
|
|
2615
2615
|
},
|
|
2616
|
+
dashboardGrid: {
|
|
2617
|
+
move: "Zhvendos {{title}}",
|
|
2618
|
+
resize: "Ripërmaso {{title}}",
|
|
2619
|
+
remove: "Hiq {{title}}",
|
|
2620
|
+
add: "Shto widget",
|
|
2621
|
+
grabbed: "U mor. Përdor shigjetat për të zhvendosur, Enter për të lëshuar, Escape për të anuluar.",
|
|
2622
|
+
resizeGrabbed: "Ripërmasim. Përdor shigjetat për madhësinë, Enter për të konfirmuar, Escape për të anuluar.",
|
|
2623
|
+
movedTo: "Kolona {{col}}, rreshti {{row}}.",
|
|
2624
|
+
resizedTo: "{{cols}} × {{rows}}.",
|
|
2625
|
+
droppedAt: "Widget-i u vendos në kolonën {{col}}, rreshtin {{row}}.",
|
|
2626
|
+
removed: "Widget-i u hoq.",
|
|
2627
|
+
cancelled: "Ndryshimi u anulua."
|
|
2628
|
+
},
|
|
2629
|
+
widgetPicker: {
|
|
2630
|
+
title: "Shto një widget",
|
|
2631
|
+
description: "Zgjidh një widget për panelin.",
|
|
2632
|
+
searchLabel: "Kërko widget-e",
|
|
2633
|
+
searchPlaceholder: "Kërko widget-e…",
|
|
2634
|
+
empty: "Asnjë widget nuk përputhet me kërkimin.",
|
|
2635
|
+
none: "Nuk ka miniaplikacione të disponueshme."
|
|
2636
|
+
},
|
|
2616
2637
|
editor: {
|
|
2617
2638
|
toolbarLabel: "Formatimi i tekstit",
|
|
2618
2639
|
regionLabel: "Redaktues teksti i pasur",
|
|
@@ -2632,6 +2632,27 @@ export declare const svUi: {
|
|
|
2632
2632
|
readonly donut: "Ring";
|
|
2633
2633
|
};
|
|
2634
2634
|
};
|
|
2635
|
+
readonly dashboardGrid: {
|
|
2636
|
+
readonly move: "Flytta {{title}}";
|
|
2637
|
+
readonly resize: "Ändra storlek på {{title}}";
|
|
2638
|
+
readonly remove: "Ta bort {{title}}";
|
|
2639
|
+
readonly add: "Lägg till widget";
|
|
2640
|
+
readonly grabbed: "Upplockad. Använd piltangenterna för att flytta, Enter för att släppa, Escape för att avbryta.";
|
|
2641
|
+
readonly resizeGrabbed: "Storleksändring. Använd piltangenterna, Enter för att bekräfta, Escape för att avbryta.";
|
|
2642
|
+
readonly movedTo: "Kolumn {{col}}, rad {{row}}.";
|
|
2643
|
+
readonly resizedTo: "{{cols}} × {{rows}}.";
|
|
2644
|
+
readonly droppedAt: "Widget placerad i kolumn {{col}}, rad {{row}}.";
|
|
2645
|
+
readonly removed: "Widget borttagen.";
|
|
2646
|
+
readonly cancelled: "Ändring avbruten.";
|
|
2647
|
+
};
|
|
2648
|
+
readonly widgetPicker: {
|
|
2649
|
+
readonly title: "Lägg till widget";
|
|
2650
|
+
readonly description: "Välj en widget att lägga till på panelen.";
|
|
2651
|
+
readonly searchLabel: "Sök widgetar";
|
|
2652
|
+
readonly searchPlaceholder: "Sök widgetar…";
|
|
2653
|
+
readonly empty: "Inga widgetar matchar sökningen.";
|
|
2654
|
+
readonly none: "Inga widgetar tillgängliga.";
|
|
2655
|
+
};
|
|
2635
2656
|
readonly editor: {
|
|
2636
2657
|
readonly toolbarLabel: "Textformatering";
|
|
2637
2658
|
readonly regionLabel: "Redigerare för formaterad text";
|
package/dist/i18n/locales/sv.js
CHANGED
|
@@ -2611,6 +2611,27 @@ const e = {
|
|
|
2611
2611
|
donut: "Ring"
|
|
2612
2612
|
}
|
|
2613
2613
|
},
|
|
2614
|
+
dashboardGrid: {
|
|
2615
|
+
move: "Flytta {{title}}",
|
|
2616
|
+
resize: "Ändra storlek på {{title}}",
|
|
2617
|
+
remove: "Ta bort {{title}}",
|
|
2618
|
+
add: "Lägg till widget",
|
|
2619
|
+
grabbed: "Upplockad. Använd piltangenterna för att flytta, Enter för att släppa, Escape för att avbryta.",
|
|
2620
|
+
resizeGrabbed: "Storleksändring. Använd piltangenterna, Enter för att bekräfta, Escape för att avbryta.",
|
|
2621
|
+
movedTo: "Kolumn {{col}}, rad {{row}}.",
|
|
2622
|
+
resizedTo: "{{cols}} × {{rows}}.",
|
|
2623
|
+
droppedAt: "Widget placerad i kolumn {{col}}, rad {{row}}.",
|
|
2624
|
+
removed: "Widget borttagen.",
|
|
2625
|
+
cancelled: "Ändring avbruten."
|
|
2626
|
+
},
|
|
2627
|
+
widgetPicker: {
|
|
2628
|
+
title: "Lägg till widget",
|
|
2629
|
+
description: "Välj en widget att lägga till på panelen.",
|
|
2630
|
+
searchLabel: "Sök widgetar",
|
|
2631
|
+
searchPlaceholder: "Sök widgetar…",
|
|
2632
|
+
empty: "Inga widgetar matchar sökningen.",
|
|
2633
|
+
none: "Inga widgetar tillgängliga."
|
|
2634
|
+
},
|
|
2614
2635
|
editor: {
|
|
2615
2636
|
toolbarLabel: "Textformatering",
|
|
2616
2637
|
regionLabel: "Redigerare för formaterad text",
|
|
@@ -2632,6 +2632,27 @@ export declare const trUi: {
|
|
|
2632
2632
|
readonly donut: "Halka";
|
|
2633
2633
|
};
|
|
2634
2634
|
};
|
|
2635
|
+
readonly dashboardGrid: {
|
|
2636
|
+
readonly move: "{{title}} taşı";
|
|
2637
|
+
readonly resize: "{{title}} yeniden boyutlandır";
|
|
2638
|
+
readonly remove: "{{title}} kaldır";
|
|
2639
|
+
readonly add: "Widget ekle";
|
|
2640
|
+
readonly grabbed: "Alındı. Taşımak için ok tuşlarını, bırakmak için Enter, iptal için Escape kullanın.";
|
|
2641
|
+
readonly resizeGrabbed: "Boyutlandırma. Boyut için ok tuşlarını, onay için Enter, iptal için Escape kullanın.";
|
|
2642
|
+
readonly movedTo: "Sütun {{col}}, satır {{row}}.";
|
|
2643
|
+
readonly resizedTo: "{{cols}} × {{rows}}.";
|
|
2644
|
+
readonly droppedAt: "Widget {{col}}. sütuna, {{row}}. satıra yerleştirildi.";
|
|
2645
|
+
readonly removed: "Widget kaldırıldı.";
|
|
2646
|
+
readonly cancelled: "Değişiklik iptal edildi.";
|
|
2647
|
+
};
|
|
2648
|
+
readonly widgetPicker: {
|
|
2649
|
+
readonly title: "Widget ekle";
|
|
2650
|
+
readonly description: "Panonuza eklemek için bir widget seçin.";
|
|
2651
|
+
readonly searchLabel: "Widget ara";
|
|
2652
|
+
readonly searchPlaceholder: "Widget ara…";
|
|
2653
|
+
readonly empty: "Aramayla eşleşen widget yok.";
|
|
2654
|
+
readonly none: "Kullanılabilir widget yok.";
|
|
2655
|
+
};
|
|
2635
2656
|
readonly editor: {
|
|
2636
2657
|
readonly toolbarLabel: "Metin biçimlendirme";
|
|
2637
2658
|
readonly regionLabel: "Zengin metin düzenleyici";
|
package/dist/i18n/locales/tr.js
CHANGED
|
@@ -2609,6 +2609,27 @@ const e = {
|
|
|
2609
2609
|
donut: "Halka"
|
|
2610
2610
|
}
|
|
2611
2611
|
},
|
|
2612
|
+
dashboardGrid: {
|
|
2613
|
+
move: "{{title}} taşı",
|
|
2614
|
+
resize: "{{title}} yeniden boyutlandır",
|
|
2615
|
+
remove: "{{title}} kaldır",
|
|
2616
|
+
add: "Widget ekle",
|
|
2617
|
+
grabbed: "Alındı. Taşımak için ok tuşlarını, bırakmak için Enter, iptal için Escape kullanın.",
|
|
2618
|
+
resizeGrabbed: "Boyutlandırma. Boyut için ok tuşlarını, onay için Enter, iptal için Escape kullanın.",
|
|
2619
|
+
movedTo: "Sütun {{col}}, satır {{row}}.",
|
|
2620
|
+
resizedTo: "{{cols}} × {{rows}}.",
|
|
2621
|
+
droppedAt: "Widget {{col}}. sütuna, {{row}}. satıra yerleştirildi.",
|
|
2622
|
+
removed: "Widget kaldırıldı.",
|
|
2623
|
+
cancelled: "Değişiklik iptal edildi."
|
|
2624
|
+
},
|
|
2625
|
+
widgetPicker: {
|
|
2626
|
+
title: "Widget ekle",
|
|
2627
|
+
description: "Panonuza eklemek için bir widget seçin.",
|
|
2628
|
+
searchLabel: "Widget ara",
|
|
2629
|
+
searchPlaceholder: "Widget ara…",
|
|
2630
|
+
empty: "Aramayla eşleşen widget yok.",
|
|
2631
|
+
none: "Kullanılabilir widget yok."
|
|
2632
|
+
},
|
|
2612
2633
|
editor: {
|
|
2613
2634
|
toolbarLabel: "Metin biçimlendirme",
|
|
2614
2635
|
regionLabel: "Zengin metin düzenleyici",
|
|
@@ -2632,6 +2632,27 @@ export declare const zhUi: {
|
|
|
2632
2632
|
readonly donut: "环形";
|
|
2633
2633
|
};
|
|
2634
2634
|
};
|
|
2635
|
+
readonly dashboardGrid: {
|
|
2636
|
+
readonly move: "移动{{title}}";
|
|
2637
|
+
readonly resize: "调整{{title}}大小";
|
|
2638
|
+
readonly remove: "移除{{title}}";
|
|
2639
|
+
readonly add: "添加小组件";
|
|
2640
|
+
readonly grabbed: "已选中。使用方向键移动,Enter 放置,Escape 取消。";
|
|
2641
|
+
readonly resizeGrabbed: "正在调整大小。使用方向键调整,Enter 确认,Escape 取消。";
|
|
2642
|
+
readonly movedTo: "第 {{col}} 列,第 {{row}} 行。";
|
|
2643
|
+
readonly resizedTo: "{{cols}} × {{rows}}.";
|
|
2644
|
+
readonly droppedAt: "小组件已放置在第 {{col}} 列,第 {{row}} 行。";
|
|
2645
|
+
readonly removed: "小组件已移除。";
|
|
2646
|
+
readonly cancelled: "已取消更改。";
|
|
2647
|
+
};
|
|
2648
|
+
readonly widgetPicker: {
|
|
2649
|
+
readonly title: "添加小组件";
|
|
2650
|
+
readonly description: "选择要添加到仪表板的小组件。";
|
|
2651
|
+
readonly searchLabel: "搜索小组件";
|
|
2652
|
+
readonly searchPlaceholder: "搜索小组件…";
|
|
2653
|
+
readonly empty: "没有与搜索匹配的小组件。";
|
|
2654
|
+
readonly none: "没有可用的小组件。";
|
|
2655
|
+
};
|
|
2635
2656
|
readonly editor: {
|
|
2636
2657
|
readonly toolbarLabel: "文本格式";
|
|
2637
2658
|
readonly regionLabel: "富文本编辑器";
|
package/dist/i18n/locales/zh.js
CHANGED
|
@@ -2604,6 +2604,27 @@ const e = {
|
|
|
2604
2604
|
donut: "环形"
|
|
2605
2605
|
}
|
|
2606
2606
|
},
|
|
2607
|
+
dashboardGrid: {
|
|
2608
|
+
move: "移动{{title}}",
|
|
2609
|
+
resize: "调整{{title}}大小",
|
|
2610
|
+
remove: "移除{{title}}",
|
|
2611
|
+
add: "添加小组件",
|
|
2612
|
+
grabbed: "已选中。使用方向键移动,Enter 放置,Escape 取消。",
|
|
2613
|
+
resizeGrabbed: "正在调整大小。使用方向键调整,Enter 确认,Escape 取消。",
|
|
2614
|
+
movedTo: "第 {{col}} 列,第 {{row}} 行。",
|
|
2615
|
+
resizedTo: "{{cols}} × {{rows}}.",
|
|
2616
|
+
droppedAt: "小组件已放置在第 {{col}} 列,第 {{row}} 行。",
|
|
2617
|
+
removed: "小组件已移除。",
|
|
2618
|
+
cancelled: "已取消更改。"
|
|
2619
|
+
},
|
|
2620
|
+
widgetPicker: {
|
|
2621
|
+
title: "添加小组件",
|
|
2622
|
+
description: "选择要添加到仪表板的小组件。",
|
|
2623
|
+
searchLabel: "搜索小组件",
|
|
2624
|
+
searchPlaceholder: "搜索小组件…",
|
|
2625
|
+
empty: "没有与搜索匹配的小组件。",
|
|
2626
|
+
none: "没有可用的小组件。"
|
|
2627
|
+
},
|
|
2607
2628
|
editor: {
|
|
2608
2629
|
toolbarLabel: "文本格式",
|
|
2609
2630
|
regionLabel: "富文本编辑器",
|