Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adição de botao e alteracao de icone #135

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/syncfusion/language/iaraLanguages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export class IaraSyncfusionLanguages {
add: "Adicionar campo",
mandatory: "Adicionar campo obrigatório",
optional: "Adicionar campo opcional",
additive: "Adicionar campo aditivo",
next: "Próximo campo",
previous: "Campo anterior",
},
Expand Down Expand Up @@ -42,6 +43,7 @@ export class IaraSyncfusionLanguages {
add: "Agregar campo",
mandatory: "Agregar campo obligatorio",
optional: "Agregar campo opcional",
additive: "Agregar campo aditivo",
next: "Próximo campo",
previous: "Campo anterior",
},
Expand Down
1 change: 1 addition & 0 deletions src/syncfusion/language/language.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export interface IaraLanguages {
add: string;
mandatory: string;
optional: string;
additive: string;
next: string;
previous: string;
};
Expand Down
8 changes: 7 additions & 1 deletion src/syncfusion/toolbar/tabs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ export const tabsConfig = (
items: [
{
id: "add_field",
iconCss: "e-icons e-plus",
iconCss: "e-icons e-add-above",
text: editorContainerLocale.language.iaraTranslate.customfields.add,
},
{
Expand All @@ -524,6 +524,12 @@ export const tabsConfig = (
text: editorContainerLocale.language.iaraTranslate.customfields
.optional,
},
{
id: "add_additive_field",
iconCss: "e-icons e-plus",
text: editorContainerLocale.language.iaraTranslate.customfields
.additive,
},
{
id: "next_field",
iconCss: "e-icons e-arrow-right",
Expand Down