diff --git a/src/components/Select.vue b/src/components/Select.vue
index a99a5ef..7bfc85b 100644
--- a/src/components/Select.vue
+++ b/src/components/Select.vue
@@ -12,7 +12,7 @@
role="combobox"
:aria-expanded="dropdownOpen.toString()"
:aria-owns="`vs${uid}__listbox`"
- aria-label="Search for option"
+ :aria-label="i18n.search.ariaLabel"
@mousedown="toggleDropdown($event)"
>
@@ -37,8 +37,10 @@
:disabled="disabled"
type="button"
class="vs__deselect"
- :title="`Deselect ${getOptionLabel(option)}`"
- :aria-label="`Deselect ${getOptionLabel(option)}`"
+ :title="i18n.deselectButton.title(getOptionLabel(option))"
+ :aria-label="
+ i18n.deselectButton.ariaLabel(getOptionLabel(option))
+ "
@click="deselect(option)"
>
@@ -78,7 +80,9 @@
- Loading...
+
+ {{ i18n.spinner.text }}
+
@@ -116,9 +120,9 @@
- Sorry, no matching options.
+
+ {{ i18n.noOptions.text }}
+
@@ -134,9 +138,10 @@