chore: Update translations
This commit is contained in:
parent
ee9f941b11
commit
ea54ee2b00
@ -4,7 +4,7 @@ import { EventKind, NostrEvent, NostrLink, TaggedNostrEvent, ToNostrEventTag, Un
|
||||
import useLogin from "@/Hooks/useLogin";
|
||||
|
||||
export class MutedWordTag implements ToNostrEventTag {
|
||||
constructor(readonly word: string) { }
|
||||
constructor(readonly word: string) {}
|
||||
|
||||
toEventTag(): string[] | undefined {
|
||||
return ["word", this.word.toLowerCase()];
|
||||
|
@ -48,10 +48,11 @@ export default function ModerationSettingsPage() {
|
||||
value={muteWord}
|
||||
onChange={e => setMuteWord(e.target.value.toLowerCase())}
|
||||
/>
|
||||
<AsyncButton onClick={async () => {
|
||||
await addMutedWord(muteWord);
|
||||
setMuteWord("");
|
||||
}}>
|
||||
<AsyncButton
|
||||
onClick={async () => {
|
||||
await addMutedWord(muteWord);
|
||||
setMuteWord("");
|
||||
}}>
|
||||
<FormattedMessage defaultMessage="Add" id="2/2yg+" />
|
||||
</AsyncButton>
|
||||
</div>
|
||||
|
@ -20,7 +20,7 @@ export interface ToNostrEventTag {
|
||||
}
|
||||
|
||||
export class NostrHashtagLink implements ToNostrEventTag {
|
||||
constructor(readonly tag: string) { }
|
||||
constructor(readonly tag: string) {}
|
||||
|
||||
toEventTag() {
|
||||
return ["t", this.tag];
|
||||
@ -28,7 +28,7 @@ export class NostrHashtagLink implements ToNostrEventTag {
|
||||
}
|
||||
|
||||
export class UnknownTag implements ToNostrEventTag {
|
||||
constructor(readonly value: Array<string>) { }
|
||||
constructor(readonly value: Array<string>) {}
|
||||
toEventTag(): string[] | undefined {
|
||||
return this.value;
|
||||
}
|
||||
@ -194,11 +194,7 @@ export class NostrLink implements ToNostrEventTag {
|
||||
}
|
||||
}
|
||||
|
||||
static fromTag(
|
||||
tag: Array<string>,
|
||||
author?: string,
|
||||
kind?: number,
|
||||
) {
|
||||
static fromTag(tag: Array<string>, author?: string, kind?: number) {
|
||||
const relays = tag.length > 2 ? [tag[2]] : undefined;
|
||||
switch (tag[0]) {
|
||||
case "e": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user