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
+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" })