1
0
forked from Kieran/snort

chore: Update translations

This commit is contained in:
Kieran 2023-09-05 13:59:44 +00:00
parent b1459d0f49
commit df7353a43c
37 changed files with 7031 additions and 800 deletions

View File

@ -13,7 +13,7 @@ const MaxCacheWindow = Day * 7;
export class FollowsFeedCache extends RefreshFeedCache<TaggedNostrEvent> {
#kinds = [EventKind.TextNote, EventKind.Repost, EventKind.Polls];
#oldest: number = 0;
constructor() {
super("FollowsFeedCache", db.followsFeed);
}
@ -29,14 +29,14 @@ export class FollowsFeedCache extends RefreshFeedCache<TaggedNostrEvent> {
buildSub(session: LoginSession, rb: RequestBuilder): void {
const since = this.newest();
rb.withFilter()
.kinds(this.#kinds)
.authors(session.follows.item)
.since(since === 0 ? unixNow() - WindowSize : since);
.kinds(this.#kinds)
.authors(session.follows.item)
.since(since === 0 ? unixNow() - WindowSize : since);
}
async onEvent(evs: readonly TaggedNostrEvent[]): Promise<void> {
const filtered = evs.filter(a => this.#kinds.includes(a.kind));
if(filtered.length > 0) {
if (filtered.length > 0) {
await this.bulkSet(filtered);
this.notifyChange(filtered.map(a => this.key(a)));
}
@ -52,22 +52,20 @@ export class FollowsFeedCache extends RefreshFeedCache<TaggedNostrEvent> {
latest?.forEach(v => this.cache.set(this.key(v), v));
// cleanup older than 7 days
await this.table?.where("created_at").below(unixNow() - MaxCacheWindow).delete();
await this.table
?.where("created_at")
.below(unixNow() - MaxCacheWindow)
.delete();
const oldest = await this.table?.orderBy("created_at").first();
this.#oldest = oldest?.created_at ?? 0;
this.notifyChange(latest?.map(a => this.key(a)) ?? []);
debug(this.name)(
`Loaded %d/%d in %d ms`,
latest?.length ?? 0,
keys.length,
(unixNowMs() - start).toLocaleString(),
);
debug(this.name)(`Loaded %d/%d in %d ms`, latest?.length ?? 0, keys.length, (unixNowMs() - start).toLocaleString());
}
async loadMore(system: SystemInterface, session: LoginSession, before: number) {
if(before <= this.#oldest) {
if (before <= this.#oldest) {
const rb = new RequestBuilder(`${this.name}-loadmore`);
rb.withFilter()
.kinds(this.#kinds)
@ -78,13 +76,17 @@ export class FollowsFeedCache extends RefreshFeedCache<TaggedNostrEvent> {
await this.bulkSet(evs);
});
} else {
const latest = await this.table?.where("created_at").between(before - WindowSize, before).reverse().sortBy("created_at");
const latest = await this.table
?.where("created_at")
.between(before - WindowSize, before)
.reverse()
.sortBy("created_at");
latest?.forEach(v => {
const k = this.key(v);
this.cache.set(k, v);
this.onTable.add(k);
});
this.notifyChange(latest?.map(a => this.key(a)) ?? []);
}
}
@ -93,7 +95,7 @@ export class FollowsFeedCache extends RefreshFeedCache<TaggedNostrEvent> {
* Backfill cache with new follows
*/
async backFill(system: SystemInterface, keys: Array<string>) {
if(keys.length === 0) return;
if (keys.length === 0) return;
const rb = new RequestBuilder(`${this.name}-backfill`);
rb.withFilter()
@ -115,10 +117,6 @@ export class FollowsFeedCache extends RefreshFeedCache<TaggedNostrEvent> {
const allKeys = new Set(everything?.map(a => a.pubkey));
const missingKeys = keys.filter(a => !allKeys.has(a));
await this.backFill(system, missingKeys);
debug(this.name)(
`Backfilled %d keys in %d ms`,
missingKeys.length,
(unixNowMs() - start).toLocaleString(),
);
debug(this.name)(`Backfilled %d keys in %d ms`, missingKeys.length, (unixNowMs() - start).toLocaleString());
}
}

View File

@ -4,7 +4,7 @@ import { findTag, unwrap } from "SnortUtils";
import { RefreshFeedCache } from "./RefreshFeedCache";
import { LoginSession } from "Login";
export class GiftWrapCache extends RefreshFeedCache<UnwrappedGift> {
export class GiftWrapCache extends RefreshFeedCache<UnwrappedGift> {
constructor() {
super("GiftWrapCache", db.gifts);
}
@ -15,13 +15,11 @@ export class GiftWrapCache extends RefreshFeedCache<UnwrappedGift> {
buildSub(session: LoginSession, rb: RequestBuilder): void {
const pubkey = session.publicKey;
if(pubkey) {
rb.withFilter()
.kinds([EventKind.GiftWrap])
.tag("p", [pubkey]).since(this.newest());
if (pubkey) {
rb.withFilter().kinds([EventKind.GiftWrap]).tag("p", [pubkey]).since(this.newest());
}
}
takeSnapshot(): Array<UnwrappedGift> {
return [...this.cache.values()];
}

View File

@ -18,7 +18,7 @@ export class NotificationsCache extends RefreshFeedCache<NostrEvent> {
rb.withFilter()
.kinds(this.#kinds)
.tag("p", [session.publicKey])
.since(newest === 0 ? unixNow() - (Day * 30): newest);
.since(newest === 0 ? unixNow() - Day * 30 : newest);
}
}

View File

@ -41,7 +41,7 @@ const STORES = {
payments: "++url",
gifts: "++id",
notifications: "++id",
followsFeed: "++id, created_at, kind"
followsFeed: "++id, created_at, kind",
};
export class SnortDB extends Dexie {

View File

@ -106,7 +106,7 @@ export default function Note(props: NoteProps) {
return <ZapGoal ev={ev} />;
}
return <NoteInner {...props} />
return <NoteInner {...props} />;
}
export function NoteInner(props: NoteProps) {
@ -393,7 +393,7 @@ export function NoteInner(props: NoteProps) {
{options.showContextMenu && (
<NoteContextMenu
ev={ev}
react={async () => { }}
react={async () => {}}
onTranslated={t => setTranslated(t)}
setShowReactions={setShowReactions}
/>

View File

@ -116,7 +116,13 @@ export default function Poll(props: PollProps) {
{opt === voting ? (
<Spinner />
) : (
<Text id={props.ev.id} content={desc} tags={props.ev.tags} creator={props.ev.pubkey} disableMediaSpotlight={true} />
<Text
id={props.ev.id}
content={desc}
tags={props.ev.tags}
creator={props.ev.pubkey}
disableMediaSpotlight={true}
/>
)}
</div>
{showResults && (

View File

@ -37,7 +37,7 @@ export default function Text({
disableLinkPreview,
truncate,
className,
onClick
onClick,
}: TextProps) {
const [showSpotlight, setShowSpotlight] = useState(false);
const [imageIdx, setImageIdx] = useState(0);
@ -60,7 +60,7 @@ export default function Text({
return null;
} else if (lenCtr + a.content.length > truncate) {
lenCtr += a.content.length;
return <div className="text-frag">{a.content.slice(0, truncate - lenCtr)}...</div>
return <div className="text-frag">{a.content.slice(0, truncate - lenCtr)}...</div>;
} else {
lenCtr += a.content.length;
}
@ -109,7 +109,7 @@ export default function Text({
}
return elements.map(a => renderChunk(a));
}
};
return (
<div dir="auto" className={`text${className ? ` ${className}` : ""}`} onClick={onClick}>

View File

@ -106,7 +106,9 @@ const Timeline = (props: TimelineProps) => {
)}
</>
)}
{mainFeed.map(e => <Note key={e.id} data={e} related={relatedFeed(e.id)} ignoreModeration={props.ignoreModeration} depth={0} />)}
{mainFeed.map(e => (
<Note key={e.id} data={e} related={relatedFeed(e.id)} ignoreModeration={props.ignoreModeration} depth={0} />
))}
{(props.loadMore === undefined || props.loadMore === true) && (
<div className="flex f-center">
<button type="button" onClick={() => feed.loadMore()}>

View File

@ -18,101 +18,110 @@ import ProfileImage from "Element/ProfileImage";
import Icon from "Icons/Icon";
export interface TimelineFollowsProps {
postsOnly: boolean;
postsOnly: boolean;
}
/**
* A list of notes by "subject"
*/
const TimelineFollows = (props: TimelineFollowsProps) => {
const [latest, setLatest] = useState(unixNow());
const feed = useSyncExternalStore(cb => FollowsFeed.hook(cb, "*"), () => FollowsFeed.snapshot())
const reactions = useReactions("follows-feed-reactions", feed.map(a => a.id));
const system = useContext(SnortContext);
const login = useLogin();
const { muted, isMuted } = useModeration();
const { ref, inView } = useInView();
const [latest, setLatest] = useState(unixNow());
const feed = useSyncExternalStore(
cb => FollowsFeed.hook(cb, "*"),
() => FollowsFeed.snapshot()
);
const reactions = useReactions(
"follows-feed-reactions",
feed.map(a => a.id)
);
const system = useContext(SnortContext);
const login = useLogin();
const { muted, isMuted } = useModeration();
const { ref, inView } = useInView();
const sortedFeed = useMemo(() => orderDescending(feed), [feed]);
const sortedFeed = useMemo(() => orderDescending(feed), [feed]);
const filterPosts = useCallback(
function <T extends NostrEvent>(nts: Array<T>) {
const a = nts.filter(a => a.kind !== EventKind.LiveEvent);
return a
?.filter(a => (props.postsOnly ? !a.tags.some(b => b[0] === "e") : true))
.filter(a => !isMuted(a.pubkey) && login.follows.item.includes(a.pubkey));
},
[props.postsOnly, muted, login.follows.timestamp]
);
const filterPosts = useCallback(
function <T extends NostrEvent>(nts: Array<T>) {
const a = nts.filter(a => a.kind !== EventKind.LiveEvent);
return a
?.filter(a => (props.postsOnly ? !a.tags.some(b => b[0] === "e") : true))
.filter(a => !isMuted(a.pubkey) && login.follows.item.includes(a.pubkey));
},
[props.postsOnly, muted, login.follows.timestamp]
);
const mainFeed = useMemo(() => {
return filterPosts((sortedFeed ?? []).filter(a => a.created_at <= latest));
}, [sortedFeed, filterPosts, latest, login.follows.timestamp]);
const mainFeed = useMemo(() => {
return filterPosts((sortedFeed ?? []).filter(a => a.created_at <= latest));
}, [sortedFeed, filterPosts, latest, login.follows.timestamp]);
const latestFeed = useMemo(() => {
return filterPosts((sortedFeed ?? []).filter(a => a.created_at > latest));
}, [sortedFeed, latest]);
const latestFeed = useMemo(() => {
return filterPosts((sortedFeed ?? []).filter(a => a.created_at > latest));
}, [sortedFeed, latest]);
const relatedFeed = useCallback(
(id: u256) => {
return (reactions?.data ?? []).filter(a => findTag(a, "e") === id);
},
[reactions]
);
const relatedFeed = useCallback(
(id: u256) => {
return (reactions?.data ?? []).filter(a => findTag(a, "e") === id);
},
[reactions]
);
const liveStreams = useMemo(() => {
return (sortedFeed ?? []).filter(a => a.kind === EventKind.LiveEvent && findTag(a, "status") === "live");
}, [sortedFeed]);
const liveStreams = useMemo(() => {
return (sortedFeed ?? []).filter(a => a.kind === EventKind.LiveEvent && findTag(a, "status") === "live");
}, [sortedFeed]);
const latestAuthors = useMemo(() => {
return dedupeByPubkey(latestFeed).map(e => e.pubkey);
}, [latestFeed]);
const latestAuthors = useMemo(() => {
return dedupeByPubkey(latestFeed).map(e => e.pubkey);
}, [latestFeed]);
function onShowLatest(scrollToTop = false) {
setLatest(unixNow());
if (scrollToTop) {
window.scrollTo(0, 0);
}
function onShowLatest(scrollToTop = false) {
setLatest(unixNow());
if (scrollToTop) {
window.scrollTo(0, 0);
}
}
return (
return (
<>
<LiveStreams evs={liveStreams} />
{latestFeed.length > 0 && (
<>
<LiveStreams evs={liveStreams} />
{latestFeed.length > 0 && (
<>
<div className="card latest-notes" onClick={() => onShowLatest()} ref={ref}>
{latestAuthors.slice(0, 3).map(p => {
return <ProfileImage pubkey={p} showUsername={false} link={""} />;
})}
<FormattedMessage
defaultMessage="{n} new {n, plural, =1 {note} other {notes}}"
values={{ n: latestFeed.length }}
/>
<Icon name="arrowUp" />
</div>
{!inView && (
<div className="card latest-notes latest-notes-fixed pointer fade-in" onClick={() => onShowLatest(true)}>
{latestAuthors.slice(0, 3).map(p => {
return <ProfileImage pubkey={p} showUsername={false} link={""} />;
})}
<FormattedMessage
defaultMessage="{n} new {n, plural, =1 {note} other {notes}}"
values={{ n: latestFeed.length }}
/>
<Icon name="arrowUp" />
</div>
)}
</>
)}
{mainFeed.map(a => <Note data={a as TaggedNostrEvent} related={relatedFeed(a.id)} key={a.id} depth={0} />)}
<div className="flex f-center p">
<AsyncButton onClick={async () => {
await FollowsFeed.loadMore(system, login, sortedFeed[sortedFeed.length - 1].created_at);
}}>
<FormattedMessage defaultMessage="Load more" />
</AsyncButton>
<div className="card latest-notes" onClick={() => onShowLatest()} ref={ref}>
{latestAuthors.slice(0, 3).map(p => {
return <ProfileImage pubkey={p} showUsername={false} link={""} />;
})}
<FormattedMessage
defaultMessage="{n} new {n, plural, =1 {note} other {notes}}"
values={{ n: latestFeed.length }}
/>
<Icon name="arrowUp" />
</div>
{!inView && (
<div className="card latest-notes latest-notes-fixed pointer fade-in" onClick={() => onShowLatest(true)}>
{latestAuthors.slice(0, 3).map(p => {
return <ProfileImage pubkey={p} showUsername={false} link={""} />;
})}
<FormattedMessage
defaultMessage="{n} new {n, plural, =1 {note} other {notes}}"
values={{ n: latestFeed.length }}
/>
<Icon name="arrowUp" />
</div>
)}
</>
);
)}
{mainFeed.map(a => (
<Note data={a as TaggedNostrEvent} related={relatedFeed(a.id)} key={a.id} depth={0} />
))}
<div className="flex f-center p">
<AsyncButton
onClick={async () => {
await FollowsFeed.loadMore(system, login, sortedFeed[sortedFeed.length - 1].created_at);
}}>
<FormattedMessage defaultMessage="Load more" />
</AsyncButton>
</div>
</>
);
};
export default TimelineFollows;

View File

@ -33,7 +33,7 @@ export function useEventFeed(link: NostrLink) {
export function useEventsFeed(id: string, links: Array<NostrLink>) {
const sub = useMemo(() => {
const b = new RequestBuilder(`events:${id}`);
for(const l of links) {
for (const l of links) {
if (l.type === NostrPrefix.Address) {
const f = b.withFilter().tag("d", [l.id]);
if (l.author) {

View File

@ -28,7 +28,7 @@ export default function useLoginFeed() {
useRefreshFeedCache(Notifications, true);
useRefreshFeedCache(FollowsFeed, true);
if(publisher?.supports("nip44")) {
if (publisher?.supports("nip44")) {
useRefreshFeedCache(GiftsCache, true);
}
@ -78,7 +78,7 @@ export default function useLoginFeed() {
}
const pTags = contactList.tags.filter(a => a[0] === "p").map(a => a[1]);
setFollows(login, pTags, contactList.created_at * 1000);
FollowsFeed.backFillIfMissing(System, pTags);
}

View File

@ -7,46 +7,46 @@ import { RefreshFeedCache } from "Cache/RefreshFeedCache";
import useLogin from "./useLogin";
export function useRefreshFeedCache<T>(c: RefreshFeedCache<T>, leaveOpen = false) {
const system = useContext(SnortContext);
const login = useLogin();
const system = useContext(SnortContext);
const login = useLogin();
const sub = useMemo(() => {
if (login) {
const rb = new RequestBuilder(`using-${c.name}`);
rb.withOptions({
leaveOpen
})
c.buildSub(login, rb);
return rb;
}
return undefined;
}, [login]);
const sub = useMemo(() => {
if (login) {
const rb = new RequestBuilder(`using-${c.name}`);
rb.withOptions({
leaveOpen,
});
c.buildSub(login, rb);
return rb;
}
return undefined;
}, [login]);
useEffect(() => {
if (sub) {
const q = system.Query(NoopStore, sub);
let t: ReturnType<typeof setTimeout> | undefined;
let tBuf: Array<TaggedNostrEvent> = [];
const releaseOnEvent = q.feed.onEvent(evs => {
if (!t) {
tBuf = [...evs];
t = setTimeout(() => {
t = undefined;
c.onEvent(tBuf, unwrap(login.publisher));
}, 100);
} else {
tBuf.push(...evs);
}
})
q.uncancel();
return () => {
q.cancel();
q.sendClose();
releaseOnEvent();
};
useEffect(() => {
if (sub) {
const q = system.Query(NoopStore, sub);
let t: ReturnType<typeof setTimeout> | undefined;
let tBuf: Array<TaggedNostrEvent> = [];
const releaseOnEvent = q.feed.onEvent(evs => {
if (!t) {
tBuf = [...evs];
t = setTimeout(() => {
t = undefined;
c.onEvent(tBuf, unwrap(login.publisher));
}, 100);
} else {
tBuf.push(...evs);
}
return () => {
// noop
};
}, [sub]);
}
});
q.uncancel();
return () => {
q.cancel();
q.sendClose();
releaseOnEvent();
};
}
return () => {
// noop
};
}, [sub]);
}

View File

@ -148,7 +148,14 @@ function ProfileDmActions({ id }: { id: string }) {
<Avatar pubkey={pubkey} user={profile} size={210} />
<h2>{getDisplayName(profile, pubkey)}</h2>
<p>
<Text id={pubkey} content={truncAbout(profile?.about) ?? ""} tags={[]} creator={pubkey} disableMedia={true} depth={0} />
<Text
id={pubkey}
content={truncAbout(profile?.about) ?? ""}
tags={[]}
creator={pubkey}
disableMedia={true}
depth={0}
/>
</p>
<div className="settings-row" onClick={() => (blocked ? unblock(pubkey) : block(pubkey))}>

View File

@ -50,4 +50,4 @@
.notification-group .content img {
width: unset;
max-height: 300px; /* Cap images in notifications to 300px height */
}
}

View File

@ -229,14 +229,18 @@ function NotificationContext({ link }: { link: NostrLink }) {
const { data: ev } = useEventFeed(link);
const navigate = useNavigate();
return ev && <Text
id={ev.id}
content={ev.content}
tags={ev.tags}
creator={ev.pubkey}
truncate={120}
disableLinkPreview={true}
className="content"
onClick={() => navigate(`/${link.encode()}`)}
/>
return (
ev && (
<Text
id={ev.id}
content={ev.content}
tags={ev.tags}
creator={ev.pubkey}
truncate={120}
disableLinkPreview={true}
className="content"
onClick={() => navigate(`/${link.encode()}`)}
/>
)
);
}

View File

@ -307,7 +307,15 @@ export default function ProfilePage() {
return (
aboutText.length > 0 && (
<div dir="auto" className="about">
<Text id={id} content={aboutText} tags={[]} creator={id} disableMedia={true} disableLinkPreview={true} disableMediaSpotlight={true} />
<Text
id={id}
content={aboutText}
tags={[]}
creator={id}
disableMedia={true}
disableLinkPreview={true}
disableMediaSpotlight={true}
/>
</div>
)
);

View File

@ -80,10 +80,7 @@ async function initSite() {
}
try {
if ("registerProtocolHandler" in window.navigator) {
window.navigator.registerProtocolHandler(
"web+nostr",
`${window.location.protocol}//${window.location.host}/%s`
);
window.navigator.registerProtocolHandler("web+nostr", `${window.location.protocol}//${window.location.host}/%s`);
console.info("Registered protocol handler for 'web+nostr'");
}
} catch (e) {
@ -100,7 +97,7 @@ export const router = createBrowserRouter([
loader: async () => {
if (!didInit) {
didInit = true;
return await initSite()
return await initSite();
}
return null;
},

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -1,19 +1,19 @@
{
"+D82kt": "Sind Sie sicher, dass Sie {id} teilen möchten?",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+PzQ9Y": "Jetzt auszahlen",
"+Vxixo": "Geheimer Gruppenchat",
"+aZY2h": "Zap Typ",
"+vA//S": "Anmeldungen",
"+vIQlC": "Bitte speichern Sie dieses Passwort, um in der Zukunft Ihren Benutzernamen verwalten zu können",
"+vVZ/G": "Verbinden",
"+xliwN": "{name} reposted",
"+xliwN": "{name} hat gerepostet",
"/4tOwT": "Überspringen",
"/JE/X+": "Konto Hilfe",
"/PCavi": "Öffentlich",
"/RD0e2": "Nostr benutzt digitale Signaturen um manipulationssichere Notizen zu erstellen, welche sicher auf mehreren Relais repliziert werden um Redundanz für Ihre Inhalte sicher zu stellen.",
"/d6vEc": "Machen Sie Ihr Profil einfacher auffind- und teilbar",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"00LcfG": "Mehr laden",
"08zn6O": "Schlüssel exportieren",
"0Azlrb": "Verwalten",
"0BUTMv": "Suche...",
@ -22,7 +22,7 @@
"0yO7wF": "{n} Sek.",
"1A7TZk": "Was ist Snort und wie funktioniert es?",
"1Mo59U": "Sind sie sicher, dass sie diesen Beitrag aus Ihren Lesezeichen entfernen möchten?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1R43+L": "Nostr Wallet Connect Konfiguration eingeben",
"1c4YST": "Verbunden mit: {node}🎉",
"1iQ8GN": "Vorschau ein/aus",
"1nYUGC": "{n} folgen",
@ -45,7 +45,7 @@
"450Fty": "Keine",
"47FYwb": "Abbrechen",
"4IPzdn": "Primäre Entwickler",
"4L2vUY": "Ihr neuer NIP-05 Name ist:",
"4L2vUY": "Dein neuer NIP-05 Name ist:",
"4OB335": "Gefällt nicht",
"4Vmpt4": "Nostr Plebs ist einer der ersten NIP-05 Anbieter und bietet eine gute Auswahl von Domains zu fairen Preisen",
"4Z3t5i": "Benutzen Sie imgproxy um Bilder zu komprimieren",
@ -54,9 +54,9 @@
"5oTnfy": "Handle kaufen",
"5rOdPG": "Sobald Sie Ihre Schlüssel-Manager-Erweiterung eingerichtet haben und einen Schlüssel generiert haben, können Sie unserem neuen Setup Prozess folgen, um Ihr Profil einzurichten und ein paar interessante Profile zu entdecken.",
"5u6iEc": "An öffentlichen Schlüssel übertragen",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5vMmmR": "Benutzernamen sind auf Nostr nicht einzigartig. Die Nostr-Adresse ist deine eindeutige, menschenlesbare Adresse, die dir bei der Registrierung eindeutig zugeordnet ist.",
"5ykRmX": "Zap senden",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"65BmHb": "Bild von {host} konnte nicht übertragen werden, klicke hier, um es direkt zu laden",
"6Yfvvp": "Bekomme eine Identifikation",
"6ewQqw": "Gefällt ({n})",
"6uMqL1": "Nicht bezahlt",
@ -77,7 +77,7 @@
"9pMqYs": "Nostr Adresse",
"9wO4wJ": "Lightning Zahlungsanforderung",
"ADmfQT": "Vorherige",
"AGNz71": "Zap All {n} sats",
"AGNz71": "Zap {n} sats an Alle",
"ASRK0S": "Dieser Autor wurde stummgeschalten",
"Adk34V": "Profil erstellen",
"Ai8VHU": "Unbegrenzte Note Speicherung auf Snort Relais",
@ -94,9 +94,9 @@
"BcGMo+": "Notizen enthalten Text, der meistgenutzte Anwendungsfall sind \"Tweet ähnliche\" Nachrichten.",
"C5xzTC": "Premium",
"C81/uG": "Abmelden",
"C8HhVE": "Suggested Follows",
"C8HhVE": "Vorgeschlagene Follows",
"CHTbO3": "Lightning Zahlungsanforderung konnte nicht geladen werden",
"CVWeJ6": "Trending People",
"CVWeJ6": "Angesagte Personen",
"CmZ9ls": "{n} Stummgeschaltet",
"CsCUYo": "{n} sats",
"Cu/K85": "Übersetzt von {lang}",
@ -108,11 +108,11 @@
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transferieren",
"E8a4yq": "Folgen Sie einigen beliebten Konten",
"ELbg9p": "Data Providers",
"ELbg9p": "Datenanbieter",
"EPYwm7": "Ihr Privatschlüssel ist ihr Passwort. Falls Sie Ihn verlieren, werden Sie den Zugriff zu Ihrem Konto verlieren! Bewahren Sie ihn an einem sicheren Ort auf. Es gibt keine Wiederherstellungsmöglichkeit für Ihren Privatschlüssel.",
"EWyQH5": "Global",
"Ebl/B2": "Auf {lang} Übersetzen",
"EcZF24": "Custom Relays",
"EcZF24": "Benutzerdefinierte Relays",
"EcglP9": "Schlüssel",
"EnCOBJ": "Kaufen",
"Eqjl5K": "Nur Snort und unsere integrierten Partner bieten farbige Domainnamen als NIP-05 Kennzeichen. Sie können aber auch gerne andere Dienste nutzen.",
@ -121,7 +121,7 @@
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL zum Weiterleiten der Zaps",
"FS3b54": "Feritg!",
"FSYL8G": "Trending Users",
"FSYL8G": "Angesagte Benutzer",
"FdhSU2": "Jetzt abholen",
"FfYsOb": "Ein Fehler ist aufgetreten!",
"FmXUJg": "Folgt Ihnen",
@ -129,7 +129,7 @@
"G1BGCg": "Wallet auswählen",
"GFOoEE": "Salt",
"GL8aXW": "Lesezeichen ({n})",
"GSye7T": "Lightning Address",
"GSye7T": "Lightning-Adresse",
"GUlSVG": "Beanspruche deine enthaltene Snort Nostr Adresse",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Gefällt nicht",
@ -137,24 +137,24 @@
"H0JBH6": "Abmelden",
"H6/kLh": "Bestellung bezahlt!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HF4YnO": "Live anschauen!",
"HFls6j": "Name wird später verfügbar sein",
"HOzFdo": "Stummgeschaltet",
"HWbkEK": "Clear cache and reload",
"HWbkEK": "Cache leeren und neu laden",
"HbefNb": "Wallet öffnen",
"IDjHJ6": "Danke für die Verwendung von Snort. Wir würden uns über eine Spende freuen.",
"IEwZvs": "Sind sie sicher, dass sie diese Notiz entpinnen möchten?",
"IKKHqV": "Follows",
"IKKHqV": "Folgt",
"INSqIz": "Twitter Benuzername...",
"IUZC+0": "Das bedeutet, dass niemand Ihre Notizen ändern kann, und jeder kann leicht überprüfen ob die Notizen die er liest wirklich von Ihnen erstellt wurden",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"Ig9/a1": "Sende {n} sats an {name}",
"Ix8l+B": "Angesagte Notes",
"J+dIsA": "Abonnements",
"JCIgkj": "Benutzername",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JPFYIM": "Keine Lightning-Adresse",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JjGgXI": "Nutzer suchen",
"JkLHGw": "Webseite",
"JymXbw": "Privater Schlüssel",
"K3r6DQ": "Löschen",
@ -164,12 +164,12 @@
"KQvWvD": "Gelöscht",
"KWuDfz": "Ich habe meine Schlüssel gesichert, fortsetzen",
"KahimY": "Unbekannte Event Art: {kind}",
"KoFlZg": "Enter mint URL",
"KoFlZg": "Mint-URL eingeben",
"LF5kYT": "Weitere Verbindungen",
"LXxsbk": "Anonym",
"LgbKvU": "Kommentieren",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"Lu5/Bj": "In Zapstr öffnen",
"Lw+I+J": "{n,plural,=0{{name} zappte} other{{name} & {n} andere zappten}}",
"M3Oirc": "Debug Menüs",
"MBAYRO": "Zeigt \"ID kopieren\" und \"Event JSON kopieren\" im Kontextmenu jeder Nachricht an",
"MI2jkA": "Nicht verfügbar:",
@ -177,16 +177,16 @@
"MRp6Ly": "Twitter Benutzername",
"MWTx65": "Standardseite",
"Mrpkot": "Abonnement bezahlen",
"MuVeKe": "Buy nostr address",
"MzRYWH": "{item} Kaufen",
"MuVeKe": "Nostr-Adresse kaufen",
"MzRYWH": "{item} kaufen",
"N2IrpM": "Bestätigen",
"NAuFNH": "Du hast bereits ein Abonnement dieser Art, bitte erneuern oder bezahlen",
"NNSu3d": "Importiere Folgende von Twitter",
"NdOYJJ": "Hmm, nichts da.. Schau auf {newUsersPage} um einigen empfohlen Nostrichs zu folgen!",
"NepkXH": "Kann nicht mit {amount} sats abstimmen. Bitte einen anderen Standard-Zap-Betrag festlegen",
"NfNk2V": "Ihr Privatschlüssel",
"NfNk2V": "Dein privater Schlüssel",
"NndBJE": "Neue Benutzer Seite",
"O9GTIc": "Profile picture",
"O9GTIc": "Profilbild",
"OEW7yJ": "Zaps",
"OKhRC6": "Teilen",
"OLEm6z": "Unbekannter Anmeldefehler",
@ -202,45 +202,45 @@
"Pe0ogR": "Erscheinungsbild",
"PrsIg7": "Reaktionen werden auf jeder Seite angezeigt, wenn Reaktionen deaktiviert sind, werden sie nicht angezeigt",
"QDFTjG": "{n} Relais",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QWhotP": "Zap Pool funktioniert nur, wenn du eine der unterstützten Wallet-Verbindungen verwenden (WebLN, LNC, LNDHub oder Nostr Wallet Connect)",
"QawghE": "Sie können Ihren Benutzernamen jederzeit ändern.",
"QxCuTo": "Kunst von {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"Qxv0B2": "Du hast aktuell {number} sats in deinem Zap Pool.",
"R/6nsx": "Abonnement",
"R1fEdZ": "Zaps weiterleiten",
"R81upa": "People you follow",
"R81upa": "Personen, denen du folgst",
"RDZVQL": "Prüfen",
"RahCRH": "Abgelaufen",
"RfhLwC": "Von: {author}",
"RhDAoS": "Sind sie sicher, dass sie {id} löschen möchten?",
"RjpoYG": "Recent",
"RjpoYG": "Neueste",
"RoOyAh": "Relais",
"Rs4kCE": "Lesezeichen",
"RwFaYs": "Sort",
"RwFaYs": "Sortieren",
"SOqbe9": "Lightning Adresse aktualisieren",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SP0+yi": "Abonnement kaufen",
"SX58hM": "Kopieren",
"SYQtZ7": "LN Adresse Proxy",
"ShdEie": "Mark all read",
"ShdEie": "Alle als gelesen markieren",
"Sjo1P4": "Benutzerdefiniert",
"Ss0sWu": "Jetzt bezahlen",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TDR5ge": "Medien in Notes werden für ausgewählte Personen automatisch angezeigt, ansonsten wird nur der Link angezeigt",
"TMfYfY": "Cashu Token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"Tpy00S": "Personen",
"UDYlxu": "Ausstehende Abonnements",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"ULotH9": "Betrag: {amount} sats",
"UT7Nkj": "Neuer Chat",
"UUPFlt": "Nutzer müssen die Inhaltswarnung akzeptieren, um den Inhalt Ihres Beitrags anzuzeigen.",
"Up5U7K": "Blockieren",
"VBadwB": "Hmm, es konnte keine Schlüssel-Manager-Erweiterung gefunden werden. Versuchen Sie, die Seite neu zu laden.",
"VN0+Fz": "Guthaben: {amount} Sats",
"VOjC1i": "Wählen Sie einen Upload-Dienst für Ihre Anhänge",
"VOjC1i": "Wähle einen Upload-Dienst für deine Anhänge",
"VR5eHw": "Öffentlicher Schlüssel (npub/nprofile)",
"VlJkSk": "{n} stummgeschaltet",
"VnXp8Z": "Profilbild",
"VtPV/B": "Mit Erweiterung anmelden (NIP-07)",
"VvaJst": "View Wallets",
"VvaJst": "Wallets anzeigen",
"Vx7Zm2": "Wie funktionieren Schlüssel?",
"W1yoZY": "Es sieht so aus, als hättest du keine Abonnements. Hier kannst du eines erhalten {link}",
"W2PiAr": "{n} Blockiert",
@ -248,10 +248,10 @@
"WONP5O": "Finden Sie Ihre Twitter Kontakte auf Nostr (Daten zur Verfügung gestellt von {provider})",
"WxthCV": "z.B. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XICsE8": "Datei-Hosts",
"XgWvGA": "Reaktionen",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"Xopqkl": "Dein standardmäßiger Zap-Betrag ist {number} sats, Beispielwerte werden daraus berechnet.",
"XrSk2j": "Einlösen",
"XzF0aC": "Schlüssel-Manager-Erweiterungen sind sicherer und erlauben es Ihnen, sich ganz einfach bei jedem Nostr-Client anzumelden. Hier sind einige bekannte Erweiterungen:",
"Y31HTH": "Unterstütze die Entwicklung von Snort",
"YDURw6": "URL des Dienstes",
@ -261,9 +261,9 @@
"ZKORll": "Jetzt aktivieren",
"ZLmyG9": "Mitwirkende",
"ZUZedV": "Lightning Spende:",
"Zr5TMx": "Setup profile",
"Zr5TMx": "Profil einrichten",
"a5UPxh": "Finanzieren Sie Entwickler und Plattformen, die NIP-05-Verifizierungsdienste anbieten",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"a7TDNm": "Notes werden in Echtzeit in Global- und Notes-Tab gestreamt",
"aWpBzj": "Mehr anzeigen",
"b12Goz": "Mnemonik",
"b5vAk0": "Dein Handle ist wie eine Lightning-Adresse leitet dich zu deiner gewählten LNURL oder Lightning-Adresse weiter",
@ -274,8 +274,8 @@
"bxv59V": "Gerade eben",
"c+oiJe": "Erweiterung installieren",
"c35bj2": "Wenn Sie eine Frage zu Ihrer NIP-05-Bestellung haben, wenden Sie sich bitte per Direktnachricht an {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"c3g2hL": "Erneut verbreiten",
"cFbU1B": "Du benutzt Alby? Gehe zu {link} um deine NWC Konfiguration zu erhalten!",
"cPIKU2": "Folge ich",
"cQfLWb": "URL..",
"cWx9t8": "Alle stummschalten",
@ -290,8 +290,8 @@
"e7qqly": "Alle als gelesen markieren",
"eHAneD": "Reaktions-Emoji",
"eJj8HD": "Verifiziert werden",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"eSzf2G": "Ein einzelner Zap von {nIn} sats wird {nOut} sats dem Zap Pool zuweisen.",
"eXT2QQ": "Gruppenchat",
"fBI91o": "Zap",
"fOksnD": "Abstimmung nicht möglich, da der LNURL-Dienst keine Zaps unterstützt",
"fWZYP5": "Angeheftet",
@ -300,13 +300,13 @@
"fsB/4p": "Gespeichert",
"g5pX+a": "Über uns",
"g985Wp": "Fehler beim Senden der Bewertung",
"gBdUXk": "Speichern Sie Ihre Schlüssel!",
"gBdUXk": "Speicher deine Schlüssel!",
"gDZkld": "Snort ist eine Nostr Benutzeroberfläche, Nostr ist ein dezentralisiertes Protokoll zur Distribution von \"Notizen\" (Text).",
"gDzDRs": "Emoji, das gesendet werden soll, wenn auf eine Notiz reagiert wird",
"gXgY3+": "Nicht alle Clients unterstützen das",
"gczcC5": "Abonnieren",
"gjBiyj": "Lädt...",
"grQ+mI": "Proof of Work",
"grQ+mI": "Arbeitsnachweis",
"h8XMJL": "Auszeichnungen",
"hK5ZDk": "Die Welt",
"hMzcSq": "Nachrichten",
@ -318,7 +318,7 @@
"iCqGww": "Reaktionen ({n})",
"iDGAbc": "Holen dir einen Snort Identifikator",
"iEoXYx": "DeepL Übersetzungen",
"iGT1eE": "Verhindern Sie, dass gefälschte Konten Sie imitieren",
"iGT1eE": "Verhindere, dass gefälschte Konten dich imitieren",
"iNWbVV": "Name",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Anmeldung mit privatem Schlüssel bei einer unsicheren Verbindung nicht möglich, bitte verwenden Sie stattdessen eine Nostr Schlüssel Manager Erweiterung",
@ -329,14 +329,14 @@
"jCA7Cw": "Vorschau auf Snort",
"jMzO1S": "Interner Fehler: {msg}",
"jfV8Wr": "Zurück",
"juhqvW": "Verbessern Sie die Anmeldesicherheit mit Browsererweiterungen",
"juhqvW": "Verbessere die Anmeldesicherheit mit Browsererweiterungen",
"jvo0vs": "Speichern",
"jzgQ2z": "{n} Reaktionen",
"k2veDA": "Schreiben",
"k7sKNy": "Unser eigener NIP-05-Verifizierungsdienst unterstützt die Entwicklung dieser Website und gibt Ihnen ein glänzendes Sonderabzeichen auf unserer Webseite!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kJYo0u": "{n,plural,=0{{name} hat gerepostet} other{{name} & {n} andere haben gerepostet}}",
"kaaf1E": "jetzt",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"kuPHYE": "{n,plural,=0{{name} gefällt das} other{{name} & {n} anderen gefällt das}}",
"l+ikU1": "Alles im {plan}",
"lBboHo": "Wenn du ein paar andere ausprobieren möchtest, besuche {link} für mehr!",
"lCILNz": "Jetzt kaufen",
@ -353,25 +353,25 @@
"mKAr6h": "Allen folgen",
"mKh2HS": "Datei-Upload-Dienst",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mTJFgF": "Beliebt",
"mfe8RW": "Option: {n}",
"n1Whvj": "Wechseln",
"nDejmx": "Freigeben",
"nGBrvw": "Lesezeichen",
"nN9XTz": "Teilen Sie Ihre Gedanken mit {link}",
"nN9XTz": "Teile deine Gedanken mit {link}",
"nOaArs": "Profil einrichten",
"nWQFic": "Erneuern",
"nn1qb3": "Ihre Spenden werden sehr geschätzt",
"nn1qb3": "Deine Spenden werden sehr geschätzt",
"nwZXeh": "{n} blockiert",
"o6Uy3d": "Nur der Privatschlüssel kann genutzt werden um zu veröffentlichen (Events signieren), alles andere wird im schreibgeschützten Modus geladen.",
"o7e+nJ": "{n} Abonnenten",
"oJ+JJN": "Keine Treffer :/",
"odFwjL": "Nur für Folgende",
"odhABf": "Anmelden",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "Sie können diese Erweiterungen auch verwenden, um sich bei den meisten Nostr-Webseiten anzumelden.",
"ojzbwv": "Hey, es sieht so aus, als hättest du noch keine Nostr-Adresse, du solltest eine anlegen! Sieh dir {link} mal an",
"osUr8O": "Du kannst diese Erweiterungen auch verwenden, um dich bei den meisten Nostr-Webseiten anzumelden.",
"oxCa4R": "Das Erhalten eines Identifikators hilft Menschen, die Sie kennen, Ihre Identität zu bestätigen. Viele Leute können einen Benutzernamen wie @jack haben, aber es kann nur einen jack@cash.app geben.",
"p4N05H": "Upload",
"p4N05H": "Hochladen",
"p85Uwy": "Aktive Abonnements",
"pI+77w": "Herunterladbare Backups von Snort Relais",
"puLNUJ": "Pin",
@ -383,7 +383,7 @@
"qdGuQo": "Dein privater Schlüssel ist (Teile diesen mit niemanden!)",
"qkvYUb": "Zum Profil hinzufügen",
"qmJ8kD": "Übersetzung fehlgeschlagen",
"qtWLmt": "Like",
"qtWLmt": "Gefällt mir",
"r3C4x/": "Software",
"r5srDR": "Brieftaschen-Passwort eingeben",
"rT14Ow": "Relais hinzufügen",
@ -395,23 +395,23 @@
"sWnYKw": "Snort wurde darauf konzipiert ein Twitter ähnliches Erlebnis zu bieten.",
"svOoEH": "Namesquatting und Nachahmung sind nicht erlaubt. Snort und unsere Partner behalten sich das Recht vor, Ihren Identifikator (nicht Ihr Konto, niemand kann Ihnen das wegnehmen) wegen Verstoßes gegen diese Regel zu kündigen.",
"tOdNiY": "Dunkel",
"th5lxp": "Send note to a subset of your write relays",
"th5lxp": "Sende Note zu einer Untergruppe deiner Schreib-Relays",
"thnRpU": "Eine NIP-05 Verifizierung kann helfen:",
"ttxS0b": "Unterstützer Abzeichen",
"u/vOPu": "Bezahlt",
"u4bHcR": "Sehen Sie sich den Code hier an: {link}",
"u4bHcR": "Sieh dir hier den Code an: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts müssen manuell bestätigt werden",
"usAvMr": "Profil anpassen",
"ut+2Cd": "Holen Sie sich einen Partner-Identifikator",
"v8lolG": "Start chat",
"v8lolG": "Chat starten",
"vOKedj": "{n,plural,one {}=1{& {n} other} other{& {n} andere}}",
"vU71Ez": "Bezahlen mit {wallet}",
"vZ4quW": "NIP-05 ist eine DNS-basierte Verifizierungsspezifikation, die dabei hilft, Sie als echten Benutzer zu validieren.",
"vZ4quW": "NIP-05 ist eine DNS-basierte Verifizierungsspezifikation, die dabei hilft, dich als echten Benutzer zu validieren.",
"vhlWFg": "Umfrageoptionen",
"vlbWtt": "Get a free one",
"vlbWtt": "Erhalte eine kostenlos",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"vxwnbh": "Maß an Arbeit, die auf alle veröffentlichte Events angewendet werden soll",
"wEQDC6": "Anpassen",
"wLtRCF": "Dein Schlüssel",
"wWLwvh": "Anon",
@ -419,14 +419,14 @@
"wih7iJ": "Name ist blockiert",
"wqyN/i": "Erfahren Sie mehr über {service} auf {link}",
"wtLjP6": "ID kopieren",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/Fx2P": "Unterstützen Sie die von Ihnen genutzten Dienste, indem Sie einen Teil Ihrer Zaps in einen Pool von Geldern aufteilen!",
"x/q8d5": "Dieser Beitrag wurde als sensibel markiert, klicken Sie hier um den Inhalt zu zeigen",
"x82IOl": "Stummschalten",
"xIoGG9": "Gehe zu",
"xJ9n2N": "Dein öffentlicher Schlüssel",
"xKflGN": "{username}''s folgt auf Nostr",
"xQtL3v": "Entsperren",
"xaj9Ba": "Provider",
"xaj9Ba": "Anbieter",
"xbVgIm": "Medien automatisch laden",
"xhQMeQ": "Ablaufdatum",
"xmcVZ0": "Suche",
@ -436,8 +436,8 @@
"zFegDD": "Kontakt",
"zINlao": "Eigentümer",
"zQvVDJ": "Alle",
"zcaOTs": "Zap Betrag in sats",
"zjJZBd": "Sie sind bereit!",
"zcaOTs": "Zap Betrag in Sats",
"zjJZBd": "Du bist bereit!",
"zonsdq": "Fehler beim Laden des LNURL-Dienstes",
"zvCDao": "Neueste Beiträge automatisch anzeigen"
}

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -1,19 +1,19 @@
{
"+D82kt": "مطمئنید می خواهید بازنشر کنید: {id}",
"+PzQ9Y": "اکنون بپردازید",
"+Vxixo": "Secret Group Chat",
"+Vxixo": "گپ گروهی خصوصی",
"+aZY2h": "نوع زپ",
"+vA//S": "ورود",
"+vIQlC": "لطفا از ذخیره پسورد روبرو به منظور مدیرت شناسه کاربریتان در آینده اطمینان حاصل کنید",
"+vVZ/G": "وصل شدن",
"+xliwN": "{name} reposted",
"+xliwN": "{name} بازنشر کرد",
"/4tOwT": "رد کردن",
"/JE/X+": "پشتیبانی حساب کاربری",
"/PCavi": "عمومی",
"/RD0e2": "ناستر از تکنولوژی امضای دیجیتال برای فراهم نمودن یادداشت های غیرقابل دستکاری استفاده می کند که می تواند به طور امن در رله های زیادی تکرار شود تا انبار اضافی برای محتوایتان تامین کند.",
"/d6vEc": "یافتن و اشتراک گذاری نمایه خود را آسان تر کنید",
"/n5KSF": "{n} میلی ثانیه",
"00LcfG": "Load more",
"00LcfG": "بارگیری بیشتر",
"08zn6O": "استخراج کلید",
"0Azlrb": "مدیریت",
"0BUTMv": "جستجو...",
@ -54,7 +54,7 @@
"5oTnfy": "خرید شناسه",
"5rOdPG": "هنگامی که افزونه مدیریت کلید خود را راه‌اندازی کنید و یک کلید بسازید،می توانید روند کاربر جدید را پی بگیرید تا نمایه خود را راه بیندازید، و نیز به شما کمک می کند تا افراد مورد علاقه تان را در ناستر برای دنبال کردن بیابید.",
"5u6iEc": "انتقال به کلید عمومی",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5vMmmR": "نام کاربری در ناستر یکتا نیست. آدرس ناستر، آدرس یکتای قابل خواندن توسط انسان است که پس از ثبت مختص شما است.",
"5ykRmX": "ارسال زپ",
"65BmHb": "تصویر از {host} آورده نشد، اینجا کلیک کنید تا مستقیم بارگیری شود",
"6Yfvvp": "یک شناسه بگیرید",
@ -121,7 +121,7 @@
"FDguSC": "{n} زپ",
"FP+D3H": "LNURL برای فرستادن زپ به",
"FS3b54": "انجام شد!",
"FSYL8G": "Trending Users",
"FSYL8G": "پسند کاربران",
"FdhSU2": "حالا برداشت کن",
"FfYsOb": "خطایی رخ داده است!",
"FmXUJg": "شما را دنبال می کند",
@ -129,7 +129,7 @@
"G1BGCg": "انتخاب کیف پول",
"GFOoEE": "نمک",
"GL8aXW": "نشانک ها ({n})",
"GSye7T": "Lightning Address",
"GSye7T": "آدرس لایتنینگ",
"GUlSVG": "آدرس ناستر شامل اسنورت خود را بردارید",
"Gcn9NQ": "لینک مگنت",
"GspYR7": "{n} ناپسند",
@ -137,14 +137,14 @@
"H0JBH6": "خروج",
"H6/kLh": "سفارش پرداخت شده!",
"HAlOn1": "نام",
"HF4YnO": "Watch Live!",
"HF4YnO": "تماشای زنده!",
"HFls6j": "نام در دسترس خواهد بود",
"HOzFdo": "بيصدا شده",
"HWbkEK": "پاک کردن حافظه کش و بارگیری مجدد",
"HbefNb": "باز کردن کیف پول",
"IDjHJ6": "برای استفاده از اسنورت سپاسگذاریم، لطفا در صورت امکان کمک مالی بفرمایید.",
"IEwZvs": "مطمئنید می خواهید سنجاق یادداشت را بردارید؟",
"IKKHqV": "Follows",
"IKKHqV": "دنبال شوندگان",
"INSqIz": "نام کاربری توییتر...",
"IUZC+0": "این بدان معنی است که هیچ کس نمی تواند یادداشتی که ایجاد کرده اید را تغییر دهد و همه می توانند به آسانی تایید کنند که یادداشت هایی که می خوانند توسط شما ایجاد شده اند.",
"Ig9/a1": "{n} ساتوشی به {name} فرستاده شد",
@ -153,8 +153,8 @@
"JCIgkj": "نام کاربری",
"JHEHCk": "زپ ({n})",
"JPFYIM": "آدرس لایتنینگی وجود ندارد",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JeoS4y": "بازنشر",
"JjGgXI": "جستجوی کاربران",
"JkLHGw": "وب سایت",
"JymXbw": "کلید خصوصی",
"K3r6DQ": "حذف",
@ -169,7 +169,7 @@
"LXxsbk": "ناشناس",
"LgbKvU": "نظر",
"Lu5/Bj": "در Zapstr بازکنید",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"Lw+I+J": "{n,plural,one {}=0{{name} زپ زد} other {{{name} و {n} نفر دیگر زپ زدند}}",
"M3Oirc": "منو اشکال زدایی",
"MBAYRO": "\"کپی شناسه\" و \"کپی JSON رویداد\" را در منو زمینه هر پیام نشان می دهد",
"MI2jkA": "در دسترس نیست:",
@ -177,7 +177,7 @@
"MRp6Ly": "نام کاربری توییتر",
"MWTx65": "صفحه پیش‌فرض",
"Mrpkot": "پرداخت برای اشتراک",
"MuVeKe": "Buy nostr address",
"MuVeKe": "خرید آدرس ناستر",
"MzRYWH": "خرید {item}",
"N2IrpM": "تایید",
"NAuFNH": "درحال حاضر یک اشتراک از این نوع دارید، لطفا تجدید کنید یا بپردازید",
@ -208,7 +208,7 @@
"Qxv0B2": "در حال حاضر {number} ساتوشی در استخر زپ خود دارید.",
"R/6nsx": "اشتراک",
"R1fEdZ": "انتقال زپ",
"R81upa": "People you follow",
"R81upa": "کسانی که دنبال می کنید",
"RDZVQL": "بررسی",
"RahCRH": "منقضی شده",
"RfhLwC": "توسط: {author}",
@ -221,7 +221,7 @@
"SP0+yi": "خرید اشتراک",
"SX58hM": "کپی",
"SYQtZ7": "پروکسی آدرس لایتنینگ",
"ShdEie": "Mark all read",
"ShdEie": "علامت‌گذاری همه به‌ عنوان خوانده شده",
"Sjo1P4": "سفارشی سازی",
"Ss0sWu": "همین الان پرداخت کنید",
"TDR5ge": "رسانه درون یادداشت به طور خودکار برای افراد منتخب نمایش داده می شود، وگرنه فقط لینک نشان داده می شود",
@ -230,7 +230,7 @@
"Tpy00S": "افراد",
"UDYlxu": "اشتراک معطل",
"ULotH9": "مبلغ: {amount} ساتوشی",
"UT7Nkj": "New Chat",
"UT7Nkj": "گپ جدید",
"UUPFlt": "کاربر باید هشدار محتوا را بپذیرد تا محتوای یادداشت نمایش داده شود.",
"Up5U7K": "مسدود کردن",
"VBadwB": "همم، نمی توان افزونه ای برای مدیریت کلید یافت.. بارگیری دوباره صفحه را امتحان کنید.",
@ -240,7 +240,7 @@
"VlJkSk": "{n} بیصدا شده",
"VnXp8Z": "آواتار",
"VtPV/B": "ورود با افزونه (NIP-07)",
"VvaJst": "View Wallets",
"VvaJst": "دیدن کیف پول",
"Vx7Zm2": "کلیدها چگونه کار می کنند؟",
"W1yoZY": "بنظر می رسد اشتراک ندارید، می توانید یکی تهیه کنید {link}",
"W2PiAr": "{n} مسدود",
@ -269,7 +269,7 @@
"b5vAk0": "شناسه شما به عنوان آدرس لایتنینگ عمل نموده و به LNURL انتخابی و آدرس لایتنینگ ارجاع خواهد داد",
"bQdA2k": "محتوای حساس",
"bep9C3": "کلید عمومی",
"bfvyfs": "Anon",
"bfvyfs": "ناشناس",
"brAXSu": "یک نام کاربری برگزینید",
"bxv59V": "همین الان",
"c+oiJe": "نصب افزونه",
@ -291,8 +291,8 @@
"eHAneD": "شکلک واکنش",
"eJj8HD": "تایید کن",
"eSzf2G": "یک زپ تک {nIn} ساتوشی مبلغ {nOut} ساتوشی به استخر زپ تخصیص خواهد داد.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"eXT2QQ": "گپ گروهی",
"fBI91o": "زَپ",
"fOksnD": "نمی توان رای داد زیرا این خدمات LNURL از زپ پشتیبانی نمی کند",
"fWZYP5": "سنجاق شد",
"filwqD": "خوانده شده",
@ -306,11 +306,11 @@
"gXgY3+": "هنوز همه کلاینت ها از این پشتیبانی نمی کنند",
"gczcC5": "اشتراک",
"gjBiyj": "در حال بارگیری...",
"grQ+mI": "Proof of Work",
"grQ+mI": "اثبات کار",
"h8XMJL": "مدال ها",
"hK5ZDk": "جهان",
"hMzcSq": "پیام‌ها",
"hWSp+B": "Nostr Connect (NIP-46)",
"hWSp+B": "اتصال ناستر (NIP-46)",
"hY4lzx": "پشتیبانی",
"hicxcO": "نمایش پاسخ ها",
"hniz8Z": "اینجا",
@ -334,9 +334,9 @@
"jzgQ2z": "{n} واکنش",
"k2veDA": "نوشتن",
"k7sKNy": "خدمات تایید NIP-05 خودمان، به پشتیبانی از توسعه این سایت کمک کنید و یک مدال ویژه درخشان در سایت ما بگیرید!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kJYo0u": "{n,plural,one {}=0{{name} بازنشر کرد} other{{name} و {n} نفر دیگر بازنشر کردند}}",
"kaaf1E": "الان",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"kuPHYE": "{n,plural,one {}=0{{name} پسندید} other{{name} و {n} نفر دیگر پسندیدند}}",
"l+ikU1": "همه چیز در {plan}",
"lBboHo": "اگر می خواهید آفزونه های پیماینده بیشتری امتحان کنید، {link} را ببینید!",
"lCILNz": "هم اکنون خریداری کنید",
@ -368,10 +368,10 @@
"oJ+JJN": "چیزی پیدا نشد",
"odFwjL": "فقط دنبال شوندگان",
"odhABf": "ورود",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"ojzbwv": "هی، بنظر می رسد هنوز آدرس ناستر ندارید، باید یکی بگیرید! {link} را ببینید",
"osUr8O": "از افزونه ها هم می توانید برا ورود به اکثر کلاینت های ناستر استفاده کنید.",
"oxCa4R": "گرفتن یک شناسه میتواند به تایید هویت شما توسط کسانی که شما می شناسند کمک کند. افراد بسیاری می توانند نام کاربری @jack داشته باشند اما فقط یک jack@cash.app می تواند وجود داشته باشد.",
"p4N05H": "Upload",
"p4N05H": "بارگذاری",
"p85Uwy": "اشتراک فعال",
"pI+77w": "نسخه بازیابی قابل دانلود رله اسنورت",
"puLNUJ": "سنجاق",
@ -383,7 +383,7 @@
"qdGuQo": "کلید خصوصی شما (با هیچ کس درمیان نگذارید)",
"qkvYUb": "افزودن به نمایه",
"qmJ8kD": "ترجمه انجام نشد",
"qtWLmt": "Like",
"qtWLmt": "پسند",
"r3C4x/": "نرم افزار",
"r5srDR": "رمز کیف‌پول را وارد کنید",
"rT14Ow": "افزودن رله",
@ -404,14 +404,14 @@
"uSV4Ti": "بازنشر لازم است به طور دستی تایید شود",
"usAvMr": "ویرایش نمایه",
"ut+2Cd": "یک شناسه از شرکا بگیرید",
"v8lolG": "Start chat",
"v8lolG": "شروع گپ",
"vOKedj": "{n,plural,one {}=1{و {n} دیگر} other{و {n} دیگر}}",
"vU71Ez": "با {wallet} پرداخت کن",
"vZ4quW": "NIP-05 یک ویژگی بر مبنای DNS است که کمک می کند هویت شما به عنوان کاربر تصدیق شود.",
"vhlWFg": "گزینه های نظرسنجی",
"vlbWtt": "Get a free one",
"vlbWtt": "یکی مجانی بگیرید",
"vrTOHJ": "{amount} ساتوشی",
"vxwnbh": "Amount of work to apply to all published events",
"vxwnbh": "مقداری کاری که برای اِعمال همه رویدادهای منتشر شده باید انجام گیرد",
"wEQDC6": "ویرایش",
"wLtRCF": "کلید شما",
"wWLwvh": "ناشناس",

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Haluatko varmasti jakaa uudelleen: {id}",
"+PzQ9Y": "Maksa nyt",
"+Vxixo": "Salainen ryhmäkeskutelu",
"+aZY2h": "Zap tyyppi",
"+vA//S": "Kirjautumiset",
"+vIQlC": "Muista tallentaa seuraava salasana pystyäksesi hallitsemaan käyttäjätunnustasi tulevaisuudessa",
"+vVZ/G": "Yhdistä",
"+xliwN": "{name} jakoi uudelleen",
"/4tOwT": "Ohita",
"/JE/X+": "Tilituki",
"/PCavi": "Julkinen",
"/RD0e2": "Nostr käyttää digitaalista allekirjoitusteknologiaa tarjotakseen väärentämättömiä viestejä, joita voidaan turvallisesti replikoida monille välittäjille tarjoten näin varastointia sisällöllesi.",
"/d6vEc": "Tee profiilistasi helpompi löytää ja jakaa",
"/n5KSF": "{n} ms",
"00LcfG": "Lataa lisää",
"08zn6O": "Vie avaimet",
"0Azlrb": "Hallitse",
"0BUTMv": "Etsi...",
"0jOEtS": "Virheellinen LNURL",
"0mch2Y": "nimi sisältää sallimattomia merkkejä",
"0yO7wF": "{n} sek",
"1A7TZk": "Mikä Snort on ja miten se toimii?",
"1Mo59U": "Haluatko varmasti poistaa tämän viestin kirjanmerkeistä?",
"1R43+L": "Anna Nostr Wallet Connect asetukset",
"1c4YST": "Yhdistetty: {node} 🎉",
"1iQ8GN": "Esikatselun vaihtaminen",
"1nYUGC": "{n} Seuraa",
"1udzha": "Keskustelut",
"2/2yg+": "Lisää",
"25V4l1": "Banneri",
"2IFGap": "Lahjoita",
"2LbrkB": "Anna salasana",
"2a2YiP": "{n} Kirjanmerkit",
"2k0Cv+": "Ei-tykkäyksiä ({n})",
"2ukA4d": "{n} tuntia",
"3Rx6Qo": "Edistynyt",
"3cc4Ct": "Vaalea",
"3gOsZq": "Kääntäjät",
"3qnJlS": "Äänestät {amount} satsilla",
"3t3kok": "{n,plural,=1{{n} uusi viesti} muuta{{n} uutta viestiä}}",
"3tVy+Z": "{n} Seuraajaa",
"3xCwbZ": "TAI",
"3yk8fB": "Lompakko",
"450Fty": "Ei mitään",
"47FYwb": "Peruuta",
"4IPzdn": "Pääkehittäjät",
"4L2vUY": "Uusi NIP-05-käyttäjätunnuksesi on:",
"4OB335": "Ei-tykkäys",
"4Vmpt4": "Nostr Plebs on yksi ensimmäisistä NIP-05-tarjoajista alalla ja tarjoaa kohtuuhintaisia verkkotunnuksia",
"4Z3t5i": "Käytä imgproxya pakataksesi kuvat",
"4rYCjn": "Muistiinpano itselle",
"5JcXdV": "Luo tili",
"5oTnfy": "Osta käyttäjätunnus",
"5rOdPG": "Kun olet määrittänyt avainhallintaohjelman ja generoinut avaimen, voit seurata uusille käyttäjille tarkoitettua opasta määrittääksesi profiilisi ja löytääksesi kiinnostavia henkilöitä seurattavaksi Nostrissa.",
"5u6iEc": "Siirrä julkiselle avaimelle",
"5vMmmR": "Käyttäjänimet eivät ole yksilöllisiä Nostrissa. Nostr-osoite on yksilöllinen ihmisystävällinen osoitteesi, joka on yksilöllinen sinulle rekisteröinnin yhteydessä.",
"5ykRmX": "Lähetä zap",
"65BmHb": "Kuvan välittäminen epäonnistui palvelimelta {host}, napsauta tätä ladataksesi suoraan",
"6Yfvvp": "Hanki tunniste",
"6ewQqw": "Tykkäyksiä ({n})",
"6uMqL1": "Maksamaton",
"7+Domh": "Viestit",
"7BX/yC": "Tilin vaihtaja",
"7hp70g": "NIP-05",
"7xzTiH": "{action} kohteeseen {target}",
"8/vBbP": "Uudelleenjakoja ({n})",
"89q5wc": "Vahvista uudelleenjaot",
"8QDesP": "Zap {n} satsia",
"8g2vyB": "nimi on liian pitkä",
"8v1NN+": "Pariliitoksen lause",
"9+Ddtu": "Seuraava",
"9HU8vw": "Vastaa",
"9SvQep": "Seuraa {n}",
"9WRlF4": "Lähetä",
"9gqH2W": "Kirjaudu sisään",
"9pMqYs": "Nostr-osoite",
"9wO4wJ": "Lightning-lasku",
"ADmfQT": "Vanhempi",
"AGNz71": "Zap kokonaan {n} satsia",
"ASRK0S": "Tämä kirjoittaja on mykistetty",
"Adk34V": "Aseta profiilisi",
"Ai8VHU": "Rajoittamaton viestien säilytys Snort-välittäjällä",
"AkCxS/": "Syy",
"AnLrRC": "Ei-Zap",
"AyGauy": "Kirjaudu sisään",
"B4C47Y": "nimi on liian lyhyt",
"B6+XJy": "zappattu",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Kirjoitusoikeus Snort-välittäjällä, 1 vuoden tapahtumahistorialla",
"BOUMjw": "Nostr-käyttäjiä {twitterUsername} ei löytynyt",
"BOr9z/": "Snort on avoimen lähdekoodin projekti, jota intohimoiset ihmiset tekevät vapaa-ajallaan",
"BWpuKl": "Päivitä",
"BcGMo+": "Viestit sisältävät tekstisisältöä, suosituin käyttötapa näille viesteille on tallentaa \"tweetin kaltaisia\" viestejä.",
"C5xzTC": "Premium",
"C81/uG": "Kirjaudu ulos",
"C8HhVE": "Ehdotettuja seurattavia",
"CHTbO3": "Epäonnistunut laskun lataus",
"CVWeJ6": "Suositut henkilöt",
"CmZ9ls": "{n} Mykistettyä",
"CsCUYo": "{n} satsia",
"Cu/K85": "Käännetty kieleltä {lang}",
"D+KzKd": "Zappää automaattisesti jokainen viesti, kun se ladataan",
"D3idYv": "Asetukset",
"DKnriN": "Lähetä satsit",
"DZzCem": "Näytä viimeisimmät {n} viestiä",
"DcL8P+": "Tukija",
"Dh3hbq": "Automaattiset zapit",
"DtYelJ": "Transfer",
"E8a4yq": "Seuraa joitakin suosittuja tilejä",
"ELbg9p": "Datantoimittajat",
"EPYwm7": "Yksityisavaimesi on salasanasi. Jos menetät tämän avaimen, menetät pääsyn tilillesi! Kopioi se ja säilytä turvallisessa paikassa. Yksityisavainta ei voi palauttaa.",
"EWyQH5": "Maailmanlaajuinen",
"Ebl/B2": "Käännä kielelle {lang}",
"EcZF24": "Omat välittäjät",
"EcglP9": "Avain",
"EnCOBJ": "Osta",
"Eqjl5K": "Vain Snort ja kumppanuustunniste tarjoavat värikästä verkkotunnusta, mutta voit käyttää myös muiden palveluja.",
"F+B3x1": "Olemme myös kumppaneita nostrplebs.com:n kanssa tarjotaksemme sinulle lisää vaihtoehtoja",
"F3l7xL": "Lisää tili",
"FDguSC": "{n} Zappia",
"FP+D3H": "LNURL zap-siirtoja varten",
"FS3b54": "Valmis!",
"FSYL8G": "Suositut käyttäjät",
"FdhSU2": "Lunasta nyt",
"FfYsOb": "Tapahtui virhe!",
"FmXUJg": "seuraa sinua",
"G/yZLu": "Poista",
"G1BGCg": "Valitse lompakko",
"GFOoEE": "Suola",
"GL8aXW": "Kirjanmerkkejä ({n})",
"GSye7T": "Lightning-osoite",
"GUlSVG": "Lunasta sisältyvä Snort nostr-osoite",
"Gcn9NQ": "Magneettilinkki",
"GspYR7": "{n} Ei-tykkäys",
"H+vHiz": "Hex-avain..",
"H0JBH6": "Kirjaudu ulos",
"H6/kLh": "Tilaus maksettu!",
"HAlOn1": "Nimi",
"HF4YnO": "Katso live!",
"HFls6j": "nimi on myöhemmin saatavilla",
"HOzFdo": "Mykistetty",
"HWbkEK": "Tyhjennä välimuisti ja lataa uudelleen",
"HbefNb": "Avaa lompakko",
"IDjHJ6": "Kiitos Snortin käytöstä, harkitse tukemista, jos voit.",
"IEwZvs": "Haluatko varmasti poistaa tämän viestin kiinnitetyistä?",
"IKKHqV": "Seuraa",
"INSqIz": "Twitter-käyttäjätunnus...",
"IUZC+0": "Tämä tarkoittaa, että kukaan ei voi muokata luomiasi viestejä ja kaikki voivat helposti vahvistaa, että viestit ovat peräisin sinulta.",
"Ig9/a1": "Lähetettiin {n} satsia käyttäjälle {name}",
"Ix8l+B": "Suositut viestit",
"J+dIsA": "Tilaukset",
"JCIgkj": "Käyttäjätunnus",
"JHEHCk": "Zapit ({n})",
"JPFYIM": "Ei lightning-osoitetta",
"JeoS4y": "Jaa uudelleen",
"JjGgXI": "Etsi käyttäjiä",
"JkLHGw": "Verkkosivusto",
"JymXbw": "Yksityisavain",
"K3r6DQ": "Poista",
"K7AkdL": "Näytä",
"KAhAcM": "Anna LNDHub-asetukset",
"KLo3SP": "Syy: {reason}",
"KQvWvD": "Poistettu",
"KWuDfz": "Olen tallentanut avaimeni, jatka",
"KahimY": "Tuntematon tapahtumatyyppi: {kind}",
"KoFlZg": "Anna mint-URL",
"LF5kYT": "Muut yhteydet",
"LXxsbk": "Nimetön",
"LgbKvU": "Kommentoi",
"Lu5/Bj": "Avaa Zapstrissa",
"Lw+I+J": "{n,plural,=0{{name} zappasi} other{{name} & {n} muuta zappasivat}}",
"M3Oirc": "Debug-valikot",
"MBAYRO": "Näyttää \"Kopioi tunniste\" ja \"Kopioi tapahtuman JSON\" jokaisen viestin valikossa",
"MI2jkA": "Ei saatavilla:",
"MP54GY": "Lompakon salasana",
"MRp6Ly": "Twitter-käyttäjätunnus",
"MWTx65": "Oletussivu",
"Mrpkot": "Maksa tilaus",
"MuVeKe": "Osta nostr-osoite",
"MzRYWH": "Ostaa {item}",
"N2IrpM": "Vahvista",
"NAuFNH": "Sinulla on jo tämäntyyppinen tilaus, ole hyvä ja uudista tai maksa",
"NNSu3d": "Tuo Twitter-seuratut",
"NdOYJJ": "Hmm ei mitään täällä.. Katso {newUsersPage} seurataksesi joitakin suositeltuja nostricheja!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Yksityisavaimesi",
"NndBJE": "Uusien käyttäjien sivu",
"O9GTIc": "Profiilikuva",
"OEW7yJ": "Zapit",
"OKhRC6": "Jaa",
"OLEm6z": "Tuntematon kirjautumisvirhe",
"OQXnew": "Tilauksesi on yhä aktiivinen, et voi uusia sitä vielä",
"ORGv1Q": "Luotu",
"P04gQm": "Kaikki tähän viestiin lähetetyt zapit vastaanotetaan seuraavalla LNURLilla",
"P61BTu": "Kopioi tapahtuman JSON",
"P7FD0F": "Järjestelmä (oletus)",
"P7nJT9": "Tänään yhteensä (UTC): {amount} satsia",
"PCSt5T": "Asetukset",
"PLSbmL": "Sinun mnemonic-lauseesi",
"PamNxw": "Tuntematon tiedostotunniste: {name}",
"Pe0ogR": "Teema",
"PrsIg7": "Reaktiot näytetään jokaisella sivulla, jos poistettu käytöstä reaktioita ei näytetä",
"QDFTjG": "{n} Välittäjää",
"QWhotP": "Zap-pool toimii vain tuetuilla lompakkoyhteyksillä (WebLN, LNC, LNDHub tai Nostr Wallet Connect)",
"QawghE": "Voit vaihtaa käyttäjänimeäsi milloin tahansa.",
"QxCuTo": "Taidetta käyttäjältä {name}",
"Qxv0B2": "Sinulla on {number} satsia zap-poolissa.",
"R/6nsx": "Tilaus",
"R1fEdZ": "Välitä zappaukset",
"R81upa": "Henkilöt joita seuraat",
"RDZVQL": "Tarkista",
"RahCRH": "Vanhentunut",
"RfhLwC": "Tekijä: {author}",
"RhDAoS": "Haluatko varmasti poistaa {id}",
"RjpoYG": "Viimeaikaiset",
"RoOyAh": "Välittäjät",
"Rs4kCE": "Kirjanmerkki",
"RwFaYs": "Lajittelu",
"SOqbe9": "Päivitä Lightning-osoite",
"SP0+yi": "Osta tilaus",
"SX58hM": "Kopioi",
"SYQtZ7": "LN-osoitteen välityspalvelin",
"ShdEie": "Merkitse kaikki luetuiksi",
"Sjo1P4": "Mukautettu",
"Ss0sWu": "Maksa nyt",
"TDR5ge": "Viestien mediasisältö näytetään automaattisesti valituille henkilöille, muille näytetään vain linkki",
"TMfYfY": "Cashu-tunniste",
"TpgeGw": "Hex-suola..",
"Tpy00S": "Ihmiset",
"UDYlxu": "Odottavat tilaukset",
"ULotH9": "Määrä: {amount} satsia",
"UT7Nkj": "Uusi keskustelu",
"UUPFlt": "Käyttäjien täytyy hyväksyä sisältövaroitus nähdäkseen viestisi sisällön.",
"Up5U7K": "Estä",
"VBadwB": "Hmm, avainhallintaohjelmaa ei löydy.. yritä ladata sivu uudelleen.",
"VN0+Fz": "Saldo: {amount} satsia",
"VOjC1i": "Valitse palvelu, johon haluat ladata liitteitä",
"VR5eHw": "Julkinen avain (npub/nprofile)",
"VlJkSk": "{n} mykistettyä",
"VnXp8Z": "Avatar",
"VtPV/B": "Kirjaudu sisään laajennuksella (NIP-07)",
"VvaJst": "Näytä lompakot",
"Vx7Zm2": "Miten avaimet toimivat?",
"W1yoZY": "Näyttää siltä, että sinulla ei ole tilauksia, voit hankkia yhden {link}",
"W2PiAr": "{n} Estettyä",
"W9355R": "Poista mykistys",
"WONP5O": "Etsi Twitter-seurantasi Nostrista (tiedot tarjoaa {provider})",
"WxthCV": "esim. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "Tiedostojen isäntäpalvelut",
"XgWvGA": "Reaktiot",
"Xopqkl": "Oletus zap-määräsi on {number} satsia, esimerkit on laskettu tämän mukaan.",
"XrSk2j": "Lunasta",
"XzF0aC": "Avainhallintaohjelmat ovat turvallisempia ja mahdollistavat helpon kirjautumisen mihin tahansa Nostr-asiakasohjelmaan, tässä joitakin tunnettuja laajennuksia:",
"Y31HTH": "Tue Snortin kehitystä",
"YDURw6": "Palvelun URL",
"YXA3AH": "Ota reaktiot käyttöön",
"Z0FDj+": "Tilaa Snort {plan} hintaan {price} ja saat seuraavat edut",
"Z4BMCZ": "Anna pariliitoslause",
"ZKORll": "Aktivoi nyt",
"ZLmyG9": "Avustajat",
"ZUZedV": "Lightning-lahjoitus:",
"Zr5TMx": "Aseta profiili",
"a5UPxh": "Tue kehittäjiä ja alustoja, jotka tarjoavat NIP-05-varmennuspalveluita",
"a7TDNm": "Viestit striimautuvat reaaliajassa globaaliin ja viestit-välilehteen",
"aWpBzj": "Näytä lisää",
"b12Goz": "Mnemonic-lause",
"b5vAk0": "Käyttäjätunnuksesi toimii kuin lightning-osoite ja uudelleenohjaa valitsemaasi LNURLiin tai lightning-osoitteeseen",
"bQdA2k": "Arkaluontoinen sisältö",
"bep9C3": "Julkinen avain",
"bfvyfs": "Anon",
"brAXSu": "Valitse käyttäjänimi",
"bxv59V": "Juuri nyt",
"c+oiJe": "Asenna laajennus",
"c35bj2": "Jos sinulla on kysymyksiä NIP-05-tilauksestasi, lähetä yksityisviesti {link}",
"c3g2hL": "Lähetä uudelleen",
"cFbU1B": "Käytätkö Albya? Mene {link} saadaksesi NWC-asetuksesi!",
"cPIKU2": "Seuraa",
"cQfLWb": "URL..",
"cWx9t8": "Mykistä kaikki",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Usean tilin tuki",
"cuV2gK": "nimi on rekisteröity",
"cyR7Kh": "Takaisin",
"d6CyG5": "Historia",
"d7d0/x": "LN-osoite",
"dOQCL8": "Näyttönimi",
"e61Jf3": "Tulossa pian",
"e7qqly": "Merkitse kaikki luetuksi",
"eHAneD": "Reaktion emoji",
"eJj8HD": "Hanki varmennus",
"eSzf2G": "Yksittäinen {nIn} satsin zap jakaa {nOut} satsia zap-pooliin.",
"eXT2QQ": "Ryhmächat",
"fBI91o": "Zap",
"fOksnD": "Ei voi äänestää, koska LNURL-palvelu ei tue zappeja",
"fWZYP5": "Kiinnitetty",
"filwqD": "Luettu",
"flnGvv": "Mitä mielessä?",
"fsB/4p": "Tallennettu",
"g5pX+a": "Tietoja",
"g985Wp": "Äänestyksen lähetys epäonnistui",
"gBdUXk": "Tallenna avaimesi!",
"gDZkld": "Snort on Nostr-käyttöliittymä, nostr on hajautettu protokolla viestien tallentamiseen ja jakamiseen.",
"gDzDRs": "Emoji reagoitaessa viestiin",
"gXgY3+": "Ei tueta kaikissa asiakasohjelmissa vielä",
"gczcC5": "Tilaa",
"gjBiyj": "Ladataan...",
"grQ+mI": "Todiste työstä",
"h8XMJL": "Merkit",
"hK5ZDk": "maailma",
"hMzcSq": "Viestit",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Tukee",
"hicxcO": "Näytä vastaukset",
"hniz8Z": "täällä",
"i/dBAR": "Zap-pooli",
"iCqGww": "Reaktioita ({n})",
"iDGAbc": "Hanki Snort-tunniste",
"iEoXYx": "DeepL käännökset",
"iGT1eE": "Estä väärennettyjä tilejä jäljittelemästä sinua",
"iNWbVV": "Käyttäjätunnus",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Ei voi kirjautua yksityisavaimella epäturvallisella yhteydellä, käytä Nostr-avainhallintaohjelmalaajennusta",
"ieGrWo": "Seuraa",
"itPgxd": "Profiili",
"izWS4J": "Lopeta seuraaminen",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} satia}}",
"jCA7Cw": "Esikatsele Snortissa",
"jMzO1S": "Sisäinen virhe: {msg}",
"jfV8Wr": "Takaisin",
"juhqvW": "Paranna kirjautumisturvallisuutta selainlaajennuksilla",
"jvo0vs": "Tallenna",
"jzgQ2z": "{n} Reaktiota",
"k2veDA": "Kirjoita",
"k7sKNy": "Oma NIP-05-varmennuspalvelumme, auta tukemaan tämän sivuston kehitystä ja saat kiiltävän erikoismerkin sivuillemme!",
"kJYo0u": "{n,plural,=0{{name} jakoi uudelleen} other{{name} & {n} muuta jakoivat uudelleen}}",
"kaaf1E": "nyt",
"kuPHYE": "{n,plural,=0{{name} tykkäsi} other{{name} & {n} muuta tykkäsivät}}",
"l+ikU1": "Kaikki {plan}-suunnitelmassa",
"lBboHo": "Jos haluat kokeilla muita, tarkista {link} lisää!",
"lCILNz": "Osta nyt",
"lD3+8a": "Maksa",
"lPWASz": "Snort nostr-osoite",
"lTbT3s": "Lompakon salasana",
"lgg1KN": "tili",
"ll3xBp": "Kuvan välityspalvelin",
"lnaT9F": "Seuraa {n}",
"lsNFM1": "Napsauta ladataksesi sisältö {link}",
"lvlPhZ": "Maksa lasku",
"mErPop": "Näyttää siltä, että sinulla ei ole yhtään, tarkista {link} ostaaksesi!",
"mH91FY": "Jokainen avustaja saa prosenttiosuuden kaikista lahjoituksista ja NIP-05-tilauksista, voit nähdä jakomäärät alla",
"mKAr6h": "Seuraa kaikkia",
"mKh2HS": "Tiedostojen latauspalvelu",
"mKhgP9": "{n,plural,=0{} =1{zappasi} other{zappasivat}}",
"mTJFgF": "Suosittu",
"mfe8RW": "Vaihtoehto: {n}",
"n1Whvj": "Vaihda",
"nDejmx": "Poista esto",
"nGBrvw": "Kirjanmerkit",
"nN9XTz": "Jaa ajatuksiasi {link}",
"nOaArs": "Aseta profiili",
"nWQFic": "Uusi",
"nn1qb3": "Tukeasi arvostetaan paljon",
"nwZXeh": "{n} estettyä",
"o6Uy3d": "Vain salainen avain voi julkaista (allekirjoittaa tapahtumia), kaikki muu kirjaa sinut sisään vain lukutilassa.",
"o7e+nJ": "{n} seuraajaa",
"oJ+JJN": "Mitään ei löytynyt :/",
"odFwjL": "Kirjaudu sisään",
"odhABf": "Kirjaudu sisään",
"ojzbwv": "Hei, näyttää siltä ettei sinulla ole vielä Nostr-osoitetta, sinun pitäisi hankkia sellainen! Katso {link}",
"osUr8O": "Voit myös käyttää näitä laajennuksia kirjautuaksesi useimpiin Nostr-sivustoihin.",
"oxCa4R": "Tunnisteen hankkiminen auttaa vahvistamaan profiilisi ihmisille jotka tuntevat sinut. Monella voi olla käyttäjänimi @jack, mutta vain yksi jack@cash.app.",
"p4N05H": "Lähetä",
"p85Uwy": "Aktiiviset tilaukset",
"pI+77w": "Ladattavat varmuuskopiot Snort-välittäjältä",
"puLNUJ": "Kiinnitä",
"pzTOmv": "Seuraajat",
"qD9EUF": "Sähköposti-silta Snort nostr-osoitteellesi",
"qDwvZ4": "Tuntematon virhe",
"qMx1sA": "Oletus zap-määrä",
"qUJTsT": "Estetty",
"qdGuQo": "Yksityisavaimen on (älä jaa tätä kenellekään)",
"qkvYUb": "Lisää profiiliin",
"qmJ8kD": "Käännös epäonnistui",
"qtWLmt": "Tykkää",
"r3C4x/": "Ohjelmisto",
"r5srDR": "Anna lompakon salasana",
"rT14Ow": "Lisää välittäjiä",
"reJ6SM": "On suositeltavaa käyttää jotakin seuraavista selainlaajennuksista, jos käytät tietokonetta turvataksesi avaimesi:",
"rfuMjE": "(Oletus)",
"rmdsT4": "{n} days",
"rrfdTe": "Tämä käyttää samaa teknologiaa kuin Bitcoin ja on osoittautunut erittäin turvalliseksi.",
"rudscU": "Seurannan lataaminen epäonnistui, yritä myöhemmin uudelleen",
"sWnYKw": "Snort on suunniteltu tarjoamaan Twitterin kaltainen käyttökokemus",
"svOoEH": "Nimien hamstraus ja identiteettivarkaus eivät ole sallittua. Snort ja kumppanimme pidättävät oikeuden lopettaa käyttäjätunnuksesi (ei tiliäsi - sitä kukaan ei voi ottaa pois) tämän säännön rikkomisesta.",
"tOdNiY": "Tumma",
"th5lxp": "Lähetä viesti osajoukolle kirjoitusvälittäjiäsi",
"thnRpU": "NIP-05-varmennuksen hankkiminen voi auttaa:",
"ttxS0b": "Tukijamerkki",
"u/vOPu": "Maksettu",
"u4bHcR": "Tarkista koodi täältä: {link}",
"uD/N6c": "Zap {target} {n} satsilla",
"uSV4Ti": "Uudelleenjaot vaativat manuaalisen vahvistuksen",
"usAvMr": "Muokkaa profiilia",
"ut+2Cd": "Hanki kumppanitunniste",
"v8lolG": "Aloita keskustelu",
"vOKedj": "{n,plural,=1{& {n} muu} other{& {n} muuta}}",
"vU71Ez": "Maksaa lompakolla {wallet}",
"vZ4quW": "NIP-05 on DNS-pohjainen varmennusspesifikaatio, joka auttaa vahvistamaan sinut oikeaksi käyttäjäksi.",
"vhlWFg": "Äänestyksen vaihtoehdot",
"vlbWtt": "Hanki ilmainen",
"vrTOHJ": "{amount} satsia",
"vxwnbh": "Tehtävän työmäärä julkaistuille tapahtumille",
"wEQDC6": "Muokkaa",
"wLtRCF": "Avaimesi",
"wWLwvh": "Anon",
"wYSD2L": "Nostr-osoite",
"wih7iJ": "nimi on estetty",
"wqyN/i": "Lue lisää {service} palvelusta osoitteessa {link}",
"wtLjP6": "Kopioi tunniste",
"x/Fx2P": "Tue käyttämiesi palveluiden kehitystä jakamalla osa zapeistasi rahastoon!",
"x/q8d5": "Tämä viesti on merkitty arkaluontoiseksi, napsauta tästä nähdäksesi sisällön",
"x82IOl": "Mykistä",
"xIoGG9": "Siirry",
"xJ9n2N": "Julkinen avaimesi",
"xKflGN": "{username}''n seuranta Nostrissa",
"xQtL3v": "Avaa lukitus",
"xaj9Ba": "Tarjoaja",
"xbVgIm": "Lataa media automaattisesti",
"xhQMeQ": "Vanhenee",
"xmcVZ0": "Etsi",
"y1Z3or": "Kieli",
"yCLnBC": "LNURL tai Lightning-osoite",
"yCmnnm": "Lue globaali",
"zFegDD": "Ota yhteyttä",
"zINlao": "Omistaja",
"zQvVDJ": "Kaikki",
"zcaOTs": "Satsien zap-määrä",
"zjJZBd": "Olet valmis!",
"zonsdq": "Epäonnistunut LNURL-palvelun lataus",
"zvCDao": "Näytä uusimmat viestit automaattisesti"
}

View File

@ -1,28 +1,28 @@
{
"+D82kt": "Êtes-vous sûr que vous voulez republier: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+PzQ9Y": "Payer Maintenant",
"+Vxixo": "Chat de Groupe Secret",
"+aZY2h": "Type de Zap",
"+vA//S": "Logins",
"+vA//S": "Connexions",
"+vIQlC": "Assurez-vous d'enregistrer le mot de passe suivant afin de gérer votre identifiant à l'avenir",
"+vVZ/G": "Connexion",
"+xliwN": "{name} reposted",
"+xliwN": "{name} a reposté",
"/4tOwT": "Passer",
"/JE/X+": "Prise en charge du compte",
"/PCavi": "Publique",
"/RD0e2": "Nostr utilise la technologie de signature numérique pour fournir des notes inviolables qui peuvent être répliquées en toute sécurité sur de nombreux relais pour fournir un stockage redondant de votre contenu.",
"/d6vEc": "Rendez votre profil plus facile à trouver et à partager",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"00LcfG": "Charger plus",
"08zn6O": "Exporter les clés",
"0Azlrb": "Gérer",
"0BUTMv": "Chercher...",
"0jOEtS": "LNURL invalide",
"0mch2Y": "le nom contient des caractères non autorisés",
"0yO7wF": "{n} secondes",
"1A7TZk": "Qu'est-ce que Snort et comment ça marche ?",
"1Mo59U": "Êtes-vous sûr de vouloir supprimer cette note de vos favoris ?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1R43+L": "Accéder à la configuration de Nostr Wallet Connect",
"1c4YST": "Connecté à : {node} 🎉",
"1iQ8GN": "Prévisualisation du changement de fenêtre",
"1nYUGC": "{n} Abonnements",
@ -33,7 +33,7 @@
"2LbrkB": "Saisissez le mot de passe",
"2a2YiP": "{n} Favoris",
"2k0Cv+": "N'aime pas ({n})",
"2ukA4d": "{n} hours",
"2ukA4d": "{n} heures",
"3Rx6Qo": "Avancé",
"3cc4Ct": "Clair",
"3gOsZq": "Traducteurs",
@ -50,18 +50,18 @@
"4Vmpt4": "Nostr Plebs est l'un des premiers fournisseurs NIP-05 dans l'espace et offre une bonne collection de domaines à des prix raisonnables",
"4Z3t5i": "Utiliser imgproxy pour compresser les images",
"4rYCjn": "Note pour moi-même",
"5JcXdV": "Create Account",
"5JcXdV": "Créer un compte",
"5oTnfy": "Buy Handle",
"5rOdPG": "Une fois que vous avez configuré votre extension de gestionnaire de clés et généré une clé, vous pouvez suivre notre flux d'utilisateurs pour configurer votre profil et vous aider à trouver des personnes intéressantes à suivre sur Nostr.",
"5u6iEc": "Transférer vers la clé publique",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5vMmmR": "Les noms d'utilisateur ne sont pas uniques sur Nostr. L'adresse nostr est votre adresse unique lisible par l'homme qui vous est unique lors de votre inscription.",
"5ykRmX": "Envoyer zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6Yfvvp": "Obtenir un identifiant",
"6ewQqw": "Aime ({n})",
"6uMqL1": "Unpaid",
"6uMqL1": "Non payé",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7BX/yC": "Changer de compte",
"7hp70g": "NIP-05",
"7xzTiH": "{action} à {target}",
"8/vBbP": "Republie ({n})",
@ -77,7 +77,7 @@
"9pMqYs": "Adresse Nostr",
"9wO4wJ": "Facture Lightning",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"AGNz71": "Zapper tous les sats {n}",
"ASRK0S": "Cet auteur a été mis en sourdine",
"Adk34V": "Configurer votre profil",
"Ai8VHU": "Unlimited note retention on Snort relay",
@ -96,7 +96,7 @@
"C81/uG": "Se déconnecter",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Échec du chargement de la facture",
"CVWeJ6": "Trending People",
"CVWeJ6": "Personnes en tendance",
"CmZ9ls": "{n} Mis en sourdine",
"CsCUYo": "{n} sats",
"Cu/K85": "Traduit de {lang}",
@ -104,7 +104,7 @@
"D3idYv": "Paramètres",
"DKnriN": "Envoyer des sats",
"DZzCem": "Afficher les {n} dernières notes",
"DcL8P+": "Supporter",
"DcL8P+": "Contributeurs",
"Dh3hbq": "Zap automatique",
"DtYelJ": "Transférer",
"E8a4yq": "Suivez quelques comptes populaires",
@ -112,51 +112,51 @@
"EPYwm7": "Votre clé privée est votre mot de passe. Si vous perdez cette clé, vous perdrez l&#39;accès à votre compte ! Copiez-le et conservez-le en lieu sûr. Il n&#39;y a aucun moyen de réinitialiser votre clé privée.",
"EWyQH5": "Global",
"Ebl/B2": "Traduire en {lang}",
"EcZF24": "Custom Relays",
"EcZF24": "Relais personnalisés",
"EcglP9": "Clé",
"EnCOBJ": "Acheter",
"Eqjl5K": "Seuls Snort et notre identifiant de partenaire d&#39;intégration vous donnent un nom de domaine coloré, mais vous pouvez également utiliser d&#39;autres services.",
"F+B3x1": "Nous nous sommes également associés à nosrplebs.com pour vous offrir plus d&#39;options",
"F3l7xL": "Add Account",
"F3l7xL": "Ajouter un Compte",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNRURL où transférer les Zap",
"FS3b54": "Fait!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FSYL8G": "Utilisateurs en tendance",
"FdhSU2": "Réclamer maintenant",
"FfYsOb": "Une erreur est survenue!",
"FmXUJg": "vous suit",
"G/yZLu": "Retirer",
"G1BGCg": "Sélectionnez un portefeuille",
"GFOoEE": "Sel",
"GL8aXW": "Favoris ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"GSye7T": "Adresse Lightning",
"GUlSVG": "Réclamez votre adresse nostr Snort incluse",
"Gcn9NQ": "Lien Magnet",
"GspYR7": "{n} N'aime pas",
"H+vHiz": "Clé hexagonale..",
"H0JBH6": "Se Déconnecter",
"H6/kLh": "Commande Payée!",
"HAlOn1": "Nom",
"HF4YnO": "Watch Live!",
"HF4YnO": "Regarder en direct !",
"HFls6j": "le nom sera disponible plus tard",
"HOzFdo": "Mis en sourdine",
"HWbkEK": "Clear cache and reload",
"HWbkEK": "Vider le cache et recharger",
"HbefNb": "Ouvrir le Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IDjHJ6": "Merci d'utiliser Snort, envisagez de faire un don si vous pouvez.",
"IEwZvs": "Êtes-vous sûr de vouloir désépingler cette note?",
"IKKHqV": "Follows",
"INSqIz": "Nom d&#39;utilisateur Twitter...",
"IUZC+0": "Cela signifie que personne ne peut modifier les notes que vous avez créées et que tout le monde peut facilement vérifier que les notes qu&#39;ils lisent sont créées par vous.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"Ix8l+B": "Notes en tendances",
"J+dIsA": "Abonnements",
"JCIgkj": "Nom d&#39;utilisateur",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JPFYIM": "Aucune adresse Lightning",
"JeoS4y": "Reposter",
"JjGgXI": "Rechercher des utilisateurs",
"JkLHGw": "Site Internet",
"JymXbw": "Private Key",
"JymXbw": "Clé Privée",
"K3r6DQ": "Supprimer",
"K7AkdL": "Montrer",
"KAhAcM": "Entrez la configuration LNDHub",
@ -168,7 +168,7 @@
"LF5kYT": "Autres Connexions",
"LXxsbk": "Anonyme",
"LgbKvU": "Commenter",
"Lu5/Bj": "Open on Zapstr",
"Lu5/Bj": "Ouvrir avec Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Menus de débogage",
"MBAYRO": "Affiche \"Copy ID\" et \"Copy Event JSON\" dans le menu contextuel de chaque message",
@ -177,7 +177,7 @@
"MRp6Ly": "Nom d&#39;utilisateur Twitter",
"MWTx65": "Page par défaut",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MuVeKe": "Acheter une adresse nostr",
"MzRYWH": "Acheter {item}",
"N2IrpM": "Confirmer",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
@ -186,19 +186,19 @@
"NepkXH": "Impossible de voter avec {amount} sats, veuillez définir un autre montant zap par défaut",
"NfNk2V": "Votre clé privée",
"NndBJE": "Page des nouveaux utilisateurs",
"O9GTIc": "Profile picture",
"O9GTIc": "Photo du profil",
"OEW7yJ": "Zaps",
"OKhRC6": "Partager",
"OLEm6z": "Erreur de connexion inconnue",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"OQXnew": "Votre abonnement est toujours actif, vous ne pouvez pas le renouveler pour le moment",
"ORGv1Q": "Créé",
"P04gQm": "Tous les zaps envoyés à cette note seront reçus par le LNURL suivant",
"P61BTu": "Copier l'événement JSON",
"P7FD0F": "Système (Défaut)",
"P7nJT9": "Total aujourd&#39;hui (UTC) : {amount} sats",
"PCSt5T": "Préférences",
"PLSbmL": "Votre phrase mnémonique",
"PamNxw": "Unknown file header: {name}",
"PamNxw": "En-tête du fichier inconnu : {name}",
"Pe0ogR": "Thème",
"PrsIg7": "Les réactions seront affichées sur chaque page, si désactivées aucune réaction ne sera affichée",
"QDFTjG": "{n} Relais",
@ -206,31 +206,31 @@
"QawghE": "Vous pouvez modifier votre nom d'utilisateur à tout moment.",
"QxCuTo": "Illustration par {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R/6nsx": "Abonnement",
"R1fEdZ": "Zaps transféré",
"R81upa": "People you follow",
"R81upa": "Personnes que vous suivez",
"RDZVQL": "Vérifier",
"RahCRH": "Expiré",
"RfhLwC": "Par : {author}",
"RhDAoS": "Êtes-vous sûr que vous voulez supprimer {id}",
"RjpoYG": "Recent",
"RjpoYG": "Récent",
"RoOyAh": "Relais",
"Rs4kCE": "Favori",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"RwFaYs": "Trier",
"SOqbe9": "Mettre à jour l'adresse Lightning",
"SP0+yi": "Acheter un abonnement",
"SX58hM": "Copier",
"SYQtZ7": "Proxy d'adresse LN",
"ShdEie": "Tout marquer comme lu",
"Sjo1P4": "Personnaliser",
"Ss0sWu": "Pay Now",
"Ss0sWu": "Payer maintenant",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Sel Hex..",
"Tpy00S": "People",
"Tpy00S": "Personnes",
"UDYlxu": "Demandes en attente",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"ULotH9": "Quantité: {amount} sats",
"UT7Nkj": "Nouvelle Discussion",
"UUPFlt": "Les utilisateur-trice-s doivent accepter l'avertissement de contenu pour afficher le contenu de votre note.",
"Up5U7K": "Bloquer",
"VBadwB": "Hmm, impossible de trouver une extension de gestionnaire de clés. Essayez de recharger la page.",
@ -240,58 +240,58 @@
"VlJkSk": "{n} mis en sourdine",
"VnXp8Z": "Avatar",
"VtPV/B": "Connexion avec extension (NIP-07)",
"VvaJst": "View Wallets",
"VvaJst": "Voir les portefeuilles",
"Vx7Zm2": "Comment fonctionnent les clés ?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W1yoZY": "Il semble que vous n'avez aucun abonnement, vous pouvez en obtenir un {link}",
"W2PiAr": "{n} Bloqué",
"W9355R": "Retirer sourdine",
"WONP5O": "Trouvez vos suivis Twitter sur nostr (Données fournies par {provider})",
"WxthCV": "par exemple Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnémonique",
"XICsE8": "File hosts",
"XICsE8": "Hébergeurs de fichiers",
"XgWvGA": "Réactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"Xopqkl": "Votre montant de zap par défaut est {number} sats, les valeurs d'exemple sont calculées à partir de ceci.",
"XrSk2j": "Retirer",
"XzF0aC": "Les extensions de gestionnaire de clés sont plus sécurisées et vous permettent de vous connecter facilement à n'importe quel client Nostr, voici quelques extensions réputées :",
"Y31HTH": "Aidez à financer le développement de Snort",
"YDURw6": "URL de service",
"YXA3AH": "Activer les réactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z0FDj+": "Abonnez-vous à Snort {plan} pour {price} et recevez les récompenses suivantes",
"Z4BMCZ": "Entrez la phrase d'appairage",
"ZKORll": "Activer Maintenant",
"ZLmyG9": "Contributeurs",
"ZUZedV": "Don éclair :",
"Zr5TMx": "Setup profile",
"Zr5TMx": "Configurer le profil",
"a5UPxh": "Financer les développeurs et plateformes fournissant des services de vérification NIP-05",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Montrer plus",
"b12Goz": "Mnemonic",
"b12Goz": "Mnémonique",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Contenu sensible",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"bep9C3": "Clé publique",
"bfvyfs": "Anonyme",
"brAXSu": "Choisis un nom d&#39;utilisateur",
"bxv59V": "Juste maintenant",
"c+oiJe": "Installer l'extension",
"c35bj2": "Si vous avez une question concernant votre commande NIP-05, veuillez contacter en DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"c3g2hL": "Republier",
"cFbU1B": "Vous utilisez Alby ? Allez sur {link} pour obtenir votre configuration NWC !",
"cPIKU2": "Abonnements",
"cQfLWb": "URL..",
"cWx9t8": "Tout mettre en sourdine",
"cg1VJ2": "Connecter un portefeuille",
"cuP16y": "Multi account support",
"cuP16y": "Support multi-comptes",
"cuV2gK": "le nom est enregistré",
"cyR7Kh": "Retourner",
"d6CyG5": "Historique",
"d7d0/x": "Adresse LN",
"dOQCL8": "Nom à afficher",
"e61Jf3": "Coming soon",
"e61Jf3": "Prochainement",
"e7qqly": "Marquer tout comme lu",
"eHAneD": "Émoji de réaction",
"eJj8HD": "Se faire vérifier",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"eSzf2G": "Un seul zap de {nIn} sats allouera {nOut} sats à la pool de zap.",
"eXT2QQ": "Discussion de groupe",
"fBI91o": "Zap",
"fOksnD": "Impossible de voter car le service LNURL ne prend pas en charge les zaps",
"fWZYP5": "Épinglé",
@ -304,20 +304,20 @@
"gDZkld": "Snort est une interface utilisateur Nostr, nostr est un protocole décentralisé pour enregistrer et distribuer des &quot;notes&quot;.",
"gDzDRs": "Emoji à envoyer en cas de réaction à une note",
"gXgY3+": "Tous les clients ne supportent pas encore ceci",
"gczcC5": "Subscribe",
"gczcC5": "S'abonner",
"gjBiyj": "Chargement...",
"grQ+mI": "Proof of Work",
"grQ+mI": "Preuve de Travail",
"h8XMJL": "Badges",
"hK5ZDk": "le monde",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supporte",
"hicxcO": "Afficher les réponses",
"hniz8Z": "here",
"hniz8Z": "ici",
"i/dBAR": "Zap Pool",
"iCqGww": "Réactions ({n})",
"iDGAbc": "Obtenir un identifiant Snort",
"iEoXYx": "DeepL translations",
"iEoXYx": "Traductions DeepL",
"iGT1eE": "Empêcher les faux comptes de vous imiter",
"iNWbVV": "Gérer",
"iUsU2x": "Mint: {url}",
@ -327,7 +327,7 @@
"izWS4J": "Ne plus suivre",
"jA3OE/": "{n} {n, plural, =1 {sat} other {sats}}",
"jCA7Cw": "Aperçu sur snort",
"jMzO1S": "Internal error: {msg}",
"jMzO1S": "Erreur interne : {msg}",
"jfV8Wr": "Retourner",
"juhqvW": "Améliorez la sécurité de connexion avec les extensions de navigateur",
"jvo0vs": "Sauvegarder",
@ -337,11 +337,11 @@
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "maintenant",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"l+ikU1": "Tout dans {plan}",
"lBboHo": "Si vous voulez en essayer d'autres, consultez {link} pour en savoir plus!",
"lCILNz": "Acheter Maintenant",
"lD3+8a": "Payer",
"lPWASz": "Snort nostr address",
"lPWASz": "Adresse nostr Snort",
"lTbT3s": "Mot de passe du portefeuille",
"lgg1KN": "compte",
"ll3xBp": "Service proxy d'images",
@ -353,14 +353,14 @@
"mKAr6h": "Suivre tout",
"mKh2HS": "Service d'hébergement de fichiers",
"mKhgP9": "{n,plural,=0{} =1{zappé} other{zappé}}",
"mTJFgF": "Popular",
"mTJFgF": "Populaire",
"mfe8RW": "Option : {n}",
"n1Whvj": "Switch",
"n1Whvj": "Changer",
"nDejmx": "Débloquer",
"nGBrvw": "Favoris",
"nN9XTz": "Partagez vos pensées avec {link}",
"nOaArs": "Configuration du profil",
"nWQFic": "Renew",
"nWQFic": "Renouveler",
"nn1qb3": "Vos dons sont grandement appréciés",
"nwZXeh": "{n} bloqué",
"o6Uy3d": "Seule la clé secrète peut être utilisée pour publier (signer des événements), tout le reste vous connecte en mode lecture seule.",
@ -368,15 +368,15 @@
"oJ+JJN": "Aucun résultat :/",
"odFwjL": "Abonnements seulement",
"odhABf": "Se Connecter",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"ojzbwv": "Hé, il semble que vous n'avez pas encore d'adresse Nostr, vous devriez en obtenir une ! Consultez {link}",
"osUr8O": "Vous pouvez également utiliser ces extensions pour vous connecter à la plupart des sites Nostr.",
"oxCa4R": "L&#39;obtention d&#39;un identifiant permet de confirmer votre identité réelle aux personnes qui vous connaissent. De nombreuses personnes peuvent avoir un nom d&#39;utilisateur @jack, mais il n&#39;y a qu&#39;un seul jack@cash.app.",
"p4N05H": "Upload",
"p4N05H": "Importer",
"p85Uwy": "Abonnements actifs",
"pI+77w": "Downloadable backups from Snort relay",
"pI+77w": "Sauvegardes téléchargeables depuis le relais Snort",
"puLNUJ": "Épingler",
"pzTOmv": "Abonnés",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qD9EUF": "Email <> pont DM pour votre adresse Snort nostr",
"qDwvZ4": "Une erreur inconnue s'est produite",
"qMx1sA": "Montant des Zaps par défaut",
"qUJTsT": "Bloqué",
@ -389,13 +389,13 @@
"rT14Ow": "Ajouter Relais",
"reJ6SM": "Il est recommandé d&#39;utiliser l&#39;une des extensions de navigateur suivantes si vous êtes sur un ordinateur de bureau pour sécuriser votre clé :",
"rfuMjE": "(Défaut)",
"rmdsT4": "{n} days",
"rmdsT4": "{n} jours",
"rrfdTe": "Il s&#39;agit de la même technologie que celle utilisée par Bitcoin et qui s&#39;est avérée extrêmement sécurisée.",
"rudscU": "Échec du chargement des suivis, veuillez réessayer plus tard",
"sWnYKw": "Snort est conçu pour avoir une expérience similaire à Twitter.",
"svOoEH": "Le squattage de noms et l&#39;usurpation d&#39;identité ne sont pas autorisés. Snort et nos partenaires se réservent le droit de résilier votre identifiant (pas votre compte - personne ne peut le retirer) pour avoir enfreint cette règle.",
"tOdNiY": "Sombre",
"th5lxp": "Send note to a subset of your write relays",
"th5lxp": "Envoyer la note à un sous-ensemble de vos relais d'écriture",
"thnRpU": "Obtenir la vérification NIP-05 peut aider :",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Payé",
@ -404,34 +404,34 @@
"uSV4Ti": "Les republications seront automatiquement confirmées",
"usAvMr": "Modifier le Profil",
"ut+2Cd": "Obtenir un identifiant partenaire",
"v8lolG": "Start chat",
"v8lolG": "Démarrer la discussion",
"vOKedj": "{n,plural,=1{&amp; {n} autre} other{&amp; {n} autres}}",
"vU71Ez": "Payer avec {wallet}",
"vZ4quW": "NIP-05 est une spécification de vérification basée sur DNS qui permet de vous valider en tant qu'utilisateur réel.",
"vhlWFg": "Choix proposés",
"vlbWtt": "Get a free one",
"vlbWtt": "En obtenir un gratuit",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"vxwnbh": "Quantité de travail à appliquer à tous les événements publiés",
"wEQDC6": "Modifier",
"wLtRCF": "Ta clé",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wYSD2L": "Adresse Nostr",
"wih7iJ": "le nom est bloqué",
"wqyN/i": "En savoir plus sur {service} sur {link}",
"wtLjP6": "Copier Identifiant",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/Fx2P": "Financez les services que vous utilisez en fractionnant une partie de tous vos zaps en un ensemble de fonds !",
"x/q8d5": "Cette note a été marquée comme sensible, cliquez ici pour la révéler",
"x82IOl": "Mode Sourdine",
"xIoGG9": "Aller à",
"xJ9n2N": "Votre clé publique",
"xKflGN": "{username}&#39;&#39; suit sur Nostr",
"xQtL3v": "Déverrouiller",
"xaj9Ba": "Provider",
"xaj9Ba": "Fournisseur",
"xbVgIm": "Charger automatiquement le média",
"xhQMeQ": "Expires",
"xhQMeQ": "Expire",
"xmcVZ0": "Chercher",
"y1Z3or": "Langue",
"yCLnBC": "LNURL or Lightning Address",
"yCLnBC": "LNURL ou adresse Lightning",
"yCmnnm": "Lire le flux global depuis",
"zFegDD": "Contacted",
"zINlao": "Propriétaire",

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -1,19 +1,19 @@
{
"+D82kt": "{id}をリポストしますか?",
"+PzQ9Y": "今すぐ支払う",
"+Vxixo": "Secret Group Chat",
"+Vxixo": "秘密のグループチャット",
"+aZY2h": "ザップの種類",
"+vA//S": "ログイン",
"+vIQlC": "ハンドルを管理し続けるために、必ず、以下のパスワードを保存してください",
"+vVZ/G": "接続",
"+xliwN": "{name} reposted",
"+xliwN": "{name} がリポスト",
"/4tOwT": "スキップ",
"/JE/X+": "アカウントサポート",
"/PCavi": "公開",
"/RD0e2": "Nostrはデジタル署名技術を使って投稿の改竄防止を図り、多数のリレーに安全に複製してコンテンツの冗長ストレージを提供しています。",
"/d6vEc": "プロフィールを見つけやすく、共有しやすくなる",
"/n5KSF": "{n}ミリ秒",
"00LcfG": "Load more",
"00LcfG": "さらに読み込む",
"08zn6O": "鍵をエクスポート",
"0Azlrb": "管理",
"0BUTMv": "検索する",
@ -54,7 +54,7 @@
"5oTnfy": "ハンドルを購入する",
"5rOdPG": "キーマネージャー拡張機能をセットアップして鍵を生成したら、新しいユーザーフローに従ってプロフィールを設定し、Nostrにいる興味深い人を見つけることができます。",
"5u6iEc": "以下の公開鍵に転送する",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5vMmmR": "Nostrのユーザー名は誰でも同じものを取得可能です。Nostrアドレスは登録時にあなただけに寄与されたオリジナルアドレスです。",
"5ykRmX": "ザップする",
"65BmHb": "{host}から画像のプロキシに失敗しました。ここをクリックして直接読み込みます",
"6Yfvvp": "IDを入手する",
@ -121,7 +121,7 @@
"FDguSC": "{n} ザップ",
"FP+D3H": "ザップを転送するLNURL",
"FS3b54": "完了!",
"FSYL8G": "Trending Users",
"FSYL8G": "話題のユーザー",
"FdhSU2": "今すぐ要求する",
"FfYsOb": "エラーが発生しました!",
"FmXUJg": "フォローされています",
@ -129,7 +129,7 @@
"G1BGCg": "ウォレットを選択する",
"GFOoEE": "ソルト",
"GL8aXW": "ブックマーク ({n})",
"GSye7T": "Lightning Address",
"GSye7T": "ライトニングアドレス",
"GUlSVG": "特典に含まれるSnort Nostrアドレスを要求する",
"Gcn9NQ": "マグネットリンク",
"GspYR7": "{n} イヤ",
@ -137,14 +137,14 @@
"H0JBH6": "ログアウト",
"H6/kLh": "支払いが完了しました!",
"HAlOn1": "名前",
"HF4YnO": "Watch Live!",
"HF4YnO": "ライブ配信を見る!",
"HFls6j": "名前は後で使用できるようになります",
"HOzFdo": "ミュート中",
"HWbkEK": "キャッシュをクリアして再読み込み",
"HbefNb": "ウォレットを開く",
"IDjHJ6": "Snortをご利用いただき、どうもありがとうございます。できましたら寄付をご検討ください。",
"IEwZvs": "本当にこの投稿のピン留めを解除しますか?",
"IKKHqV": "Follows",
"IKKHqV": " フォロー",
"INSqIz": "Twitterユーザー名を入力",
"IUZC+0": "このため、あなたが作成した投稿を誰も変更できず、誰でも簡単にあなたが作成した投稿であることを確認できます。",
"Ig9/a1": "{n} satsを{name}に送りました",
@ -153,8 +153,8 @@
"JCIgkj": "ユーザー名",
"JHEHCk": "ザップ ({n})",
"JPFYIM": "ライトニングアドレスがありません",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JeoS4y": "リポスト",
"JjGgXI": "ユーザーを検索",
"JkLHGw": "ウェブサイト",
"JymXbw": "秘密鍵",
"K3r6DQ": "削除",
@ -177,7 +177,7 @@
"MRp6Ly": "Twitterユーザー名",
"MWTx65": "既定のページ",
"Mrpkot": "サブスクリプションに支払う",
"MuVeKe": "Buy nostr address",
"MuVeKe": "Nostrアドレスを購入",
"MzRYWH": "{item}の購入",
"N2IrpM": "確認",
"NAuFNH": "このタイプのサブスクリプションを既にお持ちです。更新もしくは支払いをお願いいたします",
@ -208,7 +208,7 @@
"Qxv0B2": "現在、Zap Poolには{number} satsあります。",
"R/6nsx": "サブスクリプション",
"R1fEdZ": "ザップの転送",
"R81upa": "People you follow",
"R81upa": "あなたがフォローしている人",
"RDZVQL": "チェック",
"RahCRH": "失効",
"RfhLwC": "制作者: {author}",
@ -221,7 +221,7 @@
"SP0+yi": "サブスクリプションの購入",
"SX58hM": "コピー",
"SYQtZ7": "LNアドレス プロキシ",
"ShdEie": "Mark all read",
"ShdEie": "すべて既読",
"Sjo1P4": "カスタム",
"Ss0sWu": "今すぐ支払う",
"TDR5ge": "選択したユーザーの投稿ではメディアが自動的に表示され、それ以外はリンクのみが表示されます",
@ -230,7 +230,7 @@
"Tpy00S": "ユーザー",
"UDYlxu": "保留中のサブスクリプション",
"ULotH9": "金額: {amount} sats",
"UT7Nkj": "New Chat",
"UT7Nkj": "新規チャット",
"UUPFlt": "ユーザーは、投稿内容の表示のためにコンテンツ警告へ同意する必要があります。",
"Up5U7K": "ブロック",
"VBadwB": "どうやらキーマネージャー拡張機能が見つけられません。ページを再読み込みしてください。",
@ -240,7 +240,7 @@
"VlJkSk": "{n} ミュート",
"VnXp8Z": "アバター",
"VtPV/B": "ブラウザ拡張機能でログイン (NIP-07)",
"VvaJst": "View Wallets",
"VvaJst": "ウォレットを表示",
"Vx7Zm2": "鍵の役割は?",
"W1yoZY": "サブスクリプションをお持ちでないようです。{link}から入手することができます",
"W2PiAr": "{n} ブロック",
@ -269,7 +269,7 @@
"b5vAk0": "あなたのハンドルはライトニングアドレスのように動作し、選択したLNURLまたはライトニングアドレスに転送されます",
"bQdA2k": "センシティブなコンテンツ",
"bep9C3": "公開鍵",
"bfvyfs": "Anon",
"bfvyfs": "匿名",
"brAXSu": "ユーザー名を決める",
"bxv59V": "たった今",
"c+oiJe": "拡張機能のインストール",
@ -291,8 +291,8 @@
"eHAneD": "リアクションの絵文字",
"eJj8HD": "認証を得る",
"eSzf2G": "{nIn} satsを1回ザップすると、{nOut} satsがZap Poolに割り当てられます。",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"eXT2QQ": "グループチャット",
"fBI91o": "ザップ",
"fOksnD": "LNURLサービスがザップに対応していないため投票できません",
"fWZYP5": "ピン留めされた投稿",
"filwqD": "読み取り",
@ -306,7 +306,7 @@
"gXgY3+": "まだすべてのクライアントがこれをサポートしているわけではありません。",
"gczcC5": "購読",
"gjBiyj": "読込中…",
"grQ+mI": "Proof of Work",
"grQ+mI": "プルーフオブワーク",
"h8XMJL": "バッジ",
"hK5ZDk": "世界",
"hMzcSq": "メッセージ",
@ -368,10 +368,10 @@
"oJ+JJN": "何も見つかりません (´・ω・`)",
"odFwjL": "フォローのみ",
"odhABf": "ログイン",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"ojzbwv": "まだNostrアドレスを持ってないようだね以下のリンクをチェックして、ぜひ手に入れよう{link}",
"osUr8O": "これらの拡張機能を使用して、ほとんどのNostrサイトにログインできます。",
"oxCa4R": "IDを入手すると、あなたを知っている人があなたを確認するのに役立ちます。@jackというユーザー名の人はたくさんいても、jack@cash.appは一人だけです。",
"p4N05H": "Upload",
"p4N05H": "アップロード",
"p85Uwy": "有効なサブスクリプション",
"pI+77w": "Snortリレーからダウンロードできるバックアップ",
"puLNUJ": "ピン留め",
@ -383,7 +383,7 @@
"qdGuQo": "秘密鍵 (誰とも共有しないこと)",
"qkvYUb": "プロフィールに追加",
"qmJ8kD": "翻訳できませんでした",
"qtWLmt": "Like",
"qtWLmt": "スキ",
"r3C4x/": "ソフトウェア",
"r5srDR": "ウォレットのパスワードを入力",
"rT14Ow": "リレーを追加する",
@ -404,14 +404,14 @@
"uSV4Ti": "リポスト前に確認を表示します",
"usAvMr": "プロフィールを編集",
"ut+2Cd": "パートナーIDを入手",
"v8lolG": "Start chat",
"v8lolG": "チャットを開始",
"vOKedj": "{n,plural,=1{と他{n}人} other{と他{n}人}}",
"vU71Ez": "{wallet}で支払う",
"vZ4quW": "NIP-05は、ユーザが本物であることを検証するDNSベースの仕組みです。",
"vhlWFg": "投票オプション",
"vlbWtt": "Get a free one",
"vlbWtt": "無料版を入手",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"vxwnbh": "公開イベントに適用する作業量",
"wEQDC6": "編集",
"wLtRCF": "自分の鍵",
"wWLwvh": "匿名",

View File

@ -1,443 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+D82kt": "Weet je het zeker dat je dit wil herplaatsen: {id}",
"+PzQ9Y": "Nu uitbetalen",
"+Vxixo": "Geheime Groep Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"+vA//S": "Aanmeldingen",
"+vIQlC": "Zorg ervoor dat u het volgende wachtwoord opslaat om uw account in de toekomst te beheren",
"+vVZ/G": "Verbind",
"+xliwN": "{name} Heeft herplaatst",
"/4tOwT": "Overslaan",
"/JE/X+": "Account hulp",
"/PCavi": "Openbaar",
"/RD0e2": "Nostr maakt gebruik van digitale handtekeningentechnologie om manipulatiebeveiligde notes te realiseren. Zo kunnen de notes consistent naar veel relays tegelijk worden verzonden en wordt overbodige opslag voorkomen.",
"/d6vEc": "Maak je profiel gemakkelijker om te vinden en te delen",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"00LcfG": "Meer laden",
"08zn6O": "Sleutel exporteren",
"0Azlrb": "Beheren",
"0BUTMv": "Zoeken naar...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"0jOEtS": "Ongeldig LNURL",
"0mch2Y": "naam heeft verboden tekens",
"0yO7wF": "{n} seconden",
"1A7TZk": "Wat is Snort en hoe werkt het?",
"1Mo59U": "Weet u zeker dat u deze notitie uit bladwijzers wilt verwijderen?",
"1R43+L": "Voer Nostr Wallet Connect configuratie in",
"1c4YST": "Verbonden met: {node}🎉",
"1iQ8GN": "Preview tonen/verbergen",
"1nYUGC": "{n} Volgend",
"1udzha": "Gesprekken",
"2/2yg+": "Toevoegen",
"25V4l1": "Omslagfoto",
"2IFGap": "Doneer",
"2LbrkB": "Wachtwoord invoeren",
"2a2YiP": "{n} Bladwijzers",
"2k0Cv+": "Niet leuk ({n})",
"2ukA4d": "{n} uur geleden",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3Rx6Qo": "Geavanceerd",
"3cc4Ct": "Licht",
"3gOsZq": "Vertalers",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3qnJlS": "Je stemt met {amount} sats",
"3t3kok": "{n,plural,one {}=1{{n} nieuwe note} other{{n} nieuwe notes}}",
"3tVy+Z": "{n} Volgers",
"3xCwbZ": "Of",
"3yk8fB": "Wallet",
"450Fty": "None",
"450Fty": "Geen",
"47FYwb": "Annuleer",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"4IPzdn": "Primaire ontwikkelaars",
"4L2vUY": "Uw nieuwe NIP-05 handvat is:",
"4OB335": "Vind-ik-niet-leuks",
"4Vmpt4": "NostrPlebs is een van de eerste Nostr NIP-05 providers en biedt een goede verzameling domeinen aan tegen redelijke prijzen",
"4Z3t5i": "Gebruik imgproxy om foto's te comprimeren",
"4rYCjn": "Notitie aan mijzelf",
"5JcXdV": "Account aanmaken",
"5oTnfy": "Koop Account-Naam",
"5rOdPG": "Zodra je de key manager extensie hebt geïnstalleerd en een key hebt gegenereerd kunt u onze Nieuwe Account Flow gebruiken om uw profiel in te stellen en interessante Nostr accounts vinden om te volgen.",
"5u6iEc": "Overzetten naar Pubkey",
"5vMmmR": "Gebruikersnamen zijn niet uniek op Nostr. Het Nostr adres(!) is uw unieke account label (e.g. name@nostrplebs.com).",
"5ykRmX": "Zend zap",
"65BmHb": "Proxy afbeelding laden van {host} is mislukt, klik hier om direct te laden",
"6Yfvvp": "Krijg een identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"6uMqL1": "Niet betaald",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7BX/yC": "Account wisselaar",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"7xzTiH": "{action} naar {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"89q5wc": "Bevestig Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"8g2vyB": "naam is te lang",
"8v1NN+": "Paring-zin",
"9+Ddtu": "Volgende",
"9HU8vw": "Reageren",
"9SvQep": "Volgend {n}",
"9WRlF4": "Verzend",
"9gqH2W": "Inloggen",
"9pMqYs": "Nostr Adres",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AGNz71": "Zap Iedereen {n} sats",
"ASRK0S": "Deze auteur is gedempt",
"Adk34V": "Profiel instellen",
"Ai8VHU": "Onbeperkt note-behoud op Snort relay",
"AkCxS/": "Reden",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"AyGauy": "Inloggen",
"B4C47Y": "naam is te kort",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"BGCM48": "Schrijf toegang tot Snort relays en 1 jaar note-opslag",
"BOUMjw": "Geen Nostr account gevonden voor {twitterUsername}",
"BOr9z/": "Snort is een open-source project gebouwd door gepassioneerde mensen in hun vrije tijd",
"BWpuKl": "Updaten",
"BcGMo+": "Notes bevatten tekst; het populairste gebruik van deze notities is het posten van \"Tweet-achtige\" berichten.",
"C5xzTC": "Premium",
"C81/uG": "Uitloggen",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"C8HhVE": "Voorgestelde Accounts",
"CHTbO3": "Invoice laden mislukt",
"CVWeJ6": "Trending Accounts",
"CmZ9ls": "{n} Gedempt",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"Cu/K85": "Vertaald vanuit {lang}",
"D+KzKd": "Zap elke note automatisch wanneer geladen",
"D3idYv": "Instellingen",
"DKnriN": "Sats verzenden",
"DZzCem": "Toon laatste {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"E8a4yq": "Volg wat populaire accounts",
"ELbg9p": "Data aanbieders",
"EPYwm7": "Uw privésleutel is uw wachtwoord. Als u deze sleutel verliest, verliest u de toegang tot uw account! Kopieer het en bewaar het goed. Er is geen manier om je privésleutel te resetten.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"Ebl/B2": "Vertalen naar {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"EcglP9": "Sleutel",
"EnCOBJ": "Kopen",
"Eqjl5K": "Alleen Snort en onze partner-identifiers geven u een kleurrijke domeinnaam, maar u bent ook welkom om andere diensten te gebruiken.",
"F+B3x1": "We werken ook samen met Nostrplebs.com om je meer opties te geven",
"F3l7xL": "Account toevoegen",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"FP+D3H": "LNURL om de zaps naar te sturen",
"FS3b54": "Klaar!",
"FSYL8G": "Trending Accounts",
"FdhSU2": "Claim nu",
"FfYsOb": "Er is een fout opgetreden!",
"FmXUJg": "volgt u",
"G/yZLu": "Verwijderen",
"G1BGCg": "Selecteer Wallet",
"GFOoEE": "Zout",
"GL8aXW": "Bladwijzers ({n})",
"GSye7T": "Lightning adres",
"GUlSVG": "Claim je inbegrepen Snort Nostr adres",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"H0JBH6": "Uitloggen",
"H6/kLh": "Bestelling betaald!",
"HAlOn1": "Naam",
"HF4YnO": "Bekijk live!",
"HFls6j": "naam zal later beschikbaar zijn",
"HOzFdo": "Gedempt",
"HWbkEK": "Cache wissen en herladen",
"HbefNb": "Open wallet",
"IDjHJ6": "Bedankt voor het gebruiken van Snort, overweeg alstublieft om te doneren als je kunt.",
"IEwZvs": "Weet u zeker dat u deze note wilt losmaken?",
"IKKHqV": "Volgers",
"INSqIz": "Twitter-gebruikersnaam...",
"IUZC+0": "Dit betekent dat niemand notes kan wijzigen die je hebt gemaakt en dat iedereen kan verifiëren dat de notes die ze lezen door jou worden gemaakt.",
"Ig9/a1": "{n} sats verzonden naar {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"J+dIsA": "Abonnementen",
"JCIgkj": "Gebruikersnaam",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JPFYIM": "Geen lightning adres",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JjGgXI": "Zoek Account",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"JymXbw": "Privésleutel",
"K3r6DQ": "Wis",
"K7AkdL": "Weergeven",
"KAhAcM": "Voer LNDHub config in",
"KLo3SP": "Reden: {reason}",
"KQvWvD": "Verwijderd",
"KWuDfz": "Ik heb mijn sleutels opgeslagen, doorgaan",
"KahimY": "Onbekende event soort: {kind}",
"KoFlZg": "Voer mint URL in",
"LF5kYT": "Andere Connecties",
"LXxsbk": "Anoniem",
"LgbKvU": "Opmerking",
"Lu5/Bj": "Open op Zapstr",
"Lw+I+J": "{n,plural,one {}=0{{name} gezapped} other{{name} & {n} anderen}}",
"M3Oirc": "Debug-menu",
"MBAYRO": "Toont \"Kopieer ID\" en \"Kopieer Event JSON\" in het context menu bij elk bericht",
"MI2jkA": "Niet beschikbaar:",
"MP54GY": "Wachtwoord Wallet",
"MRp6Ly": "Twitter-gebruikersnaam",
"MWTx65": "Standaardpagina",
"Mrpkot": "Betaal abonnement",
"MuVeKe": "Koop Nostr adres",
"MzRYWH": "{item} kopen",
"N2IrpM": "Bevestig",
"NAuFNH": "U heeft al een abonnement van dit type, gelieve te vernieuwen of te betalen",
"NNSu3d": "Importeer Twitter Volglijst",
"NdOYJJ": "Hmm niets hier... Bekijk {newUsersPage} om aanbevolen Nostriches te volgen!",
"NepkXH": "Kan niet stemmen met {amount} sats, stel een ander standaard zap bedrag in",
"NfNk2V": "Uw privésleutel",
"NndBJE": "Nieuwe gebruikerspagina",
"O9GTIc": "Profiel foto",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"OKhRC6": "Deel",
"OLEm6z": "Onbekende inlogfout",
"OQXnew": "Uw abonnement is nog actief, u kunt nog niet vernieuwen",
"ORGv1Q": "Aangemaakt",
"P04gQm": "Alle zaps die naar deze note worden verzonden zullen worden ontvangen door de volgende LNURL",
"P61BTu": "Kopieer JSON event",
"P7FD0F": "Systeem (Standaard)",
"P7nJT9": "Totaal vandaag (UTC): {amount} sats",
"PCSt5T": "Voorkeuren",
"PLSbmL": "Uw wachtwoord om te onthouden",
"PamNxw": "Onbekende bestandsheader: {name}",
"Pe0ogR": "Thema",
"PrsIg7": "Reacties worden op elke pagina getoond, indien uitgeschakeld worden er geen reacties getoond",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"QWhotP": "Zap Pool werkt alleen als u een van de ondersteunde wallet connecties gebruikt (WebLN, LNDHub of Nostr Wallet Connect)",
"QawghE": "Je kan je gebruikersnaam op elk moment veranderen.",
"QxCuTo": "Kunst door {name}",
"Qxv0B2": "Op dit moment heb je {number} sats in je Zap-Pool.",
"R/6nsx": "Abonnement",
"R1fEdZ": "Zaps doorsturen",
"R81upa": "Mensen die je volgt",
"RDZVQL": "Controleer",
"RahCRH": "Verlopen",
"RfhLwC": "Door: {author}",
"RhDAoS": "Weet u zeker dat u dit wilt verwijderen {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Rs4kCE": "Bladwijzers",
"RwFaYs": "Sorteer",
"SOqbe9": "Update Lightning Adres",
"SP0+yi": "Abonnement kopen",
"SX58hM": "Kopiëer",
"SYQtZ7": "LN adres Proxy",
"ShdEie": "Markeer alle als gelezen",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"Ss0sWu": "Nu betalen",
"TDR5ge": "Media in notities wordt automatisch getoond voor de geselecteerde personen, anders wordt alleen de link getoond",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"Tpy00S": "Personen",
"UDYlxu": "Abonnementen in afwachting",
"ULotH9": "Aantal: {amount} sats",
"UT7Nkj": "Nieuwe Chat",
"UUPFlt": "Gebruikers moeten akkoord gaan met de waarschuwing van de inhoud om de inhoud van uw notitie te tonen.",
"Up5U7K": "Blokkeren",
"VBadwB": "Hmm, kan de extentie van een sleutelbeheerder niet vinden.. probeer de pagina opnieuw te laden.",
"VN0+Fz": "Saldo: {amount} sats",
"VOjC1i": "Kies naar welke service u bijlagen wilt uploaden",
"VR5eHw": "Publieke sleutel (npub/nprofile)",
"VlJkSk": "{n} gedempt",
"VnXp8Z": "Profielfoto",
"VtPV/B": "Login met extensie (NIP-07)",
"VvaJst": "Bekijk wallets",
"Vx7Zm2": "Hoe werken ze?",
"W1yoZY": "Het lijkt erop dat je geen abonnement hebt, je kan er één {link} krijgen",
"W2PiAr": "{n} Geblokkeerd",
"W9355R": "Niet langer negeren",
"WONP5O": "Vind je Twitter volglijst op nostr (Gegevens verstrekt door {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"XgWvGA": "Reacties",
"Xopqkl": "Uw standaard zap bedrag is {number} sats, voorbeeldwaarden worden hiermee berekend.",
"XrSk2j": "Inwisselen",
"XzF0aC": "Sleutelbeheer extensies zijn veiliger en maken het mogelijk om eenvoudig in te loggen op een Nostr client, hier zijn enkele bekende extensies:",
"Y31HTH": "Help met de ontwikkeling van Snort",
"YDURw6": "Service-URL",
"YXA3AH": "Reacties inschakelen",
"Z0FDj+": "Abonneer je op Snort {plan} voor {price} en ontvang de volgende beloningen",
"Z4BMCZ": "Voer koppelingszin in",
"ZKORll": "Activeer Nu",
"ZLmyG9": "Bijdragers",
"ZUZedV": "Lightning Donatie:",
"Zr5TMx": "Profiel instellen",
"a5UPxh": "Support ontwikkelaars en platforms die NIP-05 identificatie-diensten aanbieden",
"a7TDNm": "Notes zullen in real-time worden gestreamt naar het Global en Notes tabblad",
"aWpBzj": "Toon meer",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"b5vAk0": "Uw Nostr adres gedraagt zich als een Lightning adres en stuurt zaps door naar uw gekozen LNURL/Lightning adres",
"bQdA2k": "Gevoelige inhoud",
"bep9C3": "Publieke sleutel",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"brAXSu": "Kies een gebruikersnaam",
"bxv59V": "Zojuist",
"c+oiJe": "Extensie Installeren",
"c35bj2": "Voor vragen over je NIP-05 bestelling stuur een DM: {link}",
"c3g2hL": "Opnieuw uitzenden",
"cFbU1B": "Gebruik je Alby? Ga naar {link} om je Nostr Wallet Connect in te stellen!",
"cPIKU2": "Volgt",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"cWx9t8": "Demp allen",
"cg1VJ2": "Wallet verbinden",
"cuP16y": "Ondersteuning voor meerdere accounts",
"cuV2gK": "naam is geregistreerd",
"cyR7Kh": "Terug",
"d6CyG5": "Geschiedenis",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"dOQCL8": "Weergavenaam",
"e61Jf3": "Binnenkort beschikbaar",
"e7qqly": "Alles markeren als gelezen",
"eHAneD": "Emoji reactie",
"eJj8HD": "Word geverifieerd",
"eSzf2G": "Een enkele zap van {nIn} sats zal {nOut} sats toewijzen aan de zap pool.",
"eXT2QQ": "Groepschat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"fOksnD": "Kan niet stemmen omdat LNURL-service geen zaps ondersteunt",
"fWZYP5": "Vastgezet",
"filwqD": "Lezen",
"flnGvv": "Waar denk je aan?",
"fsB/4p": "Opgeslagen",
"g5pX+a": "Over ons",
"g985Wp": "Kan code niet verzenden",
"gBdUXk": "Sla je sleutels op!",
"gDZkld": "Snort is een Nostr UI, Nostr is een gedecentraliseerd protocol voor opslaan en verspreiden van \"notes\".",
"gDzDRs": "Emoji die wordt verstuurd wanneer u reageert op een note",
"gXgY3+": "Nog niet alle Nostr Apps ondersteunen dit",
"gczcC5": "Abonneer",
"gjBiyj": "Laden...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hK5ZDk": "de wereld",
"hMzcSq": "Berichten",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"hY4lzx": "Ondersteuningen",
"hicxcO": "Reacties tonen",
"hniz8Z": "hier",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iCqGww": "Reacties ({n})",
"iDGAbc": "Krijg een identifier",
"iEoXYx": "DeepL vertalingen",
"iGT1eE": "Voorkom dat nepaccounts je imiteren",
"iNWbVV": "Hendel",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"iXPL0Z": "Kan niet inloggen met een privésleutel in een onbeveiligde omgeving, gebruik in plaats daarvan een Nostr key manager extensie",
"ieGrWo": "Volgen",
"itPgxd": "Profiel",
"izWS4J": "Ontvolgen",
"jA3OE/": "{n,plural,one {}=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Voorvertoning op snort",
"jMzO1S": "Interne fout: {msg}",
"jfV8Wr": "Terug",
"juhqvW": "Verbeter inlogbeveiliging met browserextensies",
"jvo0vs": "Opslaan",
"jzgQ2z": "{n} Reacties",
"k2veDA": "Schrijven",
"k7sKNy": "Onze eigen NIP-05 verificatieservice ondersteunt de ontwikkeling van deze site en geeft u een speciale badge op onze site!",
"kJYo0u": "{n,plural,one {}=0{{name} gerepost} other{{name} & {n} anderen gerepost}}",
"kaaf1E": "nu",
"kuPHYE": "{n,plural,one {}=0{{name} geliked} other{{name} & {n} anderen geliked}}",
"l+ikU1": "Alles in {plan}",
"lBboHo": "Als je wat anderen wilt uitproberen, bekijk dan {link} voor meer!",
"lCILNz": "Koop nu",
"lD3+8a": "Betaal",
"lPWASz": "Koop Nostr adres",
"lTbT3s": "Wachtwoord Wallet",
"lgg1KN": "accountoverzicht",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"ll3xBp": "Proxyservice voor afbeeldingen",
"lnaT9F": "Volgend {n}",
"lsNFM1": "Klik om inhoud van {link} te laden",
"lvlPhZ": "Betaal invoice",
"mErPop": "Het lijkt erop dat je er geen hebt, check {link} om er een te kopen!",
"mH91FY": "Elke medewerker krijgt een percentage van alle donaties en NIP-05 orders, je kunt de splitsingen hieronder zien",
"mKAr6h": "Volg allen",
"mKh2HS": "File Upload service",
"mKhgP9": "{n,plural,one {}=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Populair",
"mfe8RW": "Optie: {n}",
"n1Whvj": "Wissel",
"nDejmx": "Deblokkeer",
"nGBrvw": "Bladwijzers",
"nN9XTz": "Deel je gedachten met {link}",
"nOaArs": "Profiel instellen",
"nWQFic": "Vernieuwen",
"nn1qb3": "Uw donaties worden zeer gewaardeerd",
"nwZXeh": "{n} geblokkeerd",
"o6Uy3d": "Alleen de privésleutel kan worden gebruikt om te posten, al het andere logt u in alleen-lezen modus.",
"o7e+nJ": "{n} volgers",
"oJ+JJN": "Niets gevonden :/",
"odFwjL": "Alleen volgend",
"odhABf": "Inloggen",
"ojzbwv": "Hey, het lijkt erop dat je nog geen Nostr Adres hebt. Overweeg om er een te nemen! Bekijk {link}",
"osUr8O": "U kunt deze extensie ook gebruiken om in te loggen op andere Nostr apps and websites.",
"oxCa4R": "Het krijgen van een Nostr adres identifier helpt mensen die u kennen te bevestigen dat dit account werkelijk van u is. Veel mensen kunnen een @jack gebruikersnaam hebben, maar er is slechts één jack@cash.app.",
"p4N05H": "Uploaden",
"p85Uwy": "Actieve Abonnementen",
"pI+77w": "Downloadbare back-ups van Snort relay",
"puLNUJ": "Vastmaken aan profielpagina",
"pzTOmv": "Volgers",
"qD9EUF": "E-mail <> DM bridge voor je Snort Nostr adres",
"qDwvZ4": "Onbekende fout",
"qMx1sA": "Standaard Zap-bedrag",
"qUJTsT": "Geblokkeerd",
"qdGuQo": "Uw privésleutel is (deel dit met niemand)",
"qkvYUb": "Toevoegen aan Profiel",
"qmJ8kD": "Vertaling mislukt",
"qtWLmt": "Vind ik leuk",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"r5srDR": "Voer wallet wachtwoord in",
"rT14Ow": "Relays toevoegen",
"reJ6SM": "Het wordt aanbevolen om een van de volgende browserextensies te gebruiken als u op een computer bent om uw sleutel te beveiligen:",
"rfuMjE": "(Standaard)",
"rmdsT4": "{n} dagen",
"rrfdTe": "Dit is dezelfde technologie die door het Bitcoin netwerk wordt gebruikt en waarvan veiligheid is bewezen.",
"rudscU": "Fout bij het laden van de volgers, probeer het later opnieuw",
"sWnYKw": "Snort is ontworpen om een soortgelijke ervaring als Twitter te hebben.",
"svOoEH": "Naam-squatting en imitatie is niet aangeraden. Snort en onze partners behouden zich het recht om uw Nostr adres identifier te beëindigen (lees: enkel de geldigheid van uw identifier, dus niet uw account - niemand kan deze wegnemen) voor het schenden van deze regel.",
"tOdNiY": "Donker thema",
"th5lxp": "Stuur notitie naar een subset van schrijfrelays",
"thnRpU": "NIP-05 geverifieerd worden kan helpen:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"u/vOPu": "Betaald",
"u4bHcR": "Bekijk de code hier: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"uSV4Ti": "Reposts moeten handmatig worden bevestigd",
"usAvMr": "Bewerk Profiel",
"ut+2Cd": "Krijg een identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vOKedj": "{n,plural,one {}=1{& {n} anderen} other{& {n} anderen}}",
"vU71Ez": "Betalen met {wallet}",
"vZ4quW": "NIP-05 is een DNS-gebaseerde identificatie die helpt u te valideren als een bepaalde gebruiker.",
"vhlWFg": "Poll Opties",
"vlbWtt": "Verkrijg er één gratis",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"vxwnbh": "Hoeveelheid werk van toepassing op alle gepubliceerde events",
"wEQDC6": "Bewerk",
"wLtRCF": "Uw sleutel",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"wYSD2L": "Nostr Adres",
"wih7iJ": "naam is geblokkeerd",
"wqyN/i": "Meer informatie over {service} bij {link}",
"wtLjP6": "Kopieer ID",
"x/Fx2P": "Ondersteun diensten die je gebruikt door een deel van je zaps in een pot geld te splitsen!",
"x/q8d5": "Deze notitie is gemarkeerd als gevoelig, klik hier om te onthullen",
"x82IOl": "Dempen",
"xIoGG9": "Ga naar",
"xJ9n2N": "Uw publieke sleutel",
"xKflGN": "{username}'s Volglijst op Nostr",
"xQtL3v": "Ontgrendel",
"xaj9Ba": "Aanbieder",
"xbVgIm": "Automatisch video's laden",
"xhQMeQ": "Verloopt op",
"xmcVZ0": "Zoeken",
"y1Z3or": "Taal",
"yCLnBC": "LNURL of Lightning Address",
"yCmnnm": "Lees Global van",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
"zINlao": "Eigenaar",
"zQvVDJ": "Alle",
"zcaOTs": "Zap hoeveelheid in sats",
"zjJZBd": "Je bent er klaar voor!",
"zonsdq": "Laden van LNURL service mislukt",
"zvCDao": "Recente notities automatisch weergeven"
}

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -1,19 +1,19 @@
{
"+D82kt": "Är du säker på att du vill dela vidare:{id}",
"+PzQ9Y": "Utbetalning nu",
"+Vxixo": "Secret Group Chat",
"+Vxixo": "Hemlig grupp chatt",
"+aZY2h": "Zap Typ",
"+vA//S": "Inloggningar",
"+vIQlC": "Se till att spara följande lösenord för att hantera din profil i framtiden",
"+vVZ/G": "Anslut",
"+xliwN": "{name} reposted",
"+xliwN": "{name} delade",
"/4tOwT": "Hoppa över",
"/JE/X+": "Konto Support",
"/PCavi": "Publik",
"/RD0e2": "Nostr använder digital signatur teknik för att ge manipuleringssäkra anteckningar som säkert kan replikeras till många reläer för att ge redundant lagring av ditt innehåll.",
"/d6vEc": "Gör din profil enklare att hitta och dela",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"00LcfG": "Ladda fler",
"08zn6O": "Exportera nycklar",
"0Azlrb": "Hantera",
"0BUTMv": "Sök...",
@ -54,7 +54,7 @@
"5oTnfy": "Köp Namn",
"5rOdPG": "När du har konfigurerat din nyckelmanagers tillägg och genererat en nyckel, du kan följa vårat nya användarflöde för att ställa in din profil och hjälpa dig att hitta några intressanta personer på Nostr att följa.",
"5u6iEc": "Överför till Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5vMmmR": "Användarnamn är inte unika på Nostr. Nostr-adressen är din unika människoläsbara adress som är unik för dig vid registrering.",
"5ykRmX": "Skicka zap",
"65BmHb": "Det gick inte att proxybilden från {host}, klicka här för att ladda direkt",
"6Yfvvp": "Skaffa en identifierare",
@ -121,7 +121,7 @@
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL för att vidarebefordra zaps till",
"FS3b54": "Klart!",
"FSYL8G": "Trending Users",
"FSYL8G": "Trendande användare",
"FdhSU2": "Hämta nu",
"FfYsOb": "Ett fel har uppstått!",
"FmXUJg": "följer dig",
@ -129,7 +129,7 @@
"G1BGCg": "Välj plånbok",
"GFOoEE": "Salt",
"GL8aXW": "Bokmärken ({n})",
"GSye7T": "Lightning Address",
"GSye7T": "Lightning-adress",
"GUlSVG": "Hämta din inkluderade Snort nostr adress",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Ogillar",
@ -137,14 +137,14 @@
"H0JBH6": "Logga Ut",
"H6/kLh": "Beställningen är betald!",
"HAlOn1": "Namn",
"HF4YnO": "Watch Live!",
"HF4YnO": "Titta live!",
"HFls6j": "namnet kommer att vara tillgängligt senare",
"HOzFdo": "Tystad",
"HWbkEK": "Rensa cache och ladda om",
"HbefNb": "Öppna plånbok",
"IDjHJ6": "Tack för att du använder Snort, vänligen överväg att donera om du kan.",
"IEwZvs": "Är du säker på att du vill ta bort denna anteckningen?",
"IKKHqV": "Follows",
"IKKHqV": "Följer",
"INSqIz": "Twitter-användarnamn...",
"IUZC+0": "Detta innebär att ingen kan ändra anteckningar som du har skapat och alla kan enkelt kontrollera att de anteckningar de läser har skapats av dig.",
"Ig9/a1": "Skickade {n} sats till {name}",
@ -153,8 +153,8 @@
"JCIgkj": "Användarnamn",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "Ingen lightning adress",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JeoS4y": "Dela",
"JjGgXI": "Sök användare",
"JkLHGw": "Webbsida",
"JymXbw": "Privat nyckel",
"K3r6DQ": "Radera",
@ -169,7 +169,7 @@
"LXxsbk": "Anonymt",
"LgbKvU": "Kommentar",
"Lu5/Bj": "Öppna på Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"Lw+I+J": "{n,plural,one {}=0{{name} zappade} other{{name} & {n} andra zappade}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Visar \"Kopiera ID\" och \"Kopiera händelse JSON\" i kontextmenyn på varje meddelande",
"MI2jkA": "Inte tillgänglig:",
@ -177,7 +177,7 @@
"MRp6Ly": "Twitter-användarnamn",
"MWTx65": "Förvald Sida",
"Mrpkot": "Betala för prenumeration",
"MuVeKe": "Buy nostr address",
"MuVeKe": "Köp nostr adress",
"MzRYWH": "Köper {item}",
"N2IrpM": "Bekräfta",
"NAuFNH": "Du har redan en prenumeration av den här typen, vänligen förnya eller betala",
@ -208,7 +208,7 @@
"Qxv0B2": "Du har för närvarande {number} sats i din zap pool.",
"R/6nsx": "Prenumeration",
"R1fEdZ": "Vidarebefordra Zaps",
"R81upa": "People you follow",
"R81upa": "Personer du följer",
"RDZVQL": "Kontrollera",
"RahCRH": "Förfallen",
"RfhLwC": "Av: {author}",
@ -221,7 +221,7 @@
"SP0+yi": "Köp Prenumeration",
"SX58hM": "Kopiera",
"SYQtZ7": "LN Adress Proxy",
"ShdEie": "Mark all read",
"ShdEie": "Markera alla som lästa",
"Sjo1P4": "Anpassat",
"Ss0sWu": "Betala nu",
"TDR5ge": "Media i anteckningar visas automatiskt för valda personer, annars visas endast länken",
@ -230,7 +230,7 @@
"Tpy00S": "Personer",
"UDYlxu": "Väntande prenumerationer",
"ULotH9": "Belopp: {amount} sats",
"UT7Nkj": "New Chat",
"UT7Nkj": "Ny chatt",
"UUPFlt": "Användare måste acceptera innehållsvarningen för att visa innehållet i din anteckning.",
"Up5U7K": "Blockera",
"VBadwB": "Hmm, kan inte hitta ett Key Manager tillägg.. prova att ladda om sidan.",
@ -240,7 +240,7 @@
"VlJkSk": "{n} tystad",
"VnXp8Z": "Avatar",
"VtPV/B": "Logga in med tillägg (NIP-07)",
"VvaJst": "View Wallets",
"VvaJst": "Visa plånböcker",
"Vx7Zm2": "Hur fungerar nycklar?",
"W1yoZY": "Det verkar som om du inte har några prenumerationer, du kan skaffa en {link}",
"W2PiAr": "{n} Blockerad",
@ -291,7 +291,7 @@
"eHAneD": "Reaktion emoji",
"eJj8HD": "Bli Verifierad",
"eSzf2G": "En enda zap med {nIn} sats kommer att fördela {nOut} sats till zappoolen.",
"eXT2QQ": "Group Chat",
"eXT2QQ": "Gruppchatt",
"fBI91o": "Zap",
"fOksnD": "Kan inte rösta eftersom LNURL-tjänsten inte stöder zaps",
"fWZYP5": "Fastnålad",
@ -334,9 +334,9 @@
"jzgQ2z": "{n} Reaktioner",
"k2veDA": "Skriv",
"k7sKNy": "Vår alldeles egna NIP-05 verifieringstjänst, hjälpa till att stödja utvecklingen av denna webbplats och få ett glänsande speciellt märke på vår webbplats!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kJYo0u": "{n,plural,one {}=0{{name} delade} other{{name} & {n} andra delade}}",
"kaaf1E": "nu",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"kuPHYE": "{n,plural,one {}=0{{name} gillade} other{{name} & {n} andra gillade}}",
"l+ikU1": "Allting i {plan}",
"lBboHo": "Om du vill prova några andra, kolla in {link} för mer!",
"lCILNz": "Köp Nu",
@ -368,10 +368,10 @@
"oJ+JJN": "Inget hittat :/",
"odFwjL": "Följer endast",
"odhABf": "Logga in",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"ojzbwv": "Hej, det ser ut som du inte har en Nostr adress ännu, du bör skaffa en! Kolla in {link}",
"osUr8O": "Du kan också använda dessa tillägg för att logga in på de flesta Nostr webbplatser.",
"oxCa4R": "Att få en identifierare hjälper till att bekräfta den verkliga du för människor som känner dig. Många kan ha ett användarnamn @jack, men det finns bara en jack@cash.app.",
"p4N05H": "Upload",
"p4N05H": "Ladda upp",
"p85Uwy": "Aktiva prenumerationer",
"pI+77w": "Nedladdningsbara säkerhetskopior från Snort relä",
"puLNUJ": "Fäst",
@ -383,7 +383,7 @@
"qdGuQo": "Din privata nyckel är (dela inte detta med någon)",
"qkvYUb": "Lägg till i min profil",
"qmJ8kD": "Översättning misslyckades",
"qtWLmt": "Like",
"qtWLmt": "Gilla",
"r3C4x/": "Mjukvara",
"r5srDR": "Ange lösenord för plånboken",
"rT14Ow": "Lägg till reläer",
@ -404,14 +404,14 @@
"uSV4Ti": "Dela vidare måste bekräftas manuellt",
"usAvMr": "Redigera profil",
"ut+2Cd": "Skaffa en partner identifierare",
"v8lolG": "Start chat",
"v8lolG": "Starta chatt",
"vOKedj": "{n,plural,=1{& {n} andra} other{& {n} andras}}",
"vU71Ez": "Betalar med {wallet}",
"vZ4quW": "NIP-05 är en DNS-baserad verifieringsspec som hjälper till att validera dig som en riktig användare.",
"vhlWFg": "Alternativ för omröstning",
"vlbWtt": "Get a free one",
"vlbWtt": "Få en kostnadsfri",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"vxwnbh": "Mängd arbete att tillämpas för alla publicerade händelser",
"wEQDC6": "Ändra",
"wLtRCF": "Din nyckel",
"wWLwvh": "Anon",

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}

View File

@ -0,0 +1,443 @@
{
"+D82kt": "Are you sure you want to repost: {id}",
"+PzQ9Y": "Payout Now",
"+Vxixo": "Secret Group Chat",
"+aZY2h": "Zap Type",
"+vA//S": "Logins",
"+vIQlC": "Please make sure to save the following password in order to manage your handle in the future",
"+vVZ/G": "Connect",
"+xliwN": "{name} reposted",
"/4tOwT": "Skip",
"/JE/X+": "Account Support",
"/PCavi": "Public",
"/RD0e2": "Nostr uses digital signature technology to provide tamper proof notes which can safely be replicated to many relays to provide redundant storage of your content.",
"/d6vEc": "Make your profile easier to find and share",
"/n5KSF": "{n} ms",
"00LcfG": "Load more",
"08zn6O": "Export Keys",
"0Azlrb": "Manage",
"0BUTMv": "Search...",
"0jOEtS": "Invalid LNURL",
"0mch2Y": "name has disallowed characters",
"0yO7wF": "{n} secs",
"1A7TZk": "What is Snort and how does it work?",
"1Mo59U": "Are you sure you want to remove this note from bookmarks?",
"1R43+L": "Enter Nostr Wallet Connect config",
"1c4YST": "Connected to: {node} 🎉",
"1iQ8GN": "Toggle Preview",
"1nYUGC": "{n} Following",
"1udzha": "Conversations",
"2/2yg+": "Add",
"25V4l1": "Banner",
"2IFGap": "Donate",
"2LbrkB": "Enter password",
"2a2YiP": "{n} Bookmarks",
"2k0Cv+": "Dislikes ({n})",
"2ukA4d": "{n} hours",
"3Rx6Qo": "Advanced",
"3cc4Ct": "Light",
"3gOsZq": "Translators",
"3qnJlS": "You are voting with {amount} sats",
"3t3kok": "{n,plural,=1{{n} new note} other{{n} new notes}}",
"3tVy+Z": "{n} Followers",
"3xCwbZ": "OR",
"3yk8fB": "Wallet",
"450Fty": "None",
"47FYwb": "Cancel",
"4IPzdn": "Primary Developers",
"4L2vUY": "Your new NIP-05 handle is:",
"4OB335": "Dislike",
"4Vmpt4": "Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices",
"4Z3t5i": "Use imgproxy to compress images",
"4rYCjn": "Note to Self",
"5JcXdV": "Create Account",
"5oTnfy": "Buy Handle",
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
"5u6iEc": "Transfer to Pubkey",
"5vMmmR": "Usernames are not unique on Nostr. The nostr address is your unique human-readable address that is unique to you upon registration.",
"5ykRmX": "Send zap",
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
"6Yfvvp": "Get an identifier",
"6ewQqw": "Likes ({n})",
"6uMqL1": "Unpaid",
"7+Domh": "Notes",
"7BX/yC": "Account Switcher",
"7hp70g": "NIP-05",
"7xzTiH": "{action} to {target}",
"8/vBbP": "Reposts ({n})",
"89q5wc": "Confirm Reposts",
"8QDesP": "Zap {n} sats",
"8g2vyB": "name too long",
"8v1NN+": "Pairing phrase",
"9+Ddtu": "Next",
"9HU8vw": "Reply",
"9SvQep": "Follows {n}",
"9WRlF4": "Send",
"9gqH2W": "Login",
"9pMqYs": "Nostr Address",
"9wO4wJ": "Lightning Invoice",
"ADmfQT": "Parent",
"AGNz71": "Zap All {n} sats",
"ASRK0S": "This author has been muted",
"Adk34V": "Setup your Profile",
"Ai8VHU": "Unlimited note retention on Snort relay",
"AkCxS/": "Reason",
"AnLrRC": "Non-Zap",
"AyGauy": "Login",
"B4C47Y": "name too short",
"B6+XJy": "zapped",
"B6H7eJ": "nsec, npub, nip-05, hex",
"BGCM48": "Write access to Snort relay, with 1 year of event retention",
"BOUMjw": "No nostr users found for {twitterUsername}",
"BOr9z/": "Snort is an open source project built by passionate people in their free time",
"BWpuKl": "Update",
"BcGMo+": "Notes hold text content, the most popular usage of these notes is to store \"tweet like\" messages.",
"C5xzTC": "Premium",
"C81/uG": "Logout",
"C8HhVE": "Suggested Follows",
"CHTbO3": "Failed to load invoice",
"CVWeJ6": "Trending People",
"CmZ9ls": "{n} Muted",
"CsCUYo": "{n} sats",
"Cu/K85": "Translated from {lang}",
"D+KzKd": "Automatically zap every note when loaded",
"D3idYv": "Settings",
"DKnriN": "Send sats",
"DZzCem": "Show latest {n} notes",
"DcL8P+": "Supporter",
"Dh3hbq": "Auto Zap",
"DtYelJ": "Transfer",
"E8a4yq": "Follow some popular accounts",
"ELbg9p": "Data Providers",
"EPYwm7": "Your private key is your password. If you lose this key, you will lose access to your account! Copy it and keep it in a safe place. There is no way to reset your private key.",
"EWyQH5": "Global",
"Ebl/B2": "Translate to {lang}",
"EcZF24": "Custom Relays",
"EcglP9": "Key",
"EnCOBJ": "Buy",
"Eqjl5K": "Only Snort and our integration partner identifier gives you a colorful domain name, but you are welcome to use other services too.",
"F+B3x1": "We have also partnered with nostrplebs.com to give you more options",
"F3l7xL": "Add Account",
"FDguSC": "{n} Zaps",
"FP+D3H": "LNURL to forward zaps to",
"FS3b54": "Done!",
"FSYL8G": "Trending Users",
"FdhSU2": "Claim Now",
"FfYsOb": "An error has occured!",
"FmXUJg": "follows you",
"G/yZLu": "Remove",
"G1BGCg": "Select Wallet",
"GFOoEE": "Salt",
"GL8aXW": "Bookmarks ({n})",
"GSye7T": "Lightning Address",
"GUlSVG": "Claim your included Snort nostr address",
"Gcn9NQ": "Magnet Link",
"GspYR7": "{n} Dislike",
"H+vHiz": "Hex Key..",
"H0JBH6": "Log Out",
"H6/kLh": "Order Paid!",
"HAlOn1": "Name",
"HF4YnO": "Watch Live!",
"HFls6j": "name will be available later",
"HOzFdo": "Muted",
"HWbkEK": "Clear cache and reload",
"HbefNb": "Open Wallet",
"IDjHJ6": "Thanks for using Snort, please consider donating if you can.",
"IEwZvs": "Are you sure you want to unpin this note?",
"IKKHqV": "Follows",
"INSqIz": "Twitter username...",
"IUZC+0": "This means that nobody can modify notes which you have created and everybody can easily verify that the notes they are reading are created by you.",
"Ig9/a1": "Sent {n} sats to {name}",
"Ix8l+B": "Trending Notes",
"J+dIsA": "Subscriptions",
"JCIgkj": "Username",
"JHEHCk": "Zaps ({n})",
"JPFYIM": "No lightning address",
"JeoS4y": "Repost",
"JjGgXI": "Search users",
"JkLHGw": "Website",
"JymXbw": "Private Key",
"K3r6DQ": "Delete",
"K7AkdL": "Show",
"KAhAcM": "Enter LNDHub config",
"KLo3SP": "Reason: {reason}",
"KQvWvD": "Deleted",
"KWuDfz": "I have saved my keys, continue",
"KahimY": "Unknown event kind: {kind}",
"KoFlZg": "Enter mint URL",
"LF5kYT": "Other Connections",
"LXxsbk": "Anonymous",
"LgbKvU": "Comment",
"Lu5/Bj": "Open on Zapstr",
"Lw+I+J": "{n,plural,=0{{name} zapped} other{{name} & {n} others zapped}}",
"M3Oirc": "Debug Menus",
"MBAYRO": "Shows \"Copy ID\" and \"Copy Event JSON\" in the context menu on each message",
"MI2jkA": "Not available:",
"MP54GY": "Wallet password",
"MRp6Ly": "Twitter username",
"MWTx65": "Default Page",
"Mrpkot": "Pay for subscription",
"MuVeKe": "Buy nostr address",
"MzRYWH": "Buying {item}",
"N2IrpM": "Confirm",
"NAuFNH": "You already have a subscription of this type, please renew or pay",
"NNSu3d": "Import Twitter Follows",
"NdOYJJ": "Hmm nothing here.. Checkout {newUsersPage} to follow some recommended nostrich's!",
"NepkXH": "Can't vote with {amount} sats, please set a different default zap amount",
"NfNk2V": "Your private key",
"NndBJE": "New users page",
"O9GTIc": "Profile picture",
"OEW7yJ": "Zaps",
"OKhRC6": "Share",
"OLEm6z": "Unknown login error",
"OQXnew": "You subscription is still active, you can't renew yet",
"ORGv1Q": "Created",
"P04gQm": "All zaps sent to this note will be received by the following LNURL",
"P61BTu": "Copy Event JSON",
"P7FD0F": "System (Default)",
"P7nJT9": "Total today (UTC): {amount} sats",
"PCSt5T": "Preferences",
"PLSbmL": "Your mnemonic phrase",
"PamNxw": "Unknown file header: {name}",
"Pe0ogR": "Theme",
"PrsIg7": "Reactions will be shown on every page, if disabled no reactions will be shown",
"QDFTjG": "{n} Relays",
"QWhotP": "Zap Pool only works if you use one of the supported wallet connections (WebLN, LNC, LNDHub or Nostr Wallet Connect)",
"QawghE": "You can change your username at any point.",
"QxCuTo": "Art by {name}",
"Qxv0B2": "You currently have {number} sats in your zap pool.",
"R/6nsx": "Subscription",
"R1fEdZ": "Forward Zaps",
"R81upa": "People you follow",
"RDZVQL": "Check",
"RahCRH": "Expired",
"RfhLwC": "By: {author}",
"RhDAoS": "Are you sure you want to delete {id}",
"RjpoYG": "Recent",
"RoOyAh": "Relays",
"Rs4kCE": "Bookmark",
"RwFaYs": "Sort",
"SOqbe9": "Update Lightning Address",
"SP0+yi": "Buy Subscription",
"SX58hM": "Copy",
"SYQtZ7": "LN Address Proxy",
"ShdEie": "Mark all read",
"Sjo1P4": "Custom",
"Ss0sWu": "Pay Now",
"TDR5ge": "Media in notes will automatically be shown for selected people, otherwise only the link will show",
"TMfYfY": "Cashu token",
"TpgeGw": "Hex Salt..",
"Tpy00S": "People",
"UDYlxu": "Pending Subscriptions",
"ULotH9": "Amount: {amount} sats",
"UT7Nkj": "New Chat",
"UUPFlt": "Users must accept the content warning to show the content of your note.",
"Up5U7K": "Block",
"VBadwB": "Hmm, can't find a key manager extension.. try reloading the page.",
"VN0+Fz": "Balance: {amount} sats",
"VOjC1i": "Pick which upload service you want to upload attachments to",
"VR5eHw": "Public key (npub/nprofile)",
"VlJkSk": "{n} muted",
"VnXp8Z": "Avatar",
"VtPV/B": "Login with Extension (NIP-07)",
"VvaJst": "View Wallets",
"Vx7Zm2": "How do keys work?",
"W1yoZY": "It looks like you dont have any subscriptions, you can get one {link}",
"W2PiAr": "{n} Blocked",
"W9355R": "Unmute",
"WONP5O": "Find your twitter follows on nostr (Data provided by {provider})",
"WxthCV": "e.g. Jack",
"X7xU8J": "nsec, npub, nip-05, hex, mnemonic",
"XICsE8": "File hosts",
"XgWvGA": "Reactions",
"Xopqkl": "Your default zap amount is {number} sats, example values are calculated from this.",
"XrSk2j": "Redeem",
"XzF0aC": "Key manager extensions are more secure and allow you to easily login to any Nostr client, here are some well known extensions:",
"Y31HTH": "Help fund the development of Snort",
"YDURw6": "Service URL",
"YXA3AH": "Enable reactions",
"Z0FDj+": "Subscribe to Snort {plan} for {price} and receive the following rewards",
"Z4BMCZ": "Enter pairing phrase",
"ZKORll": "Activate Now",
"ZLmyG9": "Contributors",
"ZUZedV": "Lightning Donation:",
"Zr5TMx": "Setup profile",
"a5UPxh": "Fund developers and platforms providing NIP-05 verification services",
"a7TDNm": "Notes will stream in real time into global and notes tab",
"aWpBzj": "Show more",
"b12Goz": "Mnemonic",
"b5vAk0": "Your handle will act like a lightning address and will redirect to your chosen LNURL or Lightning address",
"bQdA2k": "Sensitive Content",
"bep9C3": "Public Key",
"bfvyfs": "Anon",
"brAXSu": "Pick a username",
"bxv59V": "Just now",
"c+oiJe": "Install Extension",
"c35bj2": "If you have an enquiry about your NIP-05 order please DM {link}",
"c3g2hL": "Broadcast Again",
"cFbU1B": "Using Alby? Go to {link} to get your NWC config!",
"cPIKU2": "Following",
"cQfLWb": "URL..",
"cWx9t8": "Mute all",
"cg1VJ2": "Connect Wallet",
"cuP16y": "Multi account support",
"cuV2gK": "name is registered",
"cyR7Kh": "Back",
"d6CyG5": "History",
"d7d0/x": "LN Address",
"dOQCL8": "Display name",
"e61Jf3": "Coming soon",
"e7qqly": "Mark All Read",
"eHAneD": "Reaction emoji",
"eJj8HD": "Get Verified",
"eSzf2G": "A single zap of {nIn} sats will allocate {nOut} sats to the zap pool.",
"eXT2QQ": "Group Chat",
"fBI91o": "Zap",
"fOksnD": "Can't vote because LNURL service does not support zaps",
"fWZYP5": "Pinned",
"filwqD": "Read",
"flnGvv": "What's on your mind?",
"fsB/4p": "Saved",
"g5pX+a": "About",
"g985Wp": "Failed to send vote",
"gBdUXk": "Save your keys!",
"gDZkld": "Snort is a Nostr UI, nostr is a decentralised protocol for saving and distributing \"notes\".",
"gDzDRs": "Emoji to send when reactiong to a note",
"gXgY3+": "Not all clients support this yet",
"gczcC5": "Subscribe",
"gjBiyj": "Loading...",
"grQ+mI": "Proof of Work",
"h8XMJL": "Badges",
"hK5ZDk": "the world",
"hMzcSq": "Messages",
"hWSp+B": "Nostr Connect (NIP-46)",
"hY4lzx": "Supports",
"hicxcO": "Show replies",
"hniz8Z": "here",
"i/dBAR": "Zap Pool",
"iCqGww": "Reactions ({n})",
"iDGAbc": "Get a Snort identifier",
"iEoXYx": "DeepL translations",
"iGT1eE": "Prevent fake accounts from imitating you",
"iNWbVV": "Handle",
"iUsU2x": "Mint: {url}",
"iXPL0Z": "Can't login with private key on an insecure connection, please use a Nostr key manager extension instead",
"ieGrWo": "Follow",
"itPgxd": "Profile",
"izWS4J": "Unfollow",
"jA3OE/": "{n,plural,=1{{n} sat} other{{n} sats}}",
"jCA7Cw": "Preview on snort",
"jMzO1S": "Internal error: {msg}",
"jfV8Wr": "Back",
"juhqvW": "Improve login security with browser extensions",
"jvo0vs": "Save",
"jzgQ2z": "{n} Reactions",
"k2veDA": "Write",
"k7sKNy": "Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!",
"kJYo0u": "{n,plural,=0{{name} reposted} other{{name} & {n} others reposted}}",
"kaaf1E": "now",
"kuPHYE": "{n,plural,=0{{name} liked} other{{name} & {n} others liked}}",
"l+ikU1": "Everything in {plan}",
"lBboHo": "If you want to try out some others, check out {link} for more!",
"lCILNz": "Buy Now",
"lD3+8a": "Pay",
"lPWASz": "Snort nostr address",
"lTbT3s": "Wallet password",
"lgg1KN": "account page",
"ll3xBp": "Image proxy service",
"lnaT9F": "Following {n}",
"lsNFM1": "Click to load content from {link}",
"lvlPhZ": "Pay Invoice",
"mErPop": "It looks like you dont have any, check {link} to buy one!",
"mH91FY": "Each contributor will get paid a percentage of all donations and NIP-05 orders, you can see the split amounts below",
"mKAr6h": "Follow all",
"mKh2HS": "File upload service",
"mKhgP9": "{n,plural,=0{} =1{zapped} other{zapped}}",
"mTJFgF": "Popular",
"mfe8RW": "Option: {n}",
"n1Whvj": "Switch",
"nDejmx": "Unblock",
"nGBrvw": "Bookmarks",
"nN9XTz": "Share your thoughts with {link}",
"nOaArs": "Setup Profile",
"nWQFic": "Renew",
"nn1qb3": "Your donations are greatly appreciated",
"nwZXeh": "{n} blocked",
"o6Uy3d": "Only the secret key can be used to publish (sign events), everything else logs you in read-only mode.",
"o7e+nJ": "{n} followers",
"oJ+JJN": "Nothing found :/",
"odFwjL": "Follows only",
"odhABf": "Login",
"ojzbwv": "Hey, it looks like you dont have a Nostr Address yet, you should get one! Check out {link}",
"osUr8O": "You can also use these extensions to login to most Nostr sites.",
"oxCa4R": "Getting an identifier helps confirm the real you to people who know you. Many people can have a username @jack, but there is only one jack@cash.app.",
"p4N05H": "Upload",
"p85Uwy": "Active Subscriptions",
"pI+77w": "Downloadable backups from Snort relay",
"puLNUJ": "Pin",
"pzTOmv": "Followers",
"qD9EUF": "Email <> DM bridge for your Snort nostr address",
"qDwvZ4": "Unknown error",
"qMx1sA": "Default Zap amount",
"qUJTsT": "Blocked",
"qdGuQo": "Your Private Key Is (do not share this with anyone)",
"qkvYUb": "Add to Profile",
"qmJ8kD": "Translation failed",
"qtWLmt": "Like",
"r3C4x/": "Software",
"r5srDR": "Enter wallet password",
"rT14Ow": "Add Relays",
"reJ6SM": "It is recommended to use one of the following browser extensions if you are on a desktop computer to secure your key:",
"rfuMjE": "(Default)",
"rmdsT4": "{n} days",
"rrfdTe": "This is the same technology which is used by Bitcoin and has been proven to be extremely secure.",
"rudscU": "Failed to load follows, please try again later",
"sWnYKw": "Snort is designed to have a similar experience to Twitter.",
"svOoEH": "Name-squatting and impersonation is not allowed. Snort and our partners reserve the right to terminate your handle (not your account - nobody can take that away) for violating this rule.",
"tOdNiY": "Dark",
"th5lxp": "Send note to a subset of your write relays",
"thnRpU": "Getting NIP-05 verified can help:",
"ttxS0b": "Supporter Badge",
"u/vOPu": "Paid",
"u4bHcR": "Check out the code here: {link}",
"uD/N6c": "Zap {target} {n} sats",
"uSV4Ti": "Reposts need to be manually confirmed",
"usAvMr": "Edit Profile",
"ut+2Cd": "Get a partner identifier",
"v8lolG": "Start chat",
"vOKedj": "{n,plural,=1{& {n} other} other{& {n} others}}",
"vU71Ez": "Paying with {wallet}",
"vZ4quW": "NIP-05 is a DNS based verification spec which helps to validate you as a real user.",
"vhlWFg": "Poll Options",
"vlbWtt": "Get a free one",
"vrTOHJ": "{amount} sats",
"vxwnbh": "Amount of work to apply to all published events",
"wEQDC6": "Edit",
"wLtRCF": "Your key",
"wWLwvh": "Anon",
"wYSD2L": "Nostr Adddress",
"wih7iJ": "name is blocked",
"wqyN/i": "Find out more info about {service} at {link}",
"wtLjP6": "Copy ID",
"x/Fx2P": "Fund the services that you use by splitting a portion of all your zaps into a pool of funds!",
"x/q8d5": "This note has been marked as sensitive, click here to reveal",
"x82IOl": "Mute",
"xIoGG9": "Go to",
"xJ9n2N": "Your public key",
"xKflGN": "{username}''s Follows on Nostr",
"xQtL3v": "Unlock",
"xaj9Ba": "Provider",
"xbVgIm": "Automatically load media",
"xhQMeQ": "Expires",
"xmcVZ0": "Search",
"y1Z3or": "Language",
"yCLnBC": "LNURL or Lightning Address",
"yCmnnm": "Read global from",
"zFegDD": "Contact",
"zINlao": "Owner",
"zQvVDJ": "All",
"zcaOTs": "Zap amount in sats",
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}