nuxt-hs-ui 2.9.6 → 2.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -181,10 +181,10 @@ const unKnownData = computed(() => {
|
|
|
181
181
|
if (props.data === null) return null;
|
|
182
182
|
return {
|
|
183
183
|
id: props.data,
|
|
184
|
-
text: {
|
|
184
|
+
text: gt({
|
|
185
185
|
ja: `無効な値が選択されています (ID=${props.data})`,
|
|
186
186
|
en: `Invalid value selected (ID=${props.data})`,
|
|
187
|
-
},
|
|
187
|
+
}),
|
|
188
188
|
};
|
|
189
189
|
});
|
|
190
190
|
|