@@ -46,10 +46,10 @@
{% } %}
- {{ctx.t('Save')}}
- {{ctx.t('Cancel')}}
- {{ctx.t('Remove')}}
- {{ctx.t('Hide preview')}}
+ {{ctx.t('save')}}
+ {{ctx.t('cancel')}}
+ {{ctx.t('remove')}}
+ {{ctx.t('hidePreview')}}
{% } %}
diff --git a/src/templates/bootstrap5/builderPlaceholder/form.ejs b/src/templates/bootstrap5/builderPlaceholder/form.ejs
index 47bb3e80e..46f6ddf4b 100644
--- a/src/templates/bootstrap5/builderPlaceholder/form.ejs
+++ b/src/templates/bootstrap5/builderPlaceholder/form.ejs
@@ -5,5 +5,5 @@
data-noattach="true"
data-position="{{ctx.position}}"
>
- {{ctx.t('Drag and Drop a form component')}}
+ {{ctx.t('dragAndDropComponent')}}
diff --git a/src/templates/bootstrap5/builderSidebar/form.ejs b/src/templates/bootstrap5/builderSidebar/form.ejs
index abb3f71f3..9c706b893 100644
--- a/src/templates/bootstrap5/builderSidebar/form.ejs
+++ b/src/templates/bootstrap5/builderSidebar/form.ejs
@@ -1,5 +1,5 @@
diff --git a/src/templates/bootstrap5/builderWizard/form.ejs b/src/templates/bootstrap5/builderWizard/form.ejs
index b971e0d70..bff67c034 100644
--- a/src/templates/bootstrap5/builderWizard/form.ejs
+++ b/src/templates/bootstrap5/builderWizard/form.ejs
@@ -10,8 +10,8 @@
{% }) %}
-
- {{ctx.t('Page')}}
+
+ {{ctx.t('page')}}
diff --git a/src/templates/bootstrap5/componentModal/form.ejs b/src/templates/bootstrap5/componentModal/form.ejs
index 81274f572..6d8f5715d 100644
--- a/src/templates/bootstrap5/componentModal/form.ejs
+++ b/src/templates/bootstrap5/componentModal/form.ejs
@@ -5,9 +5,9 @@
{{ ctx.t(ctx.component.label) }}{{ctx.self.isIE() ? ', dialog' : ''}}
{% if (ctx.options.vpat) { %}
-
+
{% } else { %}
-
+
{% } %}
{% if (ctx.visible) { %}
@@ -15,9 +15,9 @@
{% } %}
{% if (ctx.options.vpat) { %}
- {{ctx.t('Cancel')}}
+ {{ctx.t('cancel')}}
{% } %}
- {{ctx.t('Save')}}
+ {{ctx.t('save')}}
diff --git a/src/templates/bootstrap5/datagrid/form.ejs b/src/templates/bootstrap5/datagrid/form.ejs
index 406b525e7..906a4f258 100644
--- a/src/templates/bootstrap5/datagrid/form.ejs
+++ b/src/templates/bootstrap5/datagrid/form.ejs
@@ -15,10 +15,10 @@
{% }) %}
{% if (ctx.hasExtraColumn) { %}
- {{ ctx.t('Add/Remove') }}
+ {{ ctx.t('addOrRemove') }}
{% if (!ctx.builder && ctx.hasAddButton && ctx.hasTopSubmit) { %}
- {{ctx.t(ctx.component.addAnother || 'Add Another', { _userInput: true })}}
+ {{ctx.t(ctx.component.addAnother || 'addAnother', { _userInput: !!ctx.component.addAnother })}}
{% } %}
@@ -69,7 +69,7 @@
- {{ctx.t(ctx.component.addAnother || 'Add Another', { _userInput: true })}}
+ {{ctx.t(ctx.component.addAnother || 'addAnother', { _userInput: !!ctx.component.addAnother })}}
diff --git a/src/templates/bootstrap5/day/form.ejs b/src/templates/bootstrap5/day/form.ejs
index e8d30f7f6..3467e2378 100644
--- a/src/templates/bootstrap5/day/form.ejs
+++ b/src/templates/bootstrap5/day/form.ejs
@@ -11,7 +11,7 @@
{% if (ctx.dayFirst && ctx.showDay) { %}
{% if (!ctx.component.hideInputLabels) { %}
-
{{ctx.t('Day')}}
+
{{ctx.t('day')}}
{% } %}
{{ctx.day}}
@@ -19,7 +19,7 @@
{% if (ctx.showMonth) { %}
{% if (!ctx.component.hideInputLabels) { %}
-
{{ctx.t('Month')}}
+
{{ctx.t('month')}}
{% } %}
{{ctx.month}}
@@ -27,7 +27,7 @@
{% if (!ctx.dayFirst && ctx.showDay) { %}
{% if (!ctx.component.hideInputLabels) { %}
-
{{ctx.t('Day')}}
+
{{ctx.t('day')}}
{% } %}
{{ctx.day}}
@@ -35,7 +35,7 @@
{% if (ctx.showYear) { %}
{% if (!ctx.component.hideInputLabels) { %}
-
{{ctx.t('Year')}}
+
{{ctx.t('year')}}
{% } %}
{{ctx.year}}
diff --git a/src/templates/bootstrap5/editgrid/form.ejs b/src/templates/bootstrap5/editgrid/form.ejs
index 77d8223d2..f3a811a9c 100644
--- a/src/templates/bootstrap5/editgrid/form.ejs
+++ b/src/templates/bootstrap5/editgrid/form.ejs
@@ -14,9 +14,9 @@
{{row}}
{% if (ctx.openRows[rowIndex] && !ctx.readOnly) { %}
- {{ctx.t(ctx.component.saveRow || 'Save', { _userInput: true })}}
+ {{ctx.t(ctx.component.saveRow || 'save', { _userInput: !!ctx.component.saveRow })}}
{% if (ctx.component.removeRow) { %}
- {{ctx.t(ctx.component.removeRow || 'Cancel', { _userInput: true })}}
+ {{ctx.t(ctx.component.removeRow || 'cancel', { _userInput: !!ctx.component.removeRow })}}
{% } %}
{% } %}
@@ -35,6 +35,6 @@
{% if (!ctx.readOnly && ctx.hasAddButton) { %}
- {{ctx.t(ctx.component.addAnother || 'Add Another', { _userInput: true })}}
+ {{ctx.t(ctx.component.addAnother || 'addAnother', { _userInput: !!ctx.component.addAnother})}}
{% } %}
diff --git a/src/templates/bootstrap5/editgrid/html.ejs b/src/templates/bootstrap5/editgrid/html.ejs
index 99835f763..40c6c29ab 100644
--- a/src/templates/bootstrap5/editgrid/html.ejs
+++ b/src/templates/bootstrap5/editgrid/html.ejs
@@ -14,9 +14,9 @@
{{row}}
{% if (ctx.openRows[rowIndex] && !ctx.readOnly) { %}
- {{ctx.t(ctx.component.saveRow || 'Save', { _userInput: true })}}
+ {{ctx.t(ctx.component.saveRow || 'save', { _userInput: !!ctx.component.saveRow })}}
{% if (ctx.component.removeRow) { %}
- {{ctx.t(ctx.component.removeRow || 'Cancel', { _userInput: true })}}
+ {{ctx.t(ctx.component.removeRow || 'cancel', { _userInput: !!ctx.component.removeRow })}}
{% } %}
{% } %}
diff --git a/src/templates/bootstrap5/editgridTable/form.ejs b/src/templates/bootstrap5/editgridTable/form.ejs
index 6b9767b46..456b6a9d9 100644
--- a/src/templates/bootstrap5/editgridTable/form.ejs
+++ b/src/templates/bootstrap5/editgridTable/form.ejs
@@ -18,9 +18,9 @@
{% if (ctx.openRows[rowIndex] && !ctx.readOnly) { %}
- {{ctx.t(ctx.component.saveRow || 'Save', { _userInput: true })}}
+ {{ctx.t(ctx.component.saveRow || 'save', { _userInput: !!ctx.component.saveRow })}}
{% if (ctx.component.removeRow) { %}
- {{ctx.t(ctx.component.removeRow || 'Cancel', { _userInput: true })}}
+ {{ctx.t(ctx.component.removeRow || 'cancel', { _userInput: !!ctx.component.removeRow })}}
{% } %}
@@ -50,6 +50,6 @@
{% if (!ctx.readOnly && ctx.hasAddButton) { %}
- {{ctx.t(ctx.component.addAnother || 'Add Another', { _userInput: true })}}
+ {{ctx.t(ctx.component.addAnother || 'addAnother', { _userInput: !!ctx.component.addAnother })}}
{% } %}
diff --git a/src/templates/bootstrap5/editgridTable/html.ejs b/src/templates/bootstrap5/editgridTable/html.ejs
index 9a7d70ff5..3b93fd120 100644
--- a/src/templates/bootstrap5/editgridTable/html.ejs
+++ b/src/templates/bootstrap5/editgridTable/html.ejs
@@ -18,9 +18,9 @@
{% if (ctx.openRows[rowIndex] && !ctx.readOnly) { %}
- {{ctx.t(ctx.component.saveRow || 'Save', { _userInput: true })}}
+ {{ctx.t(ctx.component.saveRow || 'save', { _userInput: !!ctx.component.saveRow })}}
{% if (ctx.component.removeRow) { %}
- {{ctx.t(ctx.component.removeRow || 'Cancel', { _userInput: true })}}
+ {{ctx.t(ctx.component.removeRow || 'cancel', { _userInput: !!ctx.component.removeRow })}}
{% } %}
diff --git a/src/templates/bootstrap5/file/form.ejs b/src/templates/bootstrap5/file/form.ejs
index 61bc01237..f28902fb9 100644
--- a/src/templates/bootstrap5/file/form.ejs
+++ b/src/templates/bootstrap5/file/form.ejs
@@ -3,15 +3,15 @@
{% } %}
{% if (!ctx.self.imageUpload) { %}
{% if (ctx.options.vpat) { %}
-
{{(!ctx.component.filePattern || ctx.component.filePattern === '*') ? 'Any file types are allowed' : ctx.t('Allowed file types: ') + ctx.component.filePattern}}
+
{{(!ctx.component.filePattern || ctx.component.filePattern === '*') ? ctx.t('anyFileTypesAllowed') : ctx.t('allowedFileTypes') + ': ' + ctx.component.filePattern}}
{% } %}
@@ -86,7 +86,7 @@
{% if (file.status === 'progress') { %}