Skip to content
Open
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
2 changes: 1 addition & 1 deletion messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1600,7 +1600,7 @@
"nameLabel": "Name",
"namePlaceholder": "e.g. Zapier automation",
"scopesLabel": "Scopes",
"scopesHint": "A key with no scopes can still call <code className=\"text-[11px]\">GET /api/v1/me</code> to verify it works.",
"scopesHint": "A key with no scopes can still call <code>GET /api/v1/me</code> to verify it works.",
"cancel": "Cancel",
"creating": "Creating…",
"createKey": "Create key",
Expand Down
2 changes: 1 addition & 1 deletion messages/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -1598,7 +1598,7 @@
"nameLabel": "이름",
"namePlaceholder": "예: Zapier 자동화",
"scopesLabel": "권한 범위",
"scopesHint": "권한 범위가 없는 키도 <code className=\"text-[11px]\">GET /api/v1/me</code>를 호출해 동작을 확인할 수 있습니다.",
"scopesHint": "권한 범위가 없는 키도 <code>GET /api/v1/me</code>를 호출해 동작을 확인할 수 있습니다.",
"cancel": "취소",
"creating": "만드는 중…",
"createKey": "키 생성",
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/invite-member-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ export function InviteMemberDialog({
onValueChange={(v) => v && setRole(v as InviteRole)}
>
<SelectTrigger className="w-full bg-muted border-border text-foreground">
<SelectValue />
<SelectValue>{tRoles(role)}</SelectValue>
</SelectTrigger>
<SelectContent>
<SelectItem value="admin">{tRoles('admin')}</SelectItem>
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/members-tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ export function MembersTab() {
className="w-32 bg-muted border-border text-foreground"
disabled={isBusy}
>
<SelectValue />
<SelectValue>{tRoles(member.role)}</SelectValue>
</SelectTrigger>
<SelectContent>
{EDITABLE_ROLES.map((r) => (
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/settings-overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function SettingsOverview({
useAuth();
const { mode, theme } = useTheme();
const t = useTranslations('Settings.overview');
const tRoles = useTranslations('roles');
const tRoles = useTranslations('Settings.roles');
const tSections = useTranslations('Settings.sections');

const [counts, setCounts] = useState<OverviewCounts | null>(null);
Expand Down
Loading