Skip to content

Commit

Permalink
feat(ui): add global save button to settings page (#5602)
Browse files Browse the repository at this point in the history
  • Loading branch information
CGaneshKumar2002 authored Oct 24, 2024
1 parent d33d6a7 commit 56d849f
Show file tree
Hide file tree
Showing 14 changed files with 192 additions and 108 deletions.
226 changes: 119 additions & 107 deletions ui/src/components/settings/BasicSettings.vue

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ui/src/components/settings/components/block/Block.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import InformationOutline from "vue-material-design-icons/InformationOutline.vue";
defineProps({
heading: {type: String, required: true},
heading: {type: String, default: ""},
note: {type: String, default: undefined},
last: {type: Boolean, default: false},
});
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@
"flows": "Alle Flows exportieren",
"templates": "Alle Vorlagen exportieren"
}
},
"save": {
"label": "Einstellungen speichern",
"fields": {
"name": "Änderungen speichern"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,12 @@
"flows": "Export All Flows",
"templates": "Export All Templates"
}
},
"save": {
"label": "Save Preferences",
"fields": {
"name": "Save Changes"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@
"flows": "Exportar Todos los Flows",
"templates": "Exportar Todas las Plantillas"
}
},
"save": {
"label": "Guardar preferencias",
"fields": {
"name": "Guardar cambios"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@
"flows": "Exporter tous les Flux",
"templates": "Exporter tous les modèles"
}
},
"save": {
"label": "Sauvegarder les préférences",
"fields": {
"name": "Sauvegarder les modifications"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/hi.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@
"flows": "सभी Flows निर्यात करें",
"templates": "सभी templates निर्यात करें"
}
},
"save": {
"label": "पसंदीगियाँ सहेजें",
"fields": {
"name": "परिवर्तनों को सहेजें"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@
"flows": "Esporta tutti i Flows",
"templates": "Esporta tutti i Template"
}
},
"save": {
"label": "Salva preferenze",
"fields": {
"name": "Salva modifiche"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@
"flows": "すべてのflowをエクスポート",
"templates": "すべてのテンプレートをエクスポート"
}
},
"save": {
"label": "設定を保存",
"fields": {
"name": "変更を保存"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@
"flows": "모든 Flow 내보내기",
"templates": "모든 템플릿 내보내기"
}
},
"save": {
"label": "환경 설정 저장",
"fields": {
"name": "변경 사항 저장"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/pl.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@
"flows": "Eksportuj Wszystkie Flows",
"templates": "Eksportuj Wszystkie Szablony"
}
},
"save": {
"label": "Zapisz preferencje",
"fields": {
"name": "Zapisz zmiany"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@
"flows": "Exportar Todos os Flows",
"templates": "Exportar Todos os Templates"
}
},
"save": {
"label": "Salvar preferências",
"fields": {
"name": "Salvar alterações"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@
"flows": "Экспортировать все flows",
"templates": "Экспортировать все шаблоны"
}
},
"save": {
"label": "Сохранить настройки",
"fields": {
"name": "Сохранить изменения"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions ui/src/translations/zh_CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@
"flows": "导出所有流程",
"templates": "导出所有模板"
}
},
"save": {
"label": "保存偏好设置",
"fields": {
"name": "保存更改"
}
}
}
},
Expand Down

0 comments on commit 56d849f

Please sign in to comment.