Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 115 additions & 0 deletions .opencode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"react": "19.2.1",
"react-day-picker": "^9.7.0",
"react-dom": "19.2.1",
"react-easy-crop": "^5.5.7",
"react-hook-form": "^7.50.1",
"react-i18next": "^15.5.3",
"react-plaid-link": "4.1.1",
Expand Down
21 changes: 21 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE "public"."Group"
ADD COLUMN "image" TEXT;
1 change: 1 addition & 0 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ model Group {
id Int @id @default(autoincrement())
publicId String @unique
name String
image String?
userId Int
defaultCurrency String @default("USD")
createdAt DateTime @default(now())
Expand Down
15 changes: 11 additions & 4 deletions public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,14 @@
},
"download_splitpro_data": "Download SplitPro data",
"edit_name": {
"apply_avatar": "Apply avatar",
"avatar_label": "Profile picture",
"avatar_preview": "Avatar preview",
"placeholder": "Enter name",
"title": "Edit name"
"remove_avatar": "Remove avatar",
"select_avatar": "Select picture",
"zoom": "Zoom",
"title": "Edit details"
},
"follow_on_x": "Follow us on X",
"import_from_splitwise": "Import from Splitwise",
Expand All @@ -35,8 +41,8 @@
},
"logout": "Logout",
"messages": {
"submit_error": "Failed to submit feedback",
"submit_success": "Feedback submitted"
"submit_error": "Failed to update details",
"submit_success": "Details updated"
},
"notifications": {
"disable_notification": "Disable notification",
Expand Down Expand Up @@ -251,6 +257,7 @@
"group_info": {
"actions": "Actions",
"archive_group": "Archive group",
"edit_group": "Edit group",
"archive_group_details": {
"can_archive": "This group will be archived and hidden from your main groups list. You can still access it later if needed.",
"cant_archive": "Cannot archive group with outstanding balances. All balances must be settled first.",
Expand Down Expand Up @@ -292,7 +299,7 @@
"messages": {
"balances_recalculated": "Balances recalculated successfully",
"group_archived": "Group archived successfully",
"group_name_updated": "Updated group name"
"group_name_updated": "Updated group details"
},
"no_members": {
"add_members": "Add members",
Expand Down
Loading
Loading