Skip to content

Commit

Permalink
fix(core): wrong auth i18n keys
Browse files Browse the repository at this point in the history
  • Loading branch information
forehalo committed Dec 31, 2024
1 parent 7c41775 commit dc3a160
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,12 @@ const CloudWorkSpaceList = ({
),
accountStatus === 'authenticated' && (
<MenuItem key="sign-out" onClick={handleSignOut}>
{t['com.affine.sign.out']()}
{t['Sign out']()}
</MenuItem>
),
accountStatus === 'unauthenticated' && (
<MenuItem key="sign-in" onClick={handleSignIn}>
{t['com.affine.sign.in']()}
{t['Sign in']()}
</MenuItem>
),
]}
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/i18n/src/resources/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"Retry": "Retry",
"Save": "Save",
"Select": "Select",
"Sign in": "Sign in AFFiNE Cloud",
"Sign in": "Sign in",
"Sign in and Enable": "Sign in and enable",
"Sign out": "Sign out",
"Snapshot": "Snapshot",
Expand Down

0 comments on commit dc3a160

Please sign in to comment.