chore: Update translations

This commit is contained in:
2024-02-27 19:16:50 +00:00
parent d59e0c9f36
commit ae37f361ce
42 changed files with 684 additions and 543 deletions

View File

@ -157,9 +157,7 @@ export function NostrProviderDialog({
</p>
<div className="flex gap-2">
{sortEndpoints(info.endpoints).map(a => (
<Pill
selected={ep?.name === a.name}
onClick={() => setEndpoint(a)}>
<Pill selected={ep?.name === a.name} onClick={() => setEndpoint(a)}>
{a.name}
</Pill>
))}
@ -178,8 +176,7 @@ export function NostrProviderDialog({
</p>
<div className="flex gap-2">
<input type="password" value={ep?.key} disabled />
<DefaultButton
onClick={() => window.navigator.clipboard.writeText(ep?.key ?? "")}>
<DefaultButton onClick={() => window.navigator.clipboard.writeText(ep?.key ?? "")}>
<FormattedMessage defaultMessage="Copy" id="4l6vz1" />
</DefaultButton>
</div>