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

@ -103,7 +103,7 @@ interface StreamInfo {
export function extractStreamInfo(ev?: NostrEvent) {
const ret = {
host: getHost(ev)
host: getHost(ev),
} as StreamInfo;
const matchTag = (tag: Array<string>, k: string, into: (v: string) => void) => {
if (tag[0] === k) {
@ -161,5 +161,5 @@ export function groupBy<T>(val: Array<T>, selector: (a: T) => string | number):
acc[key] ??= [];
acc[key].push(v);
return acc;
}, {} as Record<string, Array<T>>)
}
}, {} as Record<string, Array<T>>);
}