create-fate 1.0.4 → 1.3.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/README.md +3 -0
- package/bin/create-fate.mjs +594 -9
- package/package.json +2 -2
- package/templates/fate/README.md +3 -0
- package/templates/fate/_shared/vue-app/package.json +54 -0
- package/templates/fate/_shared/vue-app/pages/index.vue +57 -0
- package/templates/fate/_shared/vue-app/pages/layout.vue +32 -0
- package/templates/fate/_shared/vue-app/pages/post/[id].vue +24 -0
- package/templates/fate/_shared/vue-app/src/App.css +63 -0
- package/templates/fate/_shared/vue-app/src/fateViews.ts +14 -0
- package/templates/fate/_shared/vue-app/src/lib/cx.ts +6 -0
- package/templates/fate/_shared/vue-app/src/lib/env.ts +3 -0
- package/templates/fate/_shared/vue-app/src/ui/Button.vue +67 -0
- package/templates/fate/_shared/vue-app/src/ui/Card.vue +16 -0
- package/templates/fate/_shared/vue-app/src/ui/Error.vue +9 -0
- package/templates/fate/_shared/vue-app/src/ui/ErrorBoundary.vue +22 -0
- package/templates/fate/_shared/vue-app/src/ui/Header.vue +35 -0
- package/templates/fate/_shared/vue-app/src/ui/Link.vue +15 -0
- package/templates/fate/_shared/vue-app/src/ui/PostCard.vue +29 -0
- package/templates/fate/_shared/vue-app/src/ui/Section.vue +19 -0
- package/templates/fate/_shared/vue-app/src/ui/Thinking.vue +11 -0
- package/templates/fate/_shared/vue-app/src/ui/UserCard.vue +23 -0
- package/templates/fate/_shared/vue-app/src/vue-shims.d.ts +6 -0
- package/templates/fate/_shared/vue-app/tsconfig.json +22 -0
- package/templates/fate/_shared/vue-app/vite.config.ts +58 -0
- package/templates/fate/_shared/vue-app/void.json +5 -0
- package/templates/fate/cloudflare/.github/workflows/push.yml +27 -0
- package/templates/fate/cloudflare/.vite-hooks/pre-commit +1 -0
- package/templates/fate/cloudflare/.vscode/extensions.json +12 -0
- package/templates/fate/cloudflare/.vscode/settings.json +25 -0
- package/templates/fate/cloudflare/AGENTS.md +55 -0
- package/templates/fate/cloudflare/README.md +126 -0
- package/templates/fate/cloudflare/_gitignore +20 -0
- package/templates/fate/cloudflare/client/package.json +56 -0
- package/templates/fate/cloudflare/client/pages/index.tsx +96 -0
- package/templates/fate/cloudflare/client/pages/layout.tsx +82 -0
- package/templates/fate/cloudflare/client/pages/login.tsx +107 -0
- package/templates/fate/cloudflare/client/pages/post/[id].tsx +22 -0
- package/templates/fate/cloudflare/client/pages/search.tsx +99 -0
- package/templates/fate/cloudflare/client/public/icon.svg +1 -0
- package/templates/fate/cloudflare/client/src/App.css +153 -0
- package/templates/fate/cloudflare/client/src/lib/AvailableLanguages.tsx +5 -0
- package/templates/fate/cloudflare/client/src/lib/cx.tsx +6 -0
- package/templates/fate/cloudflare/client/src/lib/env.tsx +5 -0
- package/templates/fate/cloudflare/client/src/ui/Badge.tsx +31 -0
- package/templates/fate/cloudflare/client/src/ui/Button.tsx +108 -0
- package/templates/fate/cloudflare/client/src/ui/Card.tsx +32 -0
- package/templates/fate/cloudflare/client/src/ui/CommentCard.tsx +75 -0
- package/templates/fate/cloudflare/client/src/ui/Error.tsx +19 -0
- package/templates/fate/cloudflare/client/src/ui/H2.tsx +15 -0
- package/templates/fate/cloudflare/client/src/ui/H3.tsx +20 -0
- package/templates/fate/cloudflare/client/src/ui/Header.tsx +98 -0
- package/templates/fate/cloudflare/client/src/ui/Input.tsx +17 -0
- package/templates/fate/cloudflare/client/src/ui/Link.tsx +11 -0
- package/templates/fate/cloudflare/client/src/ui/LocaleSwitcher.tsx +52 -0
- package/templates/fate/cloudflare/client/src/ui/PostCard.tsx +303 -0
- package/templates/fate/cloudflare/client/src/ui/Section.tsx +23 -0
- package/templates/fate/cloudflare/client/src/ui/UserCard.tsx +131 -0
- package/templates/fate/cloudflare/client/src/user/AuthClient.tsx +6 -0
- package/templates/fate/cloudflare/client/translations/de_DE.json +689 -0
- package/templates/fate/cloudflare/client/translations/ja_JP.json +689 -0
- package/templates/fate/cloudflare/client/vite.config.ts +45 -0
- package/templates/fate/cloudflare/client/void.json +29 -0
- package/templates/fate/cloudflare/package.json +46 -0
- package/templates/fate/cloudflare/pnpm-workspace.yaml +39 -0
- package/templates/fate/cloudflare/server/.env.example +1 -0
- package/templates/fate/cloudflare/server/db/db.ts +30 -0
- package/templates/fate/cloudflare/server/db/migrations/20260508073357_initial_schema.sql +133 -0
- package/templates/fate/cloudflare/server/db/migrations/20260508120500_seed_cloudflare_demo.sql +170 -0
- package/templates/fate/cloudflare/server/db/migrations/meta/20260508073357_snapshot.json +868 -0
- package/templates/fate/cloudflare/server/db/migrations/meta/_journal.json +20 -0
- package/templates/fate/cloudflare/server/db/queries.ts +211 -0
- package/templates/fate/cloudflare/server/db/schema.ts +332 -0
- package/templates/fate/cloudflare/server/package.json +34 -0
- package/templates/fate/cloudflare/server/src/fate/commentPermissions.ts +17 -0
- package/templates/fate/cloudflare/server/src/fate/context.ts +15 -0
- package/templates/fate/cloudflare/server/src/fate/live.ts +7 -0
- package/templates/fate/cloudflare/server/src/fate/server.ts +411 -0
- package/templates/fate/cloudflare/server/src/fate/views.ts +164 -0
- package/templates/fate/cloudflare/server/src/index.ts +80 -0
- package/templates/fate/cloudflare/server/src/lib/auth.ts +66 -0
- package/templates/fate/cloudflare/server/src/lib/origins.ts +17 -0
- package/templates/fate/cloudflare/server/src/router.ts +2 -0
- package/templates/fate/cloudflare/server/src/user/SessionUser.tsx +17 -0
- package/templates/fate/cloudflare/server/tsconfig.json +10 -0
- package/templates/fate/cloudflare/server/wrangler.jsonc +29 -0
- package/templates/fate/cloudflare/tsconfig.json +33 -0
- package/templates/fate/cloudflare/vite.config.ts +72 -0
- package/templates/fate/drizzle/README.md +2 -8
- package/templates/fate/drizzle/client/pages/layout.tsx +2 -2
- package/templates/fate/drizzle/client/src/ui/PostCard.tsx +38 -15
- package/templates/fate/drizzle/pnpm-workspace.yaml +9 -3
- package/templates/fate/drizzle/server/vite.config.ts +1 -1
- package/templates/fate/graphql/.github/workflows/push.yml +27 -0
- package/templates/fate/graphql/.vite-hooks/pre-commit +1 -0
- package/templates/fate/graphql/.vscode/extensions.json +12 -0
- package/templates/fate/graphql/.vscode/settings.json +25 -0
- package/templates/fate/graphql/AGENTS.md +55 -0
- package/templates/fate/graphql/README.md +121 -0
- package/templates/fate/graphql/_gitignore +23 -0
- package/templates/fate/graphql/client/package.json +57 -0
- package/templates/fate/graphql/client/pages/index.tsx +96 -0
- package/templates/fate/graphql/client/pages/layout.tsx +83 -0
- package/templates/fate/graphql/client/pages/login.tsx +107 -0
- package/templates/fate/graphql/client/pages/post/[id].tsx +22 -0
- package/templates/fate/graphql/client/pages/search.tsx +99 -0
- package/templates/fate/graphql/client/public/icon.svg +1 -0
- package/templates/fate/graphql/client/src/App.css +153 -0
- package/templates/fate/graphql/client/src/lib/AvailableLanguages.tsx +5 -0
- package/templates/fate/graphql/client/src/lib/cx.tsx +6 -0
- package/templates/fate/graphql/client/src/lib/env.tsx +5 -0
- package/templates/fate/graphql/client/src/ui/Badge.tsx +31 -0
- package/templates/fate/graphql/client/src/ui/Button.tsx +108 -0
- package/templates/fate/graphql/client/src/ui/Card.tsx +32 -0
- package/templates/fate/graphql/client/src/ui/CommentCard.tsx +75 -0
- package/templates/fate/graphql/client/src/ui/Error.tsx +19 -0
- package/templates/fate/graphql/client/src/ui/H2.tsx +15 -0
- package/templates/fate/graphql/client/src/ui/H3.tsx +20 -0
- package/templates/fate/graphql/client/src/ui/Header.tsx +98 -0
- package/templates/fate/graphql/client/src/ui/Input.tsx +17 -0
- package/templates/fate/graphql/client/src/ui/Link.tsx +11 -0
- package/templates/fate/graphql/client/src/ui/LocaleSwitcher.tsx +52 -0
- package/templates/fate/graphql/client/src/ui/PostCard.tsx +303 -0
- package/templates/fate/graphql/client/src/ui/Section.tsx +23 -0
- package/templates/fate/graphql/client/src/ui/UserCard.tsx +131 -0
- package/templates/fate/graphql/client/src/user/AuthClient.tsx +6 -0
- package/templates/fate/graphql/client/translations/de_DE.json +689 -0
- package/templates/fate/graphql/client/translations/ja_JP.json +689 -0
- package/templates/fate/graphql/client/vite.config.ts +40 -0
- package/templates/fate/graphql/client/void.json +29 -0
- package/templates/fate/graphql/docker-compose.yml +11 -0
- package/templates/fate/graphql/package.json +47 -0
- package/templates/fate/graphql/pnpm-workspace.yaml +45 -0
- package/templates/fate/graphql/server/.env.example +5 -0
- package/templates/fate/graphql/server/README.md +27 -0
- package/templates/fate/graphql/server/package.json +64 -0
- package/templates/fate/graphql/server/prisma.config.ts +17 -0
- package/templates/fate/graphql/server/scripts/generate-graphql.tsx +40 -0
- package/templates/fate/graphql/server/src/__tests__/index.test.tsx +5 -0
- package/templates/fate/graphql/server/src/app.tsx +47 -0
- package/templates/fate/graphql/server/src/graphql/builder.tsx +121 -0
- package/templates/fate/graphql/server/src/graphql/context.tsx +22 -0
- package/templates/fate/graphql/server/src/graphql/fate.ts +85 -0
- package/templates/fate/graphql/server/src/graphql/lib/authDirectives.tsx +93 -0
- package/templates/fate/graphql/server/src/graphql/lib/decodeGlobalID.tsx +12 -0
- package/templates/fate/graphql/server/src/graphql/lib/decodeIDOrThrow.tsx +10 -0
- package/templates/fate/graphql/server/src/graphql/lib/encodeGlobalID.tsx +5 -0
- package/templates/fate/graphql/server/src/graphql/live.tsx +241 -0
- package/templates/fate/graphql/server/src/graphql/mutations.tsx +265 -0
- package/templates/fate/graphql/server/src/graphql/nodes/Category.tsx +35 -0
- package/templates/fate/graphql/server/src/graphql/nodes/Comment.tsx +46 -0
- package/templates/fate/graphql/server/src/graphql/nodes/Event.tsx +71 -0
- package/templates/fate/graphql/server/src/graphql/nodes/Post.tsx +45 -0
- package/templates/fate/graphql/server/src/graphql/nodes/Tag.tsx +11 -0
- package/templates/fate/graphql/server/src/graphql/nodes/User.tsx +28 -0
- package/templates/fate/graphql/server/src/graphql/schema.tsx +16 -0
- package/templates/fate/graphql/server/src/graphql/views.ts +193 -0
- package/templates/fate/graphql/server/src/index.tsx +45 -0
- package/templates/fate/graphql/server/src/lib/auth.tsx +31 -0
- package/templates/fate/graphql/server/src/lib/env.tsx +3 -0
- package/templates/fate/graphql/server/src/lib/origins.ts +18 -0
- package/templates/fate/graphql/server/src/prisma/prisma.tsx +9 -0
- package/templates/fate/graphql/server/src/prisma/schema.prisma +181 -0
- package/templates/fate/graphql/server/src/prisma/seed.tsx +161 -0
- package/templates/fate/graphql/server/src/user/SessionUser.tsx +17 -0
- package/templates/fate/graphql/server/src/user/isAdmin.tsx +3 -0
- package/templates/fate/graphql/server/tsconfig.json +33 -0
- package/templates/fate/graphql/server/vite.config.ts +55 -0
- package/templates/fate/graphql/tsconfig.json +33 -0
- package/templates/fate/graphql/vite.config.ts +80 -0
- package/templates/fate/graphql-client/.env.example +3 -0
- package/templates/fate/graphql-client/AGENTS.md +3 -0
- package/templates/fate/graphql-client/README.md +69 -0
- package/templates/fate/graphql-client/_gitignore +14 -0
- package/templates/fate/graphql-client/package.json +62 -0
- package/templates/fate/graphql-client/pages/index.tsx +69 -0
- package/templates/fate/graphql-client/pages/layout.tsx +41 -0
- package/templates/fate/graphql-client/pnpm-workspace.yaml +38 -0
- package/templates/fate/graphql-client/public/icon.svg +8 -0
- package/templates/fate/graphql-client/src/App.css +28 -0
- package/templates/fate/graphql-client/src/fate/graphql.ts +52 -0
- package/templates/fate/graphql-client/tsconfig.json +30 -0
- package/templates/fate/graphql-client/vite.config.ts +87 -0
- package/templates/fate/graphql-client/void.json +29 -0
- package/templates/fate/http/README.md +2 -8
- package/templates/fate/http/client/pages/layout.tsx +2 -2
- package/templates/fate/http/client/src/ui/PostCard.tsx +37 -15
- package/templates/fate/http/pnpm-workspace.yaml +9 -3
- package/templates/fate/http/server/vite.config.ts +1 -1
- package/templates/fate/prisma/README.md +2 -8
- package/templates/fate/prisma/client/pages/layout.tsx +2 -2
- package/templates/fate/prisma/client/src/ui/PostCard.tsx +37 -15
- package/templates/fate/prisma/pnpm-workspace.yaml +9 -3
- package/templates/fate/prisma/server/vite.config.ts +1 -1
- package/templates/fate/prisma/vite.config.ts +1 -1
- package/templates/fate/void/package.json +10 -2
- package/templates/fate/void/pnpm-workspace.yaml +12 -4
- package/templates/fate/void/src/ui/CategoryCard.tsx +3 -7
- package/templates/fate/void/src/ui/PostCard.tsx +38 -15
- package/templates/fate/void/vite.config.ts +5 -0
- package/templates/fate/drizzle/public/fate-logo-dark.svg +0 -4
- package/templates/fate/drizzle/public/fate-logo.svg +0 -4
- package/templates/fate/http/public/fate-logo-dark.svg +0 -4
- package/templates/fate/http/public/fate-logo.svg +0 -4
- package/templates/fate/prisma/public/fate-logo-dark.svg +0 -4
- package/templates/fate/prisma/public/fate-logo.svg +0 -4
|
@@ -0,0 +1,689 @@
|
|
|
1
|
+
{
|
|
2
|
+
"fb-locale": "ja_JP",
|
|
3
|
+
"translations": {
|
|
4
|
+
"UbcovqOVkoR40Cj8ythMNg==": {
|
|
5
|
+
"description": "Text for thinking/loading screen",
|
|
6
|
+
"status": "new",
|
|
7
|
+
"tokens": [],
|
|
8
|
+
"translations": [
|
|
9
|
+
{
|
|
10
|
+
"translation": "考え中…",
|
|
11
|
+
"variations": {}
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"types": []
|
|
15
|
+
},
|
|
16
|
+
"hgJmGY0Nk8kIfZm4QB34Zg==": {
|
|
17
|
+
"description": "Sign In headline",
|
|
18
|
+
"status": "new",
|
|
19
|
+
"tokens": [],
|
|
20
|
+
"translations": [
|
|
21
|
+
{
|
|
22
|
+
"translation": "サインイン",
|
|
23
|
+
"variations": {}
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"types": []
|
|
27
|
+
},
|
|
28
|
+
"fjAChxxl9YYALSgXtLJkew==": {
|
|
29
|
+
"description": "Email placeholder",
|
|
30
|
+
"status": "new",
|
|
31
|
+
"tokens": [],
|
|
32
|
+
"translations": [
|
|
33
|
+
{
|
|
34
|
+
"translation": "メールアドレス",
|
|
35
|
+
"variations": {}
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"types": []
|
|
39
|
+
},
|
|
40
|
+
"cpewlSg5zFW0qSMLNtcxFw==": {
|
|
41
|
+
"description": "Password placeholder",
|
|
42
|
+
"status": "new",
|
|
43
|
+
"tokens": [],
|
|
44
|
+
"translations": [
|
|
45
|
+
{
|
|
46
|
+
"translation": "パスワード",
|
|
47
|
+
"variations": {}
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"types": []
|
|
51
|
+
},
|
|
52
|
+
"G7H+7X7c7UTEnQYdTDQxFQ==": {
|
|
53
|
+
"description": "Sign in button",
|
|
54
|
+
"status": "new",
|
|
55
|
+
"tokens": [],
|
|
56
|
+
"translations": [
|
|
57
|
+
{
|
|
58
|
+
"translation": "サインイン",
|
|
59
|
+
"variations": {}
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"types": []
|
|
63
|
+
},
|
|
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
|
+
"GjQuNGdVoQW88RkFt7fMBw==": {
|
|
101
|
+
"description": "Try again button",
|
|
102
|
+
"status": "new",
|
|
103
|
+
"tokens": [],
|
|
104
|
+
"translations": [
|
|
105
|
+
{
|
|
106
|
+
"translation": "もう一度試す",
|
|
107
|
+
"variations": {}
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"types": []
|
|
111
|
+
},
|
|
112
|
+
"pxlvTZmpYNhXWc31iqf+uQ==": {
|
|
113
|
+
"description": "fate library tagline",
|
|
114
|
+
"status": "new",
|
|
115
|
+
"tokens": [],
|
|
116
|
+
"translations": [
|
|
117
|
+
{
|
|
118
|
+
"translation": "React のためのモダンなデータクライアント。",
|
|
119
|
+
"variations": {}
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"types": []
|
|
123
|
+
},
|
|
124
|
+
"kJ5ukjdPI5cdsGVesqmrcg==": {
|
|
125
|
+
"description": "Search button",
|
|
126
|
+
"status": "new",
|
|
127
|
+
"tokens": [],
|
|
128
|
+
"translations": [
|
|
129
|
+
{
|
|
130
|
+
"translation": "検索",
|
|
131
|
+
"variations": {}
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"types": []
|
|
135
|
+
},
|
|
136
|
+
"PkKwcnNiHG2aiPl+1FyNPw==": {
|
|
137
|
+
"description": "Logout button",
|
|
138
|
+
"status": "new",
|
|
139
|
+
"tokens": [],
|
|
140
|
+
"translations": [
|
|
141
|
+
{
|
|
142
|
+
"translation": "ログアウト",
|
|
143
|
+
"variations": {}
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"types": []
|
|
147
|
+
},
|
|
148
|
+
"F3p8DbdliugG4CTKslAYqA==": {
|
|
149
|
+
"description": "Login button",
|
|
150
|
+
"status": "new",
|
|
151
|
+
"tokens": [],
|
|
152
|
+
"translations": [
|
|
153
|
+
{
|
|
154
|
+
"translation": "ログイン",
|
|
155
|
+
"variations": {}
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"types": []
|
|
159
|
+
},
|
|
160
|
+
"FUJIhsu5G4IY6P5TPRp3Vg==": {
|
|
161
|
+
"description": "Comment add label",
|
|
162
|
+
"status": "new",
|
|
163
|
+
"tokens": [],
|
|
164
|
+
"translations": [
|
|
165
|
+
{
|
|
166
|
+
"translation": "コメントを追加",
|
|
167
|
+
"variations": {}
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"types": []
|
|
171
|
+
},
|
|
172
|
+
"T1ALGhyc+Kaa2DPzPPNtTA==": {
|
|
173
|
+
"description": "Placeholder text for comment input",
|
|
174
|
+
"status": "new",
|
|
175
|
+
"tokens": [],
|
|
176
|
+
"translations": [
|
|
177
|
+
{
|
|
178
|
+
"translation": "感想を共有してください…",
|
|
179
|
+
"variations": {}
|
|
180
|
+
}
|
|
181
|
+
],
|
|
182
|
+
"types": []
|
|
183
|
+
},
|
|
184
|
+
"BckTW/qty+fgQ5iKKN0y1g==": {
|
|
185
|
+
"description": "Error text",
|
|
186
|
+
"status": "new",
|
|
187
|
+
"tokens": [],
|
|
188
|
+
"translations": [
|
|
189
|
+
{
|
|
190
|
+
"translation": "問題が発生しました。もう一度お試しください。",
|
|
191
|
+
"variations": {}
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
"types": []
|
|
195
|
+
},
|
|
196
|
+
"bEtExk1zQe1Iah6xAjqtKQ==": {
|
|
197
|
+
"description": "Post comment button",
|
|
198
|
+
"status": "new",
|
|
199
|
+
"tokens": [],
|
|
200
|
+
"translations": [
|
|
201
|
+
{
|
|
202
|
+
"translation": "コメントを投稿",
|
|
203
|
+
"variations": {}
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"types": []
|
|
207
|
+
},
|
|
208
|
+
"lUG++psd2OuZ5idF7EFY4w==": {
|
|
209
|
+
"description": "Like count",
|
|
210
|
+
"status": "new",
|
|
211
|
+
"tokens": [],
|
|
212
|
+
"translations": [
|
|
213
|
+
{
|
|
214
|
+
"translation": "{number} 件のいいね",
|
|
215
|
+
"variations": {}
|
|
216
|
+
}
|
|
217
|
+
],
|
|
218
|
+
"types": []
|
|
219
|
+
},
|
|
220
|
+
"dMWQOcPqkDZj3MCZcy7/pA==": {
|
|
221
|
+
"description": "Like count",
|
|
222
|
+
"status": "new",
|
|
223
|
+
"tokens": [],
|
|
224
|
+
"translations": [
|
|
225
|
+
{
|
|
226
|
+
"translation": "いいね 1 件",
|
|
227
|
+
"variations": {}
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"types": []
|
|
231
|
+
},
|
|
232
|
+
"MUnkaSorTo5i+Fx/WIQ+hw==": {
|
|
233
|
+
"description": "Like button",
|
|
234
|
+
"status": "new",
|
|
235
|
+
"tokens": [],
|
|
236
|
+
"translations": [
|
|
237
|
+
{
|
|
238
|
+
"translation": "いいね",
|
|
239
|
+
"variations": {}
|
|
240
|
+
}
|
|
241
|
+
],
|
|
242
|
+
"types": []
|
|
243
|
+
},
|
|
244
|
+
"UOSt+no1zSlM9CTWOGmKBw==": {
|
|
245
|
+
"description": "Like button with a slow request",
|
|
246
|
+
"status": "new",
|
|
247
|
+
"tokens": [],
|
|
248
|
+
"translations": [
|
|
249
|
+
{
|
|
250
|
+
"translation": "いいね(低速)",
|
|
251
|
+
"variations": {}
|
|
252
|
+
}
|
|
253
|
+
],
|
|
254
|
+
"types": []
|
|
255
|
+
},
|
|
256
|
+
"oNdagxfUl7t6w9JkaNR0sw==": {
|
|
257
|
+
"description": "Very short error messages",
|
|
258
|
+
"status": "new",
|
|
259
|
+
"tokens": [],
|
|
260
|
+
"translations": [
|
|
261
|
+
{
|
|
262
|
+
"translation": "おっと、もう一度!",
|
|
263
|
+
"variations": {}
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"types": []
|
|
267
|
+
},
|
|
268
|
+
"miSs0inqjvdLcC/XGl0N9Q==": {
|
|
269
|
+
"description": "Like button that triggers an error",
|
|
270
|
+
"status": "new",
|
|
271
|
+
"tokens": [],
|
|
272
|
+
"translations": [
|
|
273
|
+
{
|
|
274
|
+
"translation": "いいね(エラー)",
|
|
275
|
+
"variations": {}
|
|
276
|
+
}
|
|
277
|
+
],
|
|
278
|
+
"types": []
|
|
279
|
+
},
|
|
280
|
+
"DMbqoljTAyZr91I1ieUePw==": {
|
|
281
|
+
"description": "Like button that triggers a network error",
|
|
282
|
+
"status": "new",
|
|
283
|
+
"tokens": [],
|
|
284
|
+
"translations": [
|
|
285
|
+
{
|
|
286
|
+
"translation": "いいね(ネットワークエラー)",
|
|
287
|
+
"variations": {}
|
|
288
|
+
}
|
|
289
|
+
],
|
|
290
|
+
"types": []
|
|
291
|
+
},
|
|
292
|
+
"2pHWO8Jme4T+4V3ujzB65Q==": {
|
|
293
|
+
"description": "Like button that can be pressed many times",
|
|
294
|
+
"status": "new",
|
|
295
|
+
"tokens": [],
|
|
296
|
+
"translations": [
|
|
297
|
+
{
|
|
298
|
+
"translation": "いいね(連打)",
|
|
299
|
+
"variations": {}
|
|
300
|
+
}
|
|
301
|
+
],
|
|
302
|
+
"types": []
|
|
303
|
+
},
|
|
304
|
+
"6zDP+czhNkRqY+5ZMGrOfQ==": {
|
|
305
|
+
"description": "Unlike button",
|
|
306
|
+
"status": "new",
|
|
307
|
+
"tokens": [],
|
|
308
|
+
"translations": [
|
|
309
|
+
{
|
|
310
|
+
"translation": "いいねを取り消す",
|
|
311
|
+
"variations": {}
|
|
312
|
+
}
|
|
313
|
+
],
|
|
314
|
+
"types": []
|
|
315
|
+
},
|
|
316
|
+
"nbg2VP5XZv6NUc/92aYS5g==": {
|
|
317
|
+
"description": "Comment headline",
|
|
318
|
+
"status": "new",
|
|
319
|
+
"tokens": [],
|
|
320
|
+
"translations": [
|
|
321
|
+
{
|
|
322
|
+
"translation": "コメント {number} 件",
|
|
323
|
+
"variations": {}
|
|
324
|
+
}
|
|
325
|
+
],
|
|
326
|
+
"types": []
|
|
327
|
+
},
|
|
328
|
+
"pD2BZoLk7TPDeYaAKeZSXw==": {
|
|
329
|
+
"description": "Comment headline",
|
|
330
|
+
"status": "new",
|
|
331
|
+
"tokens": [],
|
|
332
|
+
"translations": [
|
|
333
|
+
{
|
|
334
|
+
"translation": "コメント 1 件",
|
|
335
|
+
"variations": {}
|
|
336
|
+
}
|
|
337
|
+
],
|
|
338
|
+
"types": []
|
|
339
|
+
},
|
|
340
|
+
"b3poi39jZnMvKCWuAKoPkw==": {
|
|
341
|
+
"description": "Load more comments button",
|
|
342
|
+
"status": "new",
|
|
343
|
+
"tokens": [],
|
|
344
|
+
"translations": [
|
|
345
|
+
{
|
|
346
|
+
"translation": "コメントをさらに読み込む",
|
|
347
|
+
"variations": {}
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
"types": []
|
|
351
|
+
},
|
|
352
|
+
"V+dphRjMQgYEAYIwaZ86eA==": {
|
|
353
|
+
"description": "No matches text",
|
|
354
|
+
"status": "new",
|
|
355
|
+
"tokens": [],
|
|
356
|
+
"translations": [
|
|
357
|
+
{
|
|
358
|
+
"translation": "{=\"[query]\"} に一致するものはありません",
|
|
359
|
+
"variations": {}
|
|
360
|
+
}
|
|
361
|
+
],
|
|
362
|
+
"types": []
|
|
363
|
+
},
|
|
364
|
+
"jOVKSVdYTyYUaZKttBdCvg==": {
|
|
365
|
+
"description": "In the phrase: \"No matches for {=\"[query]\"}\"",
|
|
366
|
+
"status": "new",
|
|
367
|
+
"tokens": [],
|
|
368
|
+
"translations": [
|
|
369
|
+
{
|
|
370
|
+
"translation": "「{query}」",
|
|
371
|
+
"variations": {}
|
|
372
|
+
}
|
|
373
|
+
],
|
|
374
|
+
"types": []
|
|
375
|
+
},
|
|
376
|
+
"JmKWBejr/NwXzEjhSgw6NA==": {
|
|
377
|
+
"description": "Search input placeholder",
|
|
378
|
+
"status": "new",
|
|
379
|
+
"tokens": [],
|
|
380
|
+
"translations": [
|
|
381
|
+
{
|
|
382
|
+
"translation": "コメントを検索…",
|
|
383
|
+
"variations": {}
|
|
384
|
+
}
|
|
385
|
+
],
|
|
386
|
+
"types": []
|
|
387
|
+
},
|
|
388
|
+
"0DJP0yKjBJSU20Mmtm3gXA==": {
|
|
389
|
+
"description": "Slowdown label explanation",
|
|
390
|
+
"status": "new",
|
|
391
|
+
"tokens": [],
|
|
392
|
+
"translations": [
|
|
393
|
+
{
|
|
394
|
+
"translation": "500ms の人工的な遅延",
|
|
395
|
+
"variations": {}
|
|
396
|
+
}
|
|
397
|
+
],
|
|
398
|
+
"types": []
|
|
399
|
+
},
|
|
400
|
+
"mz6EqB/vFEIHqLpLtXPvAQ==": {
|
|
401
|
+
"description": "Headline for update name section",
|
|
402
|
+
"status": "new",
|
|
403
|
+
"tokens": [],
|
|
404
|
+
"translations": [
|
|
405
|
+
{
|
|
406
|
+
"translation": "更新名",
|
|
407
|
+
"variations": {}
|
|
408
|
+
}
|
|
409
|
+
],
|
|
410
|
+
"types": []
|
|
411
|
+
},
|
|
412
|
+
"Dak4b7/tonGn0/lBSJtAsQ==": {
|
|
413
|
+
"description": "Username label",
|
|
414
|
+
"status": "new",
|
|
415
|
+
"tokens": [],
|
|
416
|
+
"translations": [
|
|
417
|
+
{
|
|
418
|
+
"translation": "ユーザー名",
|
|
419
|
+
"variations": {}
|
|
420
|
+
}
|
|
421
|
+
],
|
|
422
|
+
"types": []
|
|
423
|
+
},
|
|
424
|
+
"oIBMQemmmzQYvVo4ilURGw==": {
|
|
425
|
+
"description": "name input field placeholder",
|
|
426
|
+
"status": "new",
|
|
427
|
+
"tokens": [],
|
|
428
|
+
"translations": [
|
|
429
|
+
{
|
|
430
|
+
"translation": "名前",
|
|
431
|
+
"variations": {}
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
"types": []
|
|
435
|
+
},
|
|
436
|
+
"2OzJ2sKoxSsqwHnnbVvq3A==": {
|
|
437
|
+
"description": "Button for saving",
|
|
438
|
+
"status": "new",
|
|
439
|
+
"tokens": [],
|
|
440
|
+
"translations": [
|
|
441
|
+
{
|
|
442
|
+
"translation": "保存",
|
|
443
|
+
"variations": {}
|
|
444
|
+
}
|
|
445
|
+
],
|
|
446
|
+
"types": []
|
|
447
|
+
},
|
|
448
|
+
"tWb7A0wVb3UoE4+aOszc9g==": {
|
|
449
|
+
"description": "Your account headline",
|
|
450
|
+
"status": "new",
|
|
451
|
+
"tokens": [],
|
|
452
|
+
"translations": [
|
|
453
|
+
{
|
|
454
|
+
"translation": "あなたのアカウント",
|
|
455
|
+
"variations": {}
|
|
456
|
+
}
|
|
457
|
+
],
|
|
458
|
+
"types": []
|
|
459
|
+
},
|
|
460
|
+
"QJQdLesxH2DDZ/QixDw2Ag==": {
|
|
461
|
+
"description": "Signed in text",
|
|
462
|
+
"status": "new",
|
|
463
|
+
"tokens": [],
|
|
464
|
+
"translations": [
|
|
465
|
+
{
|
|
466
|
+
"translation": "{username} としてサインインしています。",
|
|
467
|
+
"variations": {}
|
|
468
|
+
}
|
|
469
|
+
],
|
|
470
|
+
"types": []
|
|
471
|
+
},
|
|
472
|
+
"wGBBoraj5XODDH6aMivFig==": {
|
|
473
|
+
"description": "Latest posts header",
|
|
474
|
+
"status": "new",
|
|
475
|
+
"tokens": [],
|
|
476
|
+
"translations": [
|
|
477
|
+
{
|
|
478
|
+
"translation": "最新の投稿",
|
|
479
|
+
"variations": {}
|
|
480
|
+
}
|
|
481
|
+
],
|
|
482
|
+
"types": []
|
|
483
|
+
},
|
|
484
|
+
"lxhFAcau1SpZz7pY2MF3aA==": {
|
|
485
|
+
"description": "Load more posts button",
|
|
486
|
+
"status": "new",
|
|
487
|
+
"tokens": [],
|
|
488
|
+
"translations": [
|
|
489
|
+
{
|
|
490
|
+
"translation": "投稿をさらに読み込む",
|
|
491
|
+
"variations": {}
|
|
492
|
+
}
|
|
493
|
+
],
|
|
494
|
+
"types": []
|
|
495
|
+
},
|
|
496
|
+
"a1m6R6xCfulWvyS7MBRNOQ==": {
|
|
497
|
+
"description": "Description of fate",
|
|
498
|
+
"status": "new",
|
|
499
|
+
"tokens": [],
|
|
500
|
+
"translations": [
|
|
501
|
+
{
|
|
502
|
+
"translation": "fate は、Relay と GraphQL に着想を得た、React と tRPC 向けのモダンなデータクライアントです。",
|
|
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 機能・そして tRPC の型安全性を組み合わせます。",
|
|
515
|
+
"variations": {}
|
|
516
|
+
}
|
|
517
|
+
],
|
|
518
|
+
"types": []
|
|
519
|
+
},
|
|
520
|
+
"N6sA4e6dEXz2DfLMt0w9Jg==": {
|
|
521
|
+
"description": "Login button label",
|
|
522
|
+
"status": "new",
|
|
523
|
+
"tokens": [],
|
|
524
|
+
"translations": [
|
|
525
|
+
{
|
|
526
|
+
"translation": "コメントを投稿するにはサインインしてください。",
|
|
527
|
+
"variations": {}
|
|
528
|
+
}
|
|
529
|
+
],
|
|
530
|
+
"types": []
|
|
531
|
+
},
|
|
532
|
+
"IYUmtYxQtGdt1MucjXrsVA==": {
|
|
533
|
+
"description": "Label with meaning 'at least number'",
|
|
534
|
+
"status": "new",
|
|
535
|
+
"tokens": [],
|
|
536
|
+
"translations": [
|
|
537
|
+
{
|
|
538
|
+
"translation": "{number}+",
|
|
539
|
+
"variations": {}
|
|
540
|
+
}
|
|
541
|
+
],
|
|
542
|
+
"types": []
|
|
543
|
+
},
|
|
544
|
+
"ZIF1WhVQwt7WZJvFTEbMWw==": {
|
|
545
|
+
"description": "Label with meaning 'less than number'",
|
|
546
|
+
"status": "new",
|
|
547
|
+
"tokens": [],
|
|
548
|
+
"translations": [
|
|
549
|
+
{
|
|
550
|
+
"translation": "<{number}",
|
|
551
|
+
"variations": {}
|
|
552
|
+
}
|
|
553
|
+
],
|
|
554
|
+
"types": []
|
|
555
|
+
},
|
|
556
|
+
"Oc/9PrbjfyLHS60BXceD1A==": {
|
|
557
|
+
"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
|
+
"tokens": [],
|
|
560
|
+
"translations": [
|
|
561
|
+
{
|
|
562
|
+
"translation": "{previous items}; {following items}",
|
|
563
|
+
"variations": {}
|
|
564
|
+
}
|
|
565
|
+
],
|
|
566
|
+
"types": []
|
|
567
|
+
},
|
|
568
|
+
"AXXbKEUZuc0ji1IClRrOOw==": {
|
|
569
|
+
"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
|
+
"tokens": [],
|
|
572
|
+
"translations": [
|
|
573
|
+
{
|
|
574
|
+
"translation": "{previous items} • {following items}",
|
|
575
|
+
"variations": {}
|
|
576
|
+
}
|
|
577
|
+
],
|
|
578
|
+
"types": []
|
|
579
|
+
},
|
|
580
|
+
"89ACgPMtnwlLDSeqhLBx2Q==": {
|
|
581
|
+
"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
|
+
"tokens": [],
|
|
584
|
+
"translations": [
|
|
585
|
+
{
|
|
586
|
+
"translation": "{previous items}, {following items}",
|
|
587
|
+
"variations": {}
|
|
588
|
+
}
|
|
589
|
+
],
|
|
590
|
+
"types": []
|
|
591
|
+
},
|
|
592
|
+
"5hL7VXOBVnetm46YAjpX0g==": {
|
|
593
|
+
"description": "A list of items of various types with a serial comma, for example: \"item1, item2, and item3\"",
|
|
594
|
+
"status": "new",
|
|
595
|
+
"tokens": [],
|
|
596
|
+
"translations": [
|
|
597
|
+
{
|
|
598
|
+
"translation": "{list of items}、そして {last item}",
|
|
599
|
+
"variations": {}
|
|
600
|
+
}
|
|
601
|
+
],
|
|
602
|
+
"types": []
|
|
603
|
+
},
|
|
604
|
+
"icNetEL/crQv/PS6yhySVQ==": {
|
|
605
|
+
"description": "A list of items of various types, for example: \"item1, item2, item3 and item4\"",
|
|
606
|
+
"status": "new",
|
|
607
|
+
"tokens": [],
|
|
608
|
+
"translations": [
|
|
609
|
+
{
|
|
610
|
+
"translation": "{list of items} と {last item}",
|
|
611
|
+
"variations": {}
|
|
612
|
+
}
|
|
613
|
+
],
|
|
614
|
+
"types": []
|
|
615
|
+
},
|
|
616
|
+
"8kLAQ3ffiiFnQ/bWPqXfuQ==": {
|
|
617
|
+
"description": "A list of items of various types with a serial comma, for example: \"item1, item2, or item3\"",
|
|
618
|
+
"status": "new",
|
|
619
|
+
"tokens": [],
|
|
620
|
+
"translations": [
|
|
621
|
+
{
|
|
622
|
+
"translation": "{list of items}、または {last item}",
|
|
623
|
+
"variations": {}
|
|
624
|
+
}
|
|
625
|
+
],
|
|
626
|
+
"types": []
|
|
627
|
+
},
|
|
628
|
+
"8eSaAzrWtAqn9ktNKfkaEg==": {
|
|
629
|
+
"description": "A list of items of various types, for example: \"item1, item2, item3 or item4\"",
|
|
630
|
+
"status": "new",
|
|
631
|
+
"tokens": [],
|
|
632
|
+
"translations": [
|
|
633
|
+
{
|
|
634
|
+
"translation": "{list of items} または {last item}",
|
|
635
|
+
"variations": {}
|
|
636
|
+
}
|
|
637
|
+
],
|
|
638
|
+
"types": []
|
|
639
|
+
},
|
|
640
|
+
"+IBI7kr/mMKdzp+3stDvkw==": {
|
|
641
|
+
"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
|
+
"tokens": [],
|
|
644
|
+
"translations": [
|
|
645
|
+
{
|
|
646
|
+
"translation": "{previous items}; {last item}",
|
|
647
|
+
"variations": {}
|
|
648
|
+
}
|
|
649
|
+
],
|
|
650
|
+
"types": []
|
|
651
|
+
},
|
|
652
|
+
"55IeE8c0qqtjTU0lo7q9AA==": {
|
|
653
|
+
"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
|
+
"tokens": [],
|
|
656
|
+
"translations": [
|
|
657
|
+
{
|
|
658
|
+
"translation": "{list of items} • {last item}",
|
|
659
|
+
"variations": {}
|
|
660
|
+
}
|
|
661
|
+
],
|
|
662
|
+
"types": []
|
|
663
|
+
},
|
|
664
|
+
"6PRJS0QalZfvaN8CkKCUCw==": {
|
|
665
|
+
"description": "A list of items of various types, for example: \"item1, item2, item3, item4\"",
|
|
666
|
+
"status": "new",
|
|
667
|
+
"tokens": [],
|
|
668
|
+
"translations": [
|
|
669
|
+
{
|
|
670
|
+
"translation": "{list of items}、{last item}",
|
|
671
|
+
"variations": {}
|
|
672
|
+
}
|
|
673
|
+
],
|
|
674
|
+
"types": []
|
|
675
|
+
},
|
|
676
|
+
"6/ZbJcEx19aXKls64qknkg==": {
|
|
677
|
+
"description": "Locale switcher button",
|
|
678
|
+
"status": "new",
|
|
679
|
+
"tokens": [],
|
|
680
|
+
"translations": [
|
|
681
|
+
{
|
|
682
|
+
"translation": "言語を変更",
|
|
683
|
+
"variations": {}
|
|
684
|
+
}
|
|
685
|
+
],
|
|
686
|
+
"types": []
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
}
|