From 996071740a89be8934f474a1c20bc0134344226f Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Tue, 7 Mar 2023 22:27:41 +0900 Subject: [PATCH] fix: remove locales --- packages/unplugin-vue-i18n/test/fixtures/locales/en-US.js | 7 ------- packages/unplugin-vue-i18n/test/fixtures/locales/ja-JP.ts | 8 -------- 2 files changed, 15 deletions(-) delete mode 100644 packages/unplugin-vue-i18n/test/fixtures/locales/en-US.js delete mode 100644 packages/unplugin-vue-i18n/test/fixtures/locales/ja-JP.ts diff --git a/packages/unplugin-vue-i18n/test/fixtures/locales/en-US.js b/packages/unplugin-vue-i18n/test/fixtures/locales/en-US.js deleted file mode 100644 index 6c362be..0000000 --- a/packages/unplugin-vue-i18n/test/fixtures/locales/en-US.js +++ /dev/null @@ -1,7 +0,0 @@ -export default { - message: "@.caml:{'no apples'} | {0} apple | {n} apples", - nest: { - hello: 'hello {name}!' - }, - items: ['hello', 2, { foo: 'foooo' }] -} diff --git a/packages/unplugin-vue-i18n/test/fixtures/locales/ja-JP.ts b/packages/unplugin-vue-i18n/test/fixtures/locales/ja-JP.ts deleted file mode 100644 index 1c454b9..0000000 --- a/packages/unplugin-vue-i18n/test/fixtures/locales/ja-JP.ts +++ /dev/null @@ -1,8 +0,0 @@ -type Foo = 'foo' -export default { - message: "@.caml:{'no apples'} | {0} apple | {n} apples", - nest: { - hello: 'hello {name}!' - }, - items: ['hello', 2, { foo: 'foooo' }] -}