feat(i18n): localize portal account settings

This commit is contained in:
poyrazavsever
2026-07-21 13:37:23 +03:00
parent 48f9d7bc87
commit 86a9c79511
11 changed files with 397 additions and 40 deletions
@@ -0,0 +1 @@
ALTER TABLE `project_revisions` ADD `source_locale` text;
+8 -1
View File
@@ -85,6 +85,13 @@
"when": 1784626279393,
"tag": "0011_tricky_mordo",
"breakpoints": true
},
{
"idx": 12,
"version": "6",
"when": 1784627370000,
"tag": "0012_portal_revision_locale",
"breakpoints": true
}
]
}
}
+1
View File
@@ -326,6 +326,7 @@ export const projectRevisions = sqliteTable(
.notNull()
.references(() => user.id, { onDelete: "cascade" }),
description: text("description").notNull(),
sourceLocale: text("source_locale"),
status: text("status").$type<RevisionStatus>().default("pending").notNull(),
createdAt: integer("created_at", { mode: "timestamp_ms" }).default(nowMs).notNull(),
updatedAt: integer("updated_at", { mode: "timestamp_ms" })