Update locales

Signed-off-by: mattyatea <mattyacocacora0@gmail.com>
This commit is contained in:
mattyatea 2023-10-21 15:55:18 +09:00
parent a4fef11e3c
commit 97590f2567
No known key found for this signature in database
GPG Key ID: 068E54E2C33BEF9A
2 changed files with 16 additions and 0 deletions

View File

@ -258,6 +258,7 @@ announcements: "お知らせ"
imageUrl: "画像URL"
remove: "削除"
removed: "削除しました"
undraftAreYouSure: "「{x}」をドラフト解除しますか?"
removeAreYouSure: "「{x}」を削除しますか?"
deleteAreYouSure: "「{x}」を削除しますか?"
resetAreYouSure: "リセットしますか?"

View File

@ -0,0 +1,15 @@
export class EmojiDraft1697813507149 {
name = 'EmojiDraft1697813507149'
async up(queryRunner) {
await queryRunner.query(`CREATE TABLE "emoji_draft" ("id" character varying(32) NOT NULL, "updatedAt" TIMESTAMP WITH TIME ZONE, "name" character varying(128) NOT NULL, "category" character varying(128), "originalUrl" character varying(512) NOT NULL, "publicUrl" character varying(512) NOT NULL DEFAULT '', "type" character varying(64), "aliases" character varying(128) array NOT NULL DEFAULT '{}', "license" character varying(1024), "fileId" character varying(1024) NOT NULL, "localOnly" boolean NOT NULL DEFAULT false, "isSensitive" boolean NOT NULL DEFAULT false, CONSTRAINT "PK_6c7c36f693e1cb8ba1343e3336f" PRIMARY KEY ("id"))`);
await queryRunner.query(`CREATE INDEX "IDX_j7skve3cwn4pfb2qg9mx1la8iy" ON "emoji_draft" ("name") `);
await queryRunner.query(`CREATE UNIQUE INDEX "IDX_e99cd746a9632624dae39cfb35" ON "emoji_draft" ("name") `);
}
async down(queryRunner) {
await queryRunner.query(`DROP INDEX "public"."IDX_e99cd746a9632624dae39cfb35"`);
await queryRunner.query(`DROP INDEX "public"."IDX_j7skve3cwn4pfb2qg9mx1la8iy"`);
await queryRunner.query(`DROP TABLE "emoji_draft"`);
}
}