create-fate 1.3.3 → 1.5.0
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/bin/create-fate.mjs +41 -3
- package/package.json +1 -1
- package/templates/fate/_shared/vue-app/package.json +14 -16
- package/templates/fate/cloudflare/README.md +11 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/browserslist +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/cf-wrangler +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/drizzle-kit +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/esbuild +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/fate +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/fbtee +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/intent +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/jiti +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/oxfmt +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/oxlint +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/rolldown +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/tsc +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/tsx +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/vitest +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/void +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/vp +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/vpr +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/workerd +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/wrangler +22 -0
- package/templates/fate/cloudflare/client/node_modules/.bin/wrangler2 +22 -0
- package/templates/fate/cloudflare/client/package.json +26 -21
- package/templates/fate/cloudflare/client/pages/layout.tsx +2 -16
- package/templates/fate/cloudflare/client/src/lib/AvailableLanguages.tsx +3 -3
- package/templates/fate/cloudflare/client/src/lib/LocaleContext.tsx +61 -0
- package/templates/fate/cloudflare/client/src/ui/LocaleSwitcher.tsx +26 -44
- package/templates/fate/cloudflare/client/start.mjs +11 -0
- package/templates/fate/cloudflare/client/translations/{de_DE.json → de-DE.json} +56 -113
- package/templates/fate/{graphql/client/translations/ja_JP.json → cloudflare/client/translations/ja-JP.json} +56 -113
- package/templates/fate/cloudflare/client/vite.config.ts +4 -8
- package/templates/fate/cloudflare/package.json +6 -10
- package/templates/fate/cloudflare/pnpm-workspace.yaml +4 -4
- package/templates/fate/cloudflare/server/db/migrations/20260508073357_initial_schema.sql +3 -2
- package/templates/fate/cloudflare/server/db/migrations/20260508120500_seed_cloudflare_demo.sql +10 -10
- package/templates/fate/cloudflare/server/db/migrations/meta/20260508073357_snapshot.json +10 -3
- package/templates/fate/cloudflare/server/db/schema.ts +2 -3
- package/templates/fate/cloudflare/server/node_modules/.bin/cf-wrangler +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/drizzle-kit +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/esbuild +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/fate +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/intent +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/jiti +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/oxfmt +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/oxlint +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/tsc +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/tsx +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/vitest +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/vp +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/vpr +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/workerd +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/wrangler +22 -0
- package/templates/fate/cloudflare/server/node_modules/.bin/wrangler2 +22 -0
- package/templates/fate/cloudflare/server/package.json +3 -3
- package/templates/fate/cloudflare/server/src/fate/server.ts +5 -2
- package/templates/fate/cloudflare/server/src/lib/auth.ts +0 -2
- package/templates/fate/cloudflare/server/tsconfig.json +1 -1
- package/templates/fate/cloudflare/tsconfig.json +2 -11
- package/templates/fate/cloudflare/vite.config.ts +3 -0
- package/templates/fate/drizzle/README.md +11 -0
- package/templates/fate/drizzle/client/node_modules/.bin/browserslist +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/cf-wrangler +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/drizzle-kit +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/esbuild +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/fate +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/fbtee +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/intent +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/jiti +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/oxfmt +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/oxlint +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/rolldown +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/tsc +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/tsx +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/vitest +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/void +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/vp +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/vpr +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/workerd +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/wrangler +22 -0
- package/templates/fate/drizzle/client/node_modules/.bin/wrangler2 +22 -0
- package/templates/fate/drizzle/client/package.json +28 -24
- package/templates/fate/drizzle/client/pages/layout.tsx +2 -16
- package/templates/fate/drizzle/client/src/lib/AvailableLanguages.tsx +3 -3
- package/templates/fate/drizzle/client/src/lib/LocaleContext.tsx +61 -0
- package/templates/fate/drizzle/client/src/ui/LocaleSwitcher.tsx +26 -44
- package/templates/fate/drizzle/client/start.mjs +11 -0
- package/templates/fate/{graphql/client/translations/de_DE.json → drizzle/client/translations/de-DE.json} +56 -113
- package/templates/fate/{cloudflare/client/translations/ja_JP.json → drizzle/client/translations/ja-JP.json} +56 -113
- package/templates/fate/drizzle/client/vite.config.ts +4 -8
- package/templates/fate/drizzle/package.json +6 -10
- package/templates/fate/drizzle/pnpm-workspace.yaml +4 -4
- package/templates/fate/drizzle/server/node_modules/.bin/drizzle-kit +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/esbuild +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/fate +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/intent +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/jiti +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/nodemon +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/oxfmt +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/oxlint +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/tsc +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/tsx +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/vitest +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/vp +22 -0
- package/templates/fate/drizzle/server/node_modules/.bin/vpr +22 -0
- package/templates/fate/drizzle/server/package.json +9 -9
- package/templates/fate/drizzle/server/src/app.tsx +1 -1
- package/templates/fate/drizzle/server/src/drizzle/schema.ts +2 -3
- package/templates/fate/drizzle/server/src/drizzle/seed.tsx +1 -1
- package/templates/fate/drizzle/tsconfig.json +1 -10
- package/templates/fate/graphql/README.md +11 -0
- package/templates/fate/graphql/client/node_modules/.bin/browserslist +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/cf-wrangler +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/drizzle-kit +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/esbuild +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/fate +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/fbtee +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/intent +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/jiti +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/oxfmt +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/oxlint +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/rolldown +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/tsc +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/tsx +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/vitest +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/void +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/vp +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/vpr +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/workerd +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/wrangler +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/wrangler2 +22 -0
- package/templates/fate/graphql/client/node_modules/.bin/yaml +22 -0
- package/templates/fate/graphql/client/package.json +27 -23
- package/templates/fate/graphql/client/pages/layout.tsx +2 -16
- package/templates/fate/graphql/client/src/lib/AvailableLanguages.tsx +3 -3
- package/templates/fate/graphql/client/src/lib/LocaleContext.tsx +61 -0
- package/templates/fate/graphql/client/src/ui/LocaleSwitcher.tsx +26 -44
- package/templates/fate/graphql/client/src/ui/PostCard.tsx +1 -1
- package/templates/fate/graphql/client/start.mjs +11 -0
- package/templates/fate/{drizzle/client/translations/de_DE.json → graphql/client/translations/de-DE.json} +56 -113
- package/templates/fate/{http/client/translations/ja_JP.json → graphql/client/translations/ja-JP.json} +56 -113
- package/templates/fate/graphql/client/vite.config.ts +4 -8
- package/templates/fate/graphql/package.json +7 -11
- package/templates/fate/graphql/pnpm-workspace.yaml +4 -4
- package/templates/fate/graphql/server/package.json +25 -29
- package/templates/fate/graphql/server/prisma.config.ts +9 -1
- package/templates/fate/graphql/server/scripts/generate-graphql.tsx +1 -1
- package/templates/fate/graphql/server/src/index.tsx +1 -1
- package/templates/fate/graphql/server/src/prisma/schema.prisma +2 -1
- package/templates/fate/graphql/server/src/prisma/seed.tsx +1 -1
- package/templates/fate/graphql/server/tsconfig.json +1 -11
- package/templates/fate/graphql/tsconfig.json +1 -10
- package/templates/fate/graphql-client/README.md +9 -0
- package/templates/fate/graphql-client/_gitignore +3 -0
- package/templates/fate/graphql-client/package.json +27 -24
- package/templates/fate/graphql-client/pages/index.tsx +61 -27
- package/templates/fate/graphql-client/pages/layout.tsx +22 -15
- package/templates/fate/graphql-client/pnpm-workspace.yaml +6 -4
- package/templates/fate/graphql-client/src/lib/AvailableLanguages.tsx +5 -0
- package/templates/fate/graphql-client/src/lib/LocaleContext.tsx +61 -0
- package/templates/fate/graphql-client/src/ui/LocaleSwitcher.tsx +34 -0
- package/templates/fate/graphql-client/translations/de-DE.json +225 -0
- package/templates/fate/graphql-client/translations/ja-JP.json +225 -0
- package/templates/fate/graphql-client/vite.config.ts +9 -13
- package/templates/fate/http/README.md +11 -0
- package/templates/fate/http/client/node_modules/.bin/browserslist +22 -0
- package/templates/fate/http/client/node_modules/.bin/cf-wrangler +22 -0
- package/templates/fate/http/client/node_modules/.bin/drizzle-kit +22 -0
- package/templates/fate/http/client/node_modules/.bin/esbuild +22 -0
- package/templates/fate/http/client/node_modules/.bin/fate +22 -0
- package/templates/fate/http/client/node_modules/.bin/fbtee +22 -0
- package/templates/fate/http/client/node_modules/.bin/intent +22 -0
- package/templates/fate/http/client/node_modules/.bin/jiti +22 -0
- package/templates/fate/http/client/node_modules/.bin/oxfmt +22 -0
- package/templates/fate/http/client/node_modules/.bin/oxlint +22 -0
- package/templates/fate/http/client/node_modules/.bin/rolldown +22 -0
- package/templates/fate/http/client/node_modules/.bin/tsc +22 -0
- package/templates/fate/http/client/node_modules/.bin/tsx +22 -0
- package/templates/fate/http/client/node_modules/.bin/vitest +22 -0
- package/templates/fate/http/client/node_modules/.bin/void +22 -0
- package/templates/fate/http/client/node_modules/.bin/vp +22 -0
- package/templates/fate/http/client/node_modules/.bin/vpr +22 -0
- package/templates/fate/http/client/node_modules/.bin/workerd +22 -0
- package/templates/fate/http/client/node_modules/.bin/wrangler +22 -0
- package/templates/fate/http/client/node_modules/.bin/wrangler2 +22 -0
- package/templates/fate/http/client/package.json +26 -22
- package/templates/fate/http/client/pages/layout.tsx +2 -16
- package/templates/fate/http/client/src/lib/AvailableLanguages.tsx +3 -3
- package/templates/fate/http/client/src/lib/LocaleContext.tsx +61 -0
- package/templates/fate/http/client/src/ui/LocaleSwitcher.tsx +26 -44
- package/templates/fate/http/client/start.mjs +11 -0
- package/templates/fate/http/client/translations/{de_DE.json → de-DE.json} +56 -113
- package/templates/fate/{drizzle/client/translations/ja_JP.json → http/client/translations/ja-JP.json} +56 -113
- package/templates/fate/http/client/vite.config.ts +4 -8
- package/templates/fate/http/package.json +6 -10
- package/templates/fate/http/pnpm-workspace.yaml +4 -4
- package/templates/fate/http/server/node_modules/.bin/drizzle-kit +22 -0
- package/templates/fate/http/server/node_modules/.bin/esbuild +22 -0
- package/templates/fate/http/server/node_modules/.bin/fate +22 -0
- package/templates/fate/http/server/node_modules/.bin/intent +22 -0
- package/templates/fate/http/server/node_modules/.bin/jiti +22 -0
- package/templates/fate/http/server/node_modules/.bin/nodemon +22 -0
- package/templates/fate/http/server/node_modules/.bin/oxfmt +22 -0
- package/templates/fate/http/server/node_modules/.bin/oxlint +22 -0
- package/templates/fate/http/server/node_modules/.bin/tsc +22 -0
- package/templates/fate/http/server/node_modules/.bin/tsx +22 -0
- package/templates/fate/http/server/node_modules/.bin/vitest +22 -0
- package/templates/fate/http/server/node_modules/.bin/vp +22 -0
- package/templates/fate/http/server/node_modules/.bin/vpr +22 -0
- package/templates/fate/http/server/package.json +8 -8
- package/templates/fate/http/server/src/app.tsx +1 -1
- package/templates/fate/http/server/src/drizzle/schema.ts +2 -3
- package/templates/fate/http/server/src/drizzle/seed.tsx +1 -1
- package/templates/fate/http/tsconfig.json +1 -10
- package/templates/fate/prisma/README.md +11 -0
- package/templates/fate/prisma/client/node_modules/.bin/browserslist +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/cf-wrangler +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/drizzle-kit +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/esbuild +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/fate +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/fbtee +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/intent +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/jiti +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/oxfmt +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/oxlint +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/rolldown +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/tsc +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/tsx +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/vitest +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/void +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/vp +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/vpr +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/workerd +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/wrangler +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/wrangler2 +22 -0
- package/templates/fate/prisma/client/node_modules/.bin/yaml +22 -0
- package/templates/fate/prisma/client/package.json +28 -24
- package/templates/fate/prisma/client/pages/layout.tsx +2 -16
- package/templates/fate/prisma/client/src/lib/AvailableLanguages.tsx +3 -3
- package/templates/fate/prisma/client/src/lib/LocaleContext.tsx +61 -0
- package/templates/fate/prisma/client/src/ui/LocaleSwitcher.tsx +26 -44
- package/templates/fate/prisma/client/start.mjs +11 -0
- package/templates/fate/prisma/client/translations/de-DE.json +632 -0
- package/templates/fate/prisma/client/translations/ja-JP.json +632 -0
- package/templates/fate/prisma/client/vite.config.ts +4 -8
- package/templates/fate/prisma/package.json +7 -11
- package/templates/fate/prisma/pnpm-workspace.yaml +4 -4
- package/templates/fate/prisma/server/node_modules/.bin/esbuild +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/fate +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/intent +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/jiti +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/nft +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/nodemon +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/oxfmt +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/oxlint +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/prisma +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/tsc +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/tsx +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/vitest +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/vp +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/vpr +22 -0
- package/templates/fate/prisma/server/node_modules/.bin/yaml +22 -0
- package/templates/fate/prisma/server/package.json +9 -9
- package/templates/fate/prisma/server/prisma.config.ts +2 -1
- package/templates/fate/prisma/server/src/app.tsx +1 -1
- package/templates/fate/prisma/server/src/prisma/schema.prisma +2 -1
- package/templates/fate/prisma/server/src/prisma/seed.tsx +1 -1
- package/templates/fate/prisma/tsconfig.json +1 -10
- package/templates/fate/void/README.md +9 -0
- package/templates/fate/void/_gitignore +3 -0
- package/templates/fate/void/db/migrations/20260508073357_initial_schema.sql +3 -2
- package/templates/fate/void/db/migrations/20260508120500_seed_void_demo.sql +10 -10
- package/templates/fate/void/db/migrations/meta/20260508073357_snapshot.json +10 -3
- package/templates/fate/void/db/schema.ts +2 -3
- package/templates/fate/void/middleware/01.shared.ts +3 -0
- package/templates/fate/void/package.json +30 -25
- package/templates/fate/void/pages/index.tsx +23 -10
- package/templates/fate/void/pages/layout.tsx +22 -19
- package/templates/fate/void/pages/login.tsx +22 -18
- package/templates/fate/void/pages/search.tsx +18 -4
- package/templates/fate/void/pnpm-workspace.yaml +4 -4
- package/templates/fate/void/src/fate/server.ts +2 -1
- package/templates/fate/void/src/lib/AvailableLanguages.tsx +5 -0
- package/templates/fate/void/src/lib/LocaleContext.tsx +61 -0
- package/templates/fate/void/src/ui/CategoryCard.tsx +22 -4
- package/templates/fate/void/src/ui/CreatePost.tsx +12 -7
- package/templates/fate/void/src/ui/Error.tsx +4 -2
- package/templates/fate/void/src/ui/EventCard.tsx +18 -5
- package/templates/fate/void/src/ui/Header.tsx +10 -4
- package/templates/fate/void/src/ui/LocaleSwitcher.tsx +34 -0
- package/templates/fate/void/src/ui/PostCard.tsx +29 -14
- package/templates/fate/void/src/ui/UserCard.tsx +15 -8
- package/templates/fate/void/translations/de-DE.json +863 -0
- package/templates/fate/void/translations/ja-JP.json +863 -0
- package/templates/fate/void/vite.config.ts +6 -6
- package/templates/fate/prisma/client/translations/de_DE.json +0 -689
- package/templates/fate/prisma/client/translations/ja_JP.json +0 -689
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"fb-locale": "
|
|
2
|
+
"fb-locale": "ja-JP",
|
|
3
3
|
"translations": {
|
|
4
4
|
"UbcovqOVkoR40Cj8ythMNg==": {
|
|
5
5
|
"description": "Text for thinking/loading screen",
|
|
6
|
-
"status": "new",
|
|
7
6
|
"tokens": [],
|
|
8
7
|
"translations": [
|
|
9
8
|
{
|
|
@@ -15,7 +14,6 @@
|
|
|
15
14
|
},
|
|
16
15
|
"hgJmGY0Nk8kIfZm4QB34Zg==": {
|
|
17
16
|
"description": "Sign In headline",
|
|
18
|
-
"status": "new",
|
|
19
17
|
"tokens": [],
|
|
20
18
|
"translations": [
|
|
21
19
|
{
|
|
@@ -27,7 +25,6 @@
|
|
|
27
25
|
},
|
|
28
26
|
"fjAChxxl9YYALSgXtLJkew==": {
|
|
29
27
|
"description": "Email placeholder",
|
|
30
|
-
"status": "new",
|
|
31
28
|
"tokens": [],
|
|
32
29
|
"translations": [
|
|
33
30
|
{
|
|
@@ -39,7 +36,6 @@
|
|
|
39
36
|
},
|
|
40
37
|
"cpewlSg5zFW0qSMLNtcxFw==": {
|
|
41
38
|
"description": "Password placeholder",
|
|
42
|
-
"status": "new",
|
|
43
39
|
"tokens": [],
|
|
44
40
|
"translations": [
|
|
45
41
|
{
|
|
@@ -51,7 +47,6 @@
|
|
|
51
47
|
},
|
|
52
48
|
"G7H+7X7c7UTEnQYdTDQxFQ==": {
|
|
53
49
|
"description": "Sign in button",
|
|
54
|
-
"status": "new",
|
|
55
50
|
"tokens": [],
|
|
56
51
|
"translations": [
|
|
57
52
|
{
|
|
@@ -61,45 +56,8 @@
|
|
|
61
56
|
],
|
|
62
57
|
"types": []
|
|
63
58
|
},
|
|
64
|
-
"ivCtO+jqs13xzsYK23hzeg==": {
|
|
65
|
-
"description": "Login details",
|
|
66
|
-
"status": "new",
|
|
67
|
-
"tokens": [],
|
|
68
|
-
"translations": [
|
|
69
|
-
{
|
|
70
|
-
"translation": "シードデータの {=Example Accounts} のいずれかを試してください。",
|
|
71
|
-
"variations": {}
|
|
72
|
-
}
|
|
73
|
-
],
|
|
74
|
-
"types": []
|
|
75
|
-
},
|
|
76
|
-
"0RrDsXsqYgvqv+XzJc155A==": {
|
|
77
|
-
"description": "In the phrase: \"Try one of the {=Example Accounts} in the seed data.\"",
|
|
78
|
-
"status": "new",
|
|
79
|
-
"tokens": [],
|
|
80
|
-
"translations": [
|
|
81
|
-
{
|
|
82
|
-
"translation": "サンプルアカウント {=}",
|
|
83
|
-
"variations": {}
|
|
84
|
-
}
|
|
85
|
-
],
|
|
86
|
-
"types": []
|
|
87
|
-
},
|
|
88
|
-
"/H4NwTM4npOLUYbNr2IDBg==": {
|
|
89
|
-
"description": "In the phrase: \"Try one of the Example Accounts {=} in the seed data.\"",
|
|
90
|
-
"status": "new",
|
|
91
|
-
"tokens": [],
|
|
92
|
-
"translations": [
|
|
93
|
-
{
|
|
94
|
-
"translation": "",
|
|
95
|
-
"variations": {}
|
|
96
|
-
}
|
|
97
|
-
],
|
|
98
|
-
"types": []
|
|
99
|
-
},
|
|
100
59
|
"GjQuNGdVoQW88RkFt7fMBw==": {
|
|
101
60
|
"description": "Try again button",
|
|
102
|
-
"status": "new",
|
|
103
61
|
"tokens": [],
|
|
104
62
|
"translations": [
|
|
105
63
|
{
|
|
@@ -111,7 +69,6 @@
|
|
|
111
69
|
},
|
|
112
70
|
"pxlvTZmpYNhXWc31iqf+uQ==": {
|
|
113
71
|
"description": "fate library tagline",
|
|
114
|
-
"status": "new",
|
|
115
72
|
"tokens": [],
|
|
116
73
|
"translations": [
|
|
117
74
|
{
|
|
@@ -123,7 +80,6 @@
|
|
|
123
80
|
},
|
|
124
81
|
"kJ5ukjdPI5cdsGVesqmrcg==": {
|
|
125
82
|
"description": "Search button",
|
|
126
|
-
"status": "new",
|
|
127
83
|
"tokens": [],
|
|
128
84
|
"translations": [
|
|
129
85
|
{
|
|
@@ -135,7 +91,6 @@
|
|
|
135
91
|
},
|
|
136
92
|
"PkKwcnNiHG2aiPl+1FyNPw==": {
|
|
137
93
|
"description": "Logout button",
|
|
138
|
-
"status": "new",
|
|
139
94
|
"tokens": [],
|
|
140
95
|
"translations": [
|
|
141
96
|
{
|
|
@@ -147,7 +102,6 @@
|
|
|
147
102
|
},
|
|
148
103
|
"F3p8DbdliugG4CTKslAYqA==": {
|
|
149
104
|
"description": "Login button",
|
|
150
|
-
"status": "new",
|
|
151
105
|
"tokens": [],
|
|
152
106
|
"translations": [
|
|
153
107
|
{
|
|
@@ -159,7 +113,6 @@
|
|
|
159
113
|
},
|
|
160
114
|
"FUJIhsu5G4IY6P5TPRp3Vg==": {
|
|
161
115
|
"description": "Comment add label",
|
|
162
|
-
"status": "new",
|
|
163
116
|
"tokens": [],
|
|
164
117
|
"translations": [
|
|
165
118
|
{
|
|
@@ -171,7 +124,6 @@
|
|
|
171
124
|
},
|
|
172
125
|
"T1ALGhyc+Kaa2DPzPPNtTA==": {
|
|
173
126
|
"description": "Placeholder text for comment input",
|
|
174
|
-
"status": "new",
|
|
175
127
|
"tokens": [],
|
|
176
128
|
"translations": [
|
|
177
129
|
{
|
|
@@ -183,7 +135,6 @@
|
|
|
183
135
|
},
|
|
184
136
|
"BckTW/qty+fgQ5iKKN0y1g==": {
|
|
185
137
|
"description": "Error text",
|
|
186
|
-
"status": "new",
|
|
187
138
|
"tokens": [],
|
|
188
139
|
"translations": [
|
|
189
140
|
{
|
|
@@ -195,7 +146,6 @@
|
|
|
195
146
|
},
|
|
196
147
|
"bEtExk1zQe1Iah6xAjqtKQ==": {
|
|
197
148
|
"description": "Post comment button",
|
|
198
|
-
"status": "new",
|
|
199
149
|
"tokens": [],
|
|
200
150
|
"translations": [
|
|
201
151
|
{
|
|
@@ -207,7 +157,6 @@
|
|
|
207
157
|
},
|
|
208
158
|
"lUG++psd2OuZ5idF7EFY4w==": {
|
|
209
159
|
"description": "Like count",
|
|
210
|
-
"status": "new",
|
|
211
160
|
"tokens": [],
|
|
212
161
|
"translations": [
|
|
213
162
|
{
|
|
@@ -219,7 +168,6 @@
|
|
|
219
168
|
},
|
|
220
169
|
"dMWQOcPqkDZj3MCZcy7/pA==": {
|
|
221
170
|
"description": "Like count",
|
|
222
|
-
"status": "new",
|
|
223
171
|
"tokens": [],
|
|
224
172
|
"translations": [
|
|
225
173
|
{
|
|
@@ -231,7 +179,6 @@
|
|
|
231
179
|
},
|
|
232
180
|
"MUnkaSorTo5i+Fx/WIQ+hw==": {
|
|
233
181
|
"description": "Like button",
|
|
234
|
-
"status": "new",
|
|
235
182
|
"tokens": [],
|
|
236
183
|
"translations": [
|
|
237
184
|
{
|
|
@@ -243,7 +190,6 @@
|
|
|
243
190
|
},
|
|
244
191
|
"UOSt+no1zSlM9CTWOGmKBw==": {
|
|
245
192
|
"description": "Like button with a slow request",
|
|
246
|
-
"status": "new",
|
|
247
193
|
"tokens": [],
|
|
248
194
|
"translations": [
|
|
249
195
|
{
|
|
@@ -255,7 +201,6 @@
|
|
|
255
201
|
},
|
|
256
202
|
"oNdagxfUl7t6w9JkaNR0sw==": {
|
|
257
203
|
"description": "Very short error messages",
|
|
258
|
-
"status": "new",
|
|
259
204
|
"tokens": [],
|
|
260
205
|
"translations": [
|
|
261
206
|
{
|
|
@@ -267,7 +212,6 @@
|
|
|
267
212
|
},
|
|
268
213
|
"miSs0inqjvdLcC/XGl0N9Q==": {
|
|
269
214
|
"description": "Like button that triggers an error",
|
|
270
|
-
"status": "new",
|
|
271
215
|
"tokens": [],
|
|
272
216
|
"translations": [
|
|
273
217
|
{
|
|
@@ -279,7 +223,6 @@
|
|
|
279
223
|
},
|
|
280
224
|
"DMbqoljTAyZr91I1ieUePw==": {
|
|
281
225
|
"description": "Like button that triggers a network error",
|
|
282
|
-
"status": "new",
|
|
283
226
|
"tokens": [],
|
|
284
227
|
"translations": [
|
|
285
228
|
{
|
|
@@ -291,7 +234,6 @@
|
|
|
291
234
|
},
|
|
292
235
|
"2pHWO8Jme4T+4V3ujzB65Q==": {
|
|
293
236
|
"description": "Like button that can be pressed many times",
|
|
294
|
-
"status": "new",
|
|
295
237
|
"tokens": [],
|
|
296
238
|
"translations": [
|
|
297
239
|
{
|
|
@@ -303,7 +245,6 @@
|
|
|
303
245
|
},
|
|
304
246
|
"6zDP+czhNkRqY+5ZMGrOfQ==": {
|
|
305
247
|
"description": "Unlike button",
|
|
306
|
-
"status": "new",
|
|
307
248
|
"tokens": [],
|
|
308
249
|
"translations": [
|
|
309
250
|
{
|
|
@@ -315,7 +256,6 @@
|
|
|
315
256
|
},
|
|
316
257
|
"nbg2VP5XZv6NUc/92aYS5g==": {
|
|
317
258
|
"description": "Comment headline",
|
|
318
|
-
"status": "new",
|
|
319
259
|
"tokens": [],
|
|
320
260
|
"translations": [
|
|
321
261
|
{
|
|
@@ -327,7 +267,6 @@
|
|
|
327
267
|
},
|
|
328
268
|
"pD2BZoLk7TPDeYaAKeZSXw==": {
|
|
329
269
|
"description": "Comment headline",
|
|
330
|
-
"status": "new",
|
|
331
270
|
"tokens": [],
|
|
332
271
|
"translations": [
|
|
333
272
|
{
|
|
@@ -339,7 +278,6 @@
|
|
|
339
278
|
},
|
|
340
279
|
"b3poi39jZnMvKCWuAKoPkw==": {
|
|
341
280
|
"description": "Load more comments button",
|
|
342
|
-
"status": "new",
|
|
343
281
|
"tokens": [],
|
|
344
282
|
"translations": [
|
|
345
283
|
{
|
|
@@ -351,7 +289,6 @@
|
|
|
351
289
|
},
|
|
352
290
|
"V+dphRjMQgYEAYIwaZ86eA==": {
|
|
353
291
|
"description": "No matches text",
|
|
354
|
-
"status": "new",
|
|
355
292
|
"tokens": [],
|
|
356
293
|
"translations": [
|
|
357
294
|
{
|
|
@@ -363,7 +300,6 @@
|
|
|
363
300
|
},
|
|
364
301
|
"jOVKSVdYTyYUaZKttBdCvg==": {
|
|
365
302
|
"description": "In the phrase: \"No matches for {=\"[query]\"}\"",
|
|
366
|
-
"status": "new",
|
|
367
303
|
"tokens": [],
|
|
368
304
|
"translations": [
|
|
369
305
|
{
|
|
@@ -375,7 +311,6 @@
|
|
|
375
311
|
},
|
|
376
312
|
"JmKWBejr/NwXzEjhSgw6NA==": {
|
|
377
313
|
"description": "Search input placeholder",
|
|
378
|
-
"status": "new",
|
|
379
314
|
"tokens": [],
|
|
380
315
|
"translations": [
|
|
381
316
|
{
|
|
@@ -387,7 +322,6 @@
|
|
|
387
322
|
},
|
|
388
323
|
"0DJP0yKjBJSU20Mmtm3gXA==": {
|
|
389
324
|
"description": "Slowdown label explanation",
|
|
390
|
-
"status": "new",
|
|
391
325
|
"tokens": [],
|
|
392
326
|
"translations": [
|
|
393
327
|
{
|
|
@@ -399,7 +333,6 @@
|
|
|
399
333
|
},
|
|
400
334
|
"mz6EqB/vFEIHqLpLtXPvAQ==": {
|
|
401
335
|
"description": "Headline for update name section",
|
|
402
|
-
"status": "new",
|
|
403
336
|
"tokens": [],
|
|
404
337
|
"translations": [
|
|
405
338
|
{
|
|
@@ -411,7 +344,6 @@
|
|
|
411
344
|
},
|
|
412
345
|
"Dak4b7/tonGn0/lBSJtAsQ==": {
|
|
413
346
|
"description": "Username label",
|
|
414
|
-
"status": "new",
|
|
415
347
|
"tokens": [],
|
|
416
348
|
"translations": [
|
|
417
349
|
{
|
|
@@ -423,7 +355,6 @@
|
|
|
423
355
|
},
|
|
424
356
|
"oIBMQemmmzQYvVo4ilURGw==": {
|
|
425
357
|
"description": "name input field placeholder",
|
|
426
|
-
"status": "new",
|
|
427
358
|
"tokens": [],
|
|
428
359
|
"translations": [
|
|
429
360
|
{
|
|
@@ -435,7 +366,6 @@
|
|
|
435
366
|
},
|
|
436
367
|
"2OzJ2sKoxSsqwHnnbVvq3A==": {
|
|
437
368
|
"description": "Button for saving",
|
|
438
|
-
"status": "new",
|
|
439
369
|
"tokens": [],
|
|
440
370
|
"translations": [
|
|
441
371
|
{
|
|
@@ -447,7 +377,6 @@
|
|
|
447
377
|
},
|
|
448
378
|
"tWb7A0wVb3UoE4+aOszc9g==": {
|
|
449
379
|
"description": "Your account headline",
|
|
450
|
-
"status": "new",
|
|
451
380
|
"tokens": [],
|
|
452
381
|
"translations": [
|
|
453
382
|
{
|
|
@@ -459,7 +388,6 @@
|
|
|
459
388
|
},
|
|
460
389
|
"QJQdLesxH2DDZ/QixDw2Ag==": {
|
|
461
390
|
"description": "Signed in text",
|
|
462
|
-
"status": "new",
|
|
463
391
|
"tokens": [],
|
|
464
392
|
"translations": [
|
|
465
393
|
{
|
|
@@ -471,7 +399,6 @@
|
|
|
471
399
|
},
|
|
472
400
|
"wGBBoraj5XODDH6aMivFig==": {
|
|
473
401
|
"description": "Latest posts header",
|
|
474
|
-
"status": "new",
|
|
475
402
|
"tokens": [],
|
|
476
403
|
"translations": [
|
|
477
404
|
{
|
|
@@ -483,7 +410,6 @@
|
|
|
483
410
|
},
|
|
484
411
|
"lxhFAcau1SpZz7pY2MF3aA==": {
|
|
485
412
|
"description": "Load more posts button",
|
|
486
|
-
"status": "new",
|
|
487
413
|
"tokens": [],
|
|
488
414
|
"translations": [
|
|
489
415
|
{
|
|
@@ -493,33 +419,8 @@
|
|
|
493
419
|
],
|
|
494
420
|
"types": []
|
|
495
421
|
},
|
|
496
|
-
"a1m6R6xCfulWvyS7MBRNOQ==": {
|
|
497
|
-
"description": "Description of fate",
|
|
498
|
-
"status": "new",
|
|
499
|
-
"tokens": [],
|
|
500
|
-
"translations": [
|
|
501
|
-
{
|
|
502
|
-
"translation": "fate は、Relay と GraphQL に着想を得た、React と GraphQL 向けのモダンなデータクライアントです。",
|
|
503
|
-
"variations": {}
|
|
504
|
-
}
|
|
505
|
-
],
|
|
506
|
-
"types": []
|
|
507
|
-
},
|
|
508
|
-
"zC+02LzfoPvi9WJXYM0Opw==": {
|
|
509
|
-
"description": "Tagline for fate",
|
|
510
|
-
"status": "new",
|
|
511
|
-
"tokens": [],
|
|
512
|
-
"translations": [
|
|
513
|
-
{
|
|
514
|
-
"translation": "fate は、ビュー合成・正規化キャッシュ・データマスキング・Async React 機能・そして GraphQL 統合を組み合わせます。",
|
|
515
|
-
"variations": {}
|
|
516
|
-
}
|
|
517
|
-
],
|
|
518
|
-
"types": []
|
|
519
|
-
},
|
|
520
422
|
"N6sA4e6dEXz2DfLMt0w9Jg==": {
|
|
521
423
|
"description": "Login button label",
|
|
522
|
-
"status": "new",
|
|
523
424
|
"tokens": [],
|
|
524
425
|
"translations": [
|
|
525
426
|
{
|
|
@@ -531,7 +432,6 @@
|
|
|
531
432
|
},
|
|
532
433
|
"IYUmtYxQtGdt1MucjXrsVA==": {
|
|
533
434
|
"description": "Label with meaning 'at least number'",
|
|
534
|
-
"status": "new",
|
|
535
435
|
"tokens": [],
|
|
536
436
|
"translations": [
|
|
537
437
|
{
|
|
@@ -543,7 +443,6 @@
|
|
|
543
443
|
},
|
|
544
444
|
"ZIF1WhVQwt7WZJvFTEbMWw==": {
|
|
545
445
|
"description": "Label with meaning 'less than number'",
|
|
546
|
-
"status": "new",
|
|
547
446
|
"tokens": [],
|
|
548
447
|
"translations": [
|
|
549
448
|
{
|
|
@@ -555,7 +454,6 @@
|
|
|
555
454
|
},
|
|
556
455
|
"Oc/9PrbjfyLHS60BXceD1A==": {
|
|
557
456
|
"description": "A list of items of various types, for example: \"San Francisco; London; Tokyo\". {previous items} and {following items} are themselves lists that contain one or more items.",
|
|
558
|
-
"status": "new",
|
|
559
457
|
"tokens": [],
|
|
560
458
|
"translations": [
|
|
561
459
|
{
|
|
@@ -567,7 +465,6 @@
|
|
|
567
465
|
},
|
|
568
466
|
"AXXbKEUZuc0ji1IClRrOOw==": {
|
|
569
467
|
"description": "A list of items of various types separated by bullets, for example: \"San Francisco \\u2022 London \\u2022 Tokyo\". {previous items} and {following items} are themselves lists that contain one or more items.",
|
|
570
|
-
"status": "new",
|
|
571
468
|
"tokens": [],
|
|
572
469
|
"translations": [
|
|
573
470
|
{
|
|
@@ -579,7 +476,6 @@
|
|
|
579
476
|
},
|
|
580
477
|
"89ACgPMtnwlLDSeqhLBx2Q==": {
|
|
581
478
|
"description": "A list of items of various types separated by commas, for example: \"San Francisco, London, Tokyo\". {previous items} and {following items} are themselves lists that contain one or more items.",
|
|
582
|
-
"status": "new",
|
|
583
479
|
"tokens": [],
|
|
584
480
|
"translations": [
|
|
585
481
|
{
|
|
@@ -591,7 +487,6 @@
|
|
|
591
487
|
},
|
|
592
488
|
"5hL7VXOBVnetm46YAjpX0g==": {
|
|
593
489
|
"description": "A list of items of various types with a serial comma, for example: \"item1, item2, and item3\"",
|
|
594
|
-
"status": "new",
|
|
595
490
|
"tokens": [],
|
|
596
491
|
"translations": [
|
|
597
492
|
{
|
|
@@ -603,7 +498,6 @@
|
|
|
603
498
|
},
|
|
604
499
|
"icNetEL/crQv/PS6yhySVQ==": {
|
|
605
500
|
"description": "A list of items of various types, for example: \"item1, item2, item3 and item4\"",
|
|
606
|
-
"status": "new",
|
|
607
501
|
"tokens": [],
|
|
608
502
|
"translations": [
|
|
609
503
|
{
|
|
@@ -615,7 +509,6 @@
|
|
|
615
509
|
},
|
|
616
510
|
"8kLAQ3ffiiFnQ/bWPqXfuQ==": {
|
|
617
511
|
"description": "A list of items of various types with a serial comma, for example: \"item1, item2, or item3\"",
|
|
618
|
-
"status": "new",
|
|
619
512
|
"tokens": [],
|
|
620
513
|
"translations": [
|
|
621
514
|
{
|
|
@@ -627,7 +520,6 @@
|
|
|
627
520
|
},
|
|
628
521
|
"8eSaAzrWtAqn9ktNKfkaEg==": {
|
|
629
522
|
"description": "A list of items of various types, for example: \"item1, item2, item3 or item4\"",
|
|
630
|
-
"status": "new",
|
|
631
523
|
"tokens": [],
|
|
632
524
|
"translations": [
|
|
633
525
|
{
|
|
@@ -639,7 +531,6 @@
|
|
|
639
531
|
},
|
|
640
532
|
"+IBI7kr/mMKdzp+3stDvkw==": {
|
|
641
533
|
"description": "A list of items of various types, for example: \"San Francisco; London; Tokyo\". {previous items} itself contains one or more items.",
|
|
642
|
-
"status": "new",
|
|
643
534
|
"tokens": [],
|
|
644
535
|
"translations": [
|
|
645
536
|
{
|
|
@@ -651,7 +542,6 @@
|
|
|
651
542
|
},
|
|
652
543
|
"55IeE8c0qqtjTU0lo7q9AA==": {
|
|
653
544
|
"description": "A list of items of various types separated by bullets, for example: \"San Francisco \\u2022 London \\u2022 Tokyo\". {previous items} contains one or more items.",
|
|
654
|
-
"status": "new",
|
|
655
545
|
"tokens": [],
|
|
656
546
|
"translations": [
|
|
657
547
|
{
|
|
@@ -663,7 +553,6 @@
|
|
|
663
553
|
},
|
|
664
554
|
"6PRJS0QalZfvaN8CkKCUCw==": {
|
|
665
555
|
"description": "A list of items of various types, for example: \"item1, item2, item3, item4\"",
|
|
666
|
-
"status": "new",
|
|
667
556
|
"tokens": [],
|
|
668
557
|
"translations": [
|
|
669
558
|
{
|
|
@@ -675,7 +564,6 @@
|
|
|
675
564
|
},
|
|
676
565
|
"6/ZbJcEx19aXKls64qknkg==": {
|
|
677
566
|
"description": "Locale switcher button",
|
|
678
|
-
"status": "new",
|
|
679
567
|
"tokens": [],
|
|
680
568
|
"translations": [
|
|
681
569
|
{
|
|
@@ -684,6 +572,61 @@
|
|
|
684
572
|
}
|
|
685
573
|
],
|
|
686
574
|
"types": []
|
|
575
|
+
},
|
|
576
|
+
"8lvoq8uf2l2Q/kHMPHHuGg==": {
|
|
577
|
+
"description": "Description of fate",
|
|
578
|
+
"tokens": [],
|
|
579
|
+
"translations": [
|
|
580
|
+
{
|
|
581
|
+
"translation": "fate は Relay と GraphQL に着想を得た、React 向けのモダンなデータクライアントです。",
|
|
582
|
+
"variations": {}
|
|
583
|
+
}
|
|
584
|
+
],
|
|
585
|
+
"types": []
|
|
586
|
+
},
|
|
587
|
+
"oNAybv4r6KfJmXOwwzWEKg==": {
|
|
588
|
+
"description": "Tagline for fate",
|
|
589
|
+
"tokens": [],
|
|
590
|
+
"translations": [
|
|
591
|
+
{
|
|
592
|
+
"translation": "fate はビューの合成、正規化キャッシュ、データマスキング、React の非同期機能、型安全なデータ取得を組み合わせています。",
|
|
593
|
+
"variations": {}
|
|
594
|
+
}
|
|
595
|
+
],
|
|
596
|
+
"types": []
|
|
597
|
+
},
|
|
598
|
+
"QQezjWtwy5sIytWefNDhfw==": {
|
|
599
|
+
"description": "Text for thinking/loading screen",
|
|
600
|
+
"tokens": [],
|
|
601
|
+
"translations": [
|
|
602
|
+
{
|
|
603
|
+
"translation": "考え中…",
|
|
604
|
+
"variations": {}
|
|
605
|
+
}
|
|
606
|
+
],
|
|
607
|
+
"types": []
|
|
608
|
+
},
|
|
609
|
+
"D+Sj8NnepF6xtGZ8B9F43Q==": {
|
|
610
|
+
"description": "Login details",
|
|
611
|
+
"tokens": [],
|
|
612
|
+
"translations": [
|
|
613
|
+
{
|
|
614
|
+
"translation": "初期データの {=Example Accounts [=m1]} をお試しください。",
|
|
615
|
+
"variations": {}
|
|
616
|
+
}
|
|
617
|
+
],
|
|
618
|
+
"types": []
|
|
619
|
+
},
|
|
620
|
+
"SIc154vl363J+amQWwn5zw==": {
|
|
621
|
+
"description": "In the phrase: \"Try one of the {=Example Accounts [=m1]} in the seed data.\"",
|
|
622
|
+
"tokens": [],
|
|
623
|
+
"translations": [
|
|
624
|
+
{
|
|
625
|
+
"translation": "サンプルアカウント {=}",
|
|
626
|
+
"variations": {}
|
|
627
|
+
}
|
|
628
|
+
],
|
|
629
|
+
"types": []
|
|
687
630
|
}
|
|
688
631
|
}
|
|
689
632
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { join } from 'node:path';
|
|
2
|
-
import
|
|
3
|
-
import babel from '@rolldown/plugin-babel';
|
|
2
|
+
import fbtee from '@nkzw/vite-plugin-fbtee';
|
|
4
3
|
import tailwindcss from '@tailwindcss/vite';
|
|
5
|
-
import { reactCompilerPreset } from '@vitejs/plugin-react';
|
|
6
4
|
import { voidReact } from '@void/react/plugin';
|
|
7
5
|
import dotenv from 'dotenv';
|
|
8
6
|
import { fate } from 'react-fate/vite';
|
|
@@ -26,15 +24,13 @@ if (!process.env.VITE_SERVER_URL) {
|
|
|
26
24
|
}
|
|
27
25
|
|
|
28
26
|
export default defineConfig({
|
|
29
|
-
build: { outDir:
|
|
27
|
+
build: { outDir: 'dist/client' },
|
|
30
28
|
plugins: [
|
|
31
29
|
...(lazyPlugins(() => [
|
|
32
|
-
|
|
33
|
-
presets: [fbteePreset, reactCompilerPreset()],
|
|
34
|
-
}),
|
|
30
|
+
fbtee(),
|
|
35
31
|
tailwindcss(),
|
|
36
32
|
voidPlugin(),
|
|
37
|
-
voidReact(),
|
|
33
|
+
voidReact({ react: { compiler: true } }),
|
|
38
34
|
]) ?? []),
|
|
39
35
|
fate({
|
|
40
36
|
module: '@app/server/src/router.ts',
|
|
@@ -22,18 +22,14 @@
|
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@app/server": "workspace:*",
|
|
24
24
|
"@nkzw/eslint-plugin": "^2.0.0",
|
|
25
|
-
"@nkzw/oxlint-config": "^
|
|
26
|
-
"@
|
|
27
|
-
"@
|
|
28
|
-
"@
|
|
29
|
-
"babel-plugin-react-compiler": "^1.0.0",
|
|
25
|
+
"@nkzw/oxlint-config": "^2.0.1",
|
|
26
|
+
"@oxc-node/core": "^0.1.0",
|
|
27
|
+
"@swc/core": "^1.16.1",
|
|
28
|
+
"@types/node": "^26.4.0",
|
|
30
29
|
"dotenv": "^17.4.2",
|
|
31
30
|
"dotenv-cli": "^11.0.0",
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"eslint-plugin-react-hooks": "^7.1.1",
|
|
35
|
-
"npm-run-all2": "^8.0.4",
|
|
36
|
-
"ts-node": "^10.9.2",
|
|
31
|
+
"npm-run-all2": "^9.0.3",
|
|
32
|
+
"typescript": "^7.0.2",
|
|
37
33
|
"vite": "catalog:",
|
|
38
34
|
"vite-plus": "catalog:",
|
|
39
35
|
"vitest": "catalog:"
|
|
@@ -10,13 +10,12 @@ allowBuilds:
|
|
|
10
10
|
workerd: true
|
|
11
11
|
|
|
12
12
|
catalog:
|
|
13
|
-
vite: npm:@voidzero-dev/vite-plus-core@^0.
|
|
14
|
-
vite-plus: ^0.
|
|
15
|
-
vitest:
|
|
13
|
+
vite: npm:@voidzero-dev/vite-plus-core@^0.3.0
|
|
14
|
+
vite-plus: ^0.3.0
|
|
15
|
+
vitest: ^4.1.11
|
|
16
16
|
|
|
17
17
|
minimumReleaseAgeExclude:
|
|
18
18
|
- '@voidzero-dev/vite-plus-core'
|
|
19
|
-
- '@voidzero-dev/vite-plus-test'
|
|
20
19
|
- vite-plus
|
|
21
20
|
|
|
22
21
|
onlyBuiltDependencies:
|
|
@@ -28,6 +27,7 @@ onlyBuiltDependencies:
|
|
|
28
27
|
- unrs-resolver
|
|
29
28
|
|
|
30
29
|
overrides:
|
|
30
|
+
better-auth: 1.7.2
|
|
31
31
|
kysely: 0.28.17
|
|
32
32
|
vite: 'catalog:'
|
|
33
33
|
vitest: 'catalog:'
|
|
@@ -5,6 +5,7 @@ CREATE TABLE `account` (
|
|
|
5
5
|
`createdAt` integer DEFAULT (unixepoch()) NOT NULL,
|
|
6
6
|
`id` text PRIMARY KEY NOT NULL,
|
|
7
7
|
`idToken` text,
|
|
8
|
+
`issuer` text NOT NULL,
|
|
8
9
|
`password` text,
|
|
9
10
|
`providerId` text NOT NULL,
|
|
10
11
|
`refreshToken` text,
|
|
@@ -15,7 +16,7 @@ CREATE TABLE `account` (
|
|
|
15
16
|
FOREIGN KEY (`userId`) REFERENCES `user`(`id`) ON UPDATE no action ON DELETE cascade
|
|
16
17
|
);
|
|
17
18
|
--> statement-breakpoint
|
|
18
|
-
CREATE UNIQUE INDEX `
|
|
19
|
+
CREATE UNIQUE INDEX `account_issuer_accountId_key` ON `account` (`issuer`,`accountId`);--> statement-breakpoint
|
|
19
20
|
CREATE TABLE `Category` (
|
|
20
21
|
`createdAt` integer DEFAULT (unixepoch()) NOT NULL,
|
|
21
22
|
`description` text,
|
|
@@ -130,4 +131,4 @@ CREATE TABLE `user` (
|
|
|
130
131
|
--> statement-breakpoint
|
|
131
132
|
CREATE UNIQUE INDEX `user_email_key` ON `user` (`email`);--> statement-breakpoint
|
|
132
133
|
CREATE UNIQUE INDEX `user_username_key` ON `user` (`username`);--> statement-breakpoint
|
|
133
|
-
CREATE INDEX `user_id_idx` ON `user` (`id`);
|
|
134
|
+
CREATE INDEX `user_id_idx` ON `user` (`id`);
|
package/templates/fate/cloudflare/server/db/migrations/20260508120500_seed_cloudflare_demo.sql
CHANGED
|
@@ -12,16 +12,16 @@ INSERT OR IGNORE INTO user VALUES(NULL,0,NULL,1778241933,NULL,'lena@nakazawa.dev
|
|
|
12
12
|
INSERT OR IGNORE INTO user VALUES(NULL,0,NULL,1778241933,NULL,'mika@nakazawa.dev',0,'1418a697-43d9-4c3d-8f20-23ea82aa13a9',NULL,'Mika',NULL,'user',1778241933,'mika');
|
|
13
13
|
INSERT OR IGNORE INTO user VALUES(NULL,0,NULL,1778241933,NULL,'noah@nakazawa.dev',0,'22c06d32-a442-4cb4-83c3-da9cf6c37e77',NULL,'Noah',NULL,'user',1778241933,'noah');
|
|
14
14
|
INSERT OR IGNORE INTO user VALUES(NULL,0,NULL,1778241933,NULL,'sora@nakazawa.dev',0,'2a90a86b-fc30-43c6-bdc1-d3f71a65a939',NULL,'Sora',NULL,'user',1778241933,'sora');
|
|
15
|
-
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'744eda47-e9da-4145-a068-30e6905504a4',1778241933,'915acc62-1d1d-4957-b992-95d6dcdd39a9',NULL,'f2719f081b49f54a6c78370c831671c7:664d06fe946fb341cd8e75f62fc7d93d7e3794b5a22651367e90362bd0117d86b8cbf8fb2f36723dcd685bc8fded937f918897b7aa2d219a74760103c087fa09','credential',NULL,NULL,NULL,1778241933,'744eda47-e9da-4145-a068-30e6905504a4');
|
|
16
|
-
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'d8714b4a-3b36-4529-b806-3e654d0c51fa',1778241933,'5d970ce9-73b0-479f-b05c-601f98142a28',NULL,'14a0cd77ce86b7d97c958ef81fb562ce:d9ca8ff0a74377287cf17c8e94f79f651d5213eaf736528198c30f0078ca57f0ac743dd2517d9a2377b66066688b6a384f5cea05927ebca0a86fa9beb5d116f4','credential',NULL,NULL,NULL,1778241933,'d8714b4a-3b36-4529-b806-3e654d0c51fa');
|
|
17
|
-
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'4b7e1e37-c199-44b3-96af-9591972fc40a',1778241933,'38b83e50-8605-4018-a069-b90b32da6689',NULL,'5c1ab9a33273657ebb1b5927d86b082a:31031b51ec680da4f7b4e8ce9cda019fc602380b978390e93a196112b4a1beff6c5e0d93eee79e168f06234822d4d75b5b759dc51dea7d292fe52f3892b3e166','credential',NULL,NULL,NULL,1778241933,'4b7e1e37-c199-44b3-96af-9591972fc40a');
|
|
18
|
-
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'cfdacdb3-7ad3-4158-b3fe-4baf6e197e64',1778241933,'9400c04a-6a20-4021-8fbc-4e8504524b8d',NULL,'eea3549cc6868da66d4232e3d1a82ad5:559378d066ebade288f53e48c27ba1263efafbd7bff52a9632d6a6db9fe450b411e2dcc9d5b3911b1fdd702e4acf6e968110da5d5319118d65d18394ff3a062a','credential',NULL,NULL,NULL,1778241933,'cfdacdb3-7ad3-4158-b3fe-4baf6e197e64');
|
|
19
|
-
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'38fbdd46-8410-4fc3-888b-bdcc21c1b725',1778241933,'f8b8771d-8be5-4cfa-9c4b-400c5bae5165',NULL,'b419b6c94bef7259f66c0be74c9a3432:14a99e424e55ceb60f8d531d0ae7c3d99a1f4a6ee5fc7b7eca6eca418f70f779bf7b9eaf3517055e087a77d27d21708104f11d62110ee9387db35043dd9e6880','credential',NULL,NULL,NULL,1778241933,'38fbdd46-8410-4fc3-888b-bdcc21c1b725');
|
|
20
|
-
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'2c8a1b16-ae54-4a22-982b-148e469829e1',1778241933,'c595ac07-f429-4a29-9ae0-967c3b133547',NULL,'534eb9c097409217c1a3041a06ff333d:1a612a49dc299c98a73f30fe75b0c09a245cdd3f03b724b988846fc243bcde125c09ec1ea44420d8a947e76e2053bace6a43c87a895bd45cfc7cf18a0ce112f6','credential',NULL,NULL,NULL,1778241933,'2c8a1b16-ae54-4a22-982b-148e469829e1');
|
|
21
|
-
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'69ad225c-a6d5-4747-8372-5c60da964497',1778241933,'f57fab4c-1f8a-49db-a455-4b87486f640e',NULL,'00209ffa555288a2cd74635775239e7e:7792f1f34937825312b4327caf9ef580861a9c6b22d0d9f237cf035e7b0de26a6ac342f5f36ad999a8adcc1b6f3c1861778a378bcaacd4aabac96db845eb68cb','credential',NULL,NULL,NULL,1778241933,'69ad225c-a6d5-4747-8372-5c60da964497');
|
|
22
|
-
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'1418a697-43d9-4c3d-8f20-23ea82aa13a9',1778241933,'a48cf3b6-7154-4f5e-9831-e08ed2102e91',NULL,'ecfb5ea9555601d192c2be612a25203c:a79d092f9d74c5301f7e1f02e8a5d8f8563ac42a8e71fa78c184b4777831a1c7761ad5d021d796f765b15efdfdc1dc24d5c9b76818c9f224eb034fd573a7f260','credential',NULL,NULL,NULL,1778241933,'1418a697-43d9-4c3d-8f20-23ea82aa13a9');
|
|
23
|
-
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'22c06d32-a442-4cb4-83c3-da9cf6c37e77',1778241933,'83dc5a0a-eb32-4b18-b848-abea62b999fa',NULL,'1c3bccdd22ab8c4b5b5438f86fdb4663:ff08e12ff1b871c4f5766bdc9430a2cf2276be8fe5a619a2b0381a94ec808357322eea1db221b014f3a6d67f7bda58079ab216f6afdd388d9a93784b420e5ec5','credential',NULL,NULL,NULL,1778241933,'22c06d32-a442-4cb4-83c3-da9cf6c37e77');
|
|
24
|
-
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'2a90a86b-fc30-43c6-bdc1-d3f71a65a939',1778241933,'cce49048-9a28-4240-adbf-78d89e313d5c',NULL,'887dcbdfc479351196e8c81ca586d394:19c7229c0a074e88b8e9e3271a14dae07342dc502049a25957c8ce140642d64d1f08e38228492cf4fce227a8ab927e9a91923d2c2e3fd909c5384ea801da72ec','credential',NULL,NULL,NULL,1778241933,'2a90a86b-fc30-43c6-bdc1-d3f71a65a939');
|
|
15
|
+
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'744eda47-e9da-4145-a068-30e6905504a4',1778241933,'915acc62-1d1d-4957-b992-95d6dcdd39a9',NULL,'local:credential','f2719f081b49f54a6c78370c831671c7:664d06fe946fb341cd8e75f62fc7d93d7e3794b5a22651367e90362bd0117d86b8cbf8fb2f36723dcd685bc8fded937f918897b7aa2d219a74760103c087fa09','credential',NULL,NULL,NULL,1778241933,'744eda47-e9da-4145-a068-30e6905504a4');
|
|
16
|
+
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'d8714b4a-3b36-4529-b806-3e654d0c51fa',1778241933,'5d970ce9-73b0-479f-b05c-601f98142a28',NULL,'local:credential','14a0cd77ce86b7d97c958ef81fb562ce:d9ca8ff0a74377287cf17c8e94f79f651d5213eaf736528198c30f0078ca57f0ac743dd2517d9a2377b66066688b6a384f5cea05927ebca0a86fa9beb5d116f4','credential',NULL,NULL,NULL,1778241933,'d8714b4a-3b36-4529-b806-3e654d0c51fa');
|
|
17
|
+
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'4b7e1e37-c199-44b3-96af-9591972fc40a',1778241933,'38b83e50-8605-4018-a069-b90b32da6689',NULL,'local:credential','5c1ab9a33273657ebb1b5927d86b082a:31031b51ec680da4f7b4e8ce9cda019fc602380b978390e93a196112b4a1beff6c5e0d93eee79e168f06234822d4d75b5b759dc51dea7d292fe52f3892b3e166','credential',NULL,NULL,NULL,1778241933,'4b7e1e37-c199-44b3-96af-9591972fc40a');
|
|
18
|
+
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'cfdacdb3-7ad3-4158-b3fe-4baf6e197e64',1778241933,'9400c04a-6a20-4021-8fbc-4e8504524b8d',NULL,'local:credential','eea3549cc6868da66d4232e3d1a82ad5:559378d066ebade288f53e48c27ba1263efafbd7bff52a9632d6a6db9fe450b411e2dcc9d5b3911b1fdd702e4acf6e968110da5d5319118d65d18394ff3a062a','credential',NULL,NULL,NULL,1778241933,'cfdacdb3-7ad3-4158-b3fe-4baf6e197e64');
|
|
19
|
+
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'38fbdd46-8410-4fc3-888b-bdcc21c1b725',1778241933,'f8b8771d-8be5-4cfa-9c4b-400c5bae5165',NULL,'local:credential','b419b6c94bef7259f66c0be74c9a3432:14a99e424e55ceb60f8d531d0ae7c3d99a1f4a6ee5fc7b7eca6eca418f70f779bf7b9eaf3517055e087a77d27d21708104f11d62110ee9387db35043dd9e6880','credential',NULL,NULL,NULL,1778241933,'38fbdd46-8410-4fc3-888b-bdcc21c1b725');
|
|
20
|
+
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'2c8a1b16-ae54-4a22-982b-148e469829e1',1778241933,'c595ac07-f429-4a29-9ae0-967c3b133547',NULL,'local:credential','534eb9c097409217c1a3041a06ff333d:1a612a49dc299c98a73f30fe75b0c09a245cdd3f03b724b988846fc243bcde125c09ec1ea44420d8a947e76e2053bace6a43c87a895bd45cfc7cf18a0ce112f6','credential',NULL,NULL,NULL,1778241933,'2c8a1b16-ae54-4a22-982b-148e469829e1');
|
|
21
|
+
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'69ad225c-a6d5-4747-8372-5c60da964497',1778241933,'f57fab4c-1f8a-49db-a455-4b87486f640e',NULL,'local:credential','00209ffa555288a2cd74635775239e7e:7792f1f34937825312b4327caf9ef580861a9c6b22d0d9f237cf035e7b0de26a6ac342f5f36ad999a8adcc1b6f3c1861778a378bcaacd4aabac96db845eb68cb','credential',NULL,NULL,NULL,1778241933,'69ad225c-a6d5-4747-8372-5c60da964497');
|
|
22
|
+
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'1418a697-43d9-4c3d-8f20-23ea82aa13a9',1778241933,'a48cf3b6-7154-4f5e-9831-e08ed2102e91',NULL,'local:credential','ecfb5ea9555601d192c2be612a25203c:a79d092f9d74c5301f7e1f02e8a5d8f8563ac42a8e71fa78c184b4777831a1c7761ad5d021d796f765b15efdfdc1dc24d5c9b76818c9f224eb034fd573a7f260','credential',NULL,NULL,NULL,1778241933,'1418a697-43d9-4c3d-8f20-23ea82aa13a9');
|
|
23
|
+
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'22c06d32-a442-4cb4-83c3-da9cf6c37e77',1778241933,'83dc5a0a-eb32-4b18-b848-abea62b999fa',NULL,'local:credential','1c3bccdd22ab8c4b5b5438f86fdb4663:ff08e12ff1b871c4f5766bdc9430a2cf2276be8fe5a619a2b0381a94ec808357322eea1db221b014f3a6d67f7bda58079ab216f6afdd388d9a93784b420e5ec5','credential',NULL,NULL,NULL,1778241933,'22c06d32-a442-4cb4-83c3-da9cf6c37e77');
|
|
24
|
+
INSERT OR IGNORE INTO account VALUES(NULL,NULL,'2a90a86b-fc30-43c6-bdc1-d3f71a65a939',1778241933,'cce49048-9a28-4240-adbf-78d89e313d5c',NULL,'local:credential','887dcbdfc479351196e8c81ca586d394:19c7229c0a074e88b8e9e3271a14dae07342dc502049a25957c8ce140642d64d1f08e38228492cf4fce227a8ab927e9a91923d2c2e3fd909c5384ea801da72ec','credential',NULL,NULL,NULL,1778241933,'2a90a86b-fc30-43c6-bdc1-d3f71a65a939');
|
|
25
25
|
INSERT OR IGNORE INTO Category VALUES(1778241933,'Core ideas behind views, ViewRefs, strict selection, and data masking.','4062b9a5-5fd2-4bca-8698-c8f3d673de79','Core Concepts');
|
|
26
26
|
INSERT OR IGNORE INTO Category VALUES(1778241933,'Async React, Suspense, Actions, and the react-fate hooks.','31dc1b32-c72d-414c-8683-9299647c8f76','React Integration');
|
|
27
27
|
INSERT OR IGNORE INTO Category VALUES(1778241933,'Cloudflare, D1, Drizzle, tRPC, and source adapter notes.','1f53b477-1823-4ae2-ad11-38d626f08c45','Server Integrations');
|