- {{ title }}
+ {{ __(title) }}
@@ -37,6 +37,7 @@
diff --git a/src/components/Checkbox.vue b/src/components/Checkbox.vue
index 05e79168..e1317217 100644
--- a/src/components/Checkbox.vue
+++ b/src/components/Checkbox.vue
@@ -22,11 +22,12 @@
v-bind="attrs"
/>
diff --git a/src/components/FormControl.vue b/src/components/FormControl.vue
index b105f327..640c4bbf 100644
--- a/src/components/FormControl.vue
+++ b/src/components/FormControl.vue
@@ -1,7 +1,7 @@
diff --git a/src/components/ListView/ListEmptyState.vue b/src/components/ListView/ListEmptyState.vue
index 85c81d72..921bfaa1 100644
--- a/src/components/ListView/ListEmptyState.vue
+++ b/src/components/ListView/ListEmptyState.vue
@@ -3,9 +3,11 @@
class="flex h-full w-full flex-col items-center justify-center text-base"
>
- {{ list.options.emptyState.title }}
+
+ {{ __(list.options.emptyState.title) }}
+
- {{ list.options.emptyState.description }}
+ {{ __(list.options.emptyState.description) }}
diff --git a/src/components/Tabs.vue b/src/components/Tabs.vue
index e8f3ce41..dc1be362 100644
--- a/src/components/Tabs.vue
+++ b/src/components/Tabs.vue
@@ -26,7 +26,7 @@
:class="{ 'text-ink-gray-9': selected }"
>
- {{ tab.label }}
+ {{ __(tab.label) }}
@@ -49,6 +49,7 @@
diff --git a/src/components/TextInput.vue b/src/components/TextInput.vue
index 594ac6f2..d6e9dc66 100644
--- a/src/components/TextInput.vue
+++ b/src/components/TextInput.vue
@@ -17,7 +17,7 @@
diff --git a/src/components/Tooltip/Tooltip.vue b/src/components/Tooltip/Tooltip.vue
index 09b80ff9..b64ae529 100644
--- a/src/components/Tooltip/Tooltip.vue
+++ b/src/components/Tooltip/Tooltip.vue
@@ -1,4 +1,5 @@