From 507938425c5579e6a5982356f36a030654c02775 Mon Sep 17 00:00:00 2001 From: Vaibhav Rathore Date: Fri, 27 Feb 2026 19:55:29 +0530 Subject: [PATCH] refactor: move conferencing fields to separate section and translate labels Move Conferencing Provider, Zoom Account, and Google Meet Account fields into their own "Conferencing" section. Wrap option labels with __() for i18n translation. --- frontend/src/pages/Batches/BatchForm.vue | 82 +++++++++++++----------- 1 file changed, 44 insertions(+), 38 deletions(-) diff --git a/frontend/src/pages/Batches/BatchForm.vue b/frontend/src/pages/Batches/BatchForm.vue index 8dabab12..08d202a0 100644 --- a/frontend/src/pages/Batches/BatchForm.vue +++ b/frontend/src/pages/Batches/BatchForm.vue @@ -165,42 +165,48 @@ " /> -
- - - - -
+ + + + +
+
+ {{ __('Conferencing') }} +
+
+ + +
@@ -488,11 +494,11 @@ const conferencingOptions = computed(() => { value: '', }, { - label: 'Zoom', + label: __('Zoom'), value: 'Zoom', }, { - label: 'Google Meet', + label: __('Google Meet'), value: 'Google Meet', }, ]