@shwfed/nuxt 0.1.22 → 0.1.24
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 +1 -1
- package/dist/runtime/components/app.vue +13 -11
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -39,7 +39,7 @@ whenever(() => meta_k?.value, () => {
|
|
|
39
39
|
class="text-zinc-400 text-2xl!"
|
|
40
40
|
/>
|
|
41
41
|
<p class="text-zinc-500">
|
|
42
|
-
{{ t("command-palette
|
|
42
|
+
{{ t("command-palette-empty") }}
|
|
43
43
|
</p>
|
|
44
44
|
</section>
|
|
45
45
|
</CommandEmpty>
|
|
@@ -63,14 +63,16 @@ whenever(() => meta_k?.value, () => {
|
|
|
63
63
|
</TooltipProvider>
|
|
64
64
|
</template>
|
|
65
65
|
|
|
66
|
-
<i18n lang="
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
empty: 无搜索结果
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
empty: 結果はありません
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
empty: No results
|
|
66
|
+
<i18n lang="json">
|
|
67
|
+
{
|
|
68
|
+
"zh": {
|
|
69
|
+
"command-palette-empty": "无搜索结果"
|
|
70
|
+
},
|
|
71
|
+
"ja": {
|
|
72
|
+
"command-palette-empty": "結果はありません"
|
|
73
|
+
},
|
|
74
|
+
"en": {
|
|
75
|
+
"command-palette-empty": "No results"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
76
78
|
</i18n>
|