diff --git a/src/components/04_product-service/ServiceProperties.vue b/src/components/04_product-service/ServiceProperties.vue
index 652d40bc..621c3a80 100644
--- a/src/components/04_product-service/ServiceProperties.vue
+++ b/src/components/04_product-service/ServiceProperties.vue
@@ -22,25 +22,25 @@ const selection = ref(false);
const typeOption = ref([
{
- label: 'Text',
+ label: t('text'),
value: 'string',
color: 'var(--pink-6-hsl)',
icon: 'mdi-alpha-t',
},
{
- label: 'Number',
+ label: t('number'),
value: 'number',
color: 'var(--purple-11-hsl)',
icon: 'mdi-numeric',
},
{
- label: 'Date',
+ label: t('date'),
value: 'date',
color: 'var(--green-9-hsl)',
icon: 'mdi-calendar-blank-outline',
},
{
- label: 'Selection',
+ label: t('selection'),
value: 'array',
color: 'var(--indigo-7-hsl)',
icon: 'mdi-code-array',
@@ -117,7 +117,7 @@ function confirmDelete(items: unknown[], index: number) {
dense
unelevated
color="primary"
- label="Properties"
+ :label="$t('properties')"
class="q-px-sm q-mb-lg"
menu-anchor="bottom end"
>
@@ -141,8 +141,7 @@ function confirmDelete(items: unknown[], index: number) {
class="q-mr-sm"
style="color: hsl(var(--text-mute))"
/>
-
- เลือกทั้งหมด
+ {{ $t('selectAll') }}