-
- {guildNagbars}
-
+
);
});
diff --git a/fluxer_app/src/components/media-player/hooks/useMediaPlayer.ts b/fluxer_app/src/components/media-player/hooks/useMediaPlayer.ts
index a95dc59b..b1c3bd92 100644
--- a/fluxer_app/src/components/media-player/hooks/useMediaPlayer.ts
+++ b/fluxer_app/src/components/media-player/hooks/useMediaPlayer.ts
@@ -117,6 +117,19 @@ function storePlaybackRate(rate: number): void {
} catch {}
}
+const isAbortError = (error: unknown): boolean => {
+ if (!error || typeof error !== 'object') return false;
+ const name = (error as {name?: unknown}).name;
+ if (name === 'AbortError') return true;
+ const message = (error as {message?: unknown}).message;
+ return typeof message === 'string' && message.toLowerCase().includes('interrupted');
+};
+
+const normalizeError = (error: unknown): Error => {
+ if (error instanceof Error) return error;
+ return new Error(typeof error === 'string' ? error : 'Unknown media error');
+};
+
export function useMediaPlayer(options: UseMediaPlayerOptions = {}): UseMediaPlayerReturn {
const {
autoPlay = false,
@@ -324,9 +337,16 @@ export function useMediaPlayer(options: UseMediaPlayerOptions = {}): UseMediaPla
try {
await media.play();
+ setState((prev) => ({...prev, error: null}));
} catch (error) {
- console.error('Play failed:', error);
- throw error;
+ if (isAbortError(error)) {
+ console.debug('Play interrupted before it could start:', error);
+ return;
+ }
+
+ const normalizedError = normalizeError(error);
+ console.error('Play failed:', normalizedError);
+ setState((prev) => ({...prev, error: normalizedError}));
}
}, []);
diff --git a/fluxer_app/src/components/modals/channelTabs/ChannelInvitesTab.tsx b/fluxer_app/src/components/modals/channelTabs/ChannelInvitesTab.tsx
index 93af4a19..4ee8655b 100644
--- a/fluxer_app/src/components/modals/channelTabs/ChannelInvitesTab.tsx
+++ b/fluxer_app/src/components/modals/channelTabs/ChannelInvitesTab.tsx
@@ -82,14 +82,12 @@ const ChannelInvitesTab: React.FC<{channelId: string}> = observer(({channelId})
- {!(fetchStatus === 'success' && invites && invites.length === 0) && (
-
-
- {canManageGuild && channel?.guildId && }
-
- )}
+
+
+ {canManageGuild && channel?.guildId && }
+
{fetchStatus === 'pending' && (
diff --git a/fluxer_app/src/components/modals/channelTabs/ChannelWebhooksTab.tsx b/fluxer_app/src/components/modals/channelTabs/ChannelWebhooksTab.tsx
index 25d4e7c3..ef14391b 100644
--- a/fluxer_app/src/components/modals/channelTabs/ChannelWebhooksTab.tsx
+++ b/fluxer_app/src/components/modals/channelTabs/ChannelWebhooksTab.tsx
@@ -135,7 +135,7 @@ const ChannelWebhooksTab: React.FC<{channelId: string}> = observer(({channelId})
)}
- {canManageWebhooks && !(fetchStatus === 'success' && (!webhooks || webhooks.length === 0)) && (
+ {canManageWebhooks && (
- {canManageGuild && !(fetchStatus === 'success' && invites && invites.length === 0) && (
-
- )}
+ {canManageGuild && }
{fetchStatus === 'pending' && (
diff --git a/fluxer_app/src/components/modals/guildTabs/GuildWebhooksTab.tsx b/fluxer_app/src/components/modals/guildTabs/GuildWebhooksTab.tsx
index 45cc9df0..6ce97eff 100644
--- a/fluxer_app/src/components/modals/guildTabs/GuildWebhooksTab.tsx
+++ b/fluxer_app/src/components/modals/guildTabs/GuildWebhooksTab.tsx
@@ -112,7 +112,7 @@ const GuildWebhooksTab: React.FC<{guildId: string}> = observer(({guildId}) => {
)}
- {canManageWebhooks && !(fetchStatus === 'success' && sortedWebhooks.length === 0) && (
+ {canManageWebhooks && (
To create a webhook, open the channel's settings and use the Webhooks tab. You can still
diff --git a/fluxer_app/src/components/popouts/ExpressionPickerPopout.module.css b/fluxer_app/src/components/popouts/ExpressionPickerPopout.module.css
index 5728f310..78efe281 100644
--- a/fluxer_app/src/components/popouts/ExpressionPickerPopout.module.css
+++ b/fluxer_app/src/components/popouts/ExpressionPickerPopout.module.css
@@ -40,6 +40,7 @@
display: flex;
flex-direction: column;
gap: var(--spacing-3);
+ border-bottom: 1px solid var(--background-modifier-hover);
}
:global(.theme-light) .header {
diff --git a/fluxer_app/src/components/popouts/GuildIcon.tsx b/fluxer_app/src/components/popouts/GuildIcon.tsx
index 6facb3b9..d1a881a7 100644
--- a/fluxer_app/src/components/popouts/GuildIcon.tsx
+++ b/fluxer_app/src/components/popouts/GuildIcon.tsx
@@ -33,6 +33,7 @@ type GuildIconProps = {
icon: string | null;
className?: string;
sizePx?: number;
+ containerProps?: React.HTMLAttributes & {'data-jump-link-guild-icon'?: string};
};
type GuildIconStyleVars = React.CSSProperties & {
@@ -40,7 +41,14 @@ type GuildIconStyleVars = React.CSSProperties & {
'--guild-icon-image'?: string;
};
-export const GuildIcon = observer(function GuildIcon({id, name, icon, className, sizePx}: GuildIconProps) {
+export const GuildIcon = observer(function GuildIcon({
+ id,
+ name,
+ icon,
+ className,
+ sizePx,
+ containerProps,
+}: GuildIconProps) {
const initials = React.useMemo(() => StringUtils.getInitialsFromName(name), [name]);
const initialsLength = React.useMemo(() => getInitialsLength(initials), [initials]);
const [hoverRef, isHovering] = useHover();
@@ -104,6 +112,7 @@ export const GuildIcon = observer(function GuildIcon({id, name, icon, className,
diff --git a/fluxer_app/src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx b/fluxer_app/src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx
index 472ef8fe..7e24cc28 100644
--- a/fluxer_app/src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx
+++ b/fluxer_app/src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx
@@ -147,6 +147,13 @@ export const ManageRolesMenuItem: React.FC
= observer(
}));
}, [guild, canManageRole]);
+ const visibleRoles = React.useMemo(() => {
+ if (canManageRoles) return allRoles;
+ const memberRoles = currentMember?.roles;
+ if (!memberRoles) return [];
+ return allRoles.filter(({role}) => memberRoles.has(role.id));
+ }, [allRoles, canManageRoles, currentMember]);
+
const handleToggleRole = React.useCallback(
async (roleId: string, hasRole: boolean, canToggle: boolean) => {
if (!canToggle) return;
@@ -159,33 +166,42 @@ export const ManageRolesMenuItem: React.FC = observer(
[guildId, member.user.id],
);
- if (allRoles.length === 0) return null;
+ if (visibleRoles.length === 0) return null;
return (
}
- selectionMode="multiple"
+ selectionMode={canManageRoles ? 'multiple' : 'none'}
render={() => (
- {allRoles.map(({role, canManage}) => {
- const hasRole = currentMember?.roles.has(role.id) ?? false;
- const canToggle = canManageRoles && canManage;
- return (
- handleToggleRole(role.id, hasRole, canToggle)}
- closeOnChange={false}
- >
-
-
- );
- })}
+ {canManageRoles
+ ? visibleRoles.map(({role, canManage}) => {
+ const hasRole = currentMember?.roles.has(role.id) ?? false;
+ const canToggle = canManageRoles && canManage;
+ return (
+ handleToggleRole(role.id, hasRole, canToggle)}
+ closeOnChange={false}
+ >
+
+
+ );
+ })
+ : visibleRoles.map(({role}) => (
+
+ ))}
)}
/>
diff --git a/fluxer_app/src/hooks/useTextareaAutocomplete.ts b/fluxer_app/src/hooks/useTextareaAutocomplete.ts
index f489113d..e5bfba1a 100644
--- a/fluxer_app/src/hooks/useTextareaAutocomplete.ts
+++ b/fluxer_app/src/hooks/useTextareaAutocomplete.ts
@@ -634,25 +634,43 @@ export function useTextareaAutocomplete({
memberSearchResults.length > 0 ? memberSearchResults : GuildMemberStore.getMembers(channel.guildId ?? '');
const parsedQuery = parseMentionQuery(matchedText ?? '');
+ const queryForMatching = parsedQuery.usernameQuery.trim();
const members = filterGuildMembers(membersToUse, parsedQuery, true, canViewChannel);
- const roles = GuildStore.getGuildRoles(channel.guildId ?? '')
- .filter((role) => canMentionEveryone || role.mentionable)
+ const mentionableRoles = GuildStore.getGuildRoles(channel.guildId ?? '').filter(
+ (role) => canMentionEveryone || role.mentionable,
+ );
+
+ const matchedRoles = queryForMatching
+ ? matchSorter(mentionableRoles, queryForMatching, {
+ keys: ['name'],
+ threshold: matchSorter.rankings.CONTAINS,
+ })
+ : mentionableRoles;
+
+ const roles = matchedRoles
+ .sort((a, b) => b.position - a.position)
+ .slice(0, 10)
.map((role) => ({
type: 'mention' as const,
kind: 'role' as const,
role,
- }))
- .sort((a, b) => b.role.position - a.role.position)
- .slice(0, 10);
+ }));
- const specialMentions: Array<{type: 'mention'; kind: '@everyone' | '@here'}> = [
+ const baseSpecialMentions: Array<{type: 'mention'; kind: '@everyone' | '@here'}> = [
{type: 'mention' as const, kind: '@everyone' as const},
{type: 'mention' as const, kind: '@here' as const},
];
- options = [...members, ...(canMentionEveryone ? specialMentions : []), ...roles];
+ const specialMentions = canMentionEveryone
+ ? baseSpecialMentions.filter((mention) => {
+ if (!queryForMatching) return true;
+ return mention.kind.toLowerCase().includes(queryForMatching.toLowerCase());
+ })
+ : [];
+
+ options = [...members, ...specialMentions, ...roles];
}
break;
}
diff --git a/fluxer_app/src/lib/MessageQueue.tsx b/fluxer_app/src/lib/MessageQueue.tsx
index 1eb2f293..fd1f37aa 100644
--- a/fluxer_app/src/lib/MessageQueue.tsx
+++ b/fluxer_app/src/lib/MessageQueue.tsx
@@ -147,7 +147,7 @@ class MessageQueue extends Queue | un
drain(
message: MessageQueuePayload,
- completed: (err: RetryError | null, result?: HttpResponse) => void,
+ completed: (err: RetryError | null, result?: HttpResponse, error?: unknown) => void,
): void {
if (isSendPayload(message)) {
this.handleSend(message, completed);
@@ -155,7 +155,7 @@ class MessageQueue extends Queue | un
this.handleEdit(message, completed);
} else {
logger.error('Unknown message type, completing with null');
- completed(null);
+ completed(null, undefined, new Error('Unknown message queue payload'));
}
}
@@ -188,7 +188,7 @@ class MessageQueue extends Queue | un
private async handleSend(
payload: SendMessagePayload,
- completed: (err: RetryError | null, result?: HttpResponse) => void,
+ completed: (err: RetryError | null, result?: HttpResponse, error?: unknown) => void,
): Promise {
const {channelId, nonce, hasAttachments} = payload;
@@ -239,7 +239,7 @@ class MessageQueue extends Queue | un
this.handleSendRateLimit(httpError, completed);
} else {
this.handleSendError(channelId, nonce, httpError, i18n, payload.hasAttachments);
- completed(null);
+ completed(null, undefined, httpError);
}
}
}
@@ -309,12 +309,12 @@ class MessageQueue extends Queue | un
private handleSendRateLimit(
error: HttpError,
- completed: (err: RetryError | null, result?: HttpResponse) => void,
+ completed: (err: RetryError | null, result?: HttpResponse, error?: unknown) => void,
): void {
const retryAfterSeconds = getApiErrorBody(error)?.retry_after ?? 0;
const retryAfterMs = retryAfterSeconds > 0 ? retryAfterSeconds * 1000 : undefined;
- completed({retryAfter: retryAfterMs});
+ completed({retryAfter: retryAfterMs}, undefined, error);
this.handleRateLimitError(retryAfterSeconds);
}
@@ -399,7 +399,7 @@ class MessageQueue extends Queue | un
private async handleEdit(
payload: EditMessagePayload,
- completed: (err: RetryError | null, result?: HttpResponse) => void,
+ completed: (err: RetryError | null, result?: HttpResponse, error?: unknown) => void,
): Promise {
const {channelId, messageId, content, flags} = payload;
@@ -428,7 +428,7 @@ class MessageQueue extends Queue | un
this.handleEditRateLimit(httpError, completed);
} else {
this.showEditErrorModal(httpError);
- completed(null);
+ completed(null, undefined, httpError);
}
} finally {
this.abortControllers.delete(messageId);
@@ -451,12 +451,12 @@ class MessageQueue extends Queue | un
private handleEditRateLimit(
error: HttpError,
- completed: (err: RetryError | null, result?: HttpResponse) => void,
+ completed: (err: RetryError | null, result?: HttpResponse, error?: unknown) => void,
): void {
const retryAfterSeconds = getApiErrorBody(error)?.retry_after ?? 0;
const retryAfterMs = retryAfterSeconds > 0 ? retryAfterSeconds * 1000 : undefined;
- completed({retryAfter: retryAfterMs});
+ completed({retryAfter: retryAfterMs}, undefined, error);
this.handleEditRateLimitError(retryAfterSeconds);
}
diff --git a/fluxer_app/src/lib/Queue.ts b/fluxer_app/src/lib/Queue.ts
index dfa07ee7..bdb65b24 100644
--- a/fluxer_app/src/lib/Queue.ts
+++ b/fluxer_app/src/lib/Queue.ts
@@ -21,7 +21,7 @@ import {Logger} from '~/lib/Logger';
export interface QueueEntry {
message: TMessage;
- success: (result?: TResult) => void;
+ success: (result?: TResult, error?: unknown) => void;
}
interface RetryInfo {
@@ -49,9 +49,12 @@ export abstract class Queue {
this.isDraining = false;
}
- protected abstract drain(message: TMessage, complete: (retry: RetryInfo | null, result?: TResult) => void): void;
+ protected abstract drain(
+ message: TMessage,
+ complete: (retry: RetryInfo | null, result?: TResult, error?: unknown) => void,
+ ): void;
- enqueue(message: TMessage, success: (result?: TResult) => void): void {
+ enqueue(message: TMessage, success: (result?: TResult, error?: unknown) => void): void {
this.queue.push({message, success});
this.maybeProcessNext();
}
@@ -90,7 +93,7 @@ export abstract class Queue {
let hasCompleted = false;
- const complete = (retry: RetryInfo | null, result?: TResult): void => {
+ const complete = (retry: RetryInfo | null, result?: TResult, error?: unknown): void => {
if (hasCompleted) {
this.logger.warn('Queue completion callback invoked more than once; ignoring extra call');
return;
@@ -105,9 +108,9 @@ export abstract class Queue {
setTimeout(() => this.maybeProcessNext(), 0);
try {
- success(result);
- } catch (error) {
- this.logger.error('Error in queue success callback', error);
+ success(result, error);
+ } catch (callbackError) {
+ this.logger.error('Error in queue success callback', callbackError);
}
return;
}
@@ -132,7 +135,7 @@ export abstract class Queue {
} catch (error) {
this.logger.error('Unhandled error while draining queue item', error);
if (!hasCompleted) {
- complete(null);
+ complete(null, undefined, error);
}
}
}
diff --git a/fluxer_app/src/lib/ScrollManager.ts b/fluxer_app/src/lib/ScrollManager.ts
index 96fca747..aaad22da 100644
--- a/fluxer_app/src/lib/ScrollManager.ts
+++ b/fluxer_app/src/lib/ScrollManager.ts
@@ -1023,6 +1023,27 @@ export class ScrollManager {
}
}
+ applyLayoutShift(heightDelta: number): boolean {
+ if (this.isDisposed || !this.isInitialized()) return false;
+ if (heightDelta === 0) return false;
+
+ const scrollerNode = this.ref.current?.getScrollerNode();
+ if (!scrollerNode) return false;
+
+ const state = this.getScrollerState();
+ const distanceFromBottom = Math.max(state.scrollHeight - state.offsetHeight - state.scrollTop, 0);
+ const stickThreshold = Math.max(Math.abs(heightDelta) + BOTTOM_LOCK_TOLERANCE, 32);
+ const shouldStick = this.isPinned() || distanceFromBottom <= stickThreshold;
+
+ if (!shouldStick) return false;
+
+ const maxScrollTop = Math.max(0, scrollerNode.scrollHeight - scrollerNode.offsetHeight);
+ const targetScrollTop = Math.max(0, Math.min(state.scrollTop + heightDelta, maxScrollTop));
+
+ this.mergeTo(targetScrollTop, this.handleScroll);
+ return true;
+ }
+
private updateStoreDimensions(callback?: () => void): void {
if (this.isDisposed) return;
if (this.isJumping() || !this.isInitialized()) return;
diff --git a/fluxer_app/src/lib/markdown/renderers/MessageJumpLink.module.css b/fluxer_app/src/lib/markdown/renderers/MessageJumpLink.module.css
index 967b81c7..f66b1cf7 100644
--- a/fluxer_app/src/lib/markdown/renderers/MessageJumpLink.module.css
+++ b/fluxer_app/src/lib/markdown/renderers/MessageJumpLink.module.css
@@ -58,6 +58,7 @@
.jumpLinkGuildIcon {
width: 1rem;
height: 1rem;
+ --guild-icon-size: 1rem;
flex-shrink: 0;
display: inline-flex;
align-items: center;
diff --git a/fluxer_app/src/lib/markdown/renderers/emoji-renderer.tsx b/fluxer_app/src/lib/markdown/renderers/emoji-renderer.tsx
index 01cebfd2..1312721e 100644
--- a/fluxer_app/src/lib/markdown/renderers/emoji-renderer.tsx
+++ b/fluxer_app/src/lib/markdown/renderers/emoji-renderer.tsx
@@ -129,7 +129,10 @@ const EmojiRendererInner = observer(function EmojiRendererInner({
const tooltipQualitySuffix = `?size=${tooltipEmojiSize}&quality=lossless`;
const isCustomEmoji = node.kind.kind === EmojiKind.Custom;
- const emojiRecord = isCustomEmoji && emojiData.id ? EmojiStore.getEmojiById(emojiData.id) : null;
+ const emojiRecord: Emoji | null =
+ isCustomEmoji && emojiData.id ? (EmojiStore.getEmojiById(emojiData.id) ?? null) : null;
+ const fallbackGuildId = emojiRecord?.guildId;
+ const fallbackAnimated = emojiRecord?.animated ?? emojiData.isAnimated;
const handleOpenBottomSheet = React.useCallback(() => {
if (!isMobile) return;
@@ -160,12 +163,16 @@ const EmojiRendererInner = observer(function EmojiRendererInner({
if (emojiRecord) {
return emojiRecord;
}
+
return {
+ id: emojiData.id,
+ guildId: fallbackGuildId,
+ animated: fallbackAnimated,
name: node.kind.name,
allNamesString: node.kind.name,
uniqueName: node.kind.name,
};
- }, [emojiRecord, node.kind.name]);
+ }, [emojiData.id, emojiData.isAnimated, emojiRecord, node.kind.name]);
const getTooltipData = React.useCallback(() => {
const emojiUrl =
diff --git a/fluxer_app/src/lib/markdown/renderers/link-renderer.tsx b/fluxer_app/src/lib/markdown/renderers/link-renderer.tsx
index 532f1924..c4f11f6e 100644
--- a/fluxer_app/src/lib/markdown/renderers/link-renderer.tsx
+++ b/fluxer_app/src/lib/markdown/renderers/link-renderer.tsx
@@ -62,11 +62,21 @@ interface JumpLinkMentionProps {
guild: GuildRecord | null;
messageId?: string;
i18n: I18n;
+ interactive?: boolean;
}
-const JumpLinkMention = observer(function JumpLinkMention({channel, guild, messageId, i18n}: JumpLinkMentionProps) {
+const INLINE_REPLY_CONTEXT = 1;
+
+const JumpLinkMention = observer(function JumpLinkMention({
+ channel,
+ guild,
+ messageId,
+ i18n,
+ interactive = true,
+}: JumpLinkMentionProps) {
const handleClick = React.useCallback(
- (event: React.MouseEvent) => {
+ (event: React.MouseEvent) => {
+ if (!interactive) return;
event.preventDefault();
event.stopPropagation();
@@ -98,17 +108,26 @@ const JumpLinkMention = observer(function JumpLinkMention({channel, guild, messa
? i18n._(msg`Jump to ${labelText}`)
: i18n._(msg`Jump to the linked channel`);
+ const Component = interactive ? 'button' : 'span';
+
return (
-
+
);
});
@@ -156,13 +175,20 @@ export const LinkRenderer = observer(function LinkRenderer({
const jumpTarget = messageJumpTarget ?? parseChannelJumpLink(url);
const jumpChannel = jumpTarget ? (ChannelStore.getChannel(jumpTarget.channelId) ?? null) : null;
const jumpGuild = jumpChannel?.guildId ? (GuildStore.getGuild(jumpChannel.guildId) ?? null) : null;
+ const isInlineReplyContext = options.context === INLINE_REPLY_CONTEXT;
if (jumpTarget && jumpChannel) {
- return (
-
-
-
+ const mention = (
+
);
+
+ return isInlineReplyContext ? mention : {mention};
}
const shouldShowAccessDeniedModal = Boolean(jumpTarget && !jumpChannel);
diff --git a/fluxer_app/src/locales/ar/messages.po b/fluxer_app/src/locales/ar/messages.po
index 8da9fa5d..6b8d1ba0 100644
--- a/fluxer_app/src/locales/ar/messages.po
+++ b/fluxer_app/src/locales/ar/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "تحكم في وقت عرض معاينات الرسائل في قائمة الرسائل المباشرة"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "المستخدمة بشكل متكرر"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-امتداد:"
@@ -56,7 +62,7 @@ msgstr "... تشغيل الوضع المكثف. رائع!"
msgid "(edited)"
msgstr "(تم التعديل)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(فشل التحميل)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> بدأ مكالمة."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> متاح حاليًا فقط لأعضاء فريق Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "نموذج إضافة رقم هاتف"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "الرموز التعبيرية المتحركة ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "هل أنت متأكد أنك تريد تعطيل المصادقة الثنائية عبر الرسائل القصيرة؟ هذا سيجعل حسابك أقل أمانًا."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "هل أنت متأكد أنك تريد تمكين الدعوات؟ هذا سيسمح للمستخدمين بالانضمام إلى هذا المجتمع من خلال روابط الدعوة مرة أخرى."
@@ -2548,7 +2554,7 @@ msgstr "هل أنت متأكد أنك تريد إلغاء الحظر عن <0>{0}
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "هل أنت متأكد أنك تريد إلغاء هذه الدعوة؟ لا يمكن التراجع عن هذا الإجراء."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "هل أنت متأكد أنك تريد إخفاء جميع تضمينات الروابط في هذه الرسالة؟ هذا الإجراء سيخفي جميع التضمينات من هذه الرسالة."
@@ -3159,7 +3165,7 @@ msgstr "تم الوصول إلى حد الإشارات المرجعية"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "إضافة رسالة إلى الإشارات المرجعية"
@@ -3432,7 +3438,7 @@ msgstr "إعدادات الكاميرا"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "تغيير لقب مجموعتي"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "تغيير اللقب"
@@ -3775,7 +3781,7 @@ msgstr "القناة"
msgid "Channel Access"
msgstr "وصول القناة"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "تم رفض الوصول إلى القناة"
@@ -4142,7 +4148,7 @@ msgstr "قم باسترداد حسابك لتوليد رموز البيتا."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "قم بربط حسابك للانضمام إلى هذه القناة الصوتية."
@@ -4649,8 +4655,8 @@ msgstr "المجتمع يروج أو يسهل أنشطة غير قانونية"
msgid "Community Settings"
msgstr "إعدادات المجتمع"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "المجتمع غير متاح مؤقتًا"
@@ -5179,20 +5185,20 @@ msgstr "نسخ الرابط"
msgid "Copy Media"
msgstr "نسخ الوسائط"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "نسخ الرسالة"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "نسخ معرف الرسالة"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "نسخ رابط الرسالة"
@@ -5388,8 +5394,8 @@ msgstr "إنشاء نموذج فئة المفضلة"
msgid "Create Group DM"
msgstr "إنشاء محادثة جماعية"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "إنشاء دعوة"
@@ -5978,11 +5984,11 @@ msgstr "يتم تفعيل الرسوم المتحركة عند التفاعل ع
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "يتم إيقاف التشغيل على الهواتف المحمولة افتراضيًا للحفاظ على عمر البطارية واستهلاك البيانات."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "حذف الإيموجي"
msgid "Delete media"
msgstr "حذف الوسائط"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "حذف الرسالة"
@@ -6595,7 +6601,7 @@ msgstr "مناقشة أو الترويج للأنشطة غير القانوني
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "تعديل الوسائط"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "تعديل الرسالة"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "إيموجي"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "تمكين إذن مراقبة الإدخال"
msgid "Enable Invites"
msgstr "تمكين الدعوات"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "تمكين الدعوات مرة أخرى"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "تمكين الدعوات لهذا المجتمع"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "فشل تحميل مخزون الهدايا"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "فشل تحميل الدعوات"
@@ -8769,7 +8775,7 @@ msgstr "هل نسيت كلمة المرور؟"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "إعادة توجيه"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "الدعوات موقفة مؤقتاً"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "الدعوات إلى <0>{0}0> معطلة حالياً"
@@ -10457,8 +10463,8 @@ msgstr "التردد"
msgid "Join a Community"
msgstr "انضم إلى مجتمع"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "انضم إلى مجتمع يحتوي على ملصقات للبدء!"
@@ -10588,7 +10594,7 @@ msgstr "اقفز"
msgid "Jump straight to the app to continue."
msgstr "اقفز مباشرة إلى التطبيق للمتابعة."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "اقفز إلى {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "اقفز إلى أقدم رسالة غير مقروءة"
msgid "Jump to page"
msgstr "اقفز إلى الصفحة"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "اقفز إلى الحاضر"
@@ -10612,15 +10618,15 @@ msgstr "اقفز إلى الحاضر"
msgid "Jump to the channel of the active call"
msgstr "اقفز إلى قناة المكالمة النشطة"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "اقفز إلى القناة المرتبطة"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "اقفز إلى الرسالة المرتبطة"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "اقفز إلى الرسالة في {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "جارٍ تحميل المزيد..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "عنصر نائب للتحميل"
@@ -11256,7 +11262,7 @@ msgstr "إدارة حزم التعبيرات"
msgid "Manage feature flags"
msgstr "إدارة أعلام الميزات"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "إدارة ميزات النقابة"
@@ -11353,7 +11359,7 @@ msgstr "تحديد كمحتوى يحذف"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "تحديد كغير مقروء"
@@ -11822,7 +11828,7 @@ msgstr "الرسائل والوسائط"
msgid "Messages Deleted"
msgstr "تم حذف الرسائل"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "فشل تحميل الرسائل"
@@ -12471,7 +12477,7 @@ msgstr "يجب ألا يتجاوز اللقب 32 حرفًا"
msgid "Nickname updated"
msgstr "تم تحديث اللقب"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "لا توجد قنوات يمكن الوصول إليها"
@@ -12575,6 +12581,10 @@ msgstr "لم يتم تعيين عنوان بريد إلكتروني"
msgid "No emojis found matching your search."
msgstr "لم يتم العثور على رموز تعبيرية تطابق بحثك."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "لا توجد رموز تعبيرية تطابق بحثك"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "لا توجد حزم مثبتة حتى الآن."
msgid "No invite background"
msgstr "لا يوجد خلفية دعوة"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "لا توجد روابط دعوة"
@@ -12768,8 +12778,8 @@ msgstr "لم يتم العثور على إعدادات"
msgid "No specific scopes requested."
msgstr "لم يتم طلب نطاقات محددة."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "لا توجد ملصقات متاحة"
@@ -12777,8 +12787,7 @@ msgstr "لا توجد ملصقات متاحة"
msgid "No stickers found"
msgstr "لم يتم العثور على ملصقات"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "لم يتم العثور على ملصقات"
@@ -12786,6 +12795,10 @@ msgstr "لم يتم العثور على ملصقات"
msgid "No stickers found matching your search."
msgstr "لم يتم العثور على ملصقات تطابق بحثك."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "لا توجد ملصقات تطابق بحثك"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "لا توجد قناة نظام"
@@ -13034,7 +13047,7 @@ msgstr "موافق"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "حسناً"
@@ -13764,7 +13777,7 @@ msgstr "ثبته. ثبته جيدًا."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "تثبيت الرسالة"
@@ -14678,7 +14691,7 @@ msgstr "إزالة اللافتة"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "إزالة الملصق"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "إزالة المهلة"
@@ -14996,7 +15009,7 @@ msgstr "استبدال خلفيتك المخصصة"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "رد"
@@ -15249,11 +15262,11 @@ msgstr "إعادة الاشتراك"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "الدور: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "الأدوار"
@@ -17529,22 +17542,22 @@ msgstr "كتم جميع إشارات الأدوار @mentions"
msgid "Suppress All Role @mentions"
msgstr "كتم جميع إشارات الأدوار @mentions"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "كتم التضمينات"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "كبت التضمينات"
@@ -17822,8 +17835,8 @@ msgstr "تمت إضافة البوت."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "قد تكون القناة التي تبحث عنها قد حُذفت أو قد لا يكون لديك صلاحية الوصول إليها."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "قد يكون المجتمع الذي تبحث عنه قد حُذف أو قد لا يكون لديك صلاحية الوصول إليه."
@@ -17921,11 +17934,11 @@ msgstr "لا توجد روابط ويب مهيأة لهذه القناة. أنش
msgid "There was an error loading the emojis. Please try again."
msgstr "حدث خطأ في تحميل الرموز التعبيرية. يرجى المحاولة مرة أخرى."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "حدث خطأ في تحميل روابط الدعوة لهذه القناة. يرجى المحاولة مرة أخرى."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "حدث خطأ في تحميل الدعوات. يرجى المحاولة مرة أخرى."
@@ -18010,7 +18023,7 @@ msgstr "تحتوي هذه الفئة بالفعل على الحد الأقصى
msgid "This channel does not support webhooks."
msgstr "هذه القناة لا تدعم webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "هذه القناة لا تحتوي على أي روابط دعوة بعد. أنشئ رابطًا لدعوة الأشخاص إلى هذه القناة."
@@ -18043,7 +18056,7 @@ msgstr "قد تحتوي هذه القناة على محتوى غير آمن لل
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "لم يتم استخدام هذا الرمز بعد. يرجى إكمال تسجيل الدخول في متصفحك أولاً."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "لا تحتوي هذه المجموعة على أي روابط دعوة بعد. انتقل إلى قناة وأنشئ دعوة لدعوة الأشخاص."
@@ -18180,8 +18193,8 @@ msgstr "هكذا تظهر الرسائل"
msgid "This is not the channel you're looking for."
msgstr "هذه ليست القناة التي تبحث عنها."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "هذه ليست المجموعة التي تبحث عنها."
@@ -18300,9 +18313,9 @@ msgstr "وصلت قناة الصوت هذه إلى حد المستخدمين ا
msgid "This was a @silent message."
msgstr "كانت هذه رسالة صامتة @silent."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "سيؤدي هذا إلى إنشاء صدع في استمرارية الزمكان ولا يمكن التراجع عنه."
@@ -18371,7 +18384,7 @@ msgstr "مهلة حتى {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "مهلة"
@@ -18659,8 +18672,7 @@ msgstr "جرب اسمًا مختلفًا أو استخدم البادئات @ /
msgid "Try a different search query"
msgstr "جرب استعلام بحث مختلف"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "جرب مصطلح بحث مختلف"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "جرب مصطلح بحث مختلف أو عامل تصفية"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "حاول مرة أخرى"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "إلغاء تثبيته"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "تنسيق ملف غير مدعوم. يرجى استخدام JPG أو PN
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "إلغاء إخفاء التضمينات"
@@ -20573,8 +20585,8 @@ msgstr "أرسلنا رابطًا عبر البريد الإلكتروني لت
msgid "We failed to retrieve the full information about this user at this time."
msgstr "فشلنا في استرداد المعلومات الكاملة حول هذا المستخدم في هذا الوقت."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "حدث خطأ! انتظر قليلاً، نحن نعمل على إصلاحه."
@@ -21084,7 +21096,7 @@ msgstr "لا يمكنك التفاعل مع التفاعلات في نتائج
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "لا يمكنك الانضمام أثناء وجودك في المهلة."
@@ -21169,7 +21181,7 @@ msgstr "لا يمكنك إلغاء صممك لأن المشرف قد أصمك."
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "لا يمكنك إلغاء كتم صوتك لأن المشرف قد كتم صوتك."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "ليس لديك وصول إلى القناة التي أُرسلت فيها هذه الرسالة."
@@ -21177,7 +21189,7 @@ msgstr "ليس لديك وصول إلى القناة التي أُرسلت في
msgid "You do not have permission to send messages in this channel."
msgstr "ليس لديك إذن لإرسال رسائل في هذه القناة."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "ليس لديك وصول إلى أي قنوات في هذا المجتمع."
@@ -21468,7 +21480,7 @@ msgstr "أنت في قناة الصوت"
msgid "You're sending messages too quickly"
msgstr "أنت ترسل الرسائل بسرعة كبيرة"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "أنت تشاهد رسائل أقدم"
diff --git a/fluxer_app/src/locales/bg/messages.po b/fluxer_app/src/locales/bg/messages.po
index d3b2ca42..262b48f2 100644
--- a/fluxer_app/src/locales/bg/messages.po
+++ b/fluxer_app/src/locales/bg/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Контролирайте кога се показват визуализации на съобщения в списъка с лични съобщения"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Често използвани"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... включи плътен режим. Яко!"
msgid "(edited)"
msgstr "(редактирано)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(неуспешно зареждане)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> започна разговор."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> в момента е достъпен само за служители на Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Формуляр за добавяне на телефонен номе
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Анимирани емоджита ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Сигурен ли си, че искаш да деактивираш SMS двуфакторната автентикация? Това ще направи акаунта ти по-малко сигурен."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Сигурен ли си, че искаш да активираш поканите? Това отново ще позволи на потребители да се присъединяват чрез покани."
@@ -2548,7 +2554,7 @@ msgstr "Сигурен ли си, че искаш да отмениш забра
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Сигурен ли си, че искаш да отнемеш тази покана? Това действие не може да бъде отменено."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Сигурен ли си, че искаш да скриеш всички вграждания на линкове в това съобщение? Това действие ще скрие всички вграждания в него."
@@ -3159,7 +3165,7 @@ msgstr "Достигнат лимит на отметките"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Отбележи съобщение"
@@ -3432,7 +3438,7 @@ msgstr "Настройки на камерата"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Смени моя прякор в групата"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Смени прякора"
@@ -3775,7 +3781,7 @@ msgstr "Канал"
msgid "Channel Access"
msgstr "Достъп до канала"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Достъп до канала отказан"
@@ -4142,7 +4148,7 @@ msgstr "Придобийте акаунта си, за да генерирате
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Претендирайте за акаунта си, за да се присъедините към този гласов канал."
@@ -4649,8 +4655,8 @@ msgstr "Общността пропагандира или улеснява не
msgid "Community Settings"
msgstr "Настройки на общността"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Общността временно не е налична"
@@ -5179,20 +5185,20 @@ msgstr "Копирай връзка"
msgid "Copy Media"
msgstr "Копирай медия"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Копирай съобщение"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Копирай ID на съобщението"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Копирай връзка към съобщение"
@@ -5388,8 +5394,8 @@ msgstr "Формуляр за създаване на любима катего
msgid "Create Group DM"
msgstr "Създай групово директно съобщение"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Създай покана"
@@ -5978,11 +5984,11 @@ msgstr "По подразбиране се анимира при взаимод
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "По подразбиране е изключено на мобилни устройства, за да се спести батерия и трафик."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Изтрий емоджи"
msgid "Delete media"
msgstr "Изтрий медия"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Изтрий съобщение"
@@ -6595,7 +6601,7 @@ msgstr "Обсъждане или пропагандиране на незако
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Редактиране на медия"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Редактиране на съобщение"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Емоджита"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Разреши наблюдение на входа"
msgid "Enable Invites"
msgstr "Активирай покани"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Активирай отново поканите"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Активирай поканите за тази общност"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Неуспешно зареждане на инвентар с подаръци"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Неуспешно зареждане на покани"
@@ -8769,7 +8775,7 @@ msgstr "Забравихте паролата си?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Напред"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Поканите са на пауза"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Поканите към <0>{0}0> са изключени в момента"
@@ -10457,8 +10463,8 @@ msgstr "Скокове"
msgid "Join a Community"
msgstr "Присъедини се към общност"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Присъедини се към общност със стикери, за да започнеш!"
@@ -10588,7 +10594,7 @@ msgstr "Прескочи"
msgid "Jump straight to the app to continue."
msgstr "Прескочи директно до приложението, за да продължиш."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Прескочи до {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Прескочи до най-старото непрочетено съ
msgid "Jump to page"
msgstr "Прескочи до страница"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Прескочи до настоящето"
@@ -10612,15 +10618,15 @@ msgstr "Прескочи до настоящето"
msgid "Jump to the channel of the active call"
msgstr "Прескочи до канала на активното обаждане"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Прескочи до свързания канал"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Прескочи до свързаното съобщение"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Прескочи до съобщението в {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Зареждане на още..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Зареждане на заместител"
@@ -11256,7 +11262,7 @@ msgstr "Управление на пакети с изрази"
msgid "Manage feature flags"
msgstr "Управление на флагове на функции"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Управление на функции за гилдията"
@@ -11353,7 +11359,7 @@ msgstr "Отбележи като спойлер"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Отбележи като непрочетено"
@@ -11822,7 +11828,7 @@ msgstr "Съобщения и медия"
msgid "Messages Deleted"
msgstr "Съобщенията са изтрити"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Неуспешно зареждане на съобщенията"
@@ -12471,7 +12477,7 @@ msgstr "Прякорът не трябва да надвишава 32 знака
msgid "Nickname updated"
msgstr "Прякорът е обновен"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Няма достъпни канали"
@@ -12575,6 +12581,10 @@ msgstr "Не е зададен имейл адрес"
msgid "No emojis found matching your search."
msgstr "Не са намерени емоджита, съвпадащи с търсенето."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Няма емоджита, които да съответстват на вашето търсене"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Все още няма инсталирани пакети."
msgid "No invite background"
msgstr "Няма фон за покана"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Няма покани"
@@ -12768,8 +12778,8 @@ msgstr "Не са открити настройки"
msgid "No specific scopes requested."
msgstr "Не са заявени конкретни обхвати."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Няма налични стикери"
@@ -12777,8 +12787,7 @@ msgstr "Няма налични стикери"
msgid "No stickers found"
msgstr "Не са намерени стикери"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Не са намерени стикери"
@@ -12786,6 +12795,10 @@ msgstr "Не са намерени стикери"
msgid "No stickers found matching your search."
msgstr "Не бяха намерени стикери, съвпадащи с търсенето ви."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Няма стикери, които да съответстват на вашето търсене"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Няма системен канал"
@@ -13034,7 +13047,7 @@ msgstr "Добре"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Добре"
@@ -13764,7 +13777,7 @@ msgstr "Закрепи го. Закрепи го както трябва."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Закрепи съобщението"
@@ -14678,7 +14691,7 @@ msgstr "Премахни банера"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Премахни стикера"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Премахни таймаута"
@@ -14996,7 +15009,7 @@ msgstr "Замени персонализирания си фон"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Отговори"
@@ -15249,11 +15262,11 @@ msgstr "Абонирай се отново"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Роля: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Роли"
@@ -17529,22 +17542,22 @@ msgstr "Скрий всички споменавания на роли"
msgid "Suppress All Role @mentions"
msgstr "Скрий всички споменавания на роли"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Скрий вграждания"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Скрий вграждания"
@@ -17822,8 +17835,8 @@ msgstr "Ботът е добавен."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Каналът, който търсиш, може да е изтрит или да нямаш достъп до него."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Общността, която търсиш, може да е изтрита или да нямаш достъп до нея."
@@ -17921,11 +17934,11 @@ msgstr "Няма конфигурирани уебхукове за този к
msgid "There was an error loading the emojis. Please try again."
msgstr "Възникна грешка при зареждане на емотиконите. Моля, опитай пак."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Възникна грешка при зареждане на линковете за покана за този канал. Моля, опитай пак."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Възникна грешка при зареждане на поканите. Моля, опитай пак."
@@ -18010,7 +18023,7 @@ msgstr "Тази категория вече съдържа максимални
msgid "This channel does not support webhooks."
msgstr "Този канал не поддържа уебхукове."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Този канал все още няма линкове за покана. Създай такъв, за да поканиш хора в канала."
@@ -18043,7 +18056,7 @@ msgstr "Този канал може да съдържа неподходящо
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Този код още не е използван. Моля, завърши входа си в браузъра първо."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Тази общност все още няма линкове за покана. Отиди в канал и създай покана, за да поканиш хора."
@@ -18180,8 +18193,8 @@ msgstr "Това е как се виждат съобщенията"
msgid "This is not the channel you're looking for."
msgstr "Това не е каналът, който търсиш."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Това не е общността, която търсиш."
@@ -18300,9 +18313,9 @@ msgstr "Този гласов канал е достигнал лимита на
msgid "This was a @silent message."
msgstr "Това беше @silent съобщение."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Това ще създаде разлом в пространствено-временния континуум и не може да бъде отменено."
@@ -18371,7 +18384,7 @@ msgstr "Таймаут до {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Таймаут"
@@ -18659,8 +18672,7 @@ msgstr "Опитайте друго име или използвайте пре
msgid "Try a different search query"
msgstr "Опитайте друга заявка за търсене"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Опитайте друг термин за търсене"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Опитайте друг термин за търсене или филтър"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Опитайте отново"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Разкачи го"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Форматът на файла не се поддържа. Моля,
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Показване на вграденото съдържание"
@@ -20573,8 +20585,8 @@ msgstr "Изпратихме линк по имейл, за да упълном
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Не успяхме да извлечем пълната информация за този потребител в момента."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Грешка! Запазете спокойствие, работим по въпроса."
@@ -21084,7 +21096,7 @@ msgstr "Не можете да взаимодействате с реакции
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Не можете да се присъедините, докато сте в режим на изчакване."
@@ -21169,7 +21181,7 @@ msgstr "Не можете да включите звука си, защото м
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Не можете да включите микрофона си, защото модераторът ви е заглушил."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Нямате достъп до канала, в който е изпратено това съобщение."
@@ -21177,7 +21189,7 @@ msgstr "Нямате достъп до канала, в който е изпра
msgid "You do not have permission to send messages in this channel."
msgstr "Нямате разрешение да изпращате съобщения в този канал."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Нямате достъп до никакви канали в тази общност."
@@ -21468,7 +21480,7 @@ msgstr "Във гласовия канал сте"
msgid "You're sending messages too quickly"
msgstr "Изпращате съобщения твърде бързо"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Преглеждате по-стари съобщения"
diff --git a/fluxer_app/src/locales/cs/messages.po b/fluxer_app/src/locales/cs/messages.po
index 27f1fabf..5a2cc865 100644
--- a/fluxer_app/src/locales/cs/messages.po
+++ b/fluxer_app/src/locales/cs/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Ovládejte, kdy se zobrazují náhledy zpráv v seznamu DM"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Často používané"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... zapni hustý režim. Paráda!"
msgid "(edited)"
msgstr "(upraveno)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(nepodařilo se načíst)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> zahájil(a) hovor."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> je momentálně dostupný jen zaměstnancům Fluxeru"
@@ -1647,7 +1653,7 @@ msgstr "Formulář pro přidání telefonního čísla"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animované emoji ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Opravdu chcete vypnout SMS dvoufázové ověření? Váš účet bude méně zabezpečený."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Opravdu chcete zapnout pozvánky? Uživatelé se tak znovu budou moct připojovat přes pozvánky."
@@ -2548,7 +2554,7 @@ msgstr "Opravdu chcete zrušit zákaz pro <0>{0}0>? Budou se moct znovu připo
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Opravdu chcete zrušit tuto pozvánku? Tento krok nelze vrátit zpět."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Opravdu chcete potlačit veškeré vložené odkazy v této zprávě? Tím se všechny vložené prvky skryjí."
@@ -3159,7 +3165,7 @@ msgstr "Dosaženo limitu záložek"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Přidat zprávu do záložek"
@@ -3432,7 +3438,7 @@ msgstr "Nastavení kamery"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Změnit moji přezdívku ve skupině"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Změnit přezdívku"
@@ -3775,7 +3781,7 @@ msgstr "Kanál"
msgid "Channel Access"
msgstr "Přístup ke kanálu"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Přístup ke kanálu odepřen"
@@ -4142,7 +4148,7 @@ msgstr "Získejte svůj účet pro generování beta kódů."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Převzte svůj účet, abyste se připojili k tomuto hlasovému kanálu."
@@ -4649,8 +4655,8 @@ msgstr "Komunita podporuje nebo usnadňuje nelegální činnost"
msgid "Community Settings"
msgstr "Nastavení komunity"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Komunita dočasně nedostupná"
@@ -5179,20 +5185,20 @@ msgstr "Zkopírovat odkaz"
msgid "Copy Media"
msgstr "Zkopírovat média"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Zkopírovat zprávu"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Zkopírovat ID zprávy"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Zkopírovat odkaz na zprávu"
@@ -5388,8 +5394,8 @@ msgstr "Formulář pro oblíbenou kategorii"
msgid "Create Group DM"
msgstr "Vytvořit skupinový DM"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Vytvořit pozvánku"
@@ -5978,11 +5984,11 @@ msgstr "Na mobilu se výchozí animace spustí při interakci, aby se šetřila
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Na mobilu je výchozí vypnuto, aby se šetřila baterie a data."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Smazat emoji"
msgid "Delete media"
msgstr "Smazat média"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Smazat zprávu"
@@ -6595,7 +6601,7 @@ msgstr "Diskuze nebo propagace nezákonných činností"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Upravit média"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Upravit zprávu"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emoji"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Povolit oprávnění k monitorování vstupu"
msgid "Enable Invites"
msgstr "Povolit pozvánky"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Znovu povolit pozvánky"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Povolit pozvánky pro tuto komunitu"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Nepodařilo se načíst nabídku dárků"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Nepodařilo se načíst pozvánky"
@@ -8769,7 +8775,7 @@ msgstr "Zapomněli jste heslo?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Přeposlat"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Pozvánky pozastavené"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Pozvánky do <0>{0}0> jsou momentálně zakázané"
@@ -10457,8 +10463,8 @@ msgstr "Kolísání"
msgid "Join a Community"
msgstr "Připojit se ke komunitě"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Připojte se ke komunitě s nálepkami a začněte!"
@@ -10588,7 +10594,7 @@ msgstr "Přeskočit"
msgid "Jump straight to the app to continue."
msgstr "Přepněte rovnou do aplikace a pokračujte."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Přejít na {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Přejít na nejstarší nepřečtenou zprávu"
msgid "Jump to page"
msgstr "Přejít na stránku"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Přejít na aktuální"
@@ -10612,15 +10618,15 @@ msgstr "Přejít na aktuální"
msgid "Jump to the channel of the active call"
msgstr "Přejít do kanálu aktivního hovoru"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Přejít do propojeného kanálu"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Přejít na propojenou zprávu"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Přejít na zprávu v {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Načítání dalších..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Zástupný obsah při načítání"
@@ -11256,7 +11262,7 @@ msgstr "Spravovat balíčky výrazů"
msgid "Manage feature flags"
msgstr "Spravovat funkční příznaky"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Spravovat funkce spolku"
@@ -11353,7 +11359,7 @@ msgstr "Označit jako spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Označit jako nepřečtené"
@@ -11822,7 +11828,7 @@ msgstr "Zprávy a média"
msgid "Messages Deleted"
msgstr "Zprávy smazány"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Zprávy se nepodařilo načíst"
@@ -12471,7 +12477,7 @@ msgstr "Přezdívka nesmí překročit 32 znaků"
msgid "Nickname updated"
msgstr "Přezdívka aktualizována"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Žádné přístupné kanály"
@@ -12575,6 +12581,10 @@ msgstr "Není nastavena žádná e-mailová adresa"
msgid "No emojis found matching your search."
msgstr "Nebylo nalezeno žádné emoji odpovídající hledání."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Žádné emoji neodpovídají vašemu vyhledávání"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Zatím žádné nainstalované balíčky."
msgid "No invite background"
msgstr "Žádné pozadí pozvánky"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Žádné odkazy na pozvánky"
@@ -12768,8 +12778,8 @@ msgstr "Nebyly nalezena žádná nastavení"
msgid "No specific scopes requested."
msgstr "Nebyla požadována žádná konkrétní oprávnění."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Žádné nálepky nejsou k dispozici"
@@ -12777,8 +12787,7 @@ msgstr "Žádné nálepky nejsou k dispozici"
msgid "No stickers found"
msgstr "Nebyly nalezeny žádné nálepky"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Nebyly nalezeny žádné nálepky"
@@ -12786,6 +12795,10 @@ msgstr "Nebyly nalezeny žádné nálepky"
msgid "No stickers found matching your search."
msgstr "Nebyly nalezeny žádné nálepky odpovídající hledání."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Žádné nálepky neodpovídají vašemu vyhledávání"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Žádný systémový kanál"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Dobře"
@@ -13764,7 +13777,7 @@ msgstr "Připněte to. Připněte to pořádně."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Připnout zprávu"
@@ -14678,7 +14691,7 @@ msgstr "Odstranit banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Odstranit nálepku"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Odstranit timeout"
@@ -14996,7 +15009,7 @@ msgstr "Nahraďte své vlastní pozadí"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Odpovědět"
@@ -15249,11 +15262,11 @@ msgstr "Znovu odebírat"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Role: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Role"
@@ -17529,22 +17542,22 @@ msgstr "Potlačit všechna zmínění rolí"
msgid "Suppress All Role @mentions"
msgstr "Potlačit všechna zmínění rolí"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Potlačit vložené odkazy"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Potlačit vložený obsah"
@@ -17822,8 +17835,8 @@ msgstr "Bot byl přidán."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Kanál, který hledáte, mohl být smazán nebo k němu nemáte přístup."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Komunita, kterou hledáte, mohla být smazána nebo k ní nemáte přístup."
@@ -17921,11 +17934,11 @@ msgstr "Pro tento kanál nejsou nakonfigurovány žádné webhooky. Vytvořte we
msgid "There was an error loading the emojis. Please try again."
msgstr "Při načítání emoji došlo k chybě. Zkuste to prosím znovu."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Při načítání pozvánkových odkazů pro tento kanál došlo k chybě. Zkuste to prosím znovu."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Při načítání pozvánek došlo k chybě. Zkuste to prosím znovu."
@@ -18010,7 +18023,7 @@ msgstr "Tato kategorie již obsahuje maximálně {MAX_CHANNELS_PER_CATEGORY} kan
msgid "This channel does not support webhooks."
msgstr "Tento kanál webhooky nepodporuje."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Tento kanál ještě nemá žádné pozvánkové odkazy. Vytvořte jeden, abyste mohli pozvat lidi do tohoto kanálu."
@@ -18043,7 +18056,7 @@ msgstr "Tento kanál může obsahovat obsah nevhodný pro práci nebo některé
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Tento kód ještě nebyl použit. Nejprve dokončete přihlášení v prohlížeči."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Tato komunita zatím nemá žádné pozvánkové odkazy. Přejděte do kanálu a vytvořte pozvánku pro pozvání lidí."
@@ -18180,8 +18193,8 @@ msgstr "Takto se zprávy zobrazují"
msgid "This is not the channel you're looking for."
msgstr "Toto není kanál, který hledáte."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Toto není komunita, kterou hledáte."
@@ -18300,9 +18313,9 @@ msgstr "Tento hlasový kanál dosáhl limitu uživatelů. Zkuste to později neb
msgid "This was a @silent message."
msgstr "Tohle byla @silent zpráva."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Tohle vytvoří trhlinu v časoprostorovém kontinuu a nelze to vrátit zpět."
@@ -18371,7 +18384,7 @@ msgstr "Zablokován do {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Timeout"
@@ -18659,8 +18672,7 @@ msgstr "Zkuste jiné jméno nebo použijte předpony @ / # / ! / * pro filtrová
msgid "Try a different search query"
msgstr "Zkuste jiný dotaz"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Zkuste jiný vyhledávací termín"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Zkuste jiný výraz nebo filtr"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Zkuste to znovu"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Odepnout to"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Nepodporovaný formát souboru. Použijte prosím JPG, PNG, GIF, WebP ne
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Znovu zobrazit vložený obsah"
@@ -20573,8 +20585,8 @@ msgstr "Poslali jsme odkaz k autorizaci přihlášení. Otevři si poštu {0}."
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Nyní se nepodařilo načíst kompletní informace o tomto uživateli."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Sakra, něco se pokazilo! Chvíli vydrž, pracujeme na tom."
@@ -21084,7 +21096,7 @@ msgstr "S reakcemi ve výsledcích hledání nemůžeš interagovat, mohlo by to
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Když máš timeout, nemůžeš se připojit."
@@ -21169,7 +21181,7 @@ msgstr "Nemůžeš si zrušit ztlumení, protože tě ztlumil moderátor."
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Nemůžeš si zapnout mikrofon, protože tě ztlumil moderátor."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Nemáš přístup do kanálu, kde byla tato zpráva odeslána."
@@ -21177,7 +21189,7 @@ msgstr "Nemáš přístup do kanálu, kde byla tato zpráva odeslána."
msgid "You do not have permission to send messages in this channel."
msgstr "V tomto kanálu nemáš oprávnění posílat zprávy."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Do žádného kanálu v této komunitě nemáš přístup."
@@ -21468,7 +21480,7 @@ msgstr "Jsi v hlasovém kanálu"
msgid "You're sending messages too quickly"
msgstr "Posíláš zprávy příliš rychle"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Prohlížíš si starší zprávy"
diff --git a/fluxer_app/src/locales/da/messages.po b/fluxer_app/src/locales/da/messages.po
index 6a056e82..3f24dff9 100644
--- a/fluxer_app/src/locales/da/messages.po
+++ b/fluxer_app/src/locales/da/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Kontroller, hvornår beskedforhåndsvisninger vises i DM-listen"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Hyppigt brugt"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... tænd tætpakket funktion. Fedt!"
msgid "(edited)"
msgstr "(redigeret)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(kunne ikke indlæses)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> startede et opkald."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> er i øjeblikket kun tilgængelig for Fluxer-medarbejdere"
@@ -1647,7 +1653,7 @@ msgstr "Formular til telefonnummer"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animeret emoji ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Er du sikker på, at du vil deaktivere SMS-to-faktor-godkendelse? Det vil gøre din konto mindre sikker."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Er du sikker på, at du vil aktivere invitationer? Det giver brugere mulighed for igen at tilslutte sig dette fællesskab via invite-links."
@@ -2548,7 +2554,7 @@ msgstr "Er du sikker på, at du vil ophæve udelukkelsen for <0>{0}0>? De kan
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Er du sikker på, at du vil tilbagekalde denne invitation? Dette kan ikke fortrydes."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Er du sikker på, at du vil skjule alle linkindlejringer i denne besked? Denne handling skjuler alle indlejrede elementer fra beskeden."
@@ -3159,7 +3165,7 @@ msgstr "Bogmærkebegrænsning nået"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Bogmærk besked"
@@ -3432,7 +3438,7 @@ msgstr "Kameraindstillinger"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Skift mit gruppenavn"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Skift kaldenavn"
@@ -3775,7 +3781,7 @@ msgstr "Kanal"
msgid "Channel Access"
msgstr "Kanaladgang"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Kanaladgang nægtet"
@@ -4142,7 +4148,7 @@ msgstr "Gå til din konto for at generere beta-koder."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Gendan din konto for at deltage i denne tale kanal."
@@ -4649,8 +4655,8 @@ msgstr "Fællesskab fremmer eller muliggør ulovlige aktiviteter"
msgid "Community Settings"
msgstr "Fællesskabsindstillinger"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Fællesskab midlertidigt utilgængeligt"
@@ -5179,20 +5185,20 @@ msgstr "Kopier link"
msgid "Copy Media"
msgstr "Kopier medier"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Kopier besked"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Kopier besked-id"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Kopier beskedlink"
@@ -5388,8 +5394,8 @@ msgstr "Opret form til favoritkategori"
msgid "Create Group DM"
msgstr "Opret gruppe-DM"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Opret invitation"
@@ -5978,11 +5984,11 @@ msgstr "Standard er at animere ved interaktion på mobilen for at spare batteri.
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Standard er slukket på mobilen for at spare batteri og data."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Slet emoji"
msgid "Delete media"
msgstr "Slet medier"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Slet besked"
@@ -6595,7 +6601,7 @@ msgstr "Diskussion eller promovering af ulovlige aktiviteter"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Rediger medie"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Rediger besked"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojis"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Aktivér tilladelse til inputovervågning"
msgid "Enable Invites"
msgstr "Aktivér invitationer"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Aktivér invitationer igen"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Aktivér invitationer for dette fællesskab"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Kunne ikke indlæse gavebeholdning"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Kunne ikke indlæse invitationer"
@@ -8769,7 +8775,7 @@ msgstr "Glemt din adgangskode?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Frem"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Invitationer på pause"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Invitationer til <0>{0}0> er i øjeblikket deaktiveret"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Deltag i et fællesskab"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Deltag i et fællesskab med klistermærker for at komme i gang!"
@@ -10588,7 +10594,7 @@ msgstr "Hop"
msgid "Jump straight to the app to continue."
msgstr "Hop direkte til appen for at fortsætte."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Hop til {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Hop til ældste ulæste besked"
msgid "Jump to page"
msgstr "Hop til side"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Hop til nu"
@@ -10612,15 +10618,15 @@ msgstr "Hop til nu"
msgid "Jump to the channel of the active call"
msgstr "Hop til kanalen for det aktive opkald"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Hop til den linkede kanal"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Hop til den linkede besked"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Hop til beskeden i {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Indlæser mere..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Indlæser pladsholder"
@@ -11256,7 +11262,7 @@ msgstr "Administrer udtrykspakker"
msgid "Manage feature flags"
msgstr "Administrer funktionsflag"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Administrer guild-funktioner"
@@ -11353,7 +11359,7 @@ msgstr "Marker som spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Marker som ulæst"
@@ -11822,7 +11828,7 @@ msgstr "Beskeder og medier"
msgid "Messages Deleted"
msgstr "Beskeder slettet"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Beskeder kunne ikke indlæses"
@@ -12471,7 +12477,7 @@ msgstr "Kaldenavnet må ikke overstige 32 tegn"
msgid "Nickname updated"
msgstr "Kaldenavn opdateret"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Ingen tilgængelige kanaler"
@@ -12575,6 +12581,10 @@ msgstr "Ingen e-mailadresse angivet"
msgid "No emojis found matching your search."
msgstr "Ingen emojis fundet, der matcher din søgning."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Ingen emojis matcher din søgning"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Ingen installerede pakker endnu."
msgid "No invite background"
msgstr "Ingen invitation baggrund"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Ingen invitationslinks"
@@ -12768,8 +12778,8 @@ msgstr "Ingen indstillinger fundet"
msgid "No specific scopes requested."
msgstr "Ingen specifikke scopes anmodet om."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Ingen klistermærker tilgængelige"
@@ -12777,8 +12787,7 @@ msgstr "Ingen klistermærker tilgængelige"
msgid "No stickers found"
msgstr "Ingen klistermærker fundet"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Ingen klistermærker fundet"
@@ -12786,6 +12795,10 @@ msgstr "Ingen klistermærker fundet"
msgid "No stickers found matching your search."
msgstr "Ingen klistermærker matcher din søgning."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Ingen klistermærker matcher din søgning"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Ingen systemkanal"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Okay"
@@ -13764,7 +13777,7 @@ msgstr "Fastgør det. Gør det godt."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Fastgør besked"
@@ -14678,7 +14691,7 @@ msgstr "Fjern banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Fjern klistermærke"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Fjern timeout"
@@ -14996,7 +15009,7 @@ msgstr "Erstat din brugerdefinerede baggrund"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Svar"
@@ -15249,11 +15262,11 @@ msgstr "Tilmeld igen"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rolle: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Roller"
@@ -17529,22 +17542,22 @@ msgstr "Undertrykke alle rolle-@mentions"
msgid "Suppress All Role @mentions"
msgstr "Undertrykke alle rolle-@mentions"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Undertrykke embeds"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Undertryk indlejrede elementer"
@@ -17822,8 +17835,8 @@ msgstr "Botten er blevet tilføjet."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Kanalen, du leder efter, kan være slettet, eller du har måske ikke adgang til den."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Fællesskabet, du leder efter, kan være slettet, eller du har måske ikke adgang til det."
@@ -17921,11 +17934,11 @@ msgstr "Der er ingen webhooks konfigureret for denne kanal. Opret en webhook for
msgid "There was an error loading the emojis. Please try again."
msgstr "Der opstod en fejl under indlæsning af emojis. Prøv igen."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Der opstod en fejl under indlæsning af invitationerne for denne kanal. Prøv igen."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Der opstod en fejl under indlæsning af invitationerne. Prøv igen."
@@ -18010,7 +18023,7 @@ msgstr "Denne kategori indeholder allerede maksimum {MAX_CHANNELS_PER_CATEGORY}
msgid "This channel does not support webhooks."
msgstr "Denne kanal understøtter ikke webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Denne kanal har endnu ingen invitationer. Opret en for at invitere folk til kanalen."
@@ -18043,7 +18056,7 @@ msgstr "Denne kanal kan indeholde indhold, der ikke er sikkert for arbejde eller
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Denne kode er ikke blevet brugt endnu. Fuldfør login i din browser først."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Dette fællesskab har endnu ingen invitationer. Gå til en kanal og opret en invitation for at invitere folk."
@@ -18180,8 +18193,8 @@ msgstr "Sådan ser beskeder ud"
msgid "This is not the channel you're looking for."
msgstr "Dette er ikke den kanal, du leder efter."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Dette er ikke det fællesskab, du leder efter."
@@ -18300,9 +18313,9 @@ msgstr "Denne talekanal har nået sin brugergrænse. Prøv igen senere eller del
msgid "This was a @silent message."
msgstr "Dette var en @silent-besked."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Dette vil skabe en brud i rum-tidskontinuummet og kan ikke fortrydes."
@@ -18371,7 +18384,7 @@ msgstr "Udelukket indtil {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Timeout"
@@ -18659,8 +18672,7 @@ msgstr "Prøv et andet navn eller brug @ / # / ! / * præfikser til at filtrere
msgid "Try a different search query"
msgstr "Prøv en anden søgeforespørgsel"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Prøv et andet søgeord"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Prøv et andet søgeord eller filter"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Prøv igen"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Frigør det"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Ikke-understøttet filformat. Brug JPG, PNG, GIF, WebP eller MP4."
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Vis indlejrede elementer igen"
@@ -20573,8 +20585,8 @@ msgstr "Vi har sendt et link for at godkende denne login. Se din indbakke for {0
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Vi kunne ikke hente alle oplysninger om denne bruger lige nu."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Vi lavede en fejl! Hold ud, vi arbejder på det."
@@ -21084,7 +21096,7 @@ msgstr "Du kan ikke interagere med reaktioner i søgeresultaterne, da det kan fo
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Du kan ikke deltage, mens du er i timeout."
@@ -21169,7 +21181,7 @@ msgstr "Du kan ikke fjerne din lydløsning, fordi en moderator har slået den ti
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Du kan ikke slå din mikrofon til, fordi en moderator har slået den fra."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Du har ikke adgang til den kanal, hvor denne besked blev sendt."
@@ -21177,7 +21189,7 @@ msgstr "Du har ikke adgang til den kanal, hvor denne besked blev sendt."
msgid "You do not have permission to send messages in this channel."
msgstr "Du har ikke tilladelse til at sende beskeder i denne kanal."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Du har ikke adgang til nogen kanaler i dette fællesskab."
@@ -21468,7 +21480,7 @@ msgstr "Du er i talekanalen"
msgid "You're sending messages too quickly"
msgstr "Du sender beskeder for hurtigt"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Du ser på ældre beskeder"
diff --git a/fluxer_app/src/locales/de/messages.po b/fluxer_app/src/locales/de/messages.po
index bbc65637..d0ce5fe5 100644
--- a/fluxer_app/src/locales/de/messages.po
+++ b/fluxer_app/src/locales/de/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Lege fest, wann Nachrichtenvorschauen in der Direktnachrichtenliste angezeigt werden"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Häufig verwendet"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... dichten Modus einschalten. Super!"
msgid "(edited)"
msgstr "(bearbeitet)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(Laden fehlgeschlagen)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> hat einen Anruf gestartet."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> ist derzeit nur für Fluxer-Mitarbeiter zugänglich"
@@ -1647,7 +1653,7 @@ msgstr "Telefonnummernformular hinzufügen"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animierte Emojis ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Möchtest du wirklich die SMS-Zwei-Faktor-Authentifizierung deaktivieren? Das macht dein Konto weniger sicher."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Möchtest du wirklich Einladungen aktivieren? Dadurch können Nutzer wieder über Einladungslinks dieser Community beitreten."
@@ -2548,7 +2554,7 @@ msgstr "Möchtest du wirklich den Bann von <0>{0}0> aufheben? Sie können wied
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Möchtest du wirklich diese Einladung zurückziehen? Das kann nicht rückgängig gemacht werden."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Möchtest du wirklich alle Link-Embeds dieser Nachricht unterdrücken? Dadurch werden alle Einbettungen ausgeblendet."
@@ -3159,7 +3165,7 @@ msgstr "Lesezeichenlimit erreicht"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Nachricht merken"
@@ -3432,7 +3438,7 @@ msgstr "Kameraeinstellungen"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Meinen Gruppenspitznamen ändern"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Spitznamen ändern"
@@ -3775,7 +3781,7 @@ msgstr "Kanal"
msgid "Channel Access"
msgstr "Kanalzugriff"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Kanalzugriff verweigert"
@@ -4142,7 +4148,7 @@ msgstr "Beanspruche dein Konto, um Beta-Codes zu generieren."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Fordere dein Konto an, um diesem Sprachkanal beizutreten."
@@ -4649,8 +4655,8 @@ msgstr "Community fördert oder erleichtert illegale Aktivitäten"
msgid "Community Settings"
msgstr "Community-Einstellungen"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Community vorübergehend nicht verfügbar"
@@ -5179,20 +5185,20 @@ msgstr "Link kopieren"
msgid "Copy Media"
msgstr "Medien kopieren"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Nachricht kopieren"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Nachrichten-ID kopieren"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Nachrichtenlink kopieren"
@@ -5388,8 +5394,8 @@ msgstr "Formular für Lieblingskategorie erstellen"
msgid "Create Group DM"
msgstr "Gruppen-DM erstellen"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Einladung erstellen"
@@ -5978,11 +5984,11 @@ msgstr "Auf Mobilgeräten wird standardmäßig bei Interaktionen animiert, um Ak
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Auf Mobilgeräten ist es standardmäßig ausgeschaltet, um Akku- und Datenverbrauch zu schonen."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Emoji löschen"
msgid "Delete media"
msgstr "Medien löschen"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Nachricht löschen"
@@ -6595,7 +6601,7 @@ msgstr "Diskussion oder Förderung illegaler Aktivitäten"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Medien bearbeiten"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Nachricht bearbeiten"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojis"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Eingabeüberwachungsberechtigung aktivieren"
msgid "Enable Invites"
msgstr "Einladungen aktivieren"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Einladungen erneut aktivieren"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Einladungen für diese Community aktivieren"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Geschenkbestand konnte nicht geladen werden"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Einladungen konnten nicht geladen werden"
@@ -8769,7 +8775,7 @@ msgstr "Passwort vergessen?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Vorwärts"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Einladungen pausiert"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Einladungen für <0>{0}0> sind derzeit deaktiviert"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Einer Community beitreten"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Tritt einer Community mit Stickern bei, um loszulegen!"
@@ -10588,7 +10594,7 @@ msgstr "Springen"
msgid "Jump straight to the app to continue."
msgstr "Spring direkt zur App, um weiterzumachen."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Springe zu {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Zur ältesten ungelesenen Nachricht springen"
msgid "Jump to page"
msgstr "Zur Seite springen"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Zur Gegenwart springen"
@@ -10612,15 +10618,15 @@ msgstr "Zur Gegenwart springen"
msgid "Jump to the channel of the active call"
msgstr "Zum Kanal des aktiven Anrufs springen"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Zum verknüpften Kanal springen"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Zur verknüpften Nachricht springen"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Zur Nachricht in {labelText} springen"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Mehr wird geladen..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Platzhalter wird geladen"
@@ -11256,7 +11262,7 @@ msgstr "Ausdruckspakete verwalten"
msgid "Manage feature flags"
msgstr "Feature-Flags verwalten"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Gildenfunktionen verwalten"
@@ -11353,7 +11359,7 @@ msgstr "Als Spoiler markieren"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Als ungelesen markieren"
@@ -11822,7 +11828,7 @@ msgstr "Nachrichten & Medien"
msgid "Messages Deleted"
msgstr "Nachrichten gelöscht"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Nachrichten konnten nicht geladen werden"
@@ -12471,7 +12477,7 @@ msgstr "Der Spitzname darf nicht länger als 32 Zeichen sein"
msgid "Nickname updated"
msgstr "Spitzname aktualisiert"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Keine zugänglichen Kanäle"
@@ -12575,6 +12581,10 @@ msgstr "Keine E-Mail-Adresse festgelegt"
msgid "No emojis found matching your search."
msgstr "Keine Emojis gefunden, die deiner Suche entsprechen."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Keine Emojis entsprechen deiner Suche"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Noch keine Pakete installiert."
msgid "No invite background"
msgstr "Kein Einladungshintergrund"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Keine Einladungslinks"
@@ -12768,8 +12778,8 @@ msgstr "Keine Einstellungen gefunden"
msgid "No specific scopes requested."
msgstr "Keine bestimmten Bereiche angefordert."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Keine Sticker verfügbar"
@@ -12777,8 +12787,7 @@ msgstr "Keine Sticker verfügbar"
msgid "No stickers found"
msgstr "Keine Sticker gefunden"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Keine Sticker gefunden"
@@ -12786,6 +12795,10 @@ msgstr "Keine Sticker gefunden"
msgid "No stickers found matching your search."
msgstr "Keine Sticker zu deiner Suche gefunden."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Keine Sticker entsprechen deiner Suche"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Kein Systemkanal"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Okay"
@@ -13764,7 +13777,7 @@ msgstr "Heft es an. Heft es gut an."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Nachricht anpinnen"
@@ -14678,7 +14691,7 @@ msgstr "Banner entfernen"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Sticker entfernen"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Time-out entfernen"
@@ -14996,7 +15009,7 @@ msgstr "Deinen eigenen Hintergrund ersetzen"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Antworten"
@@ -15249,11 +15262,11 @@ msgstr "Erneut abonnieren"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rolle: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Rollen"
@@ -17529,22 +17542,22 @@ msgstr "Alle Rollen-Erwähnungen unterdrücken"
msgid "Suppress All Role @mentions"
msgstr "Alle Rollen-Erwähnungen unterdrücken"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Einbettungen unterdrücken"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Einbettungen unterdrücken"
@@ -17822,8 +17835,8 @@ msgstr "Der Bot wurde hinzugefügt."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Der gesuchte Kanal wurde möglicherweise gelöscht oder du hast keinen Zugriff darauf."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Die gesuchte Community wurde möglicherweise gelöscht oder du hast keinen Zugriff darauf."
@@ -17921,11 +17934,11 @@ msgstr "Für diesen Kanal wurden keine Webhooks eingerichtet. Erstelle einen Web
msgid "There was an error loading the emojis. Please try again."
msgstr "Beim Laden der Emojis ist ein Fehler aufgetreten. Bitte versuche es erneut."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Beim Laden der Einladungslinks für diesen Kanal ist ein Fehler aufgetreten. Bitte versuche es erneut."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Beim Laden der Einladungen ist ein Fehler aufgetreten. Bitte versuche es erneut."
@@ -18010,7 +18023,7 @@ msgstr "Diese Kategorie enthält bereits das Maximum von {MAX_CHANNELS_PER_CATEG
msgid "This channel does not support webhooks."
msgstr "Dieser Kanal unterstützt keine Webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Dieser Kanal hat noch keine Einladungslinks. Erstelle einen, um Leute in diesen Kanal einzuladen."
@@ -18043,7 +18056,7 @@ msgstr "Dieser Kanal kann Inhalte enthalten, die nicht arbeitsplatzsicher oder f
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Dieser Code wurde noch nicht verwendet. Bitte schließe zuerst die Anmeldung in deinem Browser ab."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Diese Community hat noch keine Einladungslinks. Gehe in einen Kanal und erstelle eine Einladung, um Leute einzuladen."
@@ -18180,8 +18193,8 @@ msgstr "So erscheinen Nachrichten"
msgid "This is not the channel you're looking for."
msgstr "Das ist nicht der Kanal, den du suchst."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Das ist nicht die Community, die du suchst."
@@ -18300,9 +18313,9 @@ msgstr "Dieser Sprachkanal hat das Nutzerlimit erreicht. Bitte versuche es spät
msgid "This was a @silent message."
msgstr "Dies war eine @silent-Nachricht."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Das wird einen Riss im Raum-Zeit-Kontinuum erzeugen und kann nicht rückgängig gemacht werden."
@@ -18371,7 +18384,7 @@ msgstr "Timeout bis {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Timeout"
@@ -18659,8 +18672,7 @@ msgstr "Probiere einen anderen Namen oder verwende @ / # / ! / *-Präfixe, um zu
msgid "Try a different search query"
msgstr "Versuche eine andere Suchanfrage"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Versuche einen anderen Suchbegriff"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Versuche einen anderen Suchbegriff oder Filter"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Versuche es erneut"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Löse es"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Nicht unterstütztes Dateiformat. Bitte verwende JPG, PNG, GIF, WebP ode
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Einbettungen wieder anzeigen"
@@ -20573,8 +20585,8 @@ msgstr "Wir haben einen Link zur Autorisierung dieses Logins gesendet. Bitte üb
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Die vollständigen Informationen zu diesem Benutzer konnten derzeit nicht abgerufen werden."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Wir haben es verkackt! Bleib dran, wir arbeiten daran."
@@ -21084,7 +21096,7 @@ msgstr "Du kannst mit Reaktionen in Suchergebnissen nicht interagieren, da es da
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Du kannst während deiner Auszeit nicht beitreten."
@@ -21169,7 +21181,7 @@ msgstr "Du kannst dich nicht wieder hörbar machen, weil dich ein Moderator stum
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Du kannst dich nicht selbst stumm schalten, weil dich ein Moderator stummgeschaltet hat."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Du hast keinen Zugriff auf den Kanal, in dem diese Nachricht gesendet wurde."
@@ -21177,7 +21189,7 @@ msgstr "Du hast keinen Zugriff auf den Kanal, in dem diese Nachricht gesendet wu
msgid "You do not have permission to send messages in this channel."
msgstr "Du hast keine Berechtigung, in diesem Kanal Nachrichten zu senden."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Du hast keinen Zugriff auf Kanäle in dieser Community."
@@ -21468,7 +21480,7 @@ msgstr "Du bist im Sprachkanal"
msgid "You're sending messages too quickly"
msgstr "Du sendest Nachrichten zu schnell"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Du siehst dir ältere Nachrichten an"
diff --git a/fluxer_app/src/locales/el/messages.po b/fluxer_app/src/locales/el/messages.po
index 800f1a50..b72e9883 100644
--- a/fluxer_app/src/locales/el/messages.po
+++ b/fluxer_app/src/locales/el/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Έλεγξε πότε εμφανίζονται οι προεπισκοπήσεις μηνυμάτων στη λίστα απευθείας συνομιλιών"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Συχνά Χρησιμοποιούμενα"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-εξ:"
@@ -56,7 +62,7 @@ msgstr "... ενεργοποίησε τη συμπυκνωμένη λειτου
msgid "(edited)"
msgstr "(επεξεργασμένο)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(αποτυχία φόρτωσης)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> ξεκίνησε μια κλήση."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> είναι αυτή τη στιγμή προσβάσιμο μόνο σε μέλη του προσωπικού του Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Φόρμα προσθήκης αριθμού τηλεφώνου"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Κινούμενα emoji ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Είστε σίγουροι ότι θέλετε να απενεργοποιήσετε τον έλεγχο ταυτότητας δύο παραγόντων μέσω SMS; Αυτό θα κάνει τον λογαριασμό σας λιγότερο ασφαλή."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Είστε σίγουροι ότι θέλετε να ενεργοποιήσετε τις προσκλήσεις; Αυτό θα επιτρέψει στους χρήστες να ενταχθούν ξανά σε αυτήν την κοινότητα μέσω συνδέσμων πρόσκλησης."
@@ -2548,7 +2554,7 @@ msgstr "Είστε σίγουροι ότι θέλετε να ανακαλέσε
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Είστε σίγουροι ότι θέλετε να ανακαλέσετε αυτή την πρόσκληση; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Είστε σίγουροι ότι θέλετε να καταργήσετε όλα τα ενσωματώματα συνδέσμων σε αυτό το μήνυμα; Αυτή η ενέργεια θα κρύψει όλα τα ενσωματώματα από αυτό το μήνυμα."
@@ -3159,7 +3165,7 @@ msgstr "Έφτασε το όριο σελιδοδεικτών"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Σελιδοδείκτης μηνύματος"
@@ -3432,7 +3438,7 @@ msgstr "Ρυθμίσεις κάμερας"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Αλλαγή παρατσουκλιού ομάδας μου"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Αλλαγή παρατσουκλιού"
@@ -3775,7 +3781,7 @@ msgstr "Κανάλι"
msgid "Channel Access"
msgstr "Πρόσβαση καναλιού"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Η πρόσβαση στο κανάλι απορρίφθηκε"
@@ -4142,7 +4148,7 @@ msgstr "ΔClaim το λογαριασμό σου για να δημιουργή
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Διεκδικήστε τον λογαριασμό σας για να συμμετάσχετε σε αυτό το φωνητικό κανάλι."
@@ -4649,8 +4655,8 @@ msgstr "Η κοινότητα προωθεί ή διευκολύνει παρά
msgid "Community Settings"
msgstr "Ρυθμίσεις κοινότητας"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Η κοινότητα είναι προσωρινά μη διαθέσιμη"
@@ -5179,20 +5185,20 @@ msgstr "Αντιγραφή συνδέσμου"
msgid "Copy Media"
msgstr "Αντιγραφή πολυμέσου"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Αντιγραφή μηνύματος"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Αντιγραφή αναγνωριστικού μηνύματος"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Αντιγραφή συνδέσμου μηνύματος"
@@ -5388,8 +5394,8 @@ msgstr "Φόρμα δημιουργίας αγαπημένης κατηγορί
msgid "Create Group DM"
msgstr "Δημιουργία ομαδικού μηνύματος"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Δημιουργία πρόσκλησης"
@@ -5978,11 +5984,11 @@ msgstr "Κατά την αλληλεπίδραση σε κινητές συσκ
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Απενεργοποιείται ως προεπιλογή σε κινητές συσκευές για εξοικονόμηση μπαταρίας και δεδομένων."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Διαγραφή emoji"
msgid "Delete media"
msgstr "Διαγραφή μέσου"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Διαγραφή μηνύματος"
@@ -6595,7 +6601,7 @@ msgstr "Συζήτηση ή προώθηση παράνομων δραστηρι
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Επεξεργασία μέσου"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Επεξεργασία μηνύματος"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojis"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Ενεργοποίηση άδειας παρακολούθησης ει
msgid "Enable Invites"
msgstr "Ενεργοποίηση προσκλήσεων"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Ενεργοποίηση προσκλήσεων ξανά"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Ενεργοποιήστε τις προσκλήσεις για αυτή την κοινότητα"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Αποτυχία φόρτωσης αποθέματος δώρων"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Αποτυχία φόρτωσης προσκλήσεων"
@@ -8769,7 +8775,7 @@ msgstr "Ξεχάσατε τον κωδικό σας;"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Προώθηση"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Οι προσκλήσεις έχουν παγώσει"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Οι προσκλήσεις στο <0>{0}0> είναι προσωρινά απενεργοποιημένες"
@@ -10457,8 +10463,8 @@ msgstr "Διακύμανση"
msgid "Join a Community"
msgstr "Συμμετοχή σε κοινότητα"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Μπες σε μια κοινότητα με αυτοκόλλητα για να ξεκινήσεις!"
@@ -10588,7 +10594,7 @@ msgstr "Μετάβαση"
msgid "Jump straight to the app to continue."
msgstr "Μετάβαση απευθείας στην εφαρμογή για να συνεχίσεις."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Μετάβαση στο {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Μετάβαση στο Παλαιότερο Αδιάβαστο Μήνυ
msgid "Jump to page"
msgstr "Μετάβαση στη σελίδα"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Μετάβαση στο Τρέχον"
@@ -10612,15 +10618,15 @@ msgstr "Μετάβαση στο Τρέχον"
msgid "Jump to the channel of the active call"
msgstr "Μετάβαση στο κανάλι της ενεργής κλήσης"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Μετάβαση στο συνδεδεμένο κανάλι"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Μετάβαση στο συνδεδεμένο μήνυμα"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Μετάβαση στο μήνυμα στο {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Φόρτωση περισσότερων..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Δείκτης φόρτωσης"
@@ -11256,7 +11262,7 @@ msgstr "Διαχείριση πακέτων εκφράσεων"
msgid "Manage feature flags"
msgstr "Διαχείριση σημαιών λειτουργιών"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Διαχείριση Δυνατοτήτων Συμμετοχής"
@@ -11353,7 +11359,7 @@ msgstr "Σήμανση ως spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Σήμανση ως Μη Αναγνωσμένο"
@@ -11822,7 +11828,7 @@ msgstr "Μηνύματα & Μέσα"
msgid "Messages Deleted"
msgstr "Μηνύματα Διαγράφηκαν"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Τα μηνύματα απέτυχαν να φορτώσουν"
@@ -12471,7 +12477,7 @@ msgstr "Το παρατσούκλι δεν πρέπει να ξεπερνά το
msgid "Nickname updated"
msgstr "Το παρατσούκλι ενημερώθηκε"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Δεν υπάρχουν προσβάσιμα κανάλια"
@@ -12575,6 +12581,10 @@ msgstr "Δεν έχει οριστεί διεύθυνση email"
msgid "No emojis found matching your search."
msgstr "Δεν βρέθηκαν emoji που να ταιριάζουν στην αναζήτησή σας."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Δεν βρέθηκαν emojis που να ταιριάζουν με την αναζήτησή σας"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Δεν έχουν εγκατασταθεί ακόμα πακέτα."
msgid "No invite background"
msgstr "Χωρίς φόντο πρόσκλησης"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Χωρίς συνδέσμους πρόσκλησης"
@@ -12768,8 +12778,8 @@ msgstr "Δεν βρέθηκαν ρυθμίσεις"
msgid "No specific scopes requested."
msgstr "Δεν ζητήθηκαν συγκεκριμένα πεδία."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Δεν υπάρχουν διαθέσιμα αυτοκόλλητα"
@@ -12777,8 +12787,7 @@ msgstr "Δεν υπάρχουν διαθέσιμα αυτοκόλλητα"
msgid "No stickers found"
msgstr "Δεν βρέθηκαν αυτοκόλλητα"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Δεν βρέθηκαν αυτοκόλλητα"
@@ -12786,6 +12795,10 @@ msgstr "Δεν βρέθηκαν αυτοκόλλητα"
msgid "No stickers found matching your search."
msgstr "Δεν βρέθηκαν αυτοκόλλητα που ταιριάζουν στην αναζήτησή σας."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Δεν βρέθηκαν αυτοκόλλητα που να ταιριάζουν με την αναζήτησή σας"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Κανάλι συστήματος μη διαθέσιμο"
@@ -13034,7 +13047,7 @@ msgstr "Εντάξει"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Εντάξει"
@@ -13764,7 +13777,7 @@ msgstr "Καρφίτσωσέ το. Καρφίτσωσέ το καλά."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Καρφίτσωσε μήνυμα"
@@ -14678,7 +14691,7 @@ msgstr "Αφαίρεση banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Αφαίρεση αυτοκόλλητου"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Αφαίρεση χρονικού περιορισμού"
@@ -14996,7 +15009,7 @@ msgstr "Αντικαταστήστε το προσαρμοσμένο φόντο
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Απάντηση"
@@ -15249,11 +15262,11 @@ msgstr "Επανασυνδρομή"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Ρόλος: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Ρόλοι"
@@ -17529,22 +17542,22 @@ msgstr "Απόκρυψη όλων των αναφορών ρόλων"
msgid "Suppress All Role @mentions"
msgstr "Απόκρυψη Όλων των αναφορών ρόλων"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Απόκρυψη ενσωματώσεων"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Απόκρυψη ενσωματωμένων"
@@ -17822,8 +17835,8 @@ msgstr "Το bot προστέθηκε."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Το κανάλι που ψάχνετε ίσως έχει διαγραφεί ή δεν έχετε πρόσβαση σε αυτό."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Η κοινότητα που ψάχνετε ίσως έχει διαγραφεί ή δεν έχετε πρόσβαση σε αυτή."
@@ -17921,11 +17934,11 @@ msgstr "Δεν έχει διαμορφωθεί κανένα webhook για αυ
msgid "There was an error loading the emojis. Please try again."
msgstr "Παρουσιάστηκε σφάλμα φορτώνοντας τα emoji. Παρακαλώ δοκιμάστε ξανά."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Παρουσιάστηκε σφάλμα φορτώνοντας τους συνδέσμους πρόσκλησης για αυτό το κανάλι. Παρακαλώ δοκιμάστε ξανά."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Παρουσιάστηκε σφάλμα φορτώνοντας τις προσκλήσεις. Παρακαλώ δοκιμάστε ξανά."
@@ -18010,7 +18023,7 @@ msgstr "Αυτή η κατηγορία περιέχει ήδη το μέγιστ
msgid "This channel does not support webhooks."
msgstr "Αυτό το κανάλι δεν υποστηρίζει webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Αυτό το κανάλι δεν έχει ακόμη συνδέσμους πρόσκλησης. Δημιουργήστε έναν για να προσκαλέσετε άτομα σε αυτό το κανάλι."
@@ -18043,7 +18056,7 @@ msgstr "Αυτό το κανάλι μπορεί να περιέχει περιε
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Αυτός ο κωδικός δεν έχει χρησιμοποιηθεί ακόμα. Ολοκληρώστε πρώτα την είσοδο στο πρόγραμμα περιήγησής σας."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Αυτή η κοινότητα δεν έχει ακόμη συνδέσμους πρόσκλησης. Μεταβείτε σε ένα κανάλι και δημιουργήστε πρόσκληση για να προσκαλέσετε άτομα."
@@ -18180,8 +18193,8 @@ msgstr "Έτσι εμφανίζονται τα μηνύματα"
msgid "This is not the channel you're looking for."
msgstr "Αυτό δεν είναι το κανάλι που ψάχνετε."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Αυτή δεν είναι η κοινότητα που ψάχνετε."
@@ -18300,9 +18313,9 @@ msgstr "Αυτό το φωνητικό κανάλι έχει φτάσει το
msgid "This was a @silent message."
msgstr "Αυτό ήταν ένα @silent μήνυμα."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Αυτό θα δημιουργήσει ένα ρήγμα στο χωροχρονικό συνεχές και δεν μπορεί να αναιρεθεί."
@@ -18371,7 +18384,7 @@ msgstr "Αναμονή έως {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Χρόνος λήξης"
@@ -18659,8 +18672,7 @@ msgstr "Δοκιμάστε διαφορετικό όνομα ή χρησιμοπ
msgid "Try a different search query"
msgstr "Δοκιμάστε διαφορετικό ερώτημα αναζήτησης"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Δοκιμάστε διαφορετικό όρο αναζήτησης"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Δοκιμάστε διαφορετικό όρο αναζήτησης ή φίλτρο"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Δοκιμάστε ξανά"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Ξεκαρφίτσωμα"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Μη υποστηριζόμενη μορφή αρχείου. Χρησι
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Επαναφορά ενσωματώσεων"
@@ -20573,8 +20585,8 @@ msgstr "Στείλαμε ένα σύνδεσμο με email για να εξου
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Δεν καταφέραμε να ανακτήσουμε όλες τις πληροφορίες για αυτόν τον χρήστη αυτή τη στιγμή."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Κάναμε λάθος! Περιμένετε, το δουλεύουμε."
@@ -21084,7 +21096,7 @@ msgstr "Δεν μπορείς να αλληλεπιδράσεις με αντι
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Δεν μπορείς να συμμετάσχεις όσο βρίσκεσαι σε χρονικό όριο."
@@ -21169,7 +21181,7 @@ msgstr "Δεν μπορείς να επαναφέρεις την ακοή σου
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Δεν μπορείς να αποσιγάσεις τον εαυτό σου γιατί έχεις μπει σε σίγαση από διαχειριστή."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Δεν έχεις πρόσβαση στο κανάλι όπου στάλθηκε αυτό το μήνυμα."
@@ -21177,7 +21189,7 @@ msgstr "Δεν έχεις πρόσβαση στο κανάλι όπου στάλ
msgid "You do not have permission to send messages in this channel."
msgstr "Δεν έχεις άδεια να στέλνεις μηνύματα σε αυτό το κανάλι."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Δεν έχεις πρόσβαση σε κανένα κανάλι αυτής της κοινότητας."
@@ -21468,7 +21480,7 @@ msgstr "Είσαι στο φωνητικό κανάλι"
msgid "You're sending messages too quickly"
msgstr "Στέλνεις μηνύματα πολύ γρήγορα"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Παρακολουθείς παλαιότερα μηνύματα"
diff --git a/fluxer_app/src/locales/en-GB/messages.po b/fluxer_app/src/locales/en-GB/messages.po
index 316bf160..52449688 100644
--- a/fluxer_app/src/locales/en-GB/messages.po
+++ b/fluxer_app/src/locales/en-GB/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Control when message previews are shown in the DM list"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Frequently Used"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... turn dense mode on. Nice!"
msgid "(edited)"
msgstr "(edited)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(failed to load)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> started a call."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> is currently only accessible to Fluxer staff members"
@@ -1647,7 +1653,7 @@ msgstr "Add phone number form"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animated Emoji ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Are you sure you want to disable SMS two-factor authentication? This will make your account less secure."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
@@ -2548,7 +2554,7 @@ msgstr "Are you sure you want to revoke the ban for <0>{0}0>? They will be abl
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Are you sure you want to revoke this invite? This action cannot be undone."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
@@ -3159,7 +3165,7 @@ msgstr "Bookmark Limit Reached"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Bookmark Message"
@@ -3432,7 +3438,7 @@ msgstr "Camera Settings"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Change My Group Nickname"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Change Nickname"
@@ -3775,7 +3781,7 @@ msgstr "Channel"
msgid "Channel Access"
msgstr "Channel Access"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Channel Access Denied"
@@ -4142,7 +4148,7 @@ msgstr "Claim your account to generate beta codes."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Claim your account to join this voice channel."
@@ -4649,8 +4655,8 @@ msgstr "Community promotes or facilitates illegal activities"
msgid "Community Settings"
msgstr "Community Settings"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Community temporarily unavailable"
@@ -5179,20 +5185,20 @@ msgstr "Copy Link"
msgid "Copy Media"
msgstr "Copy Media"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Copy Message"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Copy Message ID"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Copy Message Link"
@@ -5388,8 +5394,8 @@ msgstr "Create favourite category form"
msgid "Create Group DM"
msgstr "Create Group DM"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Create Invite"
@@ -5978,11 +5984,11 @@ msgstr "Defaults to animate on interaction on mobile to preserve battery life."
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Defaults to off on mobile to preserve battery life and data usage."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Delete Emoji"
msgid "Delete media"
msgstr "Delete media"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Delete Message"
@@ -6595,7 +6601,7 @@ msgstr "Discussion or promotion of illegal activities"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Edit media"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Edit Message"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojis"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Enable Input Monitoring permission"
msgid "Enable Invites"
msgstr "Enable Invites"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Enable Invites Again"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Enable invites for this community"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Failed to load gift inventory"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Failed to load invites"
@@ -8769,7 +8775,7 @@ msgstr "Forgot your password?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Forward"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Invites Paused"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Invites to <0>{0}0> are currently disabled"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Join a Community"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Join a community with stickers to get started!"
@@ -10588,7 +10594,7 @@ msgstr "Jump"
msgid "Jump straight to the app to continue."
msgstr "Jump straight to the app to continue."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Jump to {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Jump to Oldest Unread Message"
msgid "Jump to page"
msgstr "Jump to page"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Jump to Present"
@@ -10612,15 +10618,15 @@ msgstr "Jump to Present"
msgid "Jump to the channel of the active call"
msgstr "Jump to the channel of the active call"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Jump to the linked channel"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Jump to the linked message"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Jump to the message in {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Loading more..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Loading placeholder"
@@ -11256,7 +11262,7 @@ msgstr "Manage expression packs"
msgid "Manage feature flags"
msgstr "Manage feature flags"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Manage Guild Features"
@@ -11353,7 +11359,7 @@ msgstr "Mark as spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Mark as Unread"
@@ -11822,7 +11828,7 @@ msgstr "Messages & Media"
msgid "Messages Deleted"
msgstr "Messages Deleted"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Messages failed to load"
@@ -12471,7 +12477,7 @@ msgstr "Nickname must not exceed 32 characters"
msgid "Nickname updated"
msgstr "Nickname updated"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "No accessible channels"
@@ -12575,6 +12581,10 @@ msgstr "No email address set"
msgid "No emojis found matching your search."
msgstr "No emojis found matching your search."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "No emojis match your search"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "No installed packs yet."
msgid "No invite background"
msgstr "No invite background"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "No invite links"
@@ -12768,8 +12778,8 @@ msgstr "No settings found"
msgid "No specific scopes requested."
msgstr "No specific scopes requested."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "No Stickers Available"
@@ -12777,8 +12787,7 @@ msgstr "No Stickers Available"
msgid "No stickers found"
msgstr "No stickers found"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "No Stickers Found"
@@ -12786,6 +12795,10 @@ msgstr "No Stickers Found"
msgid "No stickers found matching your search."
msgstr "No stickers found matching your search."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "No stickers match your search"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "No System Channel"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Okay"
@@ -13764,7 +13777,7 @@ msgstr "Pin it. Pin it good."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Pin Message"
@@ -14678,7 +14691,7 @@ msgstr "Remove Banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Remove sticker"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Remove Timeout"
@@ -14996,7 +15009,7 @@ msgstr "Replace your custom background"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Reply"
@@ -15249,11 +15262,11 @@ msgstr "Resubscribe"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Role: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Roles"
@@ -17529,22 +17542,22 @@ msgstr "Suppress all role @mentions"
msgid "Suppress All Role @mentions"
msgstr "Suppress All Role @mentions"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Suppress embeds"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Suppress Embeds"
@@ -17822,8 +17835,8 @@ msgstr "The bot has been added."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "The channel you're looking for may have been deleted or you may not have access to it."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "The community you're looking for may have been deleted or you may not have access to it."
@@ -17921,11 +17934,11 @@ msgstr "There are no webhooks configured for this channel. Create a webhook to a
msgid "There was an error loading the emojis. Please try again."
msgstr "There was an error loading the emojis. Please try again."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "There was an error loading the invite links for this channel. Please try again."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "There was an error loading the invites. Please try again."
@@ -18010,7 +18023,7 @@ msgstr "This category already contains the maximum of {MAX_CHANNELS_PER_CATEGORY
msgid "This channel does not support webhooks."
msgstr "This channel does not support webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "This channel doesn't have any invite links yet. Create one to invite people to this channel."
@@ -18043,7 +18056,7 @@ msgstr "This channel may contain content that is not safe for work or that may b
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "This code hasn't been used yet. Please complete login in your browser first."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
@@ -18180,8 +18193,8 @@ msgstr "This is how messages appear"
msgid "This is not the channel you're looking for."
msgstr "This is not the channel you're looking for."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "This is not the community you're looking for."
@@ -18300,9 +18313,9 @@ msgstr "This voice channel has reached its user limit. Please try again later or
msgid "This was a @silent message."
msgstr "This was a @silent message."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "This will create a rift in the space-time continuum and cannot be undone."
@@ -18371,7 +18384,7 @@ msgstr "Timed out until {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Timeout"
@@ -18659,8 +18672,7 @@ msgstr "Try a different name or use @ / # / ! / * prefixes to filter results."
msgid "Try a different search query"
msgstr "Try a different search query"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Try a different search term"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Try a different search term or filter"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Try again"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Unpin it"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Unsupported file format. Please use JPG, PNG, GIF, WebP, or MP4."
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Unsuppress Embeds"
@@ -20573,8 +20585,8 @@ msgstr "We emailed a link to authorise this login. Please open your inbox for {0
msgid "We failed to retrieve the full information about this user at this time."
msgstr "We failed to retrieve the full information about this user at this time."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "We fluxed up! Hang tight, we're working on it."
@@ -21084,7 +21096,7 @@ msgstr "You can't interact with reactions in search results as it might disrupt
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "You can't join while you're on timeout."
@@ -21169,7 +21181,7 @@ msgstr "You cannot undeafen yourself because you have been deafened by a moderat
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "You cannot unmute yourself because you have been muted by a moderator."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "You do not have access to the channel where this message was sent."
@@ -21177,7 +21189,7 @@ msgstr "You do not have access to the channel where this message was sent."
msgid "You do not have permission to send messages in this channel."
msgstr "You do not have permission to send messages in this channel."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "You don't have access to any channels in this community."
@@ -21468,7 +21480,7 @@ msgstr "You're in the voice channel"
msgid "You're sending messages too quickly"
msgstr "You're sending messages too quickly"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "You're viewing older messages"
diff --git a/fluxer_app/src/locales/en-US/messages.po b/fluxer_app/src/locales/en-US/messages.po
index 8f84aa82..e130de73 100644
--- a/fluxer_app/src/locales/en-US/messages.po
+++ b/fluxer_app/src/locales/en-US/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Control when message previews are shown in the DM list"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Frequently Used"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... turn dense mode on. Nice!"
msgid "(edited)"
msgstr "(edited)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(failed to load)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> started a call."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> is currently only accessible to Fluxer staff members"
@@ -1647,7 +1653,7 @@ msgstr "Add phone number form"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animated Emoji ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Are you sure you want to disable SMS two-factor authentication? This will make your account less secure."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
@@ -2548,7 +2554,7 @@ msgstr "Are you sure you want to revoke the ban for <0>{0}0>? They will be abl
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Are you sure you want to revoke this invite? This action cannot be undone."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
@@ -3159,7 +3165,7 @@ msgstr "Bookmark Limit Reached"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Bookmark Message"
@@ -3432,7 +3438,7 @@ msgstr "Camera Settings"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Change My Group Nickname"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Change Nickname"
@@ -3775,7 +3781,7 @@ msgstr "Channel"
msgid "Channel Access"
msgstr "Channel Access"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Channel Access Denied"
@@ -4142,7 +4148,7 @@ msgstr "Claim your account to generate beta codes."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Claim your account to join this voice channel."
@@ -4649,8 +4655,8 @@ msgstr "Community promotes or facilitates illegal activities"
msgid "Community Settings"
msgstr "Community Settings"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Community temporarily unavailable"
@@ -5179,20 +5185,20 @@ msgstr "Copy Link"
msgid "Copy Media"
msgstr "Copy Media"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Copy Message"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Copy Message ID"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Copy Message Link"
@@ -5388,8 +5394,8 @@ msgstr "Create favorite category form"
msgid "Create Group DM"
msgstr "Create Group DM"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Create Invite"
@@ -5978,11 +5984,11 @@ msgstr "Defaults to animate on interaction on mobile to preserve battery life."
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Defaults to off on mobile to preserve battery life and data usage."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Delete Emoji"
msgid "Delete media"
msgstr "Delete media"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Delete Message"
@@ -6595,7 +6601,7 @@ msgstr "Discussion or promotion of illegal activities"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Edit media"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Edit Message"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojis"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Enable Input Monitoring permission"
msgid "Enable Invites"
msgstr "Enable Invites"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Enable Invites Again"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Enable invites for this community"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Failed to load gift inventory"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Failed to load invites"
@@ -8769,7 +8775,7 @@ msgstr "Forgot your password?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Forward"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Invites Paused"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Invites to <0>{0}0> are currently disabled"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Join a Community"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Join a community with stickers to get started!"
@@ -10588,7 +10594,7 @@ msgstr "Jump"
msgid "Jump straight to the app to continue."
msgstr "Jump straight to the app to continue."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Jump to {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Jump to Oldest Unread Message"
msgid "Jump to page"
msgstr "Jump to page"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Jump to Present"
@@ -10612,15 +10618,15 @@ msgstr "Jump to Present"
msgid "Jump to the channel of the active call"
msgstr "Jump to the channel of the active call"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Jump to the linked channel"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Jump to the linked message"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Jump to the message in {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Loading more..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Loading placeholder"
@@ -11256,7 +11262,7 @@ msgstr "Manage expression packs"
msgid "Manage feature flags"
msgstr "Manage feature flags"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Manage Guild Features"
@@ -11353,7 +11359,7 @@ msgstr "Mark as spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Mark as Unread"
@@ -11822,7 +11828,7 @@ msgstr "Messages & Media"
msgid "Messages Deleted"
msgstr "Messages Deleted"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Messages failed to load"
@@ -12471,7 +12477,7 @@ msgstr "Nickname must not exceed 32 characters"
msgid "Nickname updated"
msgstr "Nickname updated"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "No accessible channels"
@@ -12575,6 +12581,10 @@ msgstr "No email address set"
msgid "No emojis found matching your search."
msgstr "No emojis found matching your search."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "No emojis match your search"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "No installed packs yet."
msgid "No invite background"
msgstr "No invite background"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "No invite links"
@@ -12768,8 +12778,8 @@ msgstr "No settings found"
msgid "No specific scopes requested."
msgstr "No specific scopes requested."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "No Stickers Available"
@@ -12777,8 +12787,7 @@ msgstr "No Stickers Available"
msgid "No stickers found"
msgstr "No stickers found"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "No Stickers Found"
@@ -12786,6 +12795,10 @@ msgstr "No Stickers Found"
msgid "No stickers found matching your search."
msgstr "No stickers found matching your search."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "No stickers match your search"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "No System Channel"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Okay"
@@ -13764,7 +13777,7 @@ msgstr "Pin it. Pin it good."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Pin Message"
@@ -14678,7 +14691,7 @@ msgstr "Remove Banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Remove sticker"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Remove Timeout"
@@ -14996,7 +15009,7 @@ msgstr "Replace your custom background"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Reply"
@@ -15249,11 +15262,11 @@ msgstr "Resubscribe"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Role: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Roles"
@@ -17529,22 +17542,22 @@ msgstr "Suppress all role @mentions"
msgid "Suppress All Role @mentions"
msgstr "Suppress All Role @mentions"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Suppress embeds"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Suppress Embeds"
@@ -17822,8 +17835,8 @@ msgstr "The bot has been added."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "The channel you're looking for may have been deleted or you may not have access to it."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "The community you're looking for may have been deleted or you may not have access to it."
@@ -17921,11 +17934,11 @@ msgstr "There are no webhooks configured for this channel. Create a webhook to a
msgid "There was an error loading the emojis. Please try again."
msgstr "There was an error loading the emojis. Please try again."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "There was an error loading the invite links for this channel. Please try again."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "There was an error loading the invites. Please try again."
@@ -18010,7 +18023,7 @@ msgstr "This category already contains the maximum of {MAX_CHANNELS_PER_CATEGORY
msgid "This channel does not support webhooks."
msgstr "This channel does not support webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "This channel doesn't have any invite links yet. Create one to invite people to this channel."
@@ -18043,7 +18056,7 @@ msgstr "This channel may contain content that is not safe for work or that may b
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "This code hasn't been used yet. Please complete login in your browser first."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
@@ -18180,8 +18193,8 @@ msgstr "This is how messages appear"
msgid "This is not the channel you're looking for."
msgstr "This is not the channel you're looking for."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "This is not the community you're looking for."
@@ -18300,9 +18313,9 @@ msgstr "This voice channel has reached its user limit. Please try again later or
msgid "This was a @silent message."
msgstr "This was a @silent message."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "This will create a rift in the space-time continuum and cannot be undone."
@@ -18371,7 +18384,7 @@ msgstr "Timed out until {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Timeout"
@@ -18659,8 +18672,7 @@ msgstr "Try a different name or use @ / # / ! / * prefixes to filter results."
msgid "Try a different search query"
msgstr "Try a different search query"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Try a different search term"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Try a different search term or filter"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Try again"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Unpin it"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Unsupported file format. Please use JPG, PNG, GIF, WebP, or MP4."
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Unsuppress Embeds"
@@ -20573,8 +20585,8 @@ msgstr "We emailed a link to authorize this login. Please open your inbox for {0
msgid "We failed to retrieve the full information about this user at this time."
msgstr "We failed to retrieve the full information about this user at this time."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "We fluxed up! Hang tight, we're working on it."
@@ -21088,7 +21100,7 @@ msgstr "You can't interact with reactions in search results as it might disrupt
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "You can't join while you're on timeout."
@@ -21173,7 +21185,7 @@ msgstr "You cannot undeafen yourself because you have been deafened by a moderat
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "You cannot unmute yourself because you have been muted by a moderator."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "You do not have access to the channel where this message was sent."
@@ -21181,7 +21193,7 @@ msgstr "You do not have access to the channel where this message was sent."
msgid "You do not have permission to send messages in this channel."
msgstr "You do not have permission to send messages in this channel."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "You don't have access to any channels in this community."
@@ -21472,7 +21484,7 @@ msgstr "You're in the voice channel"
msgid "You're sending messages too quickly"
msgstr "You're sending messages too quickly"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "You're viewing older messages"
diff --git a/fluxer_app/src/locales/es-419/messages.po b/fluxer_app/src/locales/es-419/messages.po
index 44431af6..2d92f58f 100644
--- a/fluxer_app/src/locales/es-419/messages.po
+++ b/fluxer_app/src/locales/es-419/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Controla cuándo se muestran las vistas previas de mensajes en la lista de MD"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Usado con frecuencia"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... activar el modo denso. ¡Bien!"
msgid "(edited)"
msgstr "(editado)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(error al cargar)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> inició una llamada."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> actualmente solo es accesible para miembros del personal de Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Formulario para agregar número de teléfono"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Emoji animado ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "¿Estás seguro de que quieres desactivar la autenticación de dos factores por SMS? Esto hará que tu cuenta sea menos segura."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "¿Estás seguro de que quieres habilitar las invitaciones? Esto permitirá que los usuarios se unan a esta comunidad nuevamente a través de enlaces de invitación."
@@ -2548,7 +2554,7 @@ msgstr "¿Estás seguro de que quieres revocar la prohibición para <0>{0}0>?
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "¿Estás seguro de que quieres revocar esta invitación? Esta acción no se puede deshacer."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "¿Estás seguro de que quieres suprimir todas las incrustaciones de enlaces en este mensaje? Esta acción ocultará todas las incrustaciones de este mensaje."
@@ -3159,7 +3165,7 @@ msgstr "Límite de marcadores alcanzado"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Marcar mensaje"
@@ -3432,7 +3438,7 @@ msgstr "Configuración de cámara"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Cambiar mi apodo de grupo"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Cambiar apodo"
@@ -3775,7 +3781,7 @@ msgstr "Canal"
msgid "Channel Access"
msgstr "Acceso al canal"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Acceso al canal denegado"
@@ -4142,7 +4148,7 @@ msgstr "Reclama tu cuenta para generar códigos beta."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Reclama tu cuenta para unirte a este canal de voz."
@@ -4649,8 +4655,8 @@ msgstr "La comunidad promueve o facilita actividades ilegales"
msgid "Community Settings"
msgstr "Configuración de la comunidad"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Comunidad temporalmente no disponible"
@@ -5179,20 +5185,20 @@ msgstr "Copiar enlace"
msgid "Copy Media"
msgstr "Copiar medios"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Copiar mensaje"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Copiar ID del mensaje"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Copiar enlace del mensaje"
@@ -5388,8 +5394,8 @@ msgstr "Crear formulario de categoría favorita"
msgid "Create Group DM"
msgstr "Crear MD grupal"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Crear invitación"
@@ -5978,11 +5984,11 @@ msgstr "Por defecto, se anima en interacción en móviles para preservar la bate
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Por defecto, desactivado en móviles para preservar la batería y el uso de datos."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Eliminar emoji"
msgid "Delete media"
msgstr "Eliminar medios"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Eliminar mensaje"
@@ -6595,7 +6601,7 @@ msgstr "Discusión o promoción de actividades ilegales"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Editar medios"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Editar mensaje"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojis"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Activar permiso de monitoreo de entrada"
msgid "Enable Invites"
msgstr "Activar invitaciones"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Activar invitaciones de nuevo"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Activar invitaciones para esta comunidad"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "No se pudo cargar el inventario de regalos"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "No se pudieron cargar las invitaciones"
@@ -8769,7 +8775,7 @@ msgstr "¿Olvidaste tu contraseña?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Adelantar"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Invitaciones pausadas"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Las invitaciones a <0>{0}0> están deshabilitadas actualmente"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Unirse a una comunidad"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "¡Únete a una comunidad con pegatinas para comenzar!"
@@ -10588,7 +10594,7 @@ msgstr "Saltar"
msgid "Jump straight to the app to continue."
msgstr "Salta directamente a la aplicación para continuar."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Saltar a {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Saltar al mensaje no leído más antiguo"
msgid "Jump to page"
msgstr "Saltar a la página"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Saltar al presente"
@@ -10612,15 +10618,15 @@ msgstr "Saltar al presente"
msgid "Jump to the channel of the active call"
msgstr "Saltar al canal de la llamada activa"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Saltar al canal vinculado"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Saltar al mensaje vinculado"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Saltar al mensaje en {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Cargando más..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Marcador de posición de carga"
@@ -11256,7 +11262,7 @@ msgstr "Administrar paquetes de expresiones"
msgid "Manage feature flags"
msgstr "Administrar indicadores de funciones"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Administrar funciones del gremio"
@@ -11353,7 +11359,7 @@ msgstr "Marcar como spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Marcar como no leído"
@@ -11822,7 +11828,7 @@ msgstr "Mensajes y medios"
msgid "Messages Deleted"
msgstr "Mensajes eliminados"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "No se pudieron cargar los mensajes"
@@ -12471,7 +12477,7 @@ msgstr "El apodo no debe exceder 32 caracteres"
msgid "Nickname updated"
msgstr "Apodo actualizado"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "No hay canales accesibles"
@@ -12575,6 +12581,10 @@ msgstr "No hay dirección de correo configurada"
msgid "No emojis found matching your search."
msgstr "No se encontraron emojis que coincidan con tu búsqueda."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "No hay emojis que coincidan con tu búsqueda"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Aún no hay paquetes instalados."
msgid "No invite background"
msgstr "Sin fondo de invitación"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "No hay enlaces de invitación"
@@ -12768,8 +12778,8 @@ msgstr "No se encontraron configuraciones"
msgid "No specific scopes requested."
msgstr "No se solicitaron alcances específicos."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "No hay pegatinas disponibles"
@@ -12777,8 +12787,7 @@ msgstr "No hay pegatinas disponibles"
msgid "No stickers found"
msgstr "No se encontraron stickers"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "No se encontraron stickers"
@@ -12786,6 +12795,10 @@ msgstr "No se encontraron stickers"
msgid "No stickers found matching your search."
msgstr "No se encontraron stickers que coincidan con tu búsqueda."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "No hay stickers que coincidan con tu búsqueda"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Sin canal del sistema"
@@ -13034,7 +13047,7 @@ msgstr "Aceptar"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "De acuerdo"
@@ -13764,7 +13777,7 @@ msgstr "Fíjalo. Fíjalo bien."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Fijar mensaje"
@@ -14678,7 +14691,7 @@ msgstr "Eliminar banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Eliminar sticker"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Eliminar tiempo de espera"
@@ -14996,7 +15009,7 @@ msgstr "Reemplazar tu fondo personalizado"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Responder"
@@ -15249,11 +15262,11 @@ msgstr "Volver a suscribirse"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rol: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Roles"
@@ -17529,22 +17542,22 @@ msgstr "Suprimir todas las @menciones de roles"
msgid "Suppress All Role @mentions"
msgstr "Suprimir todas las @menciones de roles"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Suprimir incrustaciones"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Suprimir incrustaciones"
@@ -17822,8 +17835,8 @@ msgstr "El bot ha sido añadido."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "El canal que buscas puede haber sido eliminado o puede que no tengas acceso a él."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "La comunidad que buscas puede haber sido eliminada o puede que no tengas acceso a ella."
@@ -17921,11 +17934,11 @@ msgstr "No hay webhooks configurados para este canal. Crea un webhook para permi
msgid "There was an error loading the emojis. Please try again."
msgstr "Hubo un error al cargar los emojis. Por favor, inténtalo de nuevo."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Hubo un error al cargar los enlaces de invitación para este canal. Por favor, inténtalo de nuevo."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Hubo un error al cargar las invitaciones. Por favor, inténtalo de nuevo."
@@ -18010,7 +18023,7 @@ msgstr "Esta categoría ya contiene el máximo de {MAX_CHANNELS_PER_CATEGORY} ca
msgid "This channel does not support webhooks."
msgstr "Este canal no admite webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Este canal aún no tiene enlaces de invitación. Crea uno para invitar a personas a este canal."
@@ -18043,7 +18056,7 @@ msgstr "Este canal puede contener contenido no seguro para el trabajo o que pued
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Este código aún no se ha usado. Por favor, completa el inicio de sesión en tu navegador primero."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Esta comunidad aún no tiene enlaces de invitación. Ve a un canal y crea una invitación para invitar a personas."
@@ -18180,8 +18193,8 @@ msgstr "Así es como aparecen los mensajes"
msgid "This is not the channel you're looking for."
msgstr "Este no es el canal que estás buscando."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Esta no es la comunidad que estás buscando."
@@ -18300,9 +18313,9 @@ msgstr "Este canal de voz ha alcanzado su límite de usuarios. Por favor, intén
msgid "This was a @silent message."
msgstr "Este fue un mensaje @silent."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Esto creará una grieta en el continuo espacio-tiempo y no se puede deshacer."
@@ -18371,7 +18384,7 @@ msgstr "Tiempo de espera hasta {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Tiempo de espera"
@@ -18659,8 +18672,7 @@ msgstr "Prueba un nombre diferente o usa los prefijos @ / # / ! / * para filtrar
msgid "Try a different search query"
msgstr "Prueba una consulta de búsqueda diferente"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Prueba un término de búsqueda diferente"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Prueba un término de búsqueda o filtro diferente"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Inténtalo de nuevo"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Desfijarlo"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Formato de archivo no compatible. Por favor, usa JPG, PNG, GIF, WebP o M
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Mostrar incrustaciones"
@@ -20573,8 +20585,8 @@ msgstr "Enviamos un enlace por correo para autorizar este inicio de sesión. Abr
msgid "We failed to retrieve the full information about this user at this time."
msgstr "No pudimos recuperar la información completa sobre este usuario en este momento."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "¡La regamos! Aguanta, estamos trabajando en ello."
@@ -21084,7 +21096,7 @@ msgstr "No puedes interactuar con reacciones en los resultados de búsqueda, ya
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "No puedes unirte mientras estás en tiempo de espera."
@@ -21169,7 +21181,7 @@ msgstr "No puedes quitar el silencio de audio porque un moderador te ha silencia
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "No puedes quitar el silencio porque un moderador te ha silenciado."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "No tienes acceso al canal donde se envió este mensaje."
@@ -21177,7 +21189,7 @@ msgstr "No tienes acceso al canal donde se envió este mensaje."
msgid "You do not have permission to send messages in this channel."
msgstr "No tienes permiso para enviar mensajes en este canal."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "No tienes acceso a ningún canal en esta comunidad."
@@ -21468,7 +21480,7 @@ msgstr "Estás en el canal de voz"
msgid "You're sending messages too quickly"
msgstr "Estás enviando mensajes demasiado rápido"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Estás viendo mensajes más antiguos"
diff --git a/fluxer_app/src/locales/es-ES/messages.po b/fluxer_app/src/locales/es-ES/messages.po
index ba6cc17b..36be1d19 100644
--- a/fluxer_app/src/locales/es-ES/messages.po
+++ b/fluxer_app/src/locales/es-ES/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Controla cuándo se muestran las vistas previas de mensajes en la lista de MD"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Usado frecuentemente"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... activa el modo denso. ¡Bien!"
msgid "(edited)"
msgstr "(editado)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(error al cargar)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> inició una llamada."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> solo es accesible actualmente para miembros del personal de Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Formulario para añadir número de teléfono"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Emoji animado ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "¿Estás seguro de que quieres desactivar la autenticación de dos factores por SMS? Esto hará que tu cuenta sea menos segura."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "¿Estás seguro de que quieres habilitar las invitaciones? Esto permitirá que los usuarios se unan a esta comunidad mediante enlaces de invitación de nuevo."
@@ -2548,7 +2554,7 @@ msgstr "¿Estás seguro de que quieres revocar la prohibición para <0>{0}0>?
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "¿Estás seguro de que quieres revocar esta invitación? Esta acción no se puede deshacer."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "¿Estás seguro de que quieres suprimir todas las incrustaciones de enlaces en este mensaje? Esta acción ocultará todas las incrustaciones de este mensaje."
@@ -3159,7 +3165,7 @@ msgstr "Límite de marcadores alcanzado"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Marcar mensaje"
@@ -3432,7 +3438,7 @@ msgstr "Configuración de la cámara"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Cambiar mi apodo en el grupo"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Cambiar apodo"
@@ -3775,7 +3781,7 @@ msgstr "Canal"
msgid "Channel Access"
msgstr "Acceso al canal"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Acceso al canal denegado"
@@ -4142,7 +4148,7 @@ msgstr "Reclama tu cuenta para generar códigos beta."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Reclama tu cuenta para unirte a este canal de voz."
@@ -4649,8 +4655,8 @@ msgstr "La comunidad promueve o facilita actividades ilegales"
msgid "Community Settings"
msgstr "Configuración de la comunidad"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Comunidad temporalmente no disponible"
@@ -5179,20 +5185,20 @@ msgstr "Copiar enlace"
msgid "Copy Media"
msgstr "Copiar medios"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Copiar mensaje"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Copiar ID del mensaje"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Copiar enlace del mensaje"
@@ -5388,8 +5394,8 @@ msgstr "Formulario para crear categoría favorita"
msgid "Create Group DM"
msgstr "Crear MD de grupo"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Crear invitación"
@@ -5978,11 +5984,11 @@ msgstr "Por defecto, se anima con la interacción en el móvil para conservar la
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Por defecto, está desactivado en el móvil para conservar la batería y el uso de datos."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Eliminar emoji"
msgid "Delete media"
msgstr "Eliminar medios"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Eliminar mensaje"
@@ -6595,7 +6601,7 @@ msgstr "Discusión o promoción de actividades ilegales"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Editar medios"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Editar mensaje"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojis"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Activar permiso de monitorización de entrada"
msgid "Enable Invites"
msgstr "Activar invitaciones"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Activar invitaciones de nuevo"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Activar invitaciones para esta comunidad"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Error al cargar el inventario de regalos"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Error al cargar las invitaciones"
@@ -8769,7 +8775,7 @@ msgstr "¿Has olvidado tu contraseña?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Adelante"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Invitaciones pausadas"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Las invitaciones a <0>{0}0> están deshabilitadas actualmente"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Unirse a una comunidad"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "¡Únete a una comunidad con pegatinas para empezar!"
@@ -10588,7 +10594,7 @@ msgstr "Saltar"
msgid "Jump straight to the app to continue."
msgstr "Salta directamente a la aplicación para continuar."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Saltar a {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Saltar al mensaje no leído más antiguo"
msgid "Jump to page"
msgstr "Saltar a la página"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Saltar al presente"
@@ -10612,15 +10618,15 @@ msgstr "Saltar al presente"
msgid "Jump to the channel of the active call"
msgstr "Saltar al canal de la llamada activa"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Saltar al canal vinculado"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Saltar al mensaje vinculado"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Saltar al mensaje en {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Cargando más..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Marcador de posición de carga"
@@ -11256,7 +11262,7 @@ msgstr "Gestionar paquetes de expresiones"
msgid "Manage feature flags"
msgstr "Gestionar indicadores de funciones"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Gestionar funciones del gremio"
@@ -11353,7 +11359,7 @@ msgstr "Marcar como spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Marcar como no leído"
@@ -11822,7 +11828,7 @@ msgstr "Mensajes y medios"
msgid "Messages Deleted"
msgstr "Mensajes eliminados"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "No se pudieron cargar los mensajes"
@@ -12471,7 +12477,7 @@ msgstr "El apodo no debe superar los 32 caracteres"
msgid "Nickname updated"
msgstr "Apodo actualizado"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "No hay canales accesibles"
@@ -12575,6 +12581,10 @@ msgstr "No hay dirección de correo electrónico establecida"
msgid "No emojis found matching your search."
msgstr "No se encontraron emojis que coincidan con tu búsqueda."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "No hay emojis que coincidan con tu búsqueda"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Aún no hay paquetes instalados."
msgid "No invite background"
msgstr "Sin fondo de invitación"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Sin enlaces de invitación"
@@ -12768,8 +12778,8 @@ msgstr "No se encontraron ajustes"
msgid "No specific scopes requested."
msgstr "No se han solicitado ámbitos específicos."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "No hay pegatinas disponibles"
@@ -12777,8 +12787,7 @@ msgstr "No hay pegatinas disponibles"
msgid "No stickers found"
msgstr "No se encontraron pegatinas"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "No se encontraron pegatinas"
@@ -12786,6 +12795,10 @@ msgstr "No se encontraron pegatinas"
msgid "No stickers found matching your search."
msgstr "No se encontraron pegatinas que coincidan con tu búsqueda."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "No hay stickers que coincidan con tu búsqueda"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Sin canal del sistema"
@@ -13034,7 +13047,7 @@ msgstr "Aceptar"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Vale"
@@ -13764,7 +13777,7 @@ msgstr "Fíjalo. Fíjalo bien."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Fijar mensaje"
@@ -14678,7 +14691,7 @@ msgstr "Eliminar banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Eliminar pegatina"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Eliminar tiempo de espera"
@@ -14996,7 +15009,7 @@ msgstr "Reemplazar tu fondo personalizado"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Responder"
@@ -15249,11 +15262,11 @@ msgstr "Volver a suscribirse"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rol: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Roles"
@@ -17529,22 +17542,22 @@ msgstr "Suprimir todas las menciones de roles @"
msgid "Suppress All Role @mentions"
msgstr "Suprimir Todas las Menciones de Roles @"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Suprimir incrustaciones"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Ocultar incrustaciones"
@@ -17822,8 +17835,8 @@ msgstr "El bot se ha añadido."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Es posible que el canal que buscas haya sido eliminado o que no tengas acceso a él."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Es posible que la comunidad que buscas haya sido eliminada o que no tengas acceso a ella."
@@ -17921,11 +17934,11 @@ msgstr "No hay webhooks configurados para este canal. Crea un webhook para permi
msgid "There was an error loading the emojis. Please try again."
msgstr "Ha habido un error al cargar los emojis. Por favor, inténtalo de nuevo."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Ha habido un error al cargar los enlaces de invitación para este canal. Por favor, inténtalo de nuevo."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Ha habido un error al cargar las invitaciones. Por favor, inténtalo de nuevo."
@@ -18010,7 +18023,7 @@ msgstr "Esta categoría ya contiene el máximo de {MAX_CHANNELS_PER_CATEGORY} ca
msgid "This channel does not support webhooks."
msgstr "Este canal no admite webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Este canal aún no tiene enlaces de invitación. Crea uno para invitar a gente a este canal."
@@ -18043,7 +18056,7 @@ msgstr "Este canal puede contener contenido no seguro para el trabajo o que pued
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Este código aún no se ha usado. Por favor, completa el inicio de sesión en tu navegador primero."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Esta comunidad aún no tiene enlaces de invitación. Ve a un canal y crea una invitación para invitar a gente."
@@ -18180,8 +18193,8 @@ msgstr "Así aparecen los mensajes"
msgid "This is not the channel you're looking for."
msgstr "Este no es el canal que buscas."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Esta no es la comunidad que buscas."
@@ -18300,9 +18313,9 @@ msgstr "Este canal de voz ha alcanzado su límite de usuarios. Por favor, intén
msgid "This was a @silent message."
msgstr "Este fue un mensaje @silent."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Esto creará una grieta en el continuo espacio-temporal y no se puede deshacer."
@@ -18371,7 +18384,7 @@ msgstr "Expulsado hasta {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Expulsión temporal"
@@ -18659,8 +18672,7 @@ msgstr "Prueba un nombre diferente o usa los prefijos @ / # / ! / * para filtrar
msgid "Try a different search query"
msgstr "Prueba una consulta de búsqueda diferente"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Prueba un término de búsqueda diferente"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Prueba un término de búsqueda o filtro diferente"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Inténtalo de nuevo"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Desfijarlo"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Formato de archivo no compatible. Por favor, usa JPG, PNG, GIF, WebP o M
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Mostrar incrustaciones"
@@ -20573,8 +20585,8 @@ msgstr "Hemos enviado un enlace por correo para autorizar este inicio de sesión
msgid "We failed to retrieve the full information about this user at this time."
msgstr "No hemos podido recuperar la información completa sobre este usuario en este momento."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "¡La hemos liado! Aguanta, estamos trabajando en ello."
@@ -21084,7 +21096,7 @@ msgstr "No puedes interactuar con reacciones en los resultados de búsqueda porq
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "No puedes unirte mientras estás en tiempo de espera."
@@ -21169,7 +21181,7 @@ msgstr "No puedes reactivar tu audio porque un moderador te ha ensordecido."
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "No puedes desactivar el silencio porque un moderador te ha silenciado."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "No tienes acceso al canal donde se envió este mensaje."
@@ -21177,7 +21189,7 @@ msgstr "No tienes acceso al canal donde se envió este mensaje."
msgid "You do not have permission to send messages in this channel."
msgstr "No tienes permiso para enviar mensajes en este canal."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "No tienes acceso a ningún canal en esta comunidad."
@@ -21468,7 +21480,7 @@ msgstr "Estás en el canal de voz"
msgid "You're sending messages too quickly"
msgstr "Estás enviando mensajes demasiado rápido"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Estás viendo mensajes más antiguos"
diff --git a/fluxer_app/src/locales/fi/messages.po b/fluxer_app/src/locales/fi/messages.po
index 632e7007..18056d56 100644
--- a/fluxer_app/src/locales/fi/messages.po
+++ b/fluxer_app/src/locales/fi/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Ohjaa, milloin viestien esikatselut näkyvät yksityisviestilistassa"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Usein käytetyt"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... laita tiivistynyt tila päälle. Hienoa!"
msgid "(edited)"
msgstr "(muokattu)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(ei latautunut)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> aloitti puhelun."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> on tällä hetkellä vain Fluxerin henkilökunnan saatavilla"
@@ -1647,7 +1653,7 @@ msgstr "Lisää puhelinnumerolomake"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animoidut hymiöt ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Haluatko varmasti poistaa SMS-kaksitekijätodennuksen käytöstä? Tilisi suojaus heikkenee."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Haluatko ottaa kutsut käyttöön? Käyttäjät voivat taas liittyä tähän yhteisöön kutsulinkkien kautta."
@@ -2548,7 +2554,7 @@ msgstr "Haluatko varmasti peruuttaa porttikiellon käyttäjälle <0>{0}0>? He
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Haluatko varmasti peruuttaa tämän kutsun? Tätä ei voi kumota."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Haluatko varmasti piilottaa kaikki linkkikehykset tältä viestiltä? Tämä piilottaa kaikki kehykset viestistä."
@@ -3159,7 +3165,7 @@ msgstr "Kirjanmerkkiraja saavutettu"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Lisää viesti kirjanmerkiksi"
@@ -3432,7 +3438,7 @@ msgstr "Kameran asetukset"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Vaihda oma ryhmän lempinimi"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Vaihda lempinimi"
@@ -3775,7 +3781,7 @@ msgstr "Kanava"
msgid "Channel Access"
msgstr "Kanavan käyttö"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Kanavan käyttö evätty"
@@ -4142,7 +4148,7 @@ msgstr "Vahvista tili luodaksesi beta-koodeja."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Vaatimasi tili liittyäksesi tähän äänikanavaan."
@@ -4649,8 +4655,8 @@ msgstr "Yhteisö edistää tai helpottaa laitonta toimintaa"
msgid "Community Settings"
msgstr "Yhteisön asetukset"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Yhteisö väliaikaisesti poissa käytöstä"
@@ -5179,20 +5185,20 @@ msgstr "Kopioi linkki"
msgid "Copy Media"
msgstr "Kopioi media"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Kopioi viesti"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Kopioi viestin tunnus"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Kopioi viestilinkki"
@@ -5388,8 +5394,8 @@ msgstr "Lomake suosikkikategorian luomiseen"
msgid "Create Group DM"
msgstr "Luo ryhmä-DM"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Luo kutsu"
@@ -5978,11 +5984,11 @@ msgstr "Mobiililaitteessa animaatio toiminnoissa oletuksena, jotta akku kestäis
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Mobiililaitteessa oletuksena pois päältä akun ja datan säästämiseksi."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Poista emoji"
msgid "Delete media"
msgstr "Poista media"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Poista viesti"
@@ -6595,7 +6601,7 @@ msgstr "Laittoman toiminnan keskustelu tai edistäminen"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Muokkaa mediaa"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Muokkaa viestiä"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojit"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Anna syötteen valvonnan lupa"
msgid "Enable Invites"
msgstr "Ota kutsut käyttöön"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Ota kutsut uudelleen käyttöön"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Ota kutsut käyttöön tässä yhteisössä"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Lahjavaihtoehtojen lataus epäonnistui"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Kutsujen lataus epäonnistui"
@@ -8769,7 +8775,7 @@ msgstr "Unohditko salasanasi?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Eteenpäin"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Kutsut tauolla"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Kutsut kohteeseen <0>{0}0> ovat tällä hetkellä poissa käytöstä"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Liity yhteisöön"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Liity yhteisöön, jossa on tarroja, niin pääset alkuun!"
@@ -10588,7 +10594,7 @@ msgstr "Hyppää"
msgid "Jump straight to the app to continue."
msgstr "Siirry suoraan sovellukseen jatkaaksesi."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Hyppää kohteeseen {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Hyppää vanhimpaan lukemattomaan viestiin"
msgid "Jump to page"
msgstr "Siirry sivulle"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Siirry nykyhetkeen"
@@ -10612,15 +10618,15 @@ msgstr "Siirry nykyhetkeen"
msgid "Jump to the channel of the active call"
msgstr "Siirry aktiivisen puhelun kanavalle"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Siirry linkitettyyn kanavaan"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Siirry linkitettyyn viestiin"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Siirry viestiin kohdassa {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Ladataan lisää..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Paikalla pidettävää sisältöä ladataan"
@@ -11256,7 +11262,7 @@ msgstr "Hallitse ilmaisupaketteja"
msgid "Manage feature flags"
msgstr "Hallitse ominaisuuslippuja"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Hallitse ryhmän ominaisuuksia"
@@ -11353,7 +11359,7 @@ msgstr "Merkitse spoilereiksi"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Merkitse lukemattomaksi"
@@ -11822,7 +11828,7 @@ msgstr "Viestit ja media"
msgid "Messages Deleted"
msgstr "Viestit poistettu"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Viestien lataus epäonnistui"
@@ -12471,7 +12477,7 @@ msgstr "Lempinimen on oltava enintään 32 merkkiä"
msgid "Nickname updated"
msgstr "Lempinimi päivitetty"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Ei saatavilla olevia kanavia"
@@ -12575,6 +12581,10 @@ msgstr "Sähköpostiosoitetta ei ole asetettu"
msgid "No emojis found matching your search."
msgstr "Hakuehtoasi vastaavia emojeja ei löytynyt."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Ei emojeita, jotka vastaavat hakuaasi"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Asennettuja paketteja ei ole vielä."
msgid "No invite background"
msgstr "Ei kutsun taustaa"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Ei kutsulinkkejä"
@@ -12768,8 +12778,8 @@ msgstr "Asetuksia ei löytynyt"
msgid "No specific scopes requested."
msgstr "Ei pyydetty erityisiä laajuuksia."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Tarjolla ei ole tarroja"
@@ -12777,8 +12787,7 @@ msgstr "Tarjolla ei ole tarroja"
msgid "No stickers found"
msgstr "Tarroja ei löytynyt"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Tarroja ei löytynyt"
@@ -12786,6 +12795,10 @@ msgstr "Tarroja ei löytynyt"
msgid "No stickers found matching your search."
msgstr "Hakuehtojasi vastaavia tarroja ei löytynyt."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Ei tarroja, jotka vastaavat hakuaasi"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Ei järjestelmäkanavaa"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Selvä"
@@ -13764,7 +13777,7 @@ msgstr "Kiinnitä se. Kiinnitä se hyvin."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Kiinnitä viesti"
@@ -14678,7 +14691,7 @@ msgstr "Poista banneri"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Poista tarra"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Poista aikakatkaisu"
@@ -14996,7 +15009,7 @@ msgstr "Vaihda mukautettu taustasi"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Vastaa"
@@ -15249,11 +15262,11 @@ msgstr "Tilaa uudelleen"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rooli: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Roolit"
@@ -17529,22 +17542,22 @@ msgstr "Piilota kaikki rooliviittaukset"
msgid "Suppress All Role @mentions"
msgstr "Piilota kaikki rooliviittaukset"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Piilota upotukset"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Poista upotukset käytöstä"
@@ -17822,8 +17835,8 @@ msgstr "Botti on lisätty."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Etsimääsi kanavaa saatettiin poistaa tai sinulla ei ole siihen oikeutta."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Etsimääsi yhteisöä saatettiin poistaa tai sinulla ei ole siihen oikeutta."
@@ -17921,11 +17934,11 @@ msgstr "Tälle kanavalle ei ole määritetty webhookeja. Luo webhook, jotta ulko
msgid "There was an error loading the emojis. Please try again."
msgstr "Emojien latauksessa tapahtui virhe. Yritä uudelleen."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Kutsulinkkien latauksessa tälle kanavalle tapahtui virhe. Yritä uudelleen."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Kutsujen latauksessa tapahtui virhe. Yritä uudelleen."
@@ -18010,7 +18023,7 @@ msgstr "Tässä kategoriassa on jo enimmäismäärä kanavia ({MAX_CHANNELS_PER_
msgid "This channel does not support webhooks."
msgstr "Tämä kanava ei tue webhookeja."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Tällä kanavalla ei ole vielä kutsulinkkejä. Luo linkki kutsuaksesi ihmisiä tähän kanavaan."
@@ -18043,7 +18056,7 @@ msgstr "Tällä kanavalla voi olla sisältöä, joka ei sovi työpaikalle tai jo
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Tätä koodia ei ole vielä käytetty. Suorita ensin kirjautuminen selaimessasi."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Tällä yhteisöllä ei ole vielä kutsulinkkejä. Mene kanavaan ja luo kutsu kutsuaksesi ihmisiä."
@@ -18180,8 +18193,8 @@ msgstr "Tältä viestit näyttävät"
msgid "This is not the channel you're looking for."
msgstr "Tämä ei ole etsimäsi kanava."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Tämä ei ole etsimäsi yhteisö."
@@ -18300,9 +18313,9 @@ msgstr "Tämä äänikanava on saavuttanut käyttäjärajan. Yritä myöhemmin u
msgid "This was a @silent message."
msgstr "Tämä oli @silent-viesti."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Tämä aiheuttaa repeämän aika-avaruuden jatkuvuuteen eikä sitä voi peruuttaa."
@@ -18371,7 +18384,7 @@ msgstr "Estetty asti {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Aikakatkaisu"
@@ -18659,8 +18672,7 @@ msgstr "Kokeile eri nimeä tai käytä @ / # / ! / * -etuliitteitä suodatukseen
msgid "Try a different search query"
msgstr "Kokeile eri hakukyselyä"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Kokeile eri hakusanaa"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Kokeile eri hakusanaa tai suodatinta"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Yritä uudelleen"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Poista kiinnitys"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Tiedostomuotoa ei tueta. Käytä JPG-, PNG-, GIF-, WebP- tai MP4-tiedost
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Poista upotusten vaimentaminen"
@@ -20573,8 +20585,8 @@ msgstr "Lähetimme sähköpostin, jossa on linkki tämän kirjautumisen vahvista
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Emme voineet hakea käyttäjän tietoja kokonaisuudessaan tällä hetkellä."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Me sörsimme! Odota hetki, korjaamme sen."
@@ -21084,7 +21096,7 @@ msgstr "Et voi vuorovaikuttaa reaktioiden kanssa hakutuloksissa, sillä se saatt
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Et voi liittyä, kun olet aikakatkaisussa."
@@ -21169,7 +21181,7 @@ msgstr "Et voi poistaa mykistystäsi, koska moderaattori on mykistänyt sinut."
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Et voi poistaa hiljentämistäsi, koska moderaattori on hiljentänyt sinut."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Sinulla ei ole pääsyä kanavaan, johon tämä viesti lähetettiin."
@@ -21177,7 +21189,7 @@ msgstr "Sinulla ei ole pääsyä kanavaan, johon tämä viesti lähetettiin."
msgid "You do not have permission to send messages in this channel."
msgstr "Sinulla ei ole oikeutta lähettää viestejä tässä kanavassa."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Sinulla ei ole pääsyä mihinkään kanavaan tässä yhteisössä."
@@ -21468,7 +21480,7 @@ msgstr "Olet äänikanavalla"
msgid "You're sending messages too quickly"
msgstr "Lähetät viestejä liian nopeasti"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Katselet vanhempia viestejä"
diff --git a/fluxer_app/src/locales/fr/messages.po b/fluxer_app/src/locales/fr/messages.po
index c19c059f..e59041b2 100644
--- a/fluxer_app/src/locales/fr/messages.po
+++ b/fluxer_app/src/locales/fr/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Contrôler quand les aperçus de message s'affichent dans la liste de messages directs"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Souvent utilisé"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext :"
@@ -56,7 +62,7 @@ msgstr "... active le mode compact. Bien joué !"
msgid "(edited)"
msgstr "(modifié)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(erreur de chargement)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> a démarré un appel."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> est actuellement accessible uniquement aux membres du personnel Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Formulaire d’ajout de numéro de téléphone"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Émojis animés ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Es-tu sûr de vouloir désactiver l'authentification à deux facteurs par SMS ? Cela rendra ton compte moins sécurisé."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Es-tu sûr de vouloir activer les invitations ? Cela permettra aux utilisateurs de rejoindre cette communauté via des liens d'invitation à nouveau."
@@ -2548,7 +2554,7 @@ msgstr "Es-tu sûr de vouloir lever l'interdiction de <0>{0}0> ? Il pourra rev
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Es-tu sûr de vouloir révoquer cette invitation ? Cette action est irréversible."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Es-tu sûr de vouloir supprimer tous les aperçus de lien de ce message ? Cette action masquera tous les aperçus."
@@ -3159,7 +3165,7 @@ msgstr "Limite de marque-pages atteinte"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Marquer le message"
@@ -3432,7 +3438,7 @@ msgstr "Paramètres caméra"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Changer mon surnom de groupe"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Changer de surnom"
@@ -3775,7 +3781,7 @@ msgstr "Salon"
msgid "Channel Access"
msgstr "Accès au salon"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Accès au salon refusé"
@@ -4142,7 +4148,7 @@ msgstr "Revendiquer votre compte pour générer des codes bêta."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Réclame ton compte pour rejoindre ce salon vocal."
@@ -4649,8 +4655,8 @@ msgstr "La communauté promeut ou facilite des activités illégales"
msgid "Community Settings"
msgstr "Paramètres de la communauté"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Communauté temporairement indisponible"
@@ -5179,20 +5185,20 @@ msgstr "Copier le lien"
msgid "Copy Media"
msgstr "Copier le média"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Copier le message"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Copier l'ID du message"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Copier le lien du message"
@@ -5388,8 +5394,8 @@ msgstr "Formulaire de catégorie favorite"
msgid "Create Group DM"
msgstr "Créer un MP de groupe"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Créer une invitation"
@@ -5978,11 +5984,11 @@ msgstr "L'animation est activée sur mobile lors des interactions pour préserve
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Désactivé par défaut sur mobile pour préserver la batterie et les données."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Supprimer l'emoji"
msgid "Delete media"
msgstr "Supprimer le média"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Supprimer le message"
@@ -6595,7 +6601,7 @@ msgstr "Discussion ou promotion d'activités illégales"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Modifier les médias"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Modifier le message"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojis"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Autoriser la surveillance des entrées"
msgid "Enable Invites"
msgstr "Activer les invitations"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Réactiver les invitations"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Activer les invitations pour cette communauté"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Impossible de charger l'inventaire de cadeaux"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Impossible de charger les invitations"
@@ -8769,7 +8775,7 @@ msgstr "Tu as oublié ton mot de passe ?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Avancer"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Invitations en pause"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Les invitations vers <0>{0}0> sont actuellement désactivées"
@@ -10457,8 +10463,8 @@ msgstr "Saccades"
msgid "Join a Community"
msgstr "Rejoindre une communauté"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Rejoins une communauté avec des stickers pour commencer !"
@@ -10588,7 +10594,7 @@ msgstr "Aller"
msgid "Jump straight to the app to continue."
msgstr "Retourne directement dans l’appli pour continuer."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Aller à {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Aller au plus ancien message non lu"
msgid "Jump to page"
msgstr "Aller à la page"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Aller au présent"
@@ -10612,15 +10618,15 @@ msgstr "Aller au présent"
msgid "Jump to the channel of the active call"
msgstr "Aller au salon de l’appel actif"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Aller au salon lié"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Aller au message lié"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Aller au message dans {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Chargement de plus…"
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Espace réservé de chargement"
@@ -11256,7 +11262,7 @@ msgstr "Gérer les packs d'expressions"
msgid "Manage feature flags"
msgstr "Gérer les indicateurs de fonctionnalités"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Gérer les fonctionnalités de la guilde"
@@ -11353,7 +11359,7 @@ msgstr "Marquer comme spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Marquer comme non lu"
@@ -11822,7 +11828,7 @@ msgstr "Messages et médias"
msgid "Messages Deleted"
msgstr "Messages supprimés"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Échec du chargement des messages"
@@ -12471,7 +12477,7 @@ msgstr "Le surnom ne doit pas dépasser 32 caractères"
msgid "Nickname updated"
msgstr "Surnom mis à jour"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Aucun salon accessible"
@@ -12575,6 +12581,10 @@ msgstr "Aucune adresse e-mail renseignée"
msgid "No emojis found matching your search."
msgstr "Aucun émoji ne correspond à ta recherche."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Aucun emoji ne correspond à votre recherche"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Aucun pack installé pour l’instant."
msgid "No invite background"
msgstr "Pas d’arrière-plan d’invitation"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Aucun lien d’invitation"
@@ -12768,8 +12778,8 @@ msgstr "Aucun paramètre trouvé"
msgid "No specific scopes requested."
msgstr "Aucune portée spécifique demandée."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Aucun autocollant disponible"
@@ -12777,8 +12787,7 @@ msgstr "Aucun autocollant disponible"
msgid "No stickers found"
msgstr "Aucun autocollant trouvé"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Aucun autocollant trouvé"
@@ -12786,6 +12795,10 @@ msgstr "Aucun autocollant trouvé"
msgid "No stickers found matching your search."
msgstr "Aucun autocollant ne correspond à ta recherche."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Aucun autocollant ne correspond à votre recherche"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Aucun canal système"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "D'accord"
@@ -13764,7 +13777,7 @@ msgstr "Épingle-le. Bien épinglé."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Épingler le message"
@@ -14678,7 +14691,7 @@ msgstr "Supprimer la bannière"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Supprimer l’autocollant"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Supprimer le timeout"
@@ -14996,7 +15009,7 @@ msgstr "Remplacer ton arrière-plan personnalisé"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Répondre"
@@ -15249,11 +15262,11 @@ msgstr "Se réabonner"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rôle : {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Rôles"
@@ -17529,22 +17542,22 @@ msgstr "Masquer toutes les mentions de rôle"
msgid "Suppress All Role @mentions"
msgstr "Masquer toutes les mentions de rôle"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Masquer les intégrations"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Masquer les intégrations"
@@ -17822,8 +17835,8 @@ msgstr "Le bot a été ajouté."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Le salon recherché a peut-être été supprimé ou tu n'y as pas accès."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "La communauté recherchée a peut-être été supprimée ou tu n'y as pas accès."
@@ -17921,11 +17934,11 @@ msgstr "Aucun webhook configuré pour ce salon. Crée-en un pour permettre à de
msgid "There was an error loading the emojis. Please try again."
msgstr "Une erreur est survenue lors du chargement des emojis. Réessaie."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Une erreur est survenue lors du chargement des liens d'invitation pour ce salon. Réessaie."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Une erreur est survenue lors du chargement des invitations. Réessaie."
@@ -18010,7 +18023,7 @@ msgstr "Cette catégorie contient déjà le nombre maximal de {MAX_CHANNELS_PER_
msgid "This channel does not support webhooks."
msgstr "Ce salon ne prend pas en charge les webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Ce salon n'a encore aucun lien d'invitation. Crée-en un pour y inviter des personnes."
@@ -18043,7 +18056,7 @@ msgstr "Ce salon peut contenir du contenu inadapté au travail ou inapproprié p
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Ce code n'a pas encore été utilisé. Termine d'abord la connexion dans ton navigateur."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Cette communauté n'a encore aucun lien d'invitation. Va dans un salon et crée une invitation pour inviter des personnes."
@@ -18180,8 +18193,8 @@ msgstr "Voici à quoi ressemblent les messages"
msgid "This is not the channel you're looking for."
msgstr "Ce n'est pas le salon que tu cherches."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Ce n'est pas la communauté que tu cherches."
@@ -18300,9 +18313,9 @@ msgstr "Ce salon vocal a atteint sa limite d'utilisateurs. Réessaie plus tard o
msgid "This was a @silent message."
msgstr "C'était un message @silent."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Cela créera une faille dans le continuum espace-temps et ne peut être annulé."
@@ -18371,7 +18384,7 @@ msgstr "Bloqué jusqu'à {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Expiration"
@@ -18659,8 +18672,7 @@ msgstr "Essaie un autre nom ou utilise les préfixes @ / # / ! / * pour filtrer
msgid "Try a different search query"
msgstr "Essaie une autre requête de recherche"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Essaie un autre terme de recherche"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Essaie un autre terme ou filtre de recherche"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Réessaie"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Détacher"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Format de fichier non pris en charge. Utilise JPG, PNG, GIF, WebP ou MP4
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Réafficher les intégrations"
@@ -20573,8 +20585,8 @@ msgstr "Nous avons envoyé un lien par email pour autoriser cette connexion. Ouv
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Nous n’avons pas pu récupérer toutes les informations de cet utilisateur pour le moment."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "On a merdé ! Reste dans les parages, on gère ça."
@@ -21084,7 +21096,7 @@ msgstr "Tu ne peux pas interagir avec les réactions dans les résultats de rech
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Tu ne peux pas rejoindre pendant ton timeout."
@@ -21169,7 +21181,7 @@ msgstr "Tu ne peux pas réactiver ton son car un modérateur t’a rendu sourd."
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Tu ne peux pas réactiver ton micro car un modérateur t’a rendu muet."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Tu n’as pas accès au canal où ce message a été envoyé."
@@ -21177,7 +21189,7 @@ msgstr "Tu n’as pas accès au canal où ce message a été envoyé."
msgid "You do not have permission to send messages in this channel."
msgstr "Tu n’as pas la permission d’envoyer des messages dans ce canal."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Tu n’as accès à aucun canal dans cette communauté."
@@ -21468,7 +21480,7 @@ msgstr "Tu es dans le salon vocal"
msgid "You're sending messages too quickly"
msgstr "Tu envoies des messages trop rapidement"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Tu consultes d'anciens messages"
diff --git a/fluxer_app/src/locales/he/messages.po b/fluxer_app/src/locales/he/messages.po
index b1b2ccfe..b82441fc 100644
--- a/fluxer_app/src/locales/he/messages.po
+++ b/fluxer_app/src/locales/he/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "שלוט מתי תצוגות מקדימות של הודעות מוצגות ברשימת הודעות ישירות"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "נמצא בשימוש תכוף"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-סיומת:"
@@ -56,7 +62,7 @@ msgstr "... הפעלת מצב צפוף. נחמד!"
msgid "(edited)"
msgstr "(נערך)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(הטעינה נכשלה)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> התחיל שיחה."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> כרגע נגיש רק לעובדי Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "טופס הוספת מספר טלפון"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "אמוג'י מונפש ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "האם אתה בטוח שברצונך להשבית אימות דו-שלבי ב-SMS? זה יפחית את רמת האבטחה של החשבון."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "האם אתה בטוח שברצונך להפעיל הזמנות? זה יאפשר למשתמשים להצטרף לקהילה הזו דרך קישורי הזמנה שוב."
@@ -2548,7 +2554,7 @@ msgstr "האם אתה בטוח שברצונך לבטל את החסימה של <0
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "האם אתה בטוח שברצונך לבטל הזמנה זו? לא ניתן לבטל פעולה זו."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "האם אתה בטוח שברצונך להסתיר את כל ההטמעות של הקישורים בהודעה זו? פעולה זו תסתיר את כל ההטמעות בהודעה."
@@ -3159,7 +3165,7 @@ msgstr "הגעת למגבלת הסימניות"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "שמור הודעה"
@@ -3432,7 +3438,7 @@ msgstr "הגדרות מצלמה"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "שנה את כינוי הקבוצה שלי"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "שנה כינוי"
@@ -3775,7 +3781,7 @@ msgstr "ערוץ"
msgid "Channel Access"
msgstr "גישה לערוץ"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "הגישה לערוץ נדחתה"
@@ -4142,7 +4148,7 @@ msgstr "דרוש חשבון שלך כדי ליצור קודי בטא."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "דרוש את החשבון שלך כדי להצטרף לערוץ הקול הזה."
@@ -4649,8 +4655,8 @@ msgstr "הקהילה מקדמת או מקלה על פעילויות לא חוק
msgid "Community Settings"
msgstr "הגדרות קהילה"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "הקהילה בלתי זמינה זמנית"
@@ -5179,20 +5185,20 @@ msgstr "העתק קישור"
msgid "Copy Media"
msgstr "העתק מדיה"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "העתק הודעה"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "העתק מזהה הודעה"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "העתק קישור להודעה"
@@ -5388,8 +5394,8 @@ msgstr "טופס יצירת קטגוריית מועדפים"
msgid "Create Group DM"
msgstr "צור צ'אט קבוצתי פרטי"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "צור הזמנה"
@@ -5978,11 +5984,11 @@ msgstr "ברירת המחדל היא להנפיש באינטראקציה בני
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "ברירת המחדל היא כבוי במובייל לשמירת חיי סוללה ונתונים."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "מחק אימוג'י"
msgid "Delete media"
msgstr "מחק מדיה"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "מחק הודעה"
@@ -6595,7 +6601,7 @@ msgstr "דיון או קידום פעילויות בלתי חוקיות"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "ערוך מדיה"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "ערוך הודעה"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "אימוג'ים"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "הפעל את ההרשאה לניטור קלט"
msgid "Enable Invites"
msgstr "הפעל הזמנות"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "הפעל הזמנות שוב"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "הפעל הזמנות לקהילה זו"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "טעינת מלאי המתנות נכשלה"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "טעינת ההזמנות נכשלה"
@@ -8769,7 +8775,7 @@ msgstr "שכחת את הסיסמה שלך?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "העבר קדימה"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "ההזמנות מושהות"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "ההזמנות ל-<0>{0}0> מנוטרלות כעת"
@@ -10457,8 +10463,8 @@ msgstr "ג׳יטר"
msgid "Join a Community"
msgstr "הצטרף לקהילה"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "הצטרף לקהילה עם סטיקרים כדי להתחיל!"
@@ -10588,7 +10594,7 @@ msgstr "קפוץ"
msgid "Jump straight to the app to continue."
msgstr "קפוץ ישירות לאפליקציה כדי להמשיך."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "קפוץ ל-{labelText}"
@@ -10604,7 +10610,7 @@ msgstr "קפוץ להודעה הלא נקראת הישנה ביותר"
msgid "Jump to page"
msgstr "קפוץ לדף"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "קפוץ להווה"
@@ -10612,15 +10618,15 @@ msgstr "קפוץ להווה"
msgid "Jump to the channel of the active call"
msgstr "קפוץ לערוץ של השיחה הפעילה"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "קפוץ לערוץ המקושר"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "קפוץ להודעה המקושרת"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "קפוץ להודעה ב-{labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "טוען עוד..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "טוען תחליף"
@@ -11256,7 +11262,7 @@ msgstr "ניהול חבילות הבעה"
msgid "Manage feature flags"
msgstr "ניהול דגלי תכונות"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "ניהול תכונות גילדה"
@@ -11353,7 +11359,7 @@ msgstr "סמן כספוילר"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "סמן כלא נקרא"
@@ -11822,7 +11828,7 @@ msgstr "הודעות ומדיה"
msgid "Messages Deleted"
msgstr "הודעות נמחקו"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "הודעות לא נטענו"
@@ -12471,7 +12477,7 @@ msgstr "הכינוי לא יעלה על 32 תווים"
msgid "Nickname updated"
msgstr "הכינוי עודכן"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "אין ערוצים נגישים"
@@ -12575,6 +12581,10 @@ msgstr "לא נקבעה כתובת דואר אלקטרוני"
msgid "No emojis found matching your search."
msgstr "לא נמצאו אימוג'ים התואמים את החיפוש שלך."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "אין אימוג'יז התואמים את החיפוש שלך"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "עדיין לא הותקנו חבילות."
msgid "No invite background"
msgstr "אין רקע הזמנה"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "אין קישורי הזמנה"
@@ -12768,8 +12778,8 @@ msgstr "לא נמצאו הגדרות"
msgid "No specific scopes requested."
msgstr "לא הוגדרו תחומי אחריות ספציפיים."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "אין מדבקות זמינות"
@@ -12777,8 +12787,7 @@ msgstr "אין מדבקות זמינות"
msgid "No stickers found"
msgstr "לא נמצאו מדבקות"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "לא נמצאו מדבקות"
@@ -12786,6 +12795,10 @@ msgstr "לא נמצאו מדבקות"
msgid "No stickers found matching your search."
msgstr "לא נמצאו מדבקות התואמות לחיפוש שלך."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "אין מדבקות התואמות את החיפוש שלך"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "אין ערוץ מערכת"
@@ -13034,7 +13047,7 @@ msgstr "אישור"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "בסדר"
@@ -13764,7 +13777,7 @@ msgstr "הצמד. הצמד כמו שצריך."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "הצמד הודעה"
@@ -14678,7 +14691,7 @@ msgstr "הסר באנר"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "הסר מדבקה"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "הסר השהייה"
@@ -14996,7 +15009,7 @@ msgstr "החלף את הרקע המותאם שלך"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "השב"
@@ -15249,11 +15262,11 @@ msgstr "הירשם מחדש"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "תפקיד: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "תפקידים"
@@ -17529,22 +17542,22 @@ msgstr "השתק את כל ההזכרות @תפקיד"
msgid "Suppress All Role @mentions"
msgstr "השתק את כל ההזכרות @תפקיד"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "השתק תצוגות מקדימות"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "השתק תצוגות מקדימות"
@@ -17822,8 +17835,8 @@ msgstr "הבוט נוסף."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "הערוץ שחיפשת ייתכן שנמחק או שאין לך גישה אליו."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "הקהילה שחיפשת ייתכן שנמחקה או שאין לך גישה אליה."
@@ -17921,11 +17934,11 @@ msgstr "אין תצורות Webhook עבור ערוץ זה. צור Webhook כד
msgid "There was an error loading the emojis. Please try again."
msgstr "אירעה שגיאה בטעינת האימוג'ים. יש לנסות שוב."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "אירעה שגיאה בטעינת קישורי ההזמנה לערוץ זה. יש לנסות שוב."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "אירעה שגיאה בטעינת ההזמנות. יש לנסות שוב."
@@ -18010,7 +18023,7 @@ msgstr "לקטגוריה זו כבר יש את המספר המקסימלי של
msgid "This channel does not support webhooks."
msgstr "ערוץ זה לא תומך ב-Webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "לערוץ זה עדיין אין קישורי הזמנה. צור אחד כדי להזמין אנשים לערוץ."
@@ -18043,7 +18056,7 @@ msgstr "ערוץ זה עשוי להכיל תוכן לא בטוח לעבודה א
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "הקוד הזה עדיין לא שומש. יש להשלים את ההתחברות בדפדפן קודם."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "לקהילה זו עדיין אין קישורי הזמנה. עבור לערוץ וצור הזמנה כדי להזמין אנשים."
@@ -18180,8 +18193,8 @@ msgstr "כך נראות ההודעות"
msgid "This is not the channel you're looking for."
msgstr "זה לא הערוץ שחיפשת."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "זו לא הקהילה שחיפשת."
@@ -18300,9 +18313,9 @@ msgstr "ערוץ הקול הזה הגיע למספר המשתמשים המקסי
msgid "This was a @silent message."
msgstr "זו הייתה הודעת @silent."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "זה ייצור קרע במרחב-זמן ולא ניתן לחזור בו."
@@ -18371,7 +18384,7 @@ msgstr "מושהה עד {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "השעיה"
@@ -18659,8 +18672,7 @@ msgstr "נסה שם אחר או השתמש בקידומות @ / # / ! / * כדי
msgid "Try a different search query"
msgstr "נסה שאילתת חיפוש אחרת"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "נסה מונח חיפוש אחר"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "נסה מונח או פילטר חיפוש אחר"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "נסה שוב"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "בטל נעיצה"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "פורמט קובץ לא נתמך. יש להשתמש ב-JPG, PNG, GIF, W
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "הסר דיכוי הטמעות"
@@ -20573,8 +20585,8 @@ msgstr "שלחנו קישור בדוא\"ל כדי לאשר את ההתחברות
msgid "We failed to retrieve the full information about this user at this time."
msgstr "נכשלנו בשליפת כל המידע על משתמש זה כרגע."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "עשינו פדלוף! מחזיקים איתך, אנחנו עובדים על זה."
@@ -21084,7 +21096,7 @@ msgstr "אין באפשרותך לקיים אינטראקציה עם תגובו
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "אתה לא יכול להצטרף בזמן שאתה בהשהיה."
@@ -21169,7 +21181,7 @@ msgstr "אין באפשרותך להסיר את ההשתקה משום שמנהל
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "אין באפשרותך להסיר את ההשתקה משום שמנהל השתיק אותך."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "אין לך גישה לערוץ שבו נשלחה ההודעה הזו."
@@ -21177,7 +21189,7 @@ msgstr "אין לך גישה לערוץ שבו נשלחה ההודעה הזו."
msgid "You do not have permission to send messages in this channel."
msgstr "אין לך הרשאה לשלוח הודעות בערוץ הזה."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "אין לך גישה לאף ערוץ בקהילה הזו."
@@ -21468,7 +21480,7 @@ msgstr "אתה בערוץ הקול"
msgid "You're sending messages too quickly"
msgstr "אתה שולח הודעות מהר מדי"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "אתה צופה בהודעות ישנות יותר"
diff --git a/fluxer_app/src/locales/hi/messages.po b/fluxer_app/src/locales/hi/messages.po
index 8322a950..a8289d4a 100644
--- a/fluxer_app/src/locales/hi/messages.po
+++ b/fluxer_app/src/locales/hi/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "DM सूची में संदेश पूर्वावलोकन कब दिखें, नियंत्रित करें"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "अक्सर उपयोग किए गए"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... घना मोड चालू करें। बढ़िया!
msgid "(edited)"
msgstr "(संपादित)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(लोड करने में विफल)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> ने एक कॉल शुरू की।"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> अभी केवल Fluxer स्टाफ सदस्यों के लिए उपलब्ध है।"
@@ -1647,7 +1653,7 @@ msgstr "फ़ोन नंबर फ़ॉर्म जोड़ें"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "एनिमेटेड इमोजी ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "क्या तुम वाकई SMS दो-कारक प्रमाणीकरण बंद करना चाहते हो? इससे तुम्हारा खाता कम सुरक्षित होगा।"
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "क्या तुम वाकई आमंत्रण सक्षम करना चाहते हो? इससे उपयोगकर्ता फिर से आमंत्रण लिंक के जरिए इस समुदाय में जुड़ पाएंगे।"
@@ -2548,7 +2554,7 @@ msgstr "क्या तुम वाकई <0>{0}0> पर लगे प्
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "क्या तुम वाकई इस आमंत्रण को रद्द करना चाहते हो? इसे वापस नहीं किया जा सकता।"
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "क्या तुम वाकई इस संदेश पर सभी लिंक एम्बेड को छुपाना चाहते हो? यह कार्रवाई इस संदेश से सभी एम्बेड छुपा देगी।"
@@ -3159,7 +3165,7 @@ msgstr "बुकमार्क सीमा पूरी हो गई"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "संदेश बुकमार्क करें"
@@ -3432,7 +3438,7 @@ msgstr "कैमरा सेटिंग्स"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "मेरा समूह उपनाम बदलें"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "उपनाम बदलें"
@@ -3775,7 +3781,7 @@ msgstr "चैनल"
msgid "Channel Access"
msgstr "चैनल पहुंच"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "चैनल पहुंच से इनकार"
@@ -4142,7 +4148,7 @@ msgstr "बीटा कोड बनाने के लिए अपना ख
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "इस वॉइस चैनल में शामिल होने के लिए अपने खाते का दावा करें।"
@@ -4649,8 +4655,8 @@ msgstr "समुदाय अवैध गतिविधियों को
msgid "Community Settings"
msgstr "समुदाय सेटिंग्स"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "समुदाय अस्थायी रूप से अनुपलब्ध है"
@@ -5179,20 +5185,20 @@ msgstr "लिंक कॉपी करें"
msgid "Copy Media"
msgstr "मीडिया कॉपी करें"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "संदेश कॉपी करें"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "संदेश आईडी कॉपी करें"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "संदेश लिंक कॉपी करें"
@@ -5388,8 +5394,8 @@ msgstr "पसंदीदा श्रेणी फ़ॉर्म बनाए
msgid "Create Group DM"
msgstr "ग्रुप डीएम बनाएँ"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "आमंत्रण बनाएँ"
@@ -5978,11 +5984,11 @@ msgstr "मोबाइल पर बैटरी लाइफ बचाने
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "बैटरी लाइफ और डेटा उपयोग बचाने के लिए मोबाइल पर डिफ़ॉल्ट रूप से बंद रहता है।"
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "इमोजी हटाएँ"
msgid "Delete media"
msgstr "मीडिया हटाएँ"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "संदेश हटाएँ"
@@ -6595,7 +6601,7 @@ msgstr "अवैध गतिविधियों की चर्चा य
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "मीडिया संपादित करें"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "संदेश संपादित करें"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "इमोजी"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "इनपुट मॉनिटरिंग अनुमति सक्
msgid "Enable Invites"
msgstr "निमंत्रण सक्षम करें"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "फिर से निमंत्रण सक्षम करें"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "इस समुदाय के लिए निमंत्रण सक्षम करें"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "गिफ्ट इन्वेंटरी लोड करने में विफल"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "निमंत्रण लोड करने में विफल"
@@ -8769,7 +8775,7 @@ msgstr "अपना पासवर्ड भूल गए?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "फॉरवर्ड"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "निमंत्रण रोके गए हैं"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "<0>{0}0> के लिए निमंत्रण फिलहाल अक्षम हैं"
@@ -10457,8 +10463,8 @@ msgstr "जिटर"
msgid "Join a Community"
msgstr "एक कम्युनिटी में शामिल हों"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "शुरू करने के लिए स्टिकर वाली कम्युनिटी में शामिल हों!"
@@ -10588,7 +10594,7 @@ msgstr "कूदें"
msgid "Jump straight to the app to continue."
msgstr "जारी रखने के लिए सीधे ऐप पर जाएँ।"
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "{labelText} पर जाएँ"
@@ -10604,7 +10610,7 @@ msgstr "सबसे पुराने अपठित संदेश पर
msgid "Jump to page"
msgstr "पेज पर जाएँ"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "वर्तमान पर जाएँ"
@@ -10612,15 +10618,15 @@ msgstr "वर्तमान पर जाएँ"
msgid "Jump to the channel of the active call"
msgstr "सक्रिय कॉल के चैनल पर जाएँ"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "लिंक किए गए चैनल पर जाएँ"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "लिंक किए गए संदेश पर जाएँ"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "{labelText} में संदेश पर जाएँ"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "और लोड हो रहा है..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "प्लेसहोल्डर लोड हो रहा है"
@@ -11256,7 +11262,7 @@ msgstr "एक्सप्रेशन पैक प्रबंधित कर
msgid "Manage feature flags"
msgstr "फीचर फ्लैग प्रबंधित करें"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "गिल्ड फीचर्स प्रबंधित करें"
@@ -11353,7 +11359,7 @@ msgstr "स्पॉइलर के रूप में चिह्नित
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "अनपढ़ा चिह्नित करें"
@@ -11822,7 +11828,7 @@ msgstr "संदेश और मीडिया"
msgid "Messages Deleted"
msgstr "संदेश हटाए गए"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "संदेश लोड नहीं हो सके"
@@ -12471,7 +12477,7 @@ msgstr "उपनाम 32 अक्षरों से अधिक नही
msgid "Nickname updated"
msgstr "उपनाम अपडेट किया गया"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "कोई सुलभ चैनल नहीं"
@@ -12575,6 +12581,10 @@ msgstr "कोई ईमेल पता सेट नहीं है"
msgid "No emojis found matching your search."
msgstr "आपकी खोज से मेल खाते कोई इमोजी नहीं मिले।"
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "कोई इमोजी आपके खोज से मेल नहीं खाता"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "अभी तक कोई इंस्टॉल किया गया
msgid "No invite background"
msgstr "कोई निमंत्रण पृष्ठभूमि नहीं"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "कोई निमंत्रण लिंक नहीं"
@@ -12768,8 +12778,8 @@ msgstr "कोई सेटिंग नहीं मिली"
msgid "No specific scopes requested."
msgstr "कोई विशेष स्कोप अनुरोध नहीं किया गया।"
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "कोई स्टिकर उपलब्ध नहीं"
@@ -12777,8 +12787,7 @@ msgstr "कोई स्टिकर उपलब्ध नहीं"
msgid "No stickers found"
msgstr "कोई स्टिकर नहीं मिला"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "कोई स्टिकर नहीं मिला"
@@ -12786,6 +12795,10 @@ msgstr "कोई स्टिकर नहीं मिला"
msgid "No stickers found matching your search."
msgstr "आपकी खोज से मेल खाता कोई स्टिकर नहीं मिला।"
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "कोई स्टिकर आपके खोज से मेल नहीं खाता"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "कोई सिस्टम चैनल नहीं"
@@ -13034,7 +13047,7 @@ msgstr "ठीक"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "ठीक है"
@@ -13764,7 +13777,7 @@ msgstr "इसे पिन करो। इसे अच्छे से पि
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "संदेश पिन करें"
@@ -14678,7 +14691,7 @@ msgstr "बैनर हटाएँ"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "स्टिकर हटाएँ"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "टाइमआउट हटाएँ"
@@ -14996,7 +15009,7 @@ msgstr "अपनी कस्टम पृष्ठभूमि बदलें
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "जवाब दें"
@@ -15249,11 +15262,11 @@ msgstr "फिर से सदस्यता लें"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "भूमिका: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "भूमिकाएं"
@@ -17529,22 +17542,22 @@ msgstr "सभी रोल @mentions को दबाएँ"
msgid "Suppress All Role @mentions"
msgstr "सभी रोल @mentions को दबाएँ"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "एम्बेड दबाएँ"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "एम्बेड दबाएँ"
@@ -17822,8 +17835,8 @@ msgstr "बॉट जोड़ दिया गया है।"
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "जिस चैनल की आप तलाश कर रहे हैं वह हटाया जा चुका हो सकता है या आपको उसमें पहुंच नहीं है।"
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "जिस कम्युनिटी की आप तलाश कर रहे हैं वह हटाई जा चुकी है या आपको वहां पहुंच नहीं है।"
@@ -17921,11 +17934,11 @@ msgstr "इस चैनल के लिए कोई वेबहुक कॉ
msgid "There was an error loading the emojis. Please try again."
msgstr "इमोजी लोड करते समय त्रुटि हुई। कृपया फिर से प्रयास करें।"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "इस चैनल के इनवाइट लिंक लोड करते समय त्रुटि हुई। कृपया पुनः प्रयास करें।"
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "इनवाइट लोड करते समय त्रुटि हुई। कृपया फिर से कोशिश करें।"
@@ -18010,7 +18023,7 @@ msgstr "इस श्रेणी में पहले ही {MAX_CHANNELS_PE
msgid "This channel does not support webhooks."
msgstr "यह चैनल वेबहुक्स को सपोर्ट नहीं करता।"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "इस चैनल के पास अभी तक कोई इनवाइट लिंक नहीं है। लोगों को आमंत्रित करने के लिए एक बनाएं।"
@@ -18043,7 +18056,7 @@ msgstr "इस चैनल में ऐसा कंटेंट हो सक
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "यह कोड अभी तक उपयोग नहीं किया गया है। कृपया पहले अपने ब्राउज़र में लॉगिन पूरा करें।"
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "इस कम्युनिटी के पास अभी तक कोई इनवाइट लिंक नहीं है। लोगों को आमंत्रित करने के लिए किसी चैनल पर जाएं और इनवाइट बनाएं।"
@@ -18180,8 +18193,8 @@ msgstr "संदेश इसी तरह दिखाई देते है
msgid "This is not the channel you're looking for."
msgstr "यह वह चैनल नहीं है जिसकी आप तलाश कर रहे हैं।"
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "यह वह कम्युनिटी नहीं है जिसकी आप तलाश कर रहे हैं।"
@@ -18300,9 +18313,9 @@ msgstr "इस वॉयस चैनल ने अपनी उपयोगक
msgid "This was a @silent message."
msgstr "यह एक @silent संदेश था।"
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "यह अंतरिक्ष-काल निरंतरता में दरार पैदा करेगा और इसे उल्टा नहीं किया जा सकता।"
@@ -18371,7 +18384,7 @@ msgstr "{0} तक टाइमआउट है।"
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "टाइमआउट"
@@ -18659,8 +18672,7 @@ msgstr "कोई अलग नाम आज़माएँ या परिण
msgid "Try a different search query"
msgstr "कोई अलग खोज क्वेरी आज़माएँ"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "कोई अलग खोज शब्द आज़माएँ"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "कोई अलग खोज शब्द या फ़िल्टर आज़माएँ"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "पुनः प्रयास करें"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "इसे अनपिन करें"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "असमर्थित फ़ाइल फॉर्मेट। कृ
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "एम्बेड्स दिखाएँ"
@@ -20573,8 +20585,8 @@ msgstr "हमने इस लॉगिन को अधिकृत करन
msgid "We failed to retrieve the full information about this user at this time."
msgstr "हम इस समय इस यूज़र की पूरी जानकारी प्राप्त करने में असफल रहे।"
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "हमसे गलती हो गई! थोड़ी देर रुको, हम इसे ठीक कर रहे हैं।"
@@ -21084,7 +21096,7 @@ msgstr "खोज परिणामों में रिएक्शनों
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "जब आप टाइमआउट में हैं तो शामिल नहीं हो सकते।"
@@ -21169,7 +21181,7 @@ msgstr "आप खुद को अनडिफन नहीं कर सकत
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "आप खुद को अनम्यूट नहीं कर सकते क्योंकि किसी मॉडरेटर ने आपको म्यूट किया है।"
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "आपके पास उस चैनल तक पहुंच नहीं है जहां यह संदेश भेजा गया था।"
@@ -21177,7 +21189,7 @@ msgstr "आपके पास उस चैनल तक पहुंच नह
msgid "You do not have permission to send messages in this channel."
msgstr "आपके पास इस चैनल में संदेश भेजने की अनुमति नहीं है।"
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "आपके पास इस समुदाय में किसी भी चैनल तक पहुंच नहीं है।"
@@ -21468,7 +21480,7 @@ msgstr "तुम वॉइस चैनल में हो"
msgid "You're sending messages too quickly"
msgstr "तुम बहुत जल्दी संदेश भेज रहे हो"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "तुम पुराने संदेश देख रहे हो"
diff --git a/fluxer_app/src/locales/hr/messages.po b/fluxer_app/src/locales/hr/messages.po
index 915d47da..4c1b7c2e 100644
--- a/fluxer_app/src/locales/hr/messages.po
+++ b/fluxer_app/src/locales/hr/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Kontroliraj kada se pregledi poruka prikazuju na popisu DM-ova"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Često korišteno"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ekstenzija:"
@@ -56,7 +62,7 @@ msgstr "... uključi gustoći način. Super!"
msgid "(edited)"
msgstr "(uređeno)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(učitavanje nije uspjelo)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> je započeo/la poziv."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> trenutno je dostupan samo članovima osoblja Fluxera"
@@ -1647,7 +1653,7 @@ msgstr "Obrazac za dodavanje broja telefona"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animirani emoji ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Jesi li siguran da želiš onemogućiti SMS dvofaktorsku autentifikaciju? To će učiniti tvoj račun manje sigurnim."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Jesi li siguran da želiš omogućiti pozivnice? To će korisnicima ponovno omogućiti pridruživanje ovoj zajednici putem povernica za pozivnice."
@@ -2548,7 +2554,7 @@ msgstr "Jesi li siguran da želiš opozvati zabranu za <0>{0}0>? Moći će se
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Jesi li siguran da želiš opozvati ovu pozivnicu? Ova radnja se ne može poništiti."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Jesi li siguran da želiš potisnuti sva ugrađivanja povernica u ovoj poruci? Ova radnja će sakriti sva ugrađivanja iz ove poruke."
@@ -3159,7 +3165,7 @@ msgstr "Dosegnuto ograničenje oznaka"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Označi poruku"
@@ -3432,7 +3438,7 @@ msgstr "Postavke kamere"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Promijeni moj nadimak u grupi"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Promijeni nadimak"
@@ -3775,7 +3781,7 @@ msgstr "Kanal"
msgid "Channel Access"
msgstr "Pristup kanalu"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Pristup kanalu odbijen"
@@ -4142,7 +4148,7 @@ msgstr "Preuzmi svoj račun za generiranje beta kodova."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Preuzmi svoj račun da se pridružiš ovom glasovnom kanalu."
@@ -4649,8 +4655,8 @@ msgstr "Zajednica promiče ili olakšava nezakonite aktivnosti"
msgid "Community Settings"
msgstr "Postavke zajednice"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Zajednica privremeno nedostupna"
@@ -5179,20 +5185,20 @@ msgstr "Kopiraj vezu"
msgid "Copy Media"
msgstr "Kopiraj medij"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Kopiraj poruku"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Kopiraj ID poruke"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Kopiraj vezu poruke"
@@ -5388,8 +5394,8 @@ msgstr "Stvori obrazac za omiljenu kategoriju"
msgid "Create Group DM"
msgstr "Stvori grupni DM"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Stvori pozivnicu"
@@ -5978,11 +5984,11 @@ msgstr "Zadano se animira pri interakciji na mobilnom uređaju radi očuvanja ba
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Zadano je isključeno na mobilnom uređaju radi očuvanja baterije i korištenja podataka."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Izbriši emoji"
msgid "Delete media"
msgstr "Izbriši medij"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Izbriši poruku"
@@ -6595,7 +6601,7 @@ msgstr "Rasprava ili promicanje nezakonitih aktivnosti"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Uredi medije"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Uredi poruku"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emotikoni"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Omogući dopuštenje za nadzor unosa"
msgid "Enable Invites"
msgstr "Omogući pozivnice"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Ponovno omogući pozivnice"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Omogući pozivnice za ovu zajednicu"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Učitavanje inventara darova nije uspjelo"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Učitavanje pozivnica nije uspjelo"
@@ -8769,7 +8775,7 @@ msgstr "Zaboravili ste lozinku?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Naprijed"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Pozivnice pauzirane"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Pozivnice za <0>{0}0> trenutno su onemogućene"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Pridruži se zajednici"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Pridruži se zajednici s naljepnicama da započneš!"
@@ -10588,7 +10594,7 @@ msgstr "Skoči"
msgid "Jump straight to the app to continue."
msgstr "Skoči ravno u aplikaciju da nastaviš."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Skoči na {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Skoči na najstariju nepročitanu poruku"
msgid "Jump to page"
msgstr "Skoči na stranicu"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Skoči na sadašnjost"
@@ -10612,15 +10618,15 @@ msgstr "Skoči na sadašnjost"
msgid "Jump to the channel of the active call"
msgstr "Skoči na kanal aktivnog poziva"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Skoči na povezani kanal"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Skoči na povezanu poruku"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Skoči na poruku u {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Učitavanje više..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Učitavanje rezerviranog mjesta"
@@ -11256,7 +11262,7 @@ msgstr "Upravljaj paketima izražavanja"
msgid "Manage feature flags"
msgstr "Upravljaj zastavicama značajki"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Upravljaj značajkama ceha"
@@ -11353,7 +11359,7 @@ msgstr "Označi kao spojler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Označi kao nepročitano"
@@ -11822,7 +11828,7 @@ msgstr "Poruke i mediji"
msgid "Messages Deleted"
msgstr "Poruke izbrisane"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Učitavanje poruka nije uspjelo"
@@ -12471,7 +12477,7 @@ msgstr "Nadimak ne smije prelaziti 32 znaka"
msgid "Nickname updated"
msgstr "Nadimak ažuriran"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Nema dostupnih kanala"
@@ -12575,6 +12581,10 @@ msgstr "Nije postavljena adresa e-pošte"
msgid "No emojis found matching your search."
msgstr "Nema emojija koji odgovaraju vašoj pretrazi."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Nema emojija koji odgovaraju vašoj pretrazi"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Još nema instaliranih paketa."
msgid "No invite background"
msgstr "Nema pozadine za pozivnicu"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Nema poveznica za pozivnice"
@@ -12768,8 +12778,8 @@ msgstr "Nisu pronađene postavke"
msgid "No specific scopes requested."
msgstr "Nisu zatražena posebna područja."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Nema dostupnih naljepnica"
@@ -12777,8 +12787,7 @@ msgstr "Nema dostupnih naljepnica"
msgid "No stickers found"
msgstr "Nema pronađenih naljepnica"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Nema pronađenih naljepnica"
@@ -12786,6 +12795,10 @@ msgstr "Nema pronađenih naljepnica"
msgid "No stickers found matching your search."
msgstr "Nema naljepnica koje odgovaraju vašoj pretrazi."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Nema naljepnica koje odgovaraju vašoj pretrazi"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Nema sustavnog kanala"
@@ -13034,7 +13047,7 @@ msgstr "U redu"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "U redu"
@@ -13764,7 +13777,7 @@ msgstr "Prikači je. Prikači je dobro."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Prikači poruku"
@@ -14678,7 +14691,7 @@ msgstr "Ukloni banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Ukloni naljepnicu"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Ukloni vremensko ograničenje"
@@ -14996,7 +15009,7 @@ msgstr "Zamijeni svoju prilagođenu pozadinu"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Odgovori"
@@ -15249,11 +15262,11 @@ msgstr "Ponovno se pretplati"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Uloga: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Uloge"
@@ -17529,22 +17542,22 @@ msgstr "Pritisni sve @spominjanja uloga"
msgid "Suppress All Role @mentions"
msgstr "Pritisni sva @spominjanja uloga"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Pritisni ugrađivanja"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Suzbij ugrađivanja"
@@ -17822,8 +17835,8 @@ msgstr "Bot je dodan."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Kanal koji tražiš možda je izbrisan ili nemaš pristup njemu."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Zajednica koju tražiš možda je izbrisana ili nemaš pristup njoj."
@@ -17921,11 +17934,11 @@ msgstr "Nema konfiguriranih webhookova za ovaj kanal. Stvorite webhook kako bist
msgid "There was an error loading the emojis. Please try again."
msgstr "Došlo je do pogreške pri učitavanju emojija. Molimo pokušajte ponovno."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Došlo je do pogreške pri učitavanju veza za pozivnice za ovaj kanal. Molimo pokušajte ponovno."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Došlo je do pogreške pri učitavanju pozivnica. Molimo pokušajte ponovno."
@@ -18010,7 +18023,7 @@ msgstr "Ova kategorija već sadrži maksimalno {MAX_CHANNELS_PER_CATEGORY} kanal
msgid "This channel does not support webhooks."
msgstr "Ovaj kanal ne podržava webhookove."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Ovaj kanal još nema nikakve povernice za pozivanje. Stvori jednu kako bi pozvao ljude u ovaj kanal."
@@ -18043,7 +18056,7 @@ msgstr "Ovaj kanal može sadržavati sadržaj koji nije siguran za posao ili koj
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Ovaj kod još nije korišten. Molimo te prvo dovrši prijavu u svom pregledniku."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Ova zajednica još nema nikakve povernice za pozivanje. Idi u kanal i stvori pozivnicu kako bi pozvao ljude."
@@ -18180,8 +18193,8 @@ msgstr "Ovako se poruke prikazuju"
msgid "This is not the channel you're looking for."
msgstr "Ovo nije kanal koji tražiš."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Ovo nije zajednica koju tražiš."
@@ -18300,9 +18313,9 @@ msgstr "Ovaj glasovni kanal je dosegnuo svoj korisnički limit. Pokušajte ponov
msgid "This was a @silent message."
msgstr "Ovo je bila @tiha poruka."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Ovo će stvoriti rascjep u prostorno-vremenskom kontinuumu i ne može se poništiti."
@@ -18371,7 +18384,7 @@ msgstr "Isteklo vrijeme do {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Istek vremena"
@@ -18659,8 +18672,7 @@ msgstr "Pokušaj s drugim imenom ili upotrijebi prefikse @ / # / ! / * za filtri
msgid "Try a different search query"
msgstr "Pokušaj s drugim upitom za pretraživanje"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Pokušaj s drugim pojmom za pretraživanje"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Pokušaj s drugim pojmom za pretraživanje ili filterom"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Pokušaj ponovno"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Otkvači ga"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Nepodržani format datoteke. Molimo koristite JPG, PNG, GIF, WebP ili MP
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Prikaži ugrađene sadržaje"
@@ -20573,8 +20585,8 @@ msgstr "Poslali smo poveznicu e-poštom za autorizaciju ove prijave. Otvorite sv
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Trenutno nismo uspjeli dohvatiti potpune informacije o ovom korisniku."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Zafrknuli smo! Pričekaj malo, radimo na tome."
@@ -21084,7 +21096,7 @@ msgstr "Ne možeš komunicirati s reakcijama u rezultatima pretraživanja jer bi
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Ne možeš se pridružiti dok si na odmor."
@@ -21169,7 +21181,7 @@ msgstr "Ne možeš se odglušiti jer te moderator zaglušio."
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Ne možeš se odutiti jer te moderator utišao."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Nemaš pristup kanalu u kojem je ova poruka poslana."
@@ -21177,7 +21189,7 @@ msgstr "Nemaš pristup kanalu u kojem je ova poruka poslana."
msgid "You do not have permission to send messages in this channel."
msgstr "Nemaš dopuštenje za slanje poruka u ovom kanalu."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Nemaš pristup nijednom kanalu u ovoj zajednici."
@@ -21468,7 +21480,7 @@ msgstr "U glasovnom kanalu si"
msgid "You're sending messages too quickly"
msgstr "Šaljete poruke prebrzo"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Gledate starije poruke"
diff --git a/fluxer_app/src/locales/hu/messages.po b/fluxer_app/src/locales/hu/messages.po
index 49a0ffa2..bd9e907b 100644
--- a/fluxer_app/src/locales/hu/messages.po
+++ b/fluxer_app/src/locales/hu/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Szabályozd, mikor jelenjenek meg az üzenetelőnézetek a DM listában"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Gyakran használt"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-kiterj:"
@@ -56,7 +62,7 @@ msgstr "... sűrű mód bekapcsolva. Szép!"
msgid "(edited)"
msgstr "(szerkesztve)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(betöltés sikertelen)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> hívást kezdeményezett."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> jelenleg csak a Fluxer személyzet számára elérhető"
@@ -1647,7 +1653,7 @@ msgstr "Telefonszám hozzáadása űrlap"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animált hangulatjel ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Biztosan le szeretnéd tiltani az SMS kétfaktoros hitelesítést? Ez kevésbé biztonságossá teszi a fiókodat."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Biztosan engedélyezni szeretnéd a meghívókat? Ez lehetővé teszi, hogy a felhasználók ismét csatlakozhassanak ehhez a közösséghez meghívó linkeken keresztül."
@@ -2548,7 +2554,7 @@ msgstr "Biztosan vissza szeretnéd vonni a kitiltást <0>{0}0> számára? Újr
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Biztosan vissza szeretnéd vonni ezt a meghívót? Ez a művelet nem vonható vissza."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Biztosan el szeretnéd nyomni az összes link beágyazást ezen az üzeneten? Ez a művelet elrejti az összes beágyazást ebből az üzenetből."
@@ -3159,7 +3165,7 @@ msgstr "Könyvjelző korlát elérve"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Üzenet könyvjelzőzése"
@@ -3432,7 +3438,7 @@ msgstr "Kamera beállítások"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Saját csoportbecenév módosítása"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Becenév módosítása"
@@ -3775,7 +3781,7 @@ msgstr "Csatorna"
msgid "Channel Access"
msgstr "Csatorna-hozzáférés"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Csatorna-hozzáférés megtagadva"
@@ -4142,7 +4148,7 @@ msgstr "Igényeld a fiókodat béta kódok generálásához."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Igényeld az accountod, hogy csatlakozhass ehhez a hangcsatornához."
@@ -4649,8 +4655,8 @@ msgstr "A közösség illegális tevékenységeket népszerűsít vagy megkönny
msgid "Community Settings"
msgstr "Közösség beállítások"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Közösség átmenetileg nem elérhető"
@@ -5179,20 +5185,20 @@ msgstr "Hivatkozás másolása"
msgid "Copy Media"
msgstr "Média másolása"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Üzenet másolása"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Üzenetazonosító másolása"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Üzenet hivatkozás másolása"
@@ -5388,8 +5394,8 @@ msgstr "Kedvenc kategória létrehozása"
msgid "Create Group DM"
msgstr "Csoportos DM létrehozása"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Meghívó létrehozása"
@@ -5978,11 +5984,11 @@ msgstr "Alapértelmezés szerint animáció csak interakció esetén mobilon, ho
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Alapértelmezés szerint kikapcsolva mobilon, hogy megóvjuk az akkumulátort és az adatforgalmat."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Hangulatjel törlése"
msgid "Delete media"
msgstr "Média törlése"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Üzenet törlése"
@@ -6595,7 +6601,7 @@ msgstr "Illegális tevékenységek megvitatása vagy népszerűsítése"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Média szerkesztése"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Üzenet szerkesztése"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojik"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Bemenet figyelés jogosultság engedélyezése"
msgid "Enable Invites"
msgstr "Meghívók engedélyezése"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Meghívók újra engedélyezése"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Meghívók engedélyezése ehhez a közösséghez"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Nem sikerült az ajándékkészlet betöltése"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Nem sikerült a meghívók betöltése"
@@ -8769,7 +8775,7 @@ msgstr "Elfelejtetted a jelszavad?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Továbbítás"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Meghívók szüneteltetve"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "A <0>{0}0> közösség meghívói jelenleg letiltva vannak"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Közösséghez csatlakozás"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Csatlakozz egy matricas közösséghez a kezdéshez!"
@@ -10588,7 +10594,7 @@ msgstr "Ugrás"
msgid "Jump straight to the app to continue."
msgstr "Ugorj egyenesen az alkalmazásba a folytatáshoz."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Ugrás ide: {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Ugrás a legrégebbi olvasatlan üzenethez"
msgid "Jump to page"
msgstr "Ugrás az oldalra"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Ugrás a jelenlegihez"
@@ -10612,15 +10618,15 @@ msgstr "Ugrás a jelenlegihez"
msgid "Jump to the channel of the active call"
msgstr "Ugrás az aktív hívás csatornájára"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Ugrás a linkelt csatornára"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Ugrás a linkelt üzenetre"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Ugrás az üzenetre itt: {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Több betöltése..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Helykitöltő betöltése"
@@ -11256,7 +11262,7 @@ msgstr "Kifejezéscsomagok kezelése"
msgid "Manage feature flags"
msgstr "Funkciójelzők kezelése"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Közösség funkciók kezelése"
@@ -11353,7 +11359,7 @@ msgstr "Spoilerként jelölés"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Olvasatlanként jelölés"
@@ -11822,7 +11828,7 @@ msgstr "Üzenetek és média"
msgid "Messages Deleted"
msgstr "Üzenetek törölve"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Az üzenetek betöltése sikertelen"
@@ -12471,7 +12477,7 @@ msgstr "A becenév nem lehet hosszabb 32 karakternél"
msgid "Nickname updated"
msgstr "Becenév frissítve"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Nincs elérhető csatorna"
@@ -12575,6 +12581,10 @@ msgstr "Nincs e-mail cím beállítva"
msgid "No emojis found matching your search."
msgstr "Nem található a keresésnek megfelelő emoji."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Nincs olyan emoji, ami megfelelne a keresésednek"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Még nincs telepített csomag."
msgid "No invite background"
msgstr "Nincs meghívó háttér"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Nincs meghívó link"
@@ -12768,8 +12778,8 @@ msgstr "Nem találhatók beállítások"
msgid "No specific scopes requested."
msgstr "Nincsenek meghatározott hatókörök kérve."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Nincsenek elérhető matricák"
@@ -12777,8 +12787,7 @@ msgstr "Nincsenek elérhető matricák"
msgid "No stickers found"
msgstr "Nem találhatók matricák"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Nem találhatók matricák"
@@ -12786,6 +12795,10 @@ msgstr "Nem találhatók matricák"
msgid "No stickers found matching your search."
msgstr "A keresésednek megfelelő matricák nem találhatók."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Nincs olyan matrica, ami megfelelne a keresésednek"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Nincs rendszer csatorna"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Rendben"
@@ -13764,7 +13777,7 @@ msgstr "Rögzítsd. Jól rögzítsd."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Üzenet rögzítése"
@@ -14678,7 +14691,7 @@ msgstr "Banner eltávolítása"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Matrica eltávolítása"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Időtúllépés eltávolítása"
@@ -14996,7 +15009,7 @@ msgstr "Egyéni háttér cseréje"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Válasz"
@@ -15249,11 +15262,11 @@ msgstr "Újra feliratkozás"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Szerep: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Szerepek"
@@ -17529,22 +17542,22 @@ msgstr "Az összes szerep @megemlítés elnyomása"
msgid "Suppress All Role @mentions"
msgstr "Az összes szerep @megemlítés elnyomása"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Beágyazások elrejtése"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Beágyazások elrejtése"
@@ -17822,8 +17835,8 @@ msgstr "A bot hozzáadásra került."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "A keresett csatorna lehet, hogy törölve lett, vagy nincs hozzáférésed hozzá."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "A keresett közösség lehet, hogy törölve lett, vagy nincs hozzáférésed hozzá."
@@ -17921,11 +17934,11 @@ msgstr "Nincsenek webhookok beállítva ehhez a csatornához. Hozz létre egy we
msgid "There was an error loading the emojis. Please try again."
msgstr "Hiba történt az emojik betöltése közben. Kérjük, próbáld újra."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Hiba történt a csatorna meghívó linkjeinek betöltése közben. Kérjük, próbáld újra."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Hiba történt a meghívók betöltése közben. Kérjük, próbáld újra."
@@ -18010,7 +18023,7 @@ msgstr "Ez a kategória már elérte a maximális {MAX_CHANNELS_PER_CATEGORY} cs
msgid "This channel does not support webhooks."
msgstr "Ez a csatorna nem támogatja a webhookokat."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Ennek a csatornának még nincsenek meghívó linkjei. Hozz létre egyet, hogy meghívj embereket erre a csatornára."
@@ -18043,7 +18056,7 @@ msgstr "Ez a csatorna olyan tartalmat tartalmazhat, amely nem munkahelyi környe
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Ezt a kódot még nem használták. Kérlek, először fejezd be a bejelentkezést a böngésződben."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Ennek a közösségnek még nincsenek meghívó linkjei. Menj egy csatornához, és hozz létre egy meghívót, hogy meghívj embereket."
@@ -18180,8 +18193,8 @@ msgstr "Így jelennek meg az üzenetek"
msgid "This is not the channel you're looking for."
msgstr "Ez nem az a csatorna, amit keresel."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Ez nem az a közösség, amit keresel."
@@ -18300,9 +18313,9 @@ msgstr "Ez a hangcsatorna elérte a felhasználói limitjét. Kérjük, próbál
msgid "This was a @silent message."
msgstr "Ez egy @silent üzenet volt."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Ez repedést okoz a téridő kontinuumban, és nem vonható vissza."
@@ -18371,7 +18384,7 @@ msgstr "Kitiltás vége: {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Kitiltás"
@@ -18659,8 +18672,7 @@ msgstr "Próbálj egy másik nevet, vagy használd a @ / # / ! / * előtagokat a
msgid "Try a different search query"
msgstr "Próbálj egy másik keresési lekérdezést"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Próbálj egy másik keresési kifejezést"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Próbálj egy másik keresési kifejezést vagy szűrőt"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Próbáld újra"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Rögzítés feloldása"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Nem támogatott fájlformátum. Kérlek, használj JPG, PNG, GIF, WebP v
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Beágyazások visszaállítása"
@@ -20573,8 +20585,8 @@ msgstr "Egy linket küldtünk e-mailben a bejelentkezés engedélyezéséhez. K
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Jelenleg nem sikerült lekérnünk a felhasználó teljes információit."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Elfluxeltünk! Tarts ki, dolgozunk rajta."
@@ -21084,7 +21096,7 @@ msgstr "Nem léphetsz kapcsolatba a reakciókkal a keresési eredményekben, mer
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Nem csatlakozhatsz, amíg időtúllépésben vagy."
@@ -21169,7 +21181,7 @@ msgstr "Nem kapcsolhatod ki a süketséget magadon, mert egy moderátor süketí
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Nem kapcsolhatod ki a némítást magadon, mert egy moderátor némított meg."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Nincs hozzáférésed ahhoz a csatornához, ahol ezt az üzenetet küldték."
@@ -21177,7 +21189,7 @@ msgstr "Nincs hozzáférésed ahhoz a csatornához, ahol ezt az üzenetet küldt
msgid "You do not have permission to send messages in this channel."
msgstr "Nincs jogosultságod üzenetek küldésére ebben a csatornában."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Nincs hozzáférésed egyetlen csatornához sem ebben a közösségben."
@@ -21468,7 +21480,7 @@ msgstr "A hangcsatornában vagy"
msgid "You're sending messages too quickly"
msgstr "Túl gyorsan küldöd az üzeneteket"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Régebbi üzeneteket nézel"
diff --git a/fluxer_app/src/locales/id/messages.po b/fluxer_app/src/locales/id/messages.po
index 70ef71e6..139294b8 100644
--- a/fluxer_app/src/locales/id/messages.po
+++ b/fluxer_app/src/locales/id/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Kontrol kapan pratinjau pesan ditampilkan di daftar DM"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Sering Digunakan"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... aktifkan mode padat. Bagus!"
msgid "(edited)"
msgstr "(diedit)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(gagal memuat)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> memulai panggilan."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> saat ini hanya dapat diakses oleh anggota staf Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Formulir tambah nomor telepon"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Emoji Animasi ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Apakah Anda yakin ingin menonaktifkan autentikasi dua faktor SMS? Ini akan membuat akun Anda kurang aman."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Apakah Anda yakin ingin mengaktifkan undangan? Ini akan memungkinkan pengguna bergabung dengan komunitas ini melalui tautan undangan lagi."
@@ -2548,7 +2554,7 @@ msgstr "Apakah Anda yakin ingin mencabut larangan untuk <0>{0}0>? Mereka dapat
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Apakah Anda yakin ingin mencabut undangan ini? Tindakan ini tidak dapat dibatalkan."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Apakah Anda yakin ingin menyembunyikan semua embed tautan pada pesan ini? Tindakan ini akan menyembunyikan semua embed dari pesan ini."
@@ -3159,7 +3165,7 @@ msgstr "Batas Penanda Tercapai"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Tandai Pesan"
@@ -3432,7 +3438,7 @@ msgstr "Pengaturan Kamera"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Ubah Nama Panggilan Grup Saya"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Ubah Nama Panggilan"
@@ -3775,7 +3781,7 @@ msgstr "Kanal"
msgid "Channel Access"
msgstr "Akses Kanal"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Akses Kanal Ditolak"
@@ -4142,7 +4148,7 @@ msgstr "Klaim akun Anda untuk menghasilkan kode beta."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Klaim akunmu untuk bergabung dengan kanal suara ini."
@@ -4649,8 +4655,8 @@ msgstr "Komunitas mempromosikan atau memfasilitasi kegiatan ilegal"
msgid "Community Settings"
msgstr "Pengaturan Komunitas"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Komunitas sementara tidak tersedia"
@@ -5179,20 +5185,20 @@ msgstr "Salin Tautan"
msgid "Copy Media"
msgstr "Salin Media"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Salin Pesan"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Salin ID Pesan"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Salin Tautan Pesan"
@@ -5388,8 +5394,8 @@ msgstr "Buat formulir kategori favorit"
msgid "Create Group DM"
msgstr "Buat DM Grup"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Buat Undangan"
@@ -5978,11 +5984,11 @@ msgstr "Default animasi saat interaksi di ponsel untuk menghemat daya baterai."
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Default mati di ponsel untuk menghemat daya baterai dan penggunaan data."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Hapus Emoji"
msgid "Delete media"
msgstr "Hapus media"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Hapus Pesan"
@@ -6595,7 +6601,7 @@ msgstr "Diskusi atau promosi aktivitas ilegal"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Edit media"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Edit Pesan"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emoji"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Aktifkan izin Pemantauan Input"
msgid "Enable Invites"
msgstr "Aktifkan Undangan"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Aktifkan Undangan Lagi"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Aktifkan undangan untuk komunitas ini"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Gagal memuat inventaris hadiah"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Gagal memuat undangan"
@@ -8769,7 +8775,7 @@ msgstr "Lupa kata sandi Anda?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Teruskan"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Undangan Dijeda"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Undangan ke <0>{0}0> saat ini dinonaktifkan"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Bergabung dengan Komunitas"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Bergabung dengan komunitas yang memiliki stiker untuk memulai!"
@@ -10588,7 +10594,7 @@ msgstr "Lompat"
msgid "Jump straight to the app to continue."
msgstr "Langsung lompat ke aplikasi untuk melanjutkan."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Lompat ke {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Lompat ke Pesan Belum Dibaca Tertua"
msgid "Jump to page"
msgstr "Lompat ke halaman"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Lompat ke Saat Ini"
@@ -10612,15 +10618,15 @@ msgstr "Lompat ke Saat Ini"
msgid "Jump to the channel of the active call"
msgstr "Lompat ke kanal panggilan aktif"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Lompat ke kanal tertaut"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Lompat ke pesan tertaut"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Lompat ke pesan di {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Memuat lebih banyak..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Memuat placeholder"
@@ -11256,7 +11262,7 @@ msgstr "Kelola paket ekspresi"
msgid "Manage feature flags"
msgstr "Kelola flag fitur"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Kelola Fitur Guild"
@@ -11353,7 +11359,7 @@ msgstr "Tandai sebagai spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Tandai sebagai Belum Dibaca"
@@ -11822,7 +11828,7 @@ msgstr "Pesan & Media"
msgid "Messages Deleted"
msgstr "Pesan Dihapus"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Gagal memuat pesan"
@@ -12471,7 +12477,7 @@ msgstr "Nama panggilan tidak boleh lebih dari 32 karakter"
msgid "Nickname updated"
msgstr "Nama panggilan diperbarui"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Tidak ada kanal yang dapat diakses"
@@ -12575,6 +12581,10 @@ msgstr "Tidak ada alamat email yang diatur"
msgid "No emojis found matching your search."
msgstr "Tidak ada emoji yang cocok dengan pencarian Anda."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Tidak ada emoji yang cocok dengan pencarian Anda"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Belum ada paket yang terpasang."
msgid "No invite background"
msgstr "Tidak ada latar undangan"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Tidak ada tautan undangan"
@@ -12768,8 +12778,8 @@ msgstr "Pengaturan tidak ditemukan"
msgid "No specific scopes requested."
msgstr "Tidak ada ruang lingkup spesifik yang diminta."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Tidak Ada Stiker Tersedia"
@@ -12777,8 +12787,7 @@ msgstr "Tidak Ada Stiker Tersedia"
msgid "No stickers found"
msgstr "Stiker tidak ditemukan"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Stiker Tidak Ditemukan"
@@ -12786,6 +12795,10 @@ msgstr "Stiker Tidak Ditemukan"
msgid "No stickers found matching your search."
msgstr "Tidak ada stiker yang cocok dengan pencarian Anda."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Tidak ada stiker yang cocok dengan pencarian Anda"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Tidak Ada Kanal Sistem"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Oke"
@@ -13764,7 +13777,7 @@ msgstr "Sematkan. Sematkan dengan baik."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Sematkan Pesan"
@@ -14678,7 +14691,7 @@ msgstr "Hapus Spanduk"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Hapus stiker"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Hapus Timeout"
@@ -14996,7 +15009,7 @@ msgstr "Ganti latar belakang kustom Anda"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Balas"
@@ -15249,11 +15262,11 @@ msgstr "Berlangganan Ulang"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Peran: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Peran"
@@ -17529,22 +17542,22 @@ msgstr "Tahan semua sebutan peran @"
msgid "Suppress All Role @mentions"
msgstr "Tahan Semua Sebutan Peran @"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Tahan sematan"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Sembunyikan Embed"
@@ -17822,8 +17835,8 @@ msgstr "Bot telah ditambahkan."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Kanal yang Anda cari mungkin telah dihapus atau Anda tidak memiliki akses ke sana."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Komunitas yang Anda cari mungkin telah dihapus atau Anda tidak memiliki akses ke sana."
@@ -17921,11 +17934,11 @@ msgstr "Tidak ada webhook yang dikonfigurasi untuk kanal ini. Buat webhook untuk
msgid "There was an error loading the emojis. Please try again."
msgstr "Terjadi kesalahan saat memuat emoji. Silakan coba lagi."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Terjadi kesalahan saat memuat tautan undangan untuk kanal ini. Silakan coba lagi."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Terjadi kesalahan saat memuat undangan. Silakan coba lagi."
@@ -18010,7 +18023,7 @@ msgstr "Kategori ini sudah berisi maksimum {MAX_CHANNELS_PER_CATEGORY} kanal."
msgid "This channel does not support webhooks."
msgstr "Kanal ini tidak mendukung webhook."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Kanal ini belum memiliki tautan undangan. Buat satu untuk mengundang orang ke kanal ini."
@@ -18043,7 +18056,7 @@ msgstr "Kanal ini mungkin berisi konten yang tidak aman untuk kerja atau tidak p
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Kode ini belum digunakan. Silakan selesaikan login di browser kamu terlebih dahulu."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Komunitas ini belum memiliki tautan undangan. Pergi ke kanal dan buat undangan untuk mengundang orang."
@@ -18180,8 +18193,8 @@ msgstr "Ini adalah cara pesan muncul"
msgid "This is not the channel you're looking for."
msgstr "Ini bukan kanal yang kamu cari."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Ini bukan komunitas yang kamu cari."
@@ -18300,9 +18313,9 @@ msgstr "Kanal suara ini telah mencapai batas pengguna. Silakan coba lagi nanti a
msgid "This was a @silent message."
msgstr "Ini adalah pesan @silent."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Ini akan menciptakan celah dalam kontinum ruang-waktu dan tidak dapat dibatalkan."
@@ -18371,7 +18384,7 @@ msgstr "Timeout hingga {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Timeout"
@@ -18659,8 +18672,7 @@ msgstr "Coba nama berbeda atau gunakan awalan @ / # / ! / * untuk memfilter hasi
msgid "Try a different search query"
msgstr "Coba kueri pencarian berbeda"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Coba istilah pencarian berbeda"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Coba istilah pencarian atau filter berbeda"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Coba lagi"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Lepas sematannya"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Format file tidak didukung. Harap gunakan JPG, PNG, GIF, WebP, atau MP4.
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Tidak lagi menyembunyikan sematan"
@@ -20573,8 +20585,8 @@ msgstr "Kami mengirimkan tautan melalui email untuk mengotorisasi login ini. Har
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Kami gagal mengambil informasi lengkap tentang pengguna ini saat ini."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Kami mengalami masalah! Tahan dulu, kami sedang memperbaikinya."
@@ -21084,7 +21096,7 @@ msgstr "Anda tidak dapat berinteraksi dengan reaksi di hasil pencarian karena da
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Anda tidak dapat bergabung saat Anda dalam timeout."
@@ -21169,7 +21181,7 @@ msgstr "Anda tidak dapat membatalkan pembisuan diri sendiri karena Anda telah di
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Anda tidak dapat membatalkan pembungkaman diri sendiri karena Anda telah dibungkam oleh moderator."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Anda tidak memiliki akses ke kanal tempat pesan ini dikirim."
@@ -21177,7 +21189,7 @@ msgstr "Anda tidak memiliki akses ke kanal tempat pesan ini dikirim."
msgid "You do not have permission to send messages in this channel."
msgstr "Anda tidak memiliki izin untuk mengirim pesan di kanal ini."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Anda tidak memiliki akses ke kanal apa pun di komunitas ini."
@@ -21468,7 +21480,7 @@ msgstr "Anda berada di kanal suara"
msgid "You're sending messages too quickly"
msgstr "Anda mengirim pesan terlalu cepat"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Anda melihat pesan yang lebih lama"
diff --git a/fluxer_app/src/locales/it/messages.po b/fluxer_app/src/locales/it/messages.po
index 4d9db176..611f3017 100644
--- a/fluxer_app/src/locales/it/messages.po
+++ b/fluxer_app/src/locales/it/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Controlla quando vengono mostrati gli anteprima dei messaggi nella lista dei DM"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Usati di frequente"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-estensione:"
@@ -56,7 +62,7 @@ msgstr "... attiva la modalità compatta. Grande!"
msgid "(edited)"
msgstr "(modificato)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(impossibile caricare)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> ha avviato una chiamata."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> è attualmente accessibile solo ai membri dello staff Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Modulo per numero di telefono"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Emoji animate ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Sei sicuro di voler disabilitare l'autenticazione a due fattori via SMS? Questo renderà il tuo account meno sicuro."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Sei sicuro di voler abilitare gli inviti? Questo permetterà agli utenti di unirsi nuovamente a questa community tramite link d'invito."
@@ -2548,7 +2554,7 @@ msgstr "Sei sicuro di voler revocare il ban per <0>{0}0>? Potrà rientrare nel
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Sei sicuro di voler revocare questo invito? Questa azione non può essere annullata."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Sei sicuro di voler sopprimere tutte le anteprime dei link in questo messaggio? Questa azione nasconderà tutte le anteprime associate."
@@ -3159,7 +3165,7 @@ msgstr "Limite segnalibri raggiunto"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Segna messaggio"
@@ -3432,7 +3438,7 @@ msgstr "Impostazioni fotocamera"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Cambia il mio soprannome nel gruppo"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Cambia soprannome"
@@ -3775,7 +3781,7 @@ msgstr "Canale"
msgid "Channel Access"
msgstr "Accesso al canale"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Accesso al canale negato"
@@ -4142,7 +4148,7 @@ msgstr "Richiedi il tuo account per generare codici beta."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Richiedi il tuo account per unirti a questo canale vocale."
@@ -4649,8 +4655,8 @@ msgstr "Community promuove o facilita attività illegali"
msgid "Community Settings"
msgstr "Impostazioni della community"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Community temporaneamente non disponibile"
@@ -5179,20 +5185,20 @@ msgstr "Copia link"
msgid "Copy Media"
msgstr "Copia media"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Copia messaggio"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Copia ID messaggio"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Copia link messaggio"
@@ -5388,8 +5394,8 @@ msgstr "Modulo per creare categoria preferita"
msgid "Create Group DM"
msgstr "Crea DM di gruppo"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Crea invito"
@@ -5978,11 +5984,11 @@ msgstr "Di default anima quando interagisci su mobile per preservare la batteria
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Di default è disattivato su mobile per preservare batteria e dati."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Elimina emoji"
msgid "Delete media"
msgstr "Elimina media"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Elimina messaggio"
@@ -6595,7 +6601,7 @@ msgstr "Discussione o promozione di attività illegali"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Modifica media"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Modifica messaggio"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emoji"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Consenti il monitoraggio dell'input"
msgid "Enable Invites"
msgstr "Abilita inviti"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Riattiva gli inviti"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Abilita gli inviti per questa community"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Impossibile caricare l'inventario dei regali"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Impossibile caricare gli inviti"
@@ -8769,7 +8775,7 @@ msgstr "Hai dimenticato la password?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Avanti"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Inviti sospesi"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Gli inviti per <0>{0}0> sono attualmente disabilitati"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Entra in una community"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Entra in una community con sticker per iniziare!"
@@ -10588,7 +10594,7 @@ msgstr "Vai"
msgid "Jump straight to the app to continue."
msgstr "Vai direttamente all'app per continuare."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Vai a {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Vai al messaggio non letto più vecchio"
msgid "Jump to page"
msgstr "Vai alla pagina"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Vai al presente"
@@ -10612,15 +10618,15 @@ msgstr "Vai al presente"
msgid "Jump to the channel of the active call"
msgstr "Vai al canale della chiamata attiva"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Vai al canale collegato"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Vai al messaggio collegato"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Vai al messaggio in {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Caricamento altro..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Segnaposto in caricamento"
@@ -11256,7 +11262,7 @@ msgstr "Gestisci pacchetti di espressioni"
msgid "Manage feature flags"
msgstr "Gestisci flag delle funzionalità"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Gestisci funzionalità della gilda"
@@ -11353,7 +11359,7 @@ msgstr "Segna come spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Segna come non letto"
@@ -11822,7 +11828,7 @@ msgstr "Messaggi e media"
msgid "Messages Deleted"
msgstr "Messaggi eliminati"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Caricamento dei messaggi non riuscito"
@@ -12471,7 +12477,7 @@ msgstr "Il soprannome non deve superare i 32 caratteri"
msgid "Nickname updated"
msgstr "Soprannome aggiornato"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Nessun canale accessibile"
@@ -12575,6 +12581,10 @@ msgstr "Nessun indirizzo email impostato"
msgid "No emojis found matching your search."
msgstr "Nessuna emoji corrisponde alla ricerca."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Nessuna emoji corrisponde alla tua ricerca"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Ancora nessun pacchetto installato."
msgid "No invite background"
msgstr "Nessuno sfondo invito"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Nessun link di invito"
@@ -12768,8 +12778,8 @@ msgstr "Nessuna impostazione trovata"
msgid "No specific scopes requested."
msgstr "Non sono stati richiesti ambiti specifici."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Nessuno sticker disponibile"
@@ -12777,8 +12787,7 @@ msgstr "Nessuno sticker disponibile"
msgid "No stickers found"
msgstr "Nessuno sticker trovato"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Nessuno sticker trovato"
@@ -12786,6 +12795,10 @@ msgstr "Nessuno sticker trovato"
msgid "No stickers found matching your search."
msgstr "Nessuno sticker trovato corrispondente alla ricerca."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Nessun adesivo corrisponde alla tua ricerca"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Nessun canale di sistema"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Va bene"
@@ -13764,7 +13777,7 @@ msgstr "Fissalo. Fissalo bene."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Fissa messaggio"
@@ -14678,7 +14691,7 @@ msgstr "Rimuovi banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Rimuovi adesivo"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Rimuovi Timeout"
@@ -14996,7 +15009,7 @@ msgstr "Sostituisci il tuo sfondo personalizzato"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Rispondi"
@@ -15249,11 +15262,11 @@ msgstr "Riattiva l'abbonamento"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Ruolo: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Ruoli"
@@ -17529,22 +17542,22 @@ msgstr "Disattiva tutti gli @role"
msgid "Suppress All Role @mentions"
msgstr "Disattiva tutti gli @role"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Disattiva embed"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Disattiva gli embed"
@@ -17822,8 +17835,8 @@ msgstr "Il bot è stato aggiunto."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Il canale che cerchi potrebbe essere stato eliminato o potresti non avere accesso."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "La community che cerchi potrebbe essere stata eliminata o potresti non avere accesso."
@@ -17921,11 +17934,11 @@ msgstr "Non ci sono webhook configurati per questo canale. Crea un webhook per c
msgid "There was an error loading the emojis. Please try again."
msgstr "Si è verificato un errore durante il caricamento delle emoji. Riprova."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Si è verificato un errore durante il caricamento dei link d’invito per questo canale. Riprova."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Si è verificato un errore durante il caricamento degli inviti. Riprova."
@@ -18010,7 +18023,7 @@ msgstr "Questa categoria contiene già il massimo di {MAX_CHANNELS_PER_CATEGORY}
msgid "This channel does not support webhooks."
msgstr "Questo canale non supporta i webhook."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Questo canale non ha ancora link d’invito. Creane uno per invitare persone su questo canale."
@@ -18043,7 +18056,7 @@ msgstr "Questo canale potrebbe contenere contenuti non adatti al lavoro o inappr
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Questo codice non è stato ancora usato. Completa prima l’accesso nel browser."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Questa community non ha ancora link d’invito. Vai su un canale e crea un invito per invitare persone."
@@ -18180,8 +18193,8 @@ msgstr "Ecco come appaiono i messaggi"
msgid "This is not the channel you're looking for."
msgstr "Questo non è il canale che cerchi."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Questa non è la community che cerchi."
@@ -18300,9 +18313,9 @@ msgstr "Questo canale vocale ha raggiunto il limite di utenti. Riprova più tard
msgid "This was a @silent message."
msgstr "Questo era un messaggio @silent."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Questo creerà una frattura nel continuum spazio-temporale e non può essere annullato."
@@ -18371,7 +18384,7 @@ msgstr "Bloccato fino a {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Timeout"
@@ -18659,8 +18672,7 @@ msgstr "Prova un nome diverso o usa i prefissi @ / # / ! / * per filtrare i risu
msgid "Try a different search query"
msgstr "Prova una ricerca diversa"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Prova un termine di ricerca diverso"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Prova un termine di ricerca o un filtro diverso"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Riprova"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Rimuovi appuntamento"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Formato file non supportato. Usa JPG, PNG, GIF, WebP o MP4."
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Mostra nuovamente incorporamenti"
@@ -20573,8 +20585,8 @@ msgstr "Abbiamo inviato via email un link per autorizzare l'accesso. Controlla l
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Non siamo riusciti a recuperare tutte le informazioni su questo utente in questo momento."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Abbiamo fatto un pasticcio! Resisti, ci stiamo lavorando."
@@ -21084,7 +21096,7 @@ msgstr "Non puoi interagire con le reazioni nei risultati di ricerca perché pot
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Non puoi unirti mentre sei in timeout."
@@ -21169,7 +21181,7 @@ msgstr "Non puoi riattivare l'audio in entrata perché sei stato disattivato da
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Non puoi riattivare il microfono perché sei stato silenziato da un moderatore."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Non hai accesso al canale in cui è stato inviato questo messaggio."
@@ -21177,7 +21189,7 @@ msgstr "Non hai accesso al canale in cui è stato inviato questo messaggio."
msgid "You do not have permission to send messages in this channel."
msgstr "Non hai il permesso di inviare messaggi in questo canale."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Non hai accesso a nessun canale in questa community."
@@ -21468,7 +21480,7 @@ msgstr "Sei nel canale vocale"
msgid "You're sending messages too quickly"
msgstr "Stai inviando messaggi troppo velocemente"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Stai visualizzando messaggi più vecchi"
diff --git a/fluxer_app/src/locales/ja/messages.po b/fluxer_app/src/locales/ja/messages.po
index 1844e817..54aa24dd 100644
--- a/fluxer_app/src/locales/ja/messages.po
+++ b/fluxer_app/src/locales/ja/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "DMリストでメッセージプレビューを表示するタイミングを制御"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "よく使うもの"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-拡張子:"
@@ -56,7 +62,7 @@ msgstr "... 高密度モードをオンにしました。いいね!"
msgid "(edited)"
msgstr "(編集済み)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(読み込みに失敗)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/>が通話を開始しました。"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0>は現在、Fluxerスタッフメンバーのみがアクセス可能です"
@@ -1647,7 +1653,7 @@ msgstr "電話番号追加フォーム"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "アニメーション絵文字({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "SMS二要素認証を無効にしてもよろしいですか?これによりアカウントの安全性が低下します。"
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "招待を有効にしてもよろしいですか?これによりユーザーは招待リンクを通じてこのコミュニティに再度参加できるようになります。"
@@ -2548,7 +2554,7 @@ msgstr "<0>{0}0>のBANを解除してもよろしいですか?コミュニ
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "この招待を取り消してもよろしいですか?この操作は取り消せません。"
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "このメッセージのすべてのリンク埋め込みを非表示にしてもよろしいですか?この操作により、このメッセージからのすべての埋め込みが非表示になります。"
@@ -3159,7 +3165,7 @@ msgstr "ブックマーク上限に達しました"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "メッセージをブックマーク"
@@ -3432,7 +3438,7 @@ msgstr "カメラ設定"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "自分のグループニックネームを変更"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "ニックネームを変更"
@@ -3775,7 +3781,7 @@ msgstr "チャンネル"
msgid "Channel Access"
msgstr "チャンネルアクセス"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "チャンネルへのアクセスが拒否されました"
@@ -4142,7 +4148,7 @@ msgstr "アカウントを請求してベータコードを生成してくださ
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "このボイスチャンネルに参加するにはアカウントを取得してください。"
@@ -4649,8 +4655,8 @@ msgstr "コミュニティが違法活動を促進または容易化"
msgid "Community Settings"
msgstr "コミュニティ設定"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "コミュニティは一時的に利用できません"
@@ -5179,20 +5185,20 @@ msgstr "リンクをコピー"
msgid "Copy Media"
msgstr "メディアをコピー"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "メッセージをコピー"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "メッセージIDをコピー"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "メッセージリンクをコピー"
@@ -5388,8 +5394,8 @@ msgstr "お気に入りカテゴリフォームを作成"
msgid "Create Group DM"
msgstr "グループDMを作成"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "招待を作成"
@@ -5978,11 +5984,11 @@ msgstr "バッテリー節約のため、モバイルでは操作時にアニメ
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "バッテリーとデータ使用量を節約するため、モバイルではオフがデフォルトです。"
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "絵文字を削除"
msgid "Delete media"
msgstr "メディアを削除"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "メッセージを削除"
@@ -6595,7 +6601,7 @@ msgstr "違法行為の議論または宣伝"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "メディアを編集"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "メッセージを編集"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "絵文字"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "入力監視の権限を有効にする"
msgid "Enable Invites"
msgstr "招待を有効にする"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "招待を再度有効にする"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "このコミュニティの招待を有効にする"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "ギフトインベントリの読み込みに失敗しました"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "招待の読み込みに失敗しました"
@@ -8769,7 +8775,7 @@ msgstr "パスワードをお忘れですか?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "転送"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "招待が一時停止"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "<0>{0}0>への招待は現在無効です"
@@ -10457,8 +10463,8 @@ msgstr "ジッター"
msgid "Join a Community"
msgstr "コミュニティに参加"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "スタートするにはステッカーがあるコミュニティに参加しましょう!"
@@ -10588,7 +10594,7 @@ msgstr "ジャンプ"
msgid "Jump straight to the app to continue."
msgstr "続行するにはアプリに直接ジャンプしてください。"
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "{labelText}にジャンプ"
@@ -10604,7 +10610,7 @@ msgstr "最も古い未読メッセージにジャンプ"
msgid "Jump to page"
msgstr "ページにジャンプ"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "現在にジャンプ"
@@ -10612,15 +10618,15 @@ msgstr "現在にジャンプ"
msgid "Jump to the channel of the active call"
msgstr "アクティブな通話のチャンネルにジャンプ"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "リンクされたチャンネルにジャンプ"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "リンクされたメッセージにジャンプ"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "{labelText}のメッセージにジャンプ"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "さらに読み込み中..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "プレースホルダーを読み込み中"
@@ -11256,7 +11262,7 @@ msgstr "エクスプレッションパックの管理"
msgid "Manage feature flags"
msgstr "フィーチャーフラグの管理"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "ギルド機能の管理"
@@ -11353,7 +11359,7 @@ msgstr "ネタバレとしてマーク"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "未読にする"
@@ -11822,7 +11828,7 @@ msgstr "メッセージとメディア"
msgid "Messages Deleted"
msgstr "メッセージを削除しました"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "メッセージの読み込みに失敗しました"
@@ -12471,7 +12477,7 @@ msgstr "ニックネームは32文字以内で入力してください"
msgid "Nickname updated"
msgstr "ニックネームを更新しました"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "アクセス可能なチャンネルがありません"
@@ -12575,6 +12581,10 @@ msgstr "メールアドレスが設定されていません"
msgid "No emojis found matching your search."
msgstr "検索に一致する絵文字は見つかりませんでした。"
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "検索に一致する絵文字はありません"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "まだインストール済みのパックはありません。"
msgid "No invite background"
msgstr "招待背景はありません"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "招待リンクはありません"
@@ -12768,8 +12778,8 @@ msgstr "設定が見つかりません"
msgid "No specific scopes requested."
msgstr "特定のスコープは要求されていません。"
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "利用可能なステッカーはありません"
@@ -12777,8 +12787,7 @@ msgstr "利用可能なステッカーはありません"
msgid "No stickers found"
msgstr "ステッカーが見つかりません"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "ステッカーが見つかりません"
@@ -12786,6 +12795,10 @@ msgstr "ステッカーが見つかりません"
msgid "No stickers found matching your search."
msgstr "検索に一致するステッカーは見つかりませんでした。"
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "検索に一致するステッカーはありません"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "システムチャンネルなし"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "OK"
@@ -13764,7 +13777,7 @@ msgstr "ピン留め。しっかりピン留め。"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "メッセージをピン留め"
@@ -14678,7 +14691,7 @@ msgstr "バナーを削除"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "ステッカーを削除"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "タイムアウトを削除"
@@ -14996,7 +15009,7 @@ msgstr "カスタム背景を置換"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "返信"
@@ -15249,11 +15262,11 @@ msgstr "再購読"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "ロール: {0}。"
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "ロール"
@@ -17529,22 +17542,22 @@ msgstr "すべてのロール@メンションを抑制"
msgid "Suppress All Role @mentions"
msgstr "すべてのロール@メンションを抑制"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "埋め込みを抑制"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "埋め込みを非表示"
@@ -17822,8 +17835,8 @@ msgstr "ボットが追加されました。"
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "お探しのチャンネルは削除されたか、アクセス権限がない可能性があります。"
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "お探しのコミュニティは削除されたか、アクセス権限がない可能性があります。"
@@ -17921,11 +17934,11 @@ msgstr "このチャンネルにはウェブフックが設定されていませ
msgid "There was an error loading the emojis. Please try again."
msgstr "絵文字の読み込み中にエラーが発生しました。もう一度お試しください。"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "このチャンネルの招待リンクの読み込み中にエラーが発生しました。もう一度お試しください。"
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "招待の読み込み中にエラーが発生しました。もう一度お試しください。"
@@ -18010,7 +18023,7 @@ msgstr "このカテゴリには既に最大 {MAX_CHANNELS_PER_CATEGORY} チャ
msgid "This channel does not support webhooks."
msgstr "このチャンネルはウェブフックをサポートしていません。"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "このチャンネルにはまだ招待リンクがありません。このチャンネルに人を招待するために作成してください。"
@@ -18043,7 +18056,7 @@ msgstr "このチャンネルには職場に適さない、または一部のユ
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "このコードはまだ使用されていません。まずブラウザでログインを完了してください。"
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "このコミュニティにはまだ招待リンクがありません。チャンネルに移動して招待を作成し、人を招待してください。"
@@ -18180,8 +18193,8 @@ msgstr "メッセージはこのように表示されます"
msgid "This is not the channel you're looking for."
msgstr "これはあなたが探しているチャンネルではありません。"
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "これはあなたが探しているコミュニティではありません。"
@@ -18300,9 +18313,9 @@ msgstr "このボイスチャンネルはユーザー上限に達しました。
msgid "This was a @silent message."
msgstr "これは@silentメッセージでした。"
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "これは時空連続体に亀裂を生じさせ、元に戻せません。"
@@ -18371,7 +18384,7 @@ msgstr "{0}までタイムアウト中です。"
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "タイムアウト"
@@ -18659,8 +18672,7 @@ msgstr "別の名前を試すか、@ / # / ! / * プレフィックスを使用
msgid "Try a different search query"
msgstr "別の検索クエリを試す"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "別の検索語句を試す"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "別の検索語句またはフィルターを試す"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "もう一度試す"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "ピン留め解除"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "サポートされていないファイル形式です。JPG、PNG、GIF
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "埋め込みの非表示解除"
@@ -20573,8 +20585,8 @@ msgstr "このログインを承認するためのリンクをメールで送信
msgid "We failed to retrieve the full information about this user at this time."
msgstr "現在、このユーザーの完全な情報を取得できませんでした。"
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Fluxerで問題が発生しました。しばらくお待ちください。対応中です。"
@@ -21084,7 +21096,7 @@ msgstr "検索結果のリアクションを操作すると時空連続体が乱
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "タイムアウト中は参加できません。"
@@ -21169,7 +21181,7 @@ msgstr "モデレーターによって聴覚を無効にされているため、
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "モデレーターによってミュートされているため、自身でミュートを解除することはできません。"
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "このメッセージが送信されたチャンネルにアクセスする権限がありません。"
@@ -21177,7 +21189,7 @@ msgstr "このメッセージが送信されたチャンネルにアクセスす
msgid "You do not have permission to send messages in this channel."
msgstr "このチャンネルでメッセージを送信する権限がありません。"
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "このコミュニティ内のどのチャンネルにもアクセスする権限がありません。"
@@ -21468,7 +21480,7 @@ msgstr "ボイスチャンネルに参加しています"
msgid "You're sending messages too quickly"
msgstr "メッセージの送信が速すぎます"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "古いメッセージを表示しています"
diff --git a/fluxer_app/src/locales/ko/messages.po b/fluxer_app/src/locales/ko/messages.po
index 1b258a28..9cdff116 100644
--- a/fluxer_app/src/locales/ko/messages.po
+++ b/fluxer_app/src/locales/ko/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "DM 목록에서 메시지 미리보기를 표시할 시기를 제어하세요"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "자주 사용함"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-확장자:"
@@ -56,7 +62,7 @@ msgstr "... 조밀 모드가 켜졌어요. 좋네요!"
msgid "(edited)"
msgstr "(수정됨)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(불러오기 실패)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/>님이 통화를 시작했습니다."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0>는 현재 Fluxer 직원만 접근 가능합니다"
@@ -1647,7 +1653,7 @@ msgstr "전화번호 입력란 추가"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "애니메이션 이모지 ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "SMS 이중 인증을 비활성화하시겠어요? 계정 보안이 낮아집니다."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "초대를 활성화하시겠어요? 초대 링크로 이 커뮤니티에 다시 가입할 수 있습니다."
@@ -2548,7 +2554,7 @@ msgstr "<0>{0}0>님의 밴을 해제하시겠어요? 커뮤니티에 다시
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "이 초대를 취소하시겠어요? 이 작업은 되돌릴 수 없습니다."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "이 메시지의 모든 링크 임베드를 숨기시겠어요? 이 작업은 메시지의 모든 임베드를 숨깁니다."
@@ -3159,7 +3165,7 @@ msgstr "북마크 한도 도달"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "메시지 북마크"
@@ -3432,7 +3438,7 @@ msgstr "카메라 설정"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "내 그룹 닉네임 변경"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "닉네임 변경"
@@ -3775,7 +3781,7 @@ msgstr "채널"
msgid "Channel Access"
msgstr "채널 접근"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "채널 접근 거부됨"
@@ -4142,7 +4148,7 @@ msgstr "베타 코드를 생성하기 위해 계정을 요청하세요."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "이 음성 채널에 참여하기 위해 계정을 확인하세요."
@@ -4649,8 +4655,8 @@ msgstr "커뮤니티가 불법 활동을 조장하거나 지원함"
msgid "Community Settings"
msgstr "커뮤니티 설정"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "커뮤니티가 일시적으로 사용 불가"
@@ -5179,20 +5185,20 @@ msgstr "링크 복사"
msgid "Copy Media"
msgstr "미디어 복사"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "메시지 복사"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "메시지 ID 복사"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "메시지 링크 복사"
@@ -5388,8 +5394,8 @@ msgstr "즐겨찾기 카테고리 생성 양식"
msgid "Create Group DM"
msgstr "그룹 DM 만들기"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "초대 만들기"
@@ -5978,11 +5984,11 @@ msgstr "배터리 수명을 위해 모바일에서는 상호작용 시 애니메
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "배터리 및 데이터 사용량을 위해 모바일에서는 기본적으로 꺼집니다."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "이모지 삭제"
msgid "Delete media"
msgstr "미디어 삭제"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "메시지 삭제"
@@ -6595,7 +6601,7 @@ msgstr "불법 활동의 토론 또는 홍보"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "미디어 편집"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "메시지 편집"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "이모지"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "입력 모니터링 권한 활성화"
msgid "Enable Invites"
msgstr "초대 활성화"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "다시 초대 활성화"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "이 커뮤니티의 초대를 활성화합니다"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "선물 목록을 불러오지 못했습니다"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "초대를 불러오지 못했습니다"
@@ -8769,7 +8775,7 @@ msgstr "비밀번호를 잊으셨나요?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "앞으로"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "초대 일시중지"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "<0>{0}0>에 대한 초대는 현재 비활성화돼 있어요"
@@ -10457,8 +10463,8 @@ msgstr "지터"
msgid "Join a Community"
msgstr "커뮤니티 참여"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "스티커가 있는 커뮤니티에 참여해 시작해 보세요!"
@@ -10588,7 +10594,7 @@ msgstr "이동"
msgid "Jump straight to the app to continue."
msgstr "계속하려면 바로 앱으로 이동하세요."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "{labelText}로 이동"
@@ -10604,7 +10610,7 @@ msgstr "가장 오래된 읽지 않은 메시지로 이동"
msgid "Jump to page"
msgstr "페이지로 이동"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "현재로 이동"
@@ -10612,15 +10618,15 @@ msgstr "현재로 이동"
msgid "Jump to the channel of the active call"
msgstr "현재 통화 채널로 이동"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "연결된 채널로 이동"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "연결된 메시지로 이동"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "{labelText}의 메시지로 이동"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "더 로딩 중..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "플레이스홀더 로딩 중"
@@ -11256,7 +11262,7 @@ msgstr "표현 팩 관리"
msgid "Manage feature flags"
msgstr "기능 플래그 관리"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "길드 기능 관리"
@@ -11353,7 +11359,7 @@ msgstr "스포일러로 표시"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "안 읽음으로 표시"
@@ -11822,7 +11828,7 @@ msgstr "메시지 및 미디어"
msgid "Messages Deleted"
msgstr "메시지가 삭제되었습니다"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "메시지 로딩에 실패했습니다"
@@ -12471,7 +12477,7 @@ msgstr "별명은 32자를 넘을 수 없습니다"
msgid "Nickname updated"
msgstr "별명이 업데이트되었습니다"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "접근 가능한 채널이 없습니다"
@@ -12575,6 +12581,10 @@ msgstr "설정된 이메일 주소가 없습니다"
msgid "No emojis found matching your search."
msgstr "검색과 일치하는 이모지를 찾을 수 없습니다."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "검색한 이모티콘이 없습니다"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "설치된 팩이 아직 없습니다."
msgid "No invite background"
msgstr "초대 배경 없음"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "초대 링크 없음"
@@ -12768,8 +12778,8 @@ msgstr "설정을 찾을 수 없음"
msgid "No specific scopes requested."
msgstr "특정 범위가 요청되지 않았습니다."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "사용할 수 있는 스티커가 없습니다"
@@ -12777,8 +12787,7 @@ msgstr "사용할 수 있는 스티커가 없습니다"
msgid "No stickers found"
msgstr "스티커를 찾을 수 없음"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "스티커를 찾을 수 없음"
@@ -12786,6 +12795,10 @@ msgstr "스티커를 찾을 수 없음"
msgid "No stickers found matching your search."
msgstr "검색에 맞는 스티커를 찾을 수 없음"
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "검색한 스티커가 없습니다"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "시스템 채널 없음"
@@ -13034,7 +13047,7 @@ msgstr "확인"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "알겠어요"
@@ -13764,7 +13777,7 @@ msgstr "고정하세요. 잘 고정하세요."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "메시지 고정"
@@ -14678,7 +14691,7 @@ msgstr "배너 제거"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "스티커 제거"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "타임아웃 해제"
@@ -14996,7 +15009,7 @@ msgstr "사용자 지정 배경 교체"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "답장"
@@ -15249,11 +15262,11 @@ msgstr "다시 가입"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "역할: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "역할"
@@ -17529,22 +17542,22 @@ msgstr "모든 역할 @멘션 알림 끄기"
msgid "Suppress All Role @mentions"
msgstr "모든 역할 @멘션 알림 끄기"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "임베드 숨기기"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "임베드 숨기기"
@@ -17822,8 +17835,8 @@ msgstr "봇이 추가되었습니다."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "찾고 있는 채널이 삭제되었거나 접근 권한이 없을 수 있습니다."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "찾고 있는 커뮤니티가 삭제되었거나 접근 권한이 없을 수 있습니다."
@@ -17921,11 +17934,11 @@ msgstr "이 채널에는 웹훅이 설정되어 있지 않습니다. 외부 애
msgid "There was an error loading the emojis. Please try again."
msgstr "이모지를 불러오는 중 오류가 발생했습니다. 다시 시도해 주세요."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "이 채널의 초대 링크를 불러오는 중 오류가 발생했습니다. 다시 시도해 주세요."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "초대를 불러오는 중 오류가 발생했습니다. 다시 시도해 주세요."
@@ -18010,7 +18023,7 @@ msgstr "이 카테고리는 이미 최대 {MAX_CHANNELS_PER_CATEGORY}개의 채
msgid "This channel does not support webhooks."
msgstr "이 채널은 웹훅을 지원하지 않습니다."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "이 채널에는 아직 초대 링크가 없습니다. 초대 링크를 만들어 사람들을 초대하세요."
@@ -18043,7 +18056,7 @@ msgstr "이 채널에는 업무에 적합하지 않거나 일부 사용자에게
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "이 코드는 아직 사용되지 않았습니다. 먼저 브라우저에서 로그인 절차를 완료해 주세요."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "이 커뮤니티에는 아직 초대 링크가 없습니다. 채널로 이동해 초대 링크를 만들어 사람들을 초대하세요."
@@ -18180,8 +18193,8 @@ msgstr "메시지는 이렇게 표시됩니다"
msgid "This is not the channel you're looking for."
msgstr "찾고 있는 채널이 아닙니다."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "찾고 있는 커뮤니티가 아닙니다."
@@ -18300,9 +18313,9 @@ msgstr "이 음성 채널은 사용자 수 제한에 도달했습니다. 나중
msgid "This was a @silent message."
msgstr "이 메시지는 @silent 메시지였습니다."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "이 작업은 시공간 연속성에 균열을 만들며 되돌릴 수 없습니다."
@@ -18371,7 +18384,7 @@ msgstr "{0}까지 타임아웃입니다."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "타임아웃"
@@ -18659,8 +18672,7 @@ msgstr "다른 이름을 시도하거나 @ / # / ! / * 접두사를 사용해
msgid "Try a different search query"
msgstr "다른 검색어를 시도하세요"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "다른 검색어를 시도하세요"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "다른 검색어나 필터를 시도하세요"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "다시 시도"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "고정 해제"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "지원되지 않는 파일 형식입니다. JPG, PNG, GIF, WebP 또는 M
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "임베드 숨김 해제"
@@ -20573,8 +20585,8 @@ msgstr "이 로그인 승인 링크를 이메일로 보냈습니다. {0}의 받
msgid "We failed to retrieve the full information about this user at this time."
msgstr "현재 이 사용자에 대한 전체 정보를 가져오지 못했습니다."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "문제가 발생했어요! 잠시만 기다려 주세요, 해결 중입니다."
@@ -21084,7 +21096,7 @@ msgstr "검색 결과에서 반응과 상호작용할 수 없습니다. 시공
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "타임아웃 중에는 참여할 수 없습니다."
@@ -21169,7 +21181,7 @@ msgstr "관리자에게 청각 차단되어 청각 차단을 해제할 수 없
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "관리자에게 음소거되어 음소거를 해제할 수 없습니다."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "이 메시지가 보내진 채널에 접근 권한이 없습니다."
@@ -21177,7 +21189,7 @@ msgstr "이 메시지가 보내진 채널에 접근 권한이 없습니다."
msgid "You do not have permission to send messages in this channel."
msgstr "이 채널에서 메시지를 보낼 권한이 없습니다."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "이 커뮤니티에서 접근할 수 있는 채널이 없습니다."
@@ -21468,7 +21480,7 @@ msgstr "음성 채널에 참여 중입니다"
msgid "You're sending messages too quickly"
msgstr "메시지를 너무 빠르게 보내고 있습니다"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "이전 메시지를 보고 있습니다"
diff --git a/fluxer_app/src/locales/lt/messages.po b/fluxer_app/src/locales/lt/messages.po
index 332f7beb..175989bc 100644
--- a/fluxer_app/src/locales/lt/messages.po
+++ b/fluxer_app/src/locales/lt/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Valdykite, kada žinučių peržiūros rodomos tiesioginių žinučių sąraše"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Dažniausiai naudojami"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-pltn:"
@@ -56,7 +62,7 @@ msgstr "... įjunk tankų režimą. Puiku!"
msgid "(edited)"
msgstr "(redaguota)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(nepavyko įkelti)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> pradėjo skambutį."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> šiuo metu prieinamas tik Fluxer darbuotojams"
@@ -1647,7 +1653,7 @@ msgstr "Telefono numerio pridėjimo forma"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animuoti emodžiai ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Ar tikrai norite išjungti SMS dviejų faktorių autentifikaciją? Tai padarys jūsų paskyrą mažiau saugią."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Ar tikrai norite įjungti pakvietimus? Tai leis vartotojams vėl prisijungti prie šios bendruomenės per pakvietimo nuorodas."
@@ -2548,7 +2554,7 @@ msgstr "Ar tikrai norite atšaukti blokavimą <0>{0}0>? Jie galės vėl prisij
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Ar tikrai norite atšaukti šį pakvietimą? Šio veiksmo negalima atšaukti."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Ar tikrai norite slopinti visas nuorodų įterpimas šioje žinutėje? Šis veiksmas paslėps visas įterpimus iš šios žinutės."
@@ -3159,7 +3165,7 @@ msgstr "Pasiektas žymių limitas"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Žymėti žinutę"
@@ -3432,7 +3438,7 @@ msgstr "Kameros nustatymai"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Keisti mano grupės slapyvardį"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Keisti slapyvardį"
@@ -3775,7 +3781,7 @@ msgstr "Kanalas"
msgid "Channel Access"
msgstr "Kanalo prieiga"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Kanalo prieiga uždrausta"
@@ -4142,7 +4148,7 @@ msgstr "Paimk savo paskyrą, kad sugeneruotum beta kodus."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Patvirtinkite savo paskyrą, kad prisijungtumėte prie šio balso kanalo."
@@ -4649,8 +4655,8 @@ msgstr "Bendruomenė propaguoja ar palengvina neteisėtą veiklą"
msgid "Community Settings"
msgstr "Bendruomenės nustatymai"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Bendruomenė laikinai nepasiekiama"
@@ -5179,20 +5185,20 @@ msgstr "Kopijuoti nuorodą"
msgid "Copy Media"
msgstr "Kopijuoti mediją"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Kopijuoti žinutę"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Kopijuoti žinutės ID"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Kopijuoti žinutės nuorodą"
@@ -5388,8 +5394,8 @@ msgstr "Sukurti mėgstamų kategorijų formą"
msgid "Create Group DM"
msgstr "Sukurti grupės DM"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Sukurti pakvietimą"
@@ -5978,11 +5984,11 @@ msgstr "Numatytai animuojama sąveikaujant mobiliajame įrenginyje, kad išsaugo
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Numatytai išjungta mobiliajame įrenginyje, kad išsaugotų baterijos gyvenimą ir duomenų naudojimą."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Ištrinti emoji"
msgid "Delete media"
msgstr "Ištrinti mediją"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Ištrinti žinutę"
@@ -6595,7 +6601,7 @@ msgstr "Nelegalių veiklų aptarimas ar skatinimas"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Redaguoti mediją"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Redaguoti žinutę"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Jaustukai"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Įjungti įvesties stebėjimo leidimą"
msgid "Enable Invites"
msgstr "Įjungti pakvietimus"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Vėl įjungti pakvietimus"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Įjungti pakvietimus šiai bendruomenei"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Nepavyko įkelti dovanų inventoriaus"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Nepavyko įkelti pakvietimų"
@@ -8769,7 +8775,7 @@ msgstr "Pamiršote slaptažodį?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Persiųsti"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Pakvietimai sustabdyti"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Pakvietimai į <0>{0}0> šiuo metu išjungti"
@@ -10457,8 +10463,8 @@ msgstr "Truputis"
msgid "Join a Community"
msgstr "Prisijungti prie bendruomenės"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Prisijunkite prie bendruomenės su lipdukais, kad pradėtumėte!"
@@ -10588,7 +10594,7 @@ msgstr "Peršokti"
msgid "Jump straight to the app to continue."
msgstr "Peršokite tiesiai į programėlę, kad tęstumėte."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Peršokti į {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Peršokti į seniausią neskaitytą žinutę"
msgid "Jump to page"
msgstr "Peršokti į puslapį"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Peršokti į dabartį"
@@ -10612,15 +10618,15 @@ msgstr "Peršokti į dabartį"
msgid "Jump to the channel of the active call"
msgstr "Peršokti į aktyvaus skambučio kanalą"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Peršokti į susietą kanalą"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Peršokti į susietą žinutę"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Peršokti į žinutę {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Įkeliama daugiau..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Įkeliamas vietos rezervavimo žymė"
@@ -11256,7 +11262,7 @@ msgstr "Tvarkyti išraiškų rinkinius"
msgid "Manage feature flags"
msgstr "Tvarkyti funkcijų vėliavas"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Tvarkyti gildijos funkcijas"
@@ -11353,7 +11359,7 @@ msgstr "Pažymėti kaip spoilerį"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Pažymėti kaip neskaitytą"
@@ -11822,7 +11828,7 @@ msgstr "Žinutės ir medija"
msgid "Messages Deleted"
msgstr "Žinutės ištrintos"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Nepavyko įkelti žinučių"
@@ -12471,7 +12477,7 @@ msgstr "Slapyvardis negali viršyti 32 simbolių"
msgid "Nickname updated"
msgstr "Slapyvardis atnaujintas"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Nėra prieinamų kanalų"
@@ -12575,6 +12581,10 @@ msgstr "Nenustatytas el. pašto adresas"
msgid "No emojis found matching your search."
msgstr "Nerasta emodžių, atitinkančių jūsų paiešką."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Nėra emodžių, atitinkančių jūsų paiešką"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Dar nėra įdiegtų rinkinių."
msgid "No invite background"
msgstr "Nėra pakvietimo fono"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Nėra pakvietimo nuorodų"
@@ -12768,8 +12778,8 @@ msgstr "Nustatymų nerasta"
msgid "No specific scopes requested."
msgstr "Konkrečių apimčių neprašoma."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Lipdukų nėra"
@@ -12777,8 +12787,7 @@ msgstr "Lipdukų nėra"
msgid "No stickers found"
msgstr "Lipdukų nerasta"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Lipdukų nerasta"
@@ -12786,6 +12795,10 @@ msgstr "Lipdukų nerasta"
msgid "No stickers found matching your search."
msgstr "Jūsų paiešką atitinkančių lipdukų nerasta."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Nėra lipdukų, atitinkančių jūsų paiešką"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Nėra sistemos kanalo"
@@ -13034,7 +13047,7 @@ msgstr "Gerai"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Gerai"
@@ -13764,7 +13777,7 @@ msgstr "Prisek. Prisek gerai."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Prisegti žinutę"
@@ -14678,7 +14691,7 @@ msgstr "Pašalinti reklamjuostę"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Pašalinti lipduką"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Pašalinti laiko limitą"
@@ -14996,7 +15009,7 @@ msgstr "Pakeisti savo tinkintą foną"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Atsakyti"
@@ -15249,11 +15262,11 @@ msgstr "Prenumeruoti dar kartą"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rolė: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Rolės"
@@ -17529,22 +17542,22 @@ msgstr "Slopinti visus vaidmenų @paminėjimus"
msgid "Suppress All Role @mentions"
msgstr "Slopinti visus vaidmenų @paminėjimus"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Slopinti įterpimus"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Slopinti įterpimus"
@@ -17822,8 +17835,8 @@ msgstr "Botas buvo pridėtas."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Kanalas, kurio ieškote, galėjo būti ištrintas arba jūs neturite prieigos prie jo."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Bendruomenė, kurios ieškote, galėjo būti ištrinta arba jūs neturite prieigos prie jos."
@@ -17921,11 +17934,11 @@ msgstr "Šiam kanalui nėra sukonfigūruotų webhook'u. Sukurkite webhook'ą, ka
msgid "There was an error loading the emojis. Please try again."
msgstr "Įkeliant emodžius įvyko klaida. Pabandykite dar kartą."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Įkeliant kvietimų nuorodas šiam kanalui įvyko klaida. Pabandykite dar kartą."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Įkeliant kvietimus įvyko klaida. Pabandykite dar kartą."
@@ -18010,7 +18023,7 @@ msgstr "Ši kategorija jau turi maksimalų {MAX_CHANNELS_PER_CATEGORY} kanalų s
msgid "This channel does not support webhooks."
msgstr "Šis kanalas nepalaiko webhook'u."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Šis kanalas dar neturi jokių kvietimų nuorodų. Sukurkite vieną, kad pakviestumėte žmones į šį kanalą."
@@ -18043,7 +18056,7 @@ msgstr "Šiame kanale gali būti turinio, kuris nėra saugus darbe arba gali bū
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Šis kodas dar nepanaudotas. Pirmiausia užbaikite prisijungimą savo naršyklėje."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Ši bendruomenė dar neturi jokių kvietimų nuorodų. Eikite į kanalą ir sukurkite kvietimą, kad pakviestumėte žmones."
@@ -18180,8 +18193,8 @@ msgstr "Taip atrodo žinutės"
msgid "This is not the channel you're looking for."
msgstr "Tai ne tas kanalas, kurio ieškote."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Tai ne ta bendruomenė, kurios ieškote."
@@ -18300,9 +18313,9 @@ msgstr "Šis balso kanalas pasiekė naudotojų limitą. Pabandykite vėliau arba
msgid "This was a @silent message."
msgstr "Tai buvo @tyli žinutė."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Tai sukurs įtrūkimą erdvės-laiko kontinuume ir negali būti atšaukta."
@@ -18371,7 +18384,7 @@ msgstr "Laiko riba iki {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Laiko riba"
@@ -18659,8 +18672,7 @@ msgstr "Išbandykite kitą pavadinimą arba naudokite @ / # / ! / * priešdėliu
msgid "Try a different search query"
msgstr "Išbandykite kitą paieškos užklausą"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Išbandykite kitą paieškos terminą"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Išbandykite kitą paieškos terminą ar filtrą"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Bandykite dar kartą"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Atsegti"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Nepalaikomas failo formatas. Naudokite JPG, PNG, GIF, WebP arba MP4."
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Atkurti įterpimus"
@@ -20573,8 +20585,8 @@ msgstr "Nusiuntėme el. paštu nuorodą šiam prisijungimui autorizuoti. Atidary
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Šiuo metu nepavyko gauti visos informacijos apie šį naudotoją."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Mes suklydome! Būkite kantrūs, mes tai tvarkome."
@@ -21084,7 +21096,7 @@ msgstr "Negalite sąveikauti su reakcijomis paieškos rezultatuose, nes tai gali
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Negalite prisijungti, kai esate laikotarpyje."
@@ -21169,7 +21181,7 @@ msgstr "Negalite atkurti savo girdimumo, nes moderatorius jus užkirsdavo."
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Negalite atjungti savo nutildymo, nes moderatorius jus nutildė."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Neturite prieigos prie kanalo, kuriame buvo išsiųsta ši žinutė."
@@ -21177,7 +21189,7 @@ msgstr "Neturite prieigos prie kanalo, kuriame buvo išsiųsta ši žinutė."
msgid "You do not have permission to send messages in this channel."
msgstr "Neturite leidimo siųsti žinučių šiame kanale."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Neturite prieigos prie jokių kanalų šioje bendruomenėje."
@@ -21468,7 +21480,7 @@ msgstr "Tu balsiniame kanale"
msgid "You're sending messages too quickly"
msgstr "Tu per greitai siunti žinutes"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Tu žiūri senesnes žinutes"
diff --git a/fluxer_app/src/locales/nl/messages.po b/fluxer_app/src/locales/nl/messages.po
index 862f5eb1..a68234dc 100644
--- a/fluxer_app/src/locales/nl/messages.po
+++ b/fluxer_app/src/locales/nl/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Bepaal wanneer berichtvoorbeelden worden getoond in de DM-lijst"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Vaak gebruikt"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... compacte modus aanzetten. Mooi!"
msgid "(edited)"
msgstr "(bewerkt)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(laden mislukt)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> is een gesprek begonnen."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> is momenteel alleen toegankelijk voor Fluxer-medewerkers"
@@ -1647,7 +1653,7 @@ msgstr "Telefoonnummerformulier toevoegen"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Geanimeerde emoji ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Weet je zeker dat je SMS-tweefactorauthenticatie wilt uitschakelen? Dit maakt je account minder veilig."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Weet je zeker dat je uitnodigingen wilt inschakelen? Dit stelt gebruikers weer in staat om via uitnodigingslinks bij deze community te komen."
@@ -2548,7 +2554,7 @@ msgstr "Weet je zeker dat je de ban voor <0>{0}0> wilt intrekken? Ze kunnen we
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Weet je zeker dat je deze uitnodiging wilt intrekken? Deze actie kan niet ongedaan worden gemaakt."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Weet je zeker dat je alle link-embeds in dit bericht wilt onderdrukken? Deze actie verbergt alle embeds in dit bericht."
@@ -3159,7 +3165,7 @@ msgstr "Bladwijzerlimiet bereikt"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Bericht bladwijzeren"
@@ -3432,7 +3438,7 @@ msgstr "Camera-instellingen"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Mijn groepsbijnaam wijzigen"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Bijnaam wijzigen"
@@ -3775,7 +3781,7 @@ msgstr "Kanaal"
msgid "Channel Access"
msgstr "Kanaaltoegang"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Kanaaltoegang geweigerd"
@@ -4142,7 +4148,7 @@ msgstr "Claim je account om beta-codes te genereren."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Neem je account in gebruik om deze spraakkanaal te joinen."
@@ -4649,8 +4655,8 @@ msgstr "Community promoot of vergemakkelijkt illegale activiteiten"
msgid "Community Settings"
msgstr "Communityinstellingen"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Community tijdelijk niet beschikbaar"
@@ -5179,20 +5185,20 @@ msgstr "Kopieer link"
msgid "Copy Media"
msgstr "Kopieer media"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Kopieer bericht"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Kopieer bericht-ID"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Kopieer berichtlink"
@@ -5388,8 +5394,8 @@ msgstr "Favoriete categorieformulier aanmaken"
msgid "Create Group DM"
msgstr "Groeps-DM aanmaken"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Uitnodiging aanmaken"
@@ -5978,11 +5984,11 @@ msgstr "Standaard geanimeerd bij interactie op mobiel om batterij te sparen."
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Standaard uit op mobiel om batterij en dataverbruik te sparen."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Emoji verwijderen"
msgid "Delete media"
msgstr "Media verwijderen"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Bericht verwijderen"
@@ -6595,7 +6601,7 @@ msgstr "Discussie of promotie van illegale activiteiten"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Media bewerken"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Bericht bewerken"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emoji's"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Invoermonitoringtoestemming inschakelen"
msgid "Enable Invites"
msgstr "Uitnodigingen inschakelen"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Uitnodigingen opnieuw inschakelen"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Uitnodigingen inschakelen voor deze community"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Cadeauvoorraad laden mislukt"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Uitnodigingen laden mislukt"
@@ -8769,7 +8775,7 @@ msgstr "Je wachtwoord vergeten?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Doorsturen"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Uitnodigingen gepauzeerd"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Uitnodigingen voor <0>{0}0> zijn momenteel uitgeschakeld"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Word lid van een community"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Word lid van een community met stickers om te beginnen!"
@@ -10588,7 +10594,7 @@ msgstr "Springen"
msgid "Jump straight to the app to continue."
msgstr "Ga rechtstreeks naar de app om door te gaan."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Springen naar {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Springen naar oudste ongelezen bericht"
msgid "Jump to page"
msgstr "Springen naar pagina"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Springen naar huidige"
@@ -10612,15 +10618,15 @@ msgstr "Springen naar huidige"
msgid "Jump to the channel of the active call"
msgstr "Springen naar het kanaal van de actieve oproep"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Springen naar het gelinkte kanaal"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Springen naar het gelinkte bericht"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Springen naar het bericht in {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Meer laden..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Plaatshouder laden"
@@ -11256,7 +11262,7 @@ msgstr "Expressiepakketten beheren"
msgid "Manage feature flags"
msgstr "Functievlaggen beheren"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Gildefuncties beheren"
@@ -11353,7 +11359,7 @@ msgstr "Markeren als spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Markeren als ongelezen"
@@ -11822,7 +11828,7 @@ msgstr "Berichten & Media"
msgid "Messages Deleted"
msgstr "Berichten verwijderd"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Berichten laden mislukt"
@@ -12471,7 +12477,7 @@ msgstr "Bijnaam mag niet langer zijn dan 32 tekens"
msgid "Nickname updated"
msgstr "Bijnaam bijgewerkt"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Geen toegankelijke kanalen"
@@ -12575,6 +12581,10 @@ msgstr "Geen e-mailadres ingesteld"
msgid "No emojis found matching your search."
msgstr "Geen emoji's gevonden die overeenkomen met je zoekopdracht."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Geen emoji's passen bij je zoekopdracht"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Nog geen packs geïnstalleerd."
msgid "No invite background"
msgstr "Geen uitnodigingsachtergrond"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Geen uitnodigingslinks"
@@ -12768,8 +12778,8 @@ msgstr "Geen instellingen gevonden"
msgid "No specific scopes requested."
msgstr "Geen specifieke scopes aangevraagd."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Geen stickers beschikbaar"
@@ -12777,8 +12787,7 @@ msgstr "Geen stickers beschikbaar"
msgid "No stickers found"
msgstr "Geen stickers gevonden"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Geen stickers gevonden"
@@ -12786,6 +12795,10 @@ msgstr "Geen stickers gevonden"
msgid "No stickers found matching your search."
msgstr "Geen stickers gevonden die overeenkomen met je zoekopdracht."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Geen stickers passen bij je zoekopdracht"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Geen systeemkanaal"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Oké"
@@ -13764,7 +13777,7 @@ msgstr "Zet het vast. Zet het goed vast."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Bericht vastzetten"
@@ -14678,7 +14691,7 @@ msgstr "Banner verwijderen"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Sticker verwijderen"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Time-out verwijderen"
@@ -14996,7 +15009,7 @@ msgstr "Je aangepaste achtergrond vervangen"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Antwoorden"
@@ -15249,11 +15262,11 @@ msgstr "Opnieuw abonneren"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rol: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Rollen"
@@ -17529,22 +17542,22 @@ msgstr "Onderdruk alle rol-@vermeldingen"
msgid "Suppress All Role @mentions"
msgstr "Onderdruk alle rol-@vermeldingen"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Onderdruk embeds"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Embeddingen onderdrukken"
@@ -17822,8 +17835,8 @@ msgstr "De bot is toegevoegd."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Het kanaal dat je zoekt is mogelijk verwijderd of je hebt er geen toegang toe."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "De community die je zoekt is mogelijk verwijderd of je hebt er geen toegang toe."
@@ -17921,11 +17934,11 @@ msgstr "Er zijn geen webhooks geconfigureerd voor dit kanaal. Maak een webhook o
msgid "There was an error loading the emojis. Please try again."
msgstr "Er is een fout opgetreden bij het laden van de emoji's. Probeer het opnieuw."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Er is een fout opgetreden bij het laden van de uitnodigingslinks voor dit kanaal. Probeer het opnieuw."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Er is een fout opgetreden bij het laden van de uitnodigingen. Probeer het opnieuw."
@@ -18010,7 +18023,7 @@ msgstr "Deze categorie bevat al het maximum van {MAX_CHANNELS_PER_CATEGORY} kana
msgid "This channel does not support webhooks."
msgstr "Dit kanaal ondersteunt geen webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Dit kanaal heeft nog geen uitnodigingslinks. Maak er een om mensen uit te nodigen voor dit kanaal."
@@ -18043,7 +18056,7 @@ msgstr "Dit kanaal kan inhoud bevatten die niet veilig is voor werk of die voor
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Deze code is nog niet gebruikt. Voltooi eerst de inlog in je browser."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Deze community heeft nog geen uitnodigingslinks. Ga naar een kanaal en maak een uitnodiging om mensen uit te nodigen."
@@ -18180,8 +18193,8 @@ msgstr "Zo zien berichten eruit"
msgid "This is not the channel you're looking for."
msgstr "Dit is niet het kanaal dat je zoekt."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Dit is niet de community die je zoekt."
@@ -18300,9 +18313,9 @@ msgstr "Dit spraakkanaal heeft zijn gebruikerslimiet bereikt. Probeer het later
msgid "This was a @silent message."
msgstr "Dit was een @stil bericht."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Dit zal een scheur in het ruimte-tijdcontinuüm veroorzaken en kan niet ongedaan worden gemaakt."
@@ -18371,7 +18384,7 @@ msgstr "Time-out tot {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Time-out"
@@ -18659,8 +18672,7 @@ msgstr "Probeer een andere naam of gebruik @ / # / ! / * voorvoegsels om resulta
msgid "Try a different search query"
msgstr "Probeer een andere zoekopdracht"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Probeer een andere zoekterm"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Probeer een andere zoekterm of filter"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Probeer opnieuw"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Losmaken"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Niet-ondersteund bestandsformaat. Gebruik JPG, PNG, GIF, WebP of MP4."
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Embeds weergeven"
@@ -20573,8 +20585,8 @@ msgstr "We hebben een link gemaild om deze login te autoriseren. Open je inbox v
msgid "We failed to retrieve the full information about this user at this time."
msgstr "We konden de volledige informatie over deze gebruiker op dit moment niet ophalen."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "We hebben het verprutst! Houd vol, we werken eraan."
@@ -21084,7 +21096,7 @@ msgstr "Je kunt niet met reacties in zoekresultaten interacteren omdat dit het r
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Je kunt niet deelnemen terwijl je een timeout hebt."
@@ -21169,7 +21181,7 @@ msgstr "Je kunt jezelf niet ontdoof maken omdat je door een moderator gedoofd be
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Je kunt jezelf niet ontmuten omdat je door een moderator gemute bent."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Je hebt geen toegang tot het kanaal waar dit bericht is verzonden."
@@ -21177,7 +21189,7 @@ msgstr "Je hebt geen toegang tot het kanaal waar dit bericht is verzonden."
msgid "You do not have permission to send messages in this channel."
msgstr "Je hebt geen toestemming om berichten te sturen in dit kanaal."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Je hebt geen toegang tot kanalen in deze community."
@@ -21468,7 +21480,7 @@ msgstr "Je bent in het spraakkanaal"
msgid "You're sending messages too quickly"
msgstr "Je stuurt berichten te snel"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Je bekijkt oudere berichten"
diff --git a/fluxer_app/src/locales/no/messages.po b/fluxer_app/src/locales/no/messages.po
index ffdbcf0e..67e4e271 100644
--- a/fluxer_app/src/locales/no/messages.po
+++ b/fluxer_app/src/locales/no/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Kontroller når meldingsforhåndsvisninger vises i DM-listen"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Ofte brukt"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... slå på kompakt modus. Kult!"
msgid "(edited)"
msgstr "(redigert)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(klarte ikke å laste)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> startet en samtale."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> er for øyeblikket kun tilgjengelig for Fluxer-ansatte"
@@ -1647,7 +1653,7 @@ msgstr "Legg til skjema for telefonnummer"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animerte emoji ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Er du sikker på at du vil deaktivere SMS to-faktorautentisering? Dette gjør kontoen mindre sikker."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Er du sikker på at du vil aktivere invitasjoner? Dette lar brukere bli med i fellesskapet via invitasjonslenker igjen."
@@ -2548,7 +2554,7 @@ msgstr "Er du sikker på at du vil oppheve utestengelsen for <0>{0}0>? De kan
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Er du sikker på at du vil oppheve denne invitasjonen? Dette kan ikke angres."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Er du sikker på at du vil skjule alle koblingsinnbygg i denne meldingen? Dette vil skjule alle innbygg fra meldingen."
@@ -3159,7 +3165,7 @@ msgstr "Bokmerkegrense nådd"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Bokmerk melding"
@@ -3432,7 +3438,7 @@ msgstr "Kamerainnstillinger"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Endre gruppekallenavnet mitt"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Endre kallenavn"
@@ -3775,7 +3781,7 @@ msgstr "Kanal"
msgid "Channel Access"
msgstr "Kanaltilgang"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Kanaltilgang nektet"
@@ -4142,7 +4148,7 @@ msgstr "Krev kontoen din for å generere beta-koder."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Krev kontoen din for å bli med i denne stemmekanalen."
@@ -4649,8 +4655,8 @@ msgstr "Fellesskapet fremmer eller muliggjør ulovlige aktiviteter"
msgid "Community Settings"
msgstr "Fellesskapsinnstillinger"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Fellesskapet er midlertidig utilgjengelig"
@@ -5179,20 +5185,20 @@ msgstr "Kopier lenke"
msgid "Copy Media"
msgstr "Kopier media"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Kopier melding"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Kopier meldings-ID"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Kopier meldingslenke"
@@ -5388,8 +5394,8 @@ msgstr "Opprett skjema for favorittkategori"
msgid "Create Group DM"
msgstr "Opprett gruppesamtale"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Lag invitasjon"
@@ -5978,11 +5984,11 @@ msgstr "Standard er å animere ved interaksjon på mobil for å spare batteri."
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Standard er slått av på mobil for å spare batteri og data."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Slett emoji"
msgid "Delete media"
msgstr "Slett media"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Slett melding"
@@ -6595,7 +6601,7 @@ msgstr "Diskusjon om eller promotering av ulovlige aktiviteter"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Rediger media"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Rediger melding"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojier"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Gi tillatelse til inputovervåking"
msgid "Enable Invites"
msgstr "Aktiver invitasjoner"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Aktiver invitasjoner på nytt"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Aktiver invitasjoner for dette fellesskapet"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Kunne ikke laste gavebeholdning"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Kunne ikke laste invitasjoner"
@@ -8769,7 +8775,7 @@ msgstr "Glemt passordet ditt?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Spol frem"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Invitasjoner pausert"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Invitasjoner til <0>{0}0> er for øyeblikket deaktivert"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Bli med i et fellesskap"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Bli med i et fellesskap med klistremerker for å komme i gang!"
@@ -10588,7 +10594,7 @@ msgstr "Hopp"
msgid "Jump straight to the app to continue."
msgstr "Gå rett til appen for å fortsette."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Hopp til {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Hopp til eldste uleste melding"
msgid "Jump to page"
msgstr "Hopp til side"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Hopp til nåtid"
@@ -10612,15 +10618,15 @@ msgstr "Hopp til nåtid"
msgid "Jump to the channel of the active call"
msgstr "Hopp til kanalen for den aktive samtalen"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Hopp til den lenkede kanalen"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Hopp til den lenkede meldingen"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Hopp til meldingen i {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Laster mer..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Laster plassholder"
@@ -11256,7 +11262,7 @@ msgstr "Administrer uttrykkspakker"
msgid "Manage feature flags"
msgstr "Administrer funksjonsflagg"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Administrer serverfunksjoner"
@@ -11353,7 +11359,7 @@ msgstr "Merk som spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Merk som ulest"
@@ -11822,7 +11828,7 @@ msgstr "Meldinger og media"
msgid "Messages Deleted"
msgstr "Meldinger slettet"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Meldinger kunne ikke lastes"
@@ -12471,7 +12477,7 @@ msgstr "Kallenavnet kan ikke være mer enn 32 tegn"
msgid "Nickname updated"
msgstr "Kallenavn oppdatert"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Ingen tilgjengelige kanaler"
@@ -12575,6 +12581,10 @@ msgstr "Ingen e-postadresse angitt"
msgid "No emojis found matching your search."
msgstr "Ingen emojier samsvarer med søket."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Ingen emojier samsvarer med søket ditt"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Ingen installerte pakker ennå."
msgid "No invite background"
msgstr "Ingen invitasjonsbakgrunn"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Ingen invitasjonslenker"
@@ -12768,8 +12778,8 @@ msgstr "Ingen innstillinger funnet"
msgid "No specific scopes requested."
msgstr "Ingen spesifikke omfang forespurt."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Ingen klistremerker tilgjengelig"
@@ -12777,8 +12787,7 @@ msgstr "Ingen klistremerker tilgjengelig"
msgid "No stickers found"
msgstr "Ingen klistremerker funnet"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Ingen klistremerker funnet"
@@ -12786,6 +12795,10 @@ msgstr "Ingen klistremerker funnet"
msgid "No stickers found matching your search."
msgstr "Ingen klistremerker samsvarer med søket ditt."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Ingen klistremerker samsvarer med søket ditt"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Ingen systemkanal"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Ok"
@@ -13764,7 +13777,7 @@ msgstr "Fest det. Fest det godt."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Fest melding"
@@ -14678,7 +14691,7 @@ msgstr "Fjern banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Fjern klistremerke"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Fjern tidsavbrudd"
@@ -14996,7 +15009,7 @@ msgstr "Erstatt din egendefinerte bakgrunn"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Svar"
@@ -15249,11 +15262,11 @@ msgstr "Abonner igjen"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rolle: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Roller"
@@ -17529,22 +17542,22 @@ msgstr "Undertrykk alle rollenvnevnelser"
msgid "Suppress All Role @mentions"
msgstr "Undertrykk alle rollenvnevnelser"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Undertrykk innebygg"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Undertrykk innebygde elementer"
@@ -17822,8 +17835,8 @@ msgstr "Botten er lagt til."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Kanalen du leter etter kan være slettet eller du har ikke tilgang."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Fellesskapet du leter etter kan være slettet eller du har ikke tilgang."
@@ -17921,11 +17934,11 @@ msgstr "Det finnes ingen webhooks for denne kanalen. Lag en webhook slik at ekst
msgid "There was an error loading the emojis. Please try again."
msgstr "Det oppsto en feil ved lasting av emojier. Prøv igjen."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Det oppsto en feil ved lasting av invitasjonslenker for denne kanalen. Prøv igjen."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Det oppsto en feil ved lasting av invitasjoner. Prøv igjen."
@@ -18010,7 +18023,7 @@ msgstr "Denne kategorien inneholder allerede maksimum {MAX_CHANNELS_PER_CATEGORY
msgid "This channel does not support webhooks."
msgstr "Denne kanalen støtter ikke webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Denne kanalen har ingen invitasjonslenker enda. Lag en for å invitere folk hit."
@@ -18043,7 +18056,7 @@ msgstr "Denne kanalen kan inneholde innhold som ikke er egnet for arbeid eller s
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Denne koden er ikke brukt ennå. Fullfør pålogging i nettleseren først."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Dette fellesskapet har ingen invitasjonslenker enda. Gå til en kanal og lag en invitasjon for å invitere folk."
@@ -18180,8 +18193,8 @@ msgstr "Slik ser meldingene ut"
msgid "This is not the channel you're looking for."
msgstr "Dette er ikke kanalen du leter etter."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Dette er ikke fellesskapet du leter etter."
@@ -18300,9 +18313,9 @@ msgstr "Denne talemeldingskanalen har nådd brukergrensen. Prøv igjen senere el
msgid "This was a @silent message."
msgstr "Dette var en @silent-melding."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Dette vil skape et brudd i tid-rom-kontinuet og kan ikke angres."
@@ -18371,7 +18384,7 @@ msgstr "Utestengt til {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Tidsavbrudd"
@@ -18659,8 +18672,7 @@ msgstr "Prøv et annet navn eller bruk @ / # / ! / * som prefiks for å filtrere
msgid "Try a different search query"
msgstr "Prøv en annen søkeforespørsel"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Prøv et annet søkeord"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Prøv et annet søkeord eller filter"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Prøv igjen"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Fjern festing"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Ustøttet filformat. Bruk JPG, PNG, GIF, WebP eller MP4."
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Vis innebygde elementer igjen"
@@ -20573,8 +20585,8 @@ msgstr "Vi sendte en lenke på e-post for å autorisere denne påloggingen. Sjek
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Vi klarte ikke å hente fullstendig informasjon om denne brukeren nå."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Vi rotet det til! Hold ut, vi jobber med det."
@@ -21084,7 +21096,7 @@ msgstr "Du kan ikke samhandle med reaksjoner i søkeresultater, da det kan forst
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Du kan ikke bli med mens du er i timeout."
@@ -21169,7 +21181,7 @@ msgstr "Du kan ikke slå på lyden igjen fordi du har blitt dempet av en moderat
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Du kan ikke fjerne lyddemping fordi du har blitt dempet av en moderator."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Du har ikke tilgang til kanalen der denne meldingen ble sendt."
@@ -21177,7 +21189,7 @@ msgstr "Du har ikke tilgang til kanalen der denne meldingen ble sendt."
msgid "You do not have permission to send messages in this channel."
msgstr "Du har ikke tillatelse til å sende meldinger i denne kanalen."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Du har ikke tilgang til noen kanaler i dette fellesskapet."
@@ -21468,7 +21480,7 @@ msgstr "Du er i stemmekanalen"
msgid "You're sending messages too quickly"
msgstr "Du sender meldinger for raskt"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Du ser på eldre meldinger"
diff --git a/fluxer_app/src/locales/pl/messages.po b/fluxer_app/src/locales/pl/messages.po
index e4eb3fa9..29c44627 100644
--- a/fluxer_app/src/locales/pl/messages.po
+++ b/fluxer_app/src/locales/pl/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Kontroluj, kiedy podglądy wiadomości są wyświetlane na liście DM"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Często używane"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... włącz tryb zwarty. Super!"
msgid "(edited)"
msgstr "(edytowano)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(nie udało się załadować)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> rozpoczął rozmowę."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> jest obecnie dostępny tylko dla pracowników Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Formularz dodawania numeru telefonu"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animowane emoji ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Czy na pewno chcesz wyłączyć uwierzytelnianie dwuskładnikowe SMS? Konto stanie się mniej bezpieczne."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Czy na pewno chcesz włączyć zaproszenia? Użytkownicy będą mogli ponownie dołączać do tej społeczności przez linki zaproszeniowe."
@@ -2548,7 +2554,7 @@ msgstr "Czy na pewno chcesz cofnąć bana dla <0>{0}0>? Będzie mógł ponowni
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Czy na pewno chcesz cofnąć to zaproszenie? Tej czynności nie da się cofnąć."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Czy na pewno chcesz ukryć wszystkie osadzenia linków w tej wiadomości? Wszystkie osadzenia zostaną ukryte."
@@ -3159,7 +3165,7 @@ msgstr "Osiągnięto limit zakładek"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Zapisz wiadomość"
@@ -3432,7 +3438,7 @@ msgstr "Ustawienia kamery"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Zmień moje przezwisko w grupie"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Zmień przezwisko"
@@ -3775,7 +3781,7 @@ msgstr "Kanał"
msgid "Channel Access"
msgstr "Dostęp do kanału"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Dostęp do kanału zabroniony"
@@ -4142,7 +4148,7 @@ msgstr "Zgłoś swoje konto, aby wygenerować kody beta."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Przypisz swoje konto, aby dołączyć do tego kanału głosowego."
@@ -4649,8 +4655,8 @@ msgstr "Społeczność promuje lub ułatwia działalność nielegalną"
msgid "Community Settings"
msgstr "Ustawienia społeczności"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Społeczność chwilowo niedostępna"
@@ -5179,20 +5185,20 @@ msgstr "Kopiuj link"
msgid "Copy Media"
msgstr "Kopiuj media"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Kopiuj wiadomość"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Kopiuj identyfikator wiadomości"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Kopiuj link wiadomości"
@@ -5388,8 +5394,8 @@ msgstr "Formularz tworzenia ulubionej kategorii"
msgid "Create Group DM"
msgstr "Utwórz grupowe DM"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Utwórz zaproszenie"
@@ -5978,11 +5984,11 @@ msgstr "Domyślnie animuje się przy interakcji na urządzeniach mobilnych, aby
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Domyślnie wyłączone na urządzeniach mobilnych, aby oszczędzać baterię i dane."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Usuń emoji"
msgid "Delete media"
msgstr "Usuń multimedia"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Usuń wiadomość"
@@ -6595,7 +6601,7 @@ msgstr "Dyskusja lub promowanie nielegalnej działalności"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Edytuj multimedia"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Edytuj wiadomość"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emoji"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Włącz uprawnienie monitorowania wejść"
msgid "Enable Invites"
msgstr "Włącz zaproszenia"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Włącz ponownie zaproszenia"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Włącz zaproszenia dla tej społeczności"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Nie udało się załadować zapasów prezentów"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Nie udało się załadować zaproszeń"
@@ -8769,7 +8775,7 @@ msgstr "Nie pamiętasz hasła?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Przewiń do przodu"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Zaproszenia wstrzymane"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Zaproszenia do <0>{0}0> są obecnie wyłączone"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Dołącz do społeczności"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Dołącz do społeczności z naklejkami, aby zacząć!"
@@ -10588,7 +10594,7 @@ msgstr "Przejdź"
msgid "Jump straight to the app to continue."
msgstr "Przejdź bezpośrednio do aplikacji, aby kontynuować."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Przejdź do {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Przejdź do najstarszej nieprzeczytanej wiadomości"
msgid "Jump to page"
msgstr "Przejdź do strony"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Przejdź do teraz"
@@ -10612,15 +10618,15 @@ msgstr "Przejdź do teraz"
msgid "Jump to the channel of the active call"
msgstr "Przejdź do kanału aktywnej rozmowy"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Przejdź do połączonego kanału"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Przejdź do powiązanej wiadomości"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Przejdź do wiadomości w {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Ładowanie kolejnych..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Ładowanie zastępnika"
@@ -11256,7 +11262,7 @@ msgstr "Zarządzaj paczkami wyrażeń"
msgid "Manage feature flags"
msgstr "Zarządzaj flagami funkcji"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Zarządzaj funkcjami gildii"
@@ -11353,7 +11359,7 @@ msgstr "Oznacz jako spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Oznacz jako nieprzeczytane"
@@ -11822,7 +11828,7 @@ msgstr "Wiadomości i media"
msgid "Messages Deleted"
msgstr "Wiadomości usunięte"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Nie udało się załadować wiadomości"
@@ -12471,7 +12477,7 @@ msgstr "Nick nie może przekraczać 32 znaków"
msgid "Nickname updated"
msgstr "Nick zaktualizowany"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Brak dostępnych kanałów"
@@ -12575,6 +12581,10 @@ msgstr "Brak ustawionego adresu e-mail"
msgid "No emojis found matching your search."
msgstr "Nie znaleziono emoji pasujących do wyszukiwania."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Brak emoji pasujących do Twojego wyszukiwania"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Jeszcze brak zainstalowanych pakietów."
msgid "No invite background"
msgstr "Brak tła zaproszenia"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Brak linków zaproszeń"
@@ -12768,8 +12778,8 @@ msgstr "Nie znaleziono ustawień"
msgid "No specific scopes requested."
msgstr "Nie dodano konkretnych zakresów."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Brak dostępnych naklejek"
@@ -12777,8 +12787,7 @@ msgstr "Brak dostępnych naklejek"
msgid "No stickers found"
msgstr "Nie znaleziono naklejek"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Nie znaleziono naklejek"
@@ -12786,6 +12795,10 @@ msgstr "Nie znaleziono naklejek"
msgid "No stickers found matching your search."
msgstr "Nie znaleziono naklejek pasujących do wyszukiwania."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Brak naklejek pasujących do Twojego wyszukiwania"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Brak kanału systemowego"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Ok"
@@ -13764,7 +13777,7 @@ msgstr "Przypnij to. Przyzwoicie przypnij."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Przypnij wiadomość"
@@ -14678,7 +14691,7 @@ msgstr "Usuń baner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Usuń naklejkę"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Usuń timeout"
@@ -14996,7 +15009,7 @@ msgstr "Zastąp swoje niestandardowe tło"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Odpowiedz"
@@ -15249,11 +15262,11 @@ msgstr "Zasubskrybuj ponownie"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rola: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Role"
@@ -17529,22 +17542,22 @@ msgstr "Ukryj wszystkie wzmianki ról"
msgid "Suppress All Role @mentions"
msgstr "Ukryj wszystkie wzmianki ról"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Ukryj osadzenia"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Ukryj osadzenia"
@@ -17822,8 +17835,8 @@ msgstr "Bot został dodany."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Kanał, którego szukasz, mógł zostać usunięty lub możesz nie mieć do niego dostępu."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Społeczność, której szukasz, mogła zostać usunięta lub możesz nie mieć do niej dostępu."
@@ -17921,11 +17934,11 @@ msgstr "Ten kanał nie ma skonfigurowanych webhooków. Utwórz webhook, aby zewn
msgid "There was an error loading the emojis. Please try again."
msgstr "Wystąpił błąd podczas ładowania emoji. Spróbuj ponownie."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Wystąpił błąd podczas ładowania linków zaproszeń do tego kanału. Spróbuj ponownie."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Wystąpił błąd podczas ładowania zaproszeń. Spróbuj ponownie."
@@ -18010,7 +18023,7 @@ msgstr "Ta kategoria już zawiera maksymalnie {MAX_CHANNELS_PER_CATEGORY} kanał
msgid "This channel does not support webhooks."
msgstr "Ten kanał nie obsługuje webhooków."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Ten kanał jeszcze nie ma linków zaproszeń. Utwórz jeden, aby zaprosić ludzi na ten kanał."
@@ -18043,7 +18056,7 @@ msgstr "Ten kanał może zawierać treści nieodpowiednie w pracy lub dla niekt
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Ten kod nie był jeszcze użyty. Najpierw zakończ logowanie w przeglądarce."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Ta społeczność nie ma jeszcze linków zaproszeń. Przejdź do kanału i utwórz zaproszenie."
@@ -18180,8 +18193,8 @@ msgstr "Tak wyglądają wiadomości"
msgid "This is not the channel you're looking for."
msgstr "To nie jest kanał, którego szukasz."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "To nie jest społeczność, której szukasz."
@@ -18300,9 +18313,9 @@ msgstr "Ten kanał głosowy osiągnął limit użytkowników. Spróbuj ponownie
msgid "This was a @silent message."
msgstr "To była wiadomość @silent."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "To stworzy rozdarcie w kontinuum czasoprzestrzennym i nie da się tego cofnąć."
@@ -18371,7 +18384,7 @@ msgstr "W zawieszeniu do {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Timeout"
@@ -18659,8 +18672,7 @@ msgstr "Spróbuj innej nazwy lub użyj prefiksów @ / # / ! / * do filtrowania w
msgid "Try a different search query"
msgstr "Spróbuj innego zapytania"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Spróbuj innego terminu wyszukiwania"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Spróbuj innego terminu wyszukiwania lub filtru"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Spróbuj ponownie"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Odepnij to"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Nieobsługiwany format pliku. Użyj JPG, PNG, GIF, WebP lub MP4."
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Przywróć osadzenia"
@@ -20573,8 +20585,8 @@ msgstr "Wysłaliśmy e-mailem link do autoryzacji tego logowania. Sprawdź skrzy
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Nie udało się teraz pobrać pełnych informacji o tym użytkowniku."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Coś się popsuło! Trzymaj się, pracujemy nad tym."
@@ -21084,7 +21096,7 @@ msgstr "Nie możesz wchodzić w interakcje z reakcjami w wynikach wyszukiwania,
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Nie możesz dołączyć, gdy masz timeout."
@@ -21169,7 +21181,7 @@ msgstr "Nie możesz wyłączyć głuchego, bo został on nałożony przez modera
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Nie możesz wyłączyć wyciszenia, bo zostało nałożone przez moderatora."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Nie masz dostępu do kanału, na którym wysłano tę wiadomość."
@@ -21177,7 +21189,7 @@ msgstr "Nie masz dostępu do kanału, na którym wysłano tę wiadomość."
msgid "You do not have permission to send messages in this channel."
msgstr "Nie masz uprawnień do wysyłania wiadomości na tym kanale."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Nie masz dostępu do żadnych kanałów w tej społeczności."
@@ -21468,7 +21480,7 @@ msgstr "Jesteś na kanale głosowym"
msgid "You're sending messages too quickly"
msgstr "Wysyłasz wiadomości zbyt szybko"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Oglądasz starsze wiadomości"
diff --git a/fluxer_app/src/locales/pt-BR/messages.po b/fluxer_app/src/locales/pt-BR/messages.po
index e88be1ea..e8f12416 100644
--- a/fluxer_app/src/locales/pt-BR/messages.po
+++ b/fluxer_app/src/locales/pt-BR/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Controle quando as visualizações de mensagens são mostradas na lista de DMs"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Frequentemente Usado"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... ativar modo denso. Legal!"
msgid "(edited)"
msgstr "(editado)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(falha ao carregar)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> iniciou uma chamada."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> atualmente só é acessível para membros da equipe do Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Formulário para adicionar número de telefone"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Emoji animado ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Tem certeza de que deseja desativar a autenticação de dois fatores por SMS? Isso deixará sua conta menos segura."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Tem certeza de que deseja ativar os convites? Isso permitirá que os usuários entrem nesta comunidade novamente através de links de convite."
@@ -2548,7 +2554,7 @@ msgstr "Tem certeza de que deseja revogar o banimento de <0>{0}0>? Eles poder
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Tem certeza de que deseja revogar este convite? Esta ação não pode ser desfeita."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Tem certeza de que deseja suprimir todas as incorporações de links nesta mensagem? Esta ação ocultará todas as incorporações desta mensagem."
@@ -3159,7 +3165,7 @@ msgstr "Limite de Favoritos Atingido"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Favoritar Mensagem"
@@ -3432,7 +3438,7 @@ msgstr "Configurações da câmera"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Alterar meu apelido no grupo"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Alterar apelido"
@@ -3775,7 +3781,7 @@ msgstr "Canal"
msgid "Channel Access"
msgstr "Acesso ao Canal"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Acesso ao Canal Negado"
@@ -4142,7 +4148,7 @@ msgstr "Reivindique sua conta para gerar códigos beta."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Reivindique sua conta para entrar neste canal de voz."
@@ -4649,8 +4655,8 @@ msgstr "A comunidade promove ou facilita atividades ilegais"
msgid "Community Settings"
msgstr "Configurações da Comunidade"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Comunidade temporariamente indisponível"
@@ -5179,20 +5185,20 @@ msgstr "Copiar link"
msgid "Copy Media"
msgstr "Copiar mídia"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Copiar mensagem"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Copiar ID da mensagem"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Copiar link da mensagem"
@@ -5388,8 +5394,8 @@ msgstr "Criar formulário de categoria favorita"
msgid "Create Group DM"
msgstr "Criar DM em grupo"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Criar convite"
@@ -5978,11 +5984,11 @@ msgstr "Por padrão, anima na interação no celular para preservar a bateria."
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Por padrão, desativado no celular para preservar a bateria e o uso de dados."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Excluir Emoji"
msgid "Delete media"
msgstr "Excluir mídia"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Excluir Mensagem"
@@ -6595,7 +6601,7 @@ msgstr "Discussão ou promoção de atividades ilegais"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Editar mídia"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Editar Mensagem"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojis"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Ativar permissão de Monitoramento de Entrada"
msgid "Enable Invites"
msgstr "Ativar Convites"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Ativar Convites Novamente"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Ativar convites para esta comunidade"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Falha ao carregar inventário de presentes"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Falha ao carregar convites"
@@ -8769,7 +8775,7 @@ msgstr "Esqueceu sua senha?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Avançar"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Convites Pausados"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Os convites para <0>{0}0> estão desativados no momento"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Entrar em uma Comunidade"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Entre em uma comunidade com adesivos para começar!"
@@ -10588,7 +10594,7 @@ msgstr "Pular"
msgid "Jump straight to the app to continue."
msgstr "Vá direto para o aplicativo para continuar."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Pular para {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Pular para a Mensagem Não Lida Mais Antiga"
msgid "Jump to page"
msgstr "Pular para a página"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Pular para o Presente"
@@ -10612,15 +10618,15 @@ msgstr "Pular para o Presente"
msgid "Jump to the channel of the active call"
msgstr "Pular para o canal da chamada ativa"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Pular para o canal vinculado"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Pular para a mensagem vinculada"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Pular para a mensagem em {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Carregando mais..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Carregando espaço reservado"
@@ -11256,7 +11262,7 @@ msgstr "Gerenciar pacotes de expressões"
msgid "Manage feature flags"
msgstr "Gerenciar flags de funcionalidade"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Gerenciar Recursos da Guilda"
@@ -11353,7 +11359,7 @@ msgstr "Marcar como spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Marcar como Não Lido"
@@ -11822,7 +11828,7 @@ msgstr "Mensagens e Mídia"
msgid "Messages Deleted"
msgstr "Mensagens Excluídas"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Falha ao carregar mensagens"
@@ -12471,7 +12477,7 @@ msgstr "O apelido não pode exceder 32 caracteres"
msgid "Nickname updated"
msgstr "Apelido atualizado"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Nenhum canal acessível"
@@ -12575,6 +12581,10 @@ msgstr "Nenhum endereço de e-mail definido"
msgid "No emojis found matching your search."
msgstr "Nenhum emoji encontrado correspondendo à sua pesquisa."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Nenhum emoji corresponde à sua busca"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Nenhum pacote instalado ainda."
msgid "No invite background"
msgstr "Sem plano de fundo do convite"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Nenhum link de convite"
@@ -12768,8 +12778,8 @@ msgstr "Nenhuma configuração encontrada"
msgid "No specific scopes requested."
msgstr "Nenhum escopo específico solicitado."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Nenhum adesivo disponível"
@@ -12777,8 +12787,7 @@ msgstr "Nenhum adesivo disponível"
msgid "No stickers found"
msgstr "Nenhum adesivo encontrado"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Nenhum adesivo encontrado"
@@ -12786,6 +12795,10 @@ msgstr "Nenhum adesivo encontrado"
msgid "No stickers found matching your search."
msgstr "Nenhum adesivo encontrado correspondente à sua pesquisa."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Nenhum adesivo corresponde à sua busca"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Nenhum canal do sistema"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Ok"
@@ -13764,7 +13777,7 @@ msgstr "Fixar. Fixar bem."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Fixar Mensagem"
@@ -14678,7 +14691,7 @@ msgstr "Remover Banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Remover adesivo"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Remover Timeout"
@@ -14996,7 +15009,7 @@ msgstr "Substituir seu plano de fundo personalizado"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Responder"
@@ -15249,11 +15262,11 @@ msgstr "Reassinar"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Cargo: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Cargos"
@@ -17529,22 +17542,22 @@ msgstr "Suprimir todas as @menções de cargos"
msgid "Suppress All Role @mentions"
msgstr "Suprimir Todas as @Menções de Cargos"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Suprimir incorporações"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Suprimir Incorporações"
@@ -17822,8 +17835,8 @@ msgstr "O bot foi adicionado."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "O canal que você está procurando pode ter sido excluído ou você pode não ter acesso a ele."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "A comunidade que você está procurando pode ter sido excluída ou você pode não ter acesso a ela."
@@ -17921,11 +17934,11 @@ msgstr "Não há webhooks configurados para este canal. Crie um webhook para per
msgid "There was an error loading the emojis. Please try again."
msgstr "Ocorreu um erro ao carregar os emojis. Por favor, tente novamente."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Ocorreu um erro ao carregar os links de convite para este canal. Por favor, tente novamente."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Ocorreu um erro ao carregar os convites. Por favor, tente novamente."
@@ -18010,7 +18023,7 @@ msgstr "Esta categoria já contém o máximo de {MAX_CHANNELS_PER_CATEGORY} cana
msgid "This channel does not support webhooks."
msgstr "Este canal não suporta webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Este canal ainda não tem nenhum link de convite. Crie um para convidar pessoas para este canal."
@@ -18043,7 +18056,7 @@ msgstr "Este canal pode conter conteúdo não seguro para o trabalho ou que pode
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Este código ainda não foi usado. Por favor, complete o login no seu navegador primeiro."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Esta comunidade ainda não tem nenhum link de convite. Vá para um canal e crie um convite para convidar pessoas."
@@ -18180,8 +18193,8 @@ msgstr "É assim que as mensagens aparecem"
msgid "This is not the channel you're looking for."
msgstr "Este não é o canal que você está procurando."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Esta não é a comunidade que você está procurando."
@@ -18300,9 +18313,9 @@ msgstr "Este canal de voz atingiu seu limite de usuários. Tente novamente mais
msgid "This was a @silent message."
msgstr "Esta foi uma mensagem @silent."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Isso criará uma fenda no continuum espaço-tempo e não poderá ser desfeito."
@@ -18371,7 +18384,7 @@ msgstr "Tempo esgotado até {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Tempo esgotado"
@@ -18659,8 +18672,7 @@ msgstr "Tente um nome diferente ou use os prefixos @ / # / ! / * para filtrar os
msgid "Try a different search query"
msgstr "Tente uma consulta de pesquisa diferente"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Tente um termo de pesquisa diferente"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Tente um termo de pesquisa ou filtro diferente"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Tente novamente"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Desfixar"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Formato de arquivo não suportado. Use JPG, PNG, GIF, WebP ou MP4."
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Mostrar incorporações"
@@ -20573,8 +20585,8 @@ msgstr "Enviamos um link por e-mail para autorizar este login. Por favor, abra s
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Falhamos em recuperar as informações completas sobre este usuário no momento."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Deu um fluxo! Aguenta firme, estamos trabalhando nisso."
@@ -21084,7 +21096,7 @@ msgstr "Você não pode interagir com reações nos resultados da pesquisa, pois
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Você não pode entrar enquanto estiver de castigo."
@@ -21169,7 +21181,7 @@ msgstr "Você não pode se reaudibilizar porque foi ensurdecido por um moderador
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Você não pode se desmutar porque foi silenciado por um moderador."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Você não tem acesso ao canal onde esta mensagem foi enviada."
@@ -21177,7 +21189,7 @@ msgstr "Você não tem acesso ao canal onde esta mensagem foi enviada."
msgid "You do not have permission to send messages in this channel."
msgstr "Você não tem permissão para enviar mensagens neste canal."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Você não tem acesso a nenhum canal nesta comunidade."
@@ -21468,7 +21480,7 @@ msgstr "Você está no canal de voz"
msgid "You're sending messages too quickly"
msgstr "Você está enviando mensagens muito rapidamente"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Você está visualizando mensagens mais antigas"
diff --git a/fluxer_app/src/locales/ro/messages.po b/fluxer_app/src/locales/ro/messages.po
index 2e74512d..34632a00 100644
--- a/fluxer_app/src/locales/ro/messages.po
+++ b/fluxer_app/src/locales/ro/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Controlează când sunt afișate previzualizările mesajelor în lista de DM"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Folosit frecvent"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... activează modul dens. Super!"
msgid "(edited)"
msgstr "(editat)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(încărcare eșuată)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> a inițiat un apel."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> este momentan accesibil doar angajaților Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Formular adăugare număr de telefon"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Emoji animate ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Ești sigur că vrei să dezactivezi autentificarea cu doi factori prin SMS? Contul tău va deveni mai puțin sigur."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Ești sigur că vrei să activezi invitațiile? Acest lucru va permite din nou utilizatorilor să se alăture comunității prin linkuri de invitație."
@@ -2548,7 +2554,7 @@ msgstr "Ești sigur că vrei să revoci interdicția pentru <0>{0}0>? Poate re
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Ești sigur că vrei să revoci această invitație? Această acțiune nu poate fi anulată."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Ești sigur că vrei să ascunzi toate embedurile din acest mesaj? Această acțiune va ascunde toate embedurile acestui mesaj."
@@ -3159,7 +3165,7 @@ msgstr "Limită de marcaje atinsă"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Marchează mesaj"
@@ -3432,7 +3438,7 @@ msgstr "Setări cameră"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Schimbă-mi porecla din grup"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Schimbă porecla"
@@ -3775,7 +3781,7 @@ msgstr "Canal"
msgid "Channel Access"
msgstr "Acces canal"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Acces canal refuzat"
@@ -4142,7 +4148,7 @@ msgstr "Revendică-ți contul pentru a genera coduri beta."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Revendică-ți contul pentru a te alătura acestui canal vocal."
@@ -4649,8 +4655,8 @@ msgstr "Comunitatea promovează sau facilitează activități ilegale"
msgid "Community Settings"
msgstr "Setări comunitate"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Comunitatea este temporar indisponibilă"
@@ -5179,20 +5185,20 @@ msgstr "Copiază linkul"
msgid "Copy Media"
msgstr "Copiază media"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Copiază mesajul"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Copiază ID-ul mesajului"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Copiază linkul mesajului"
@@ -5388,8 +5394,8 @@ msgstr "Formular pentru categoria preferată"
msgid "Create Group DM"
msgstr "Creează DM de grup"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Creează invitație"
@@ -5978,11 +5984,11 @@ msgstr "Implicit animă la interacțiune pe mobil pentru a conserva bateria."
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Implicit este dezactivat pe mobil pentru a conserva bateria și datele."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Șterge emojiul"
msgid "Delete media"
msgstr "Șterge media"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Șterge mesajul"
@@ -6595,7 +6601,7 @@ msgstr "Discuție sau promovare a activităților ilegale"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Editează media"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Editează mesajul"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojis"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Activează permisiunea de monitorizare a intrării"
msgid "Enable Invites"
msgstr "Activează invitațiile"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Activează din nou invitațiile"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Activează invitațiile pentru această comunitate"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Nu s-a putut încărca inventarul cadourilor"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Nu s-au putut încărca invitațiile"
@@ -8769,7 +8775,7 @@ msgstr "Ți-ai uitat parola?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Înainte"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Invitații întrerupte"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Invitațiile către <0>{0}0> sunt momentan dezactivate"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Alătură-te unei comunități"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Alătură-te unei comunități cu stickere pentru a începe!"
@@ -10588,7 +10594,7 @@ msgstr "Salt"
msgid "Jump straight to the app to continue."
msgstr "Mergi direct la aplicație ca să continui."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Du-te la {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Du-te la cel mai vechi mesaj necitit"
msgid "Jump to page"
msgstr "Salt la pagină"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Salt la prezent"
@@ -10612,15 +10618,15 @@ msgstr "Salt la prezent"
msgid "Jump to the channel of the active call"
msgstr "Du-te la canalul apelului activ"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Du-te la canalul conectat"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Du-te la mesajul conectat"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Du-te la mesajul din {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Se încarcă mai mult..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Indicator de încărcare"
@@ -11256,7 +11262,7 @@ msgstr "Gestionează pachetele de expresii"
msgid "Manage feature flags"
msgstr "Gestionează flagurile de funcționalități"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Gestionează funcțiile comunității"
@@ -11353,7 +11359,7 @@ msgstr "Marchează ca spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Marchează ca necitit"
@@ -11822,7 +11828,7 @@ msgstr "Mesaje și media"
msgid "Messages Deleted"
msgstr "Mesaje șterse"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Nu s-au putut încărca mesajele"
@@ -12471,7 +12477,7 @@ msgstr "Porecla nu trebuie să depășească 32 de caractere"
msgid "Nickname updated"
msgstr "Porecla a fost actualizată"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Nu există canale accesibile"
@@ -12575,6 +12581,10 @@ msgstr "Nu a fost setată nicio adresă de email"
msgid "No emojis found matching your search."
msgstr "Nu s-au găsit emoji-uri care să corespundă căutării tale."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Niciun emoji nu se potrivește cu căutarea ta"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Încă nu există pachete instalate."
msgid "No invite background"
msgstr "Fără fundal pentru invitație"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Fără linkuri de invitație"
@@ -12768,8 +12778,8 @@ msgstr "Nicio setare găsită"
msgid "No specific scopes requested."
msgstr "Nu au fost solicitate scopuri specifice."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Nicio sticker disponibil"
@@ -12777,8 +12787,7 @@ msgstr "Nicio sticker disponibil"
msgid "No stickers found"
msgstr "Nicio sticker găsit"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Nicio stickeră găsită"
@@ -12786,6 +12795,10 @@ msgstr "Nicio stickeră găsită"
msgid "No stickers found matching your search."
msgstr "Nu s-a găsit nicio stickeră care să corespundă căutării tale."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Niciun sticker nu se potrivește cu căutarea ta"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Niciun canal de sistem"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "În regulă"
@@ -13764,7 +13777,7 @@ msgstr "Fixeaz-o. Fixeaz-o bine."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Fixează mesajul"
@@ -14678,7 +14691,7 @@ msgstr "Elimină bannerul"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Elimină autocolantul"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Elimină perioada de timeout"
@@ -14996,7 +15009,7 @@ msgstr "Înlocuiește fundalul personalizat"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Răspunde"
@@ -15249,11 +15262,11 @@ msgstr "Reabonează-te"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rol: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Roluri"
@@ -17529,22 +17542,22 @@ msgstr "Suprimă toate mențiunile de rol"
msgid "Suppress All Role @mentions"
msgstr "Suprimă toate mențiunile de rol"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Suprimă embedurile"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Suprimă incorporări"
@@ -17822,8 +17835,8 @@ msgstr "Botul a fost adăugat."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Canalul pe care îl cauți ar fi putut fi șters sau s-ar putea să nu ai acces la el."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Comunitatea pe care o cauți ar fi putut fi ștersă sau s-ar putea să nu ai acces la ea."
@@ -17921,11 +17934,11 @@ msgstr "Nu există webhooks configurate pentru acest canal. Creează un webhook
msgid "There was an error loading the emojis. Please try again."
msgstr "A apărut o eroare la încărcarea emoji-urilor. Te rugăm încearcă din nou."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "A apărut o eroare la încărcarea linkurilor de invitație pentru acest canal. Te rugăm încearcă din nou."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "A apărut o eroare la încărcarea invitațiilor. Te rugăm încearcă din nou."
@@ -18010,7 +18023,7 @@ msgstr "Această categorie conține deja numărul maxim de {MAX_CHANNELS_PER_CAT
msgid "This channel does not support webhooks."
msgstr "Acest canal nu acceptă webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Acest canal nu are încă linkuri de invitație. Creează unul pentru a invita oameni în acest canal."
@@ -18043,7 +18056,7 @@ msgstr "Acest canal poate conține conținut nepotrivit pentru muncă sau pentru
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Acest cod nu a fost încă folosit. Te rugăm finalizează întâi autentificarea în browser."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Această comunitate nu are încă linkuri de invitație. Mergi într-un canal și creează o invitație pentru a invita oameni."
@@ -18180,8 +18193,8 @@ msgstr "Așa apar mesajele"
msgid "This is not the channel you're looking for."
msgstr "Acesta nu este canalul pe care îl cauți."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Aceasta nu este comunitatea pe care o cauți."
@@ -18300,9 +18313,9 @@ msgstr "Acest canal vocal a atins limita de utilizatori. Te rugăm încearcă di
msgid "This was a @silent message."
msgstr "Acesta a fost un mesaj @silent."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Aceasta va crea o ruptură în continuumul spațiu-timp și nu poate fi anulată."
@@ -18371,7 +18384,7 @@ msgstr "Blocare până la {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Timeout"
@@ -18659,8 +18672,7 @@ msgstr "Încearcă un alt nume sau folosește prefixele @ / # / ! / * pentru a f
msgid "Try a different search query"
msgstr "Încearcă o altă interogare de căutare"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Încearcă un alt termen de căutare"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Încearcă un alt termen de căutare sau filtru"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Încearcă din nou"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Dezapune-l"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Formatul fișierului nu este acceptat. Te rugăm să folosești JPG, PNG
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Afișează din nou embed-urile"
@@ -20573,8 +20585,8 @@ msgstr "Ți-am trimis un link pentru autorizarea acestei autentificări. Deschid
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Nu am reușit să obținem toate informațiile despre acest utilizator acum."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Am făcut o gafă! Stai pe aproape, lucrăm la asta."
@@ -21084,7 +21096,7 @@ msgstr "Nu poți interacționa cu reacțiile din rezultatele căutării deoarece
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Nu poți intra cât ești în timeout."
@@ -21169,7 +21181,7 @@ msgstr "Nu te poți dezumfla pentru că ai fost dezumflat de un moderator."
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Nu te poți dezumuta pentru că ai fost mutat de un moderator."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Nu ai acces la canalul în care a fost trimis acest mesaj."
@@ -21177,7 +21189,7 @@ msgstr "Nu ai acces la canalul în care a fost trimis acest mesaj."
msgid "You do not have permission to send messages in this channel."
msgstr "Nu ai permisiunea de a trimite mesaje în acest canal."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Nu ai acces la niciun canal din această comunitate."
@@ -21468,7 +21480,7 @@ msgstr "Ești în canalul vocal"
msgid "You're sending messages too quickly"
msgstr "Trimiți mesaje prea repede"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Vizualizezi mesaje mai vechi"
diff --git a/fluxer_app/src/locales/ru/messages.po b/fluxer_app/src/locales/ru/messages.po
index 577250f5..4bd8e81f 100644
--- a/fluxer_app/src/locales/ru/messages.po
+++ b/fluxer_app/src/locales/ru/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Управляй показом предпросмотров сообщений в списке ЛС"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Часто используемые"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-расш:"
@@ -56,7 +62,7 @@ msgstr "...включи плотный режим. Отлично!"
msgid "(edited)"
msgstr "(отредактировано)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(не удалось загрузить)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> начал звонок."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> сейчас доступно только персоналу Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Форма добавления номера телефона"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Анимированные эмодзи ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Ты уверен, что хочешь отключить SMS-двухфакторную аутентификацию? Это снизит безопасность твоего аккаунта."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Ты уверен, что хочешь включить приглашения? Это снова позволит пользователям входить в сообщество по ссылкам."
@@ -2548,7 +2554,7 @@ msgstr "Ты уверен, что хочешь отменить бан для <0
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Ты уверен, что хочешь отозвать это приглашение? Это действие нельзя отменить."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Ты уверен, что хочешь скрыть все вставки ссылок в этом сообщении? Это действие скроет все вложения."
@@ -3159,7 +3165,7 @@ msgstr "Достигнут лимит закладок"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Добавить сообщение в закладки"
@@ -3432,7 +3438,7 @@ msgstr "Настройки камеры"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Сменить свой ник в группе"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Сменить ник"
@@ -3775,7 +3781,7 @@ msgstr "Канал"
msgid "Channel Access"
msgstr "Доступ к каналу"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Доступ к каналу запрещён"
@@ -4142,7 +4148,7 @@ msgstr "Заявите о своем аккаунте, чтобы генерир
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Заберите свою учетную запись, чтобы присоединиться к этому голосовому каналу."
@@ -4649,8 +4655,8 @@ msgstr "Сообщество пропагандирует или облегча
msgid "Community Settings"
msgstr "Настройки сообщества"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Сообщество временно недоступно"
@@ -5179,20 +5185,20 @@ msgstr "Скопировать ссылку"
msgid "Copy Media"
msgstr "Скопировать медиа"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Скопировать сообщение"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Скопировать ID сообщения"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Скопировать ссылку на сообщение"
@@ -5388,8 +5394,8 @@ msgstr "Форма создания избранной категории"
msgid "Create Group DM"
msgstr "Создать групповой ЛС"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Создать приглашение"
@@ -5978,11 +5984,11 @@ msgstr "По умолчанию анимация включается при в
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "По умолчанию отключено на мобильных, чтобы сохранить заряд и трафик."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Удалить эмодзи"
msgid "Delete media"
msgstr "Удалить медиа"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Удалить сообщение"
@@ -6595,7 +6601,7 @@ msgstr "Обсуждение или пропаганда незаконных д
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Редактировать медиа"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Редактировать сообщение"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Эмодзи"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Разрешить мониторинг ввода"
msgid "Enable Invites"
msgstr "Включить приглашения"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Вновь включить приглашения"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Включить приглашения для этого сообщества"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Не удалось загрузить инвентарь подарков"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Не удалось загрузить приглашения"
@@ -8769,7 +8775,7 @@ msgstr "Забыли пароль?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Вперёд"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Приглашения приостановлены"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Приглашения в <0>{0}0> временно отключены"
@@ -10457,8 +10463,8 @@ msgstr "Дрожание"
msgid "Join a Community"
msgstr "Присоединиться к сообществу"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Присоединяйся к сообществу со стикерами, чтобы начать!"
@@ -10588,7 +10594,7 @@ msgstr "Перейти"
msgid "Jump straight to the app to continue."
msgstr "Перейди прямо в приложение, чтобы продолжить."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Перейти к {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Перейти к самому старому непрочитанном
msgid "Jump to page"
msgstr "Перейти на страницу"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Перейти к текущему"
@@ -10612,15 +10618,15 @@ msgstr "Перейти к текущему"
msgid "Jump to the channel of the active call"
msgstr "Перейти в канал активного звонка"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Перейти в связанный канал"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Перейти к связанному сообщению"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Перейти к сообщению в {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Загрузка ещё..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Заглушка загрузки"
@@ -11256,7 +11262,7 @@ msgstr "Управление наборами выражений"
msgid "Manage feature flags"
msgstr "Управление флагами функций"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Управление функциями гильдии"
@@ -11353,7 +11359,7 @@ msgstr "Отметить как спойлер"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Отметить как непрочитанное"
@@ -11822,7 +11828,7 @@ msgstr "Сообщения и медиа"
msgid "Messages Deleted"
msgstr "Сообщения удалены"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Не удалось загрузить сообщения"
@@ -12471,7 +12477,7 @@ msgstr "Псевдоним не должен превышать 32 символ
msgid "Nickname updated"
msgstr "Псевдоним обновлён"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Нет доступных каналов"
@@ -12575,6 +12581,10 @@ msgstr "Email не задан"
msgid "No emojis found matching your search."
msgstr "По вашему запросу эмодзи не найдены."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Нет эмодзи, соответствующих вашему запросу"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Пока нет установленных паков."
msgid "No invite background"
msgstr "Нет фона приглашения"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Ссылок приглашений нет"
@@ -12768,8 +12778,8 @@ msgstr "Настройки не найдены"
msgid "No specific scopes requested."
msgstr "Особые области не запрашивались."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Стикеры недоступны"
@@ -12777,8 +12787,7 @@ msgstr "Стикеры недоступны"
msgid "No stickers found"
msgstr "Стикеры не найдены"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Стикеры не найдены"
@@ -12786,6 +12795,10 @@ msgstr "Стикеры не найдены"
msgid "No stickers found matching your search."
msgstr "По вашему запросу стикеры не найдены."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Нет стикеров, соответствующих вашему запросу"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Системный канал отсутствует"
@@ -13034,7 +13047,7 @@ msgstr "ОК"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Хорошо"
@@ -13764,7 +13777,7 @@ msgstr "Закрепи. Закрепи как следует."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Закрепить сообщение"
@@ -14678,7 +14691,7 @@ msgstr "Удалить баннер"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Удалить наклейку"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Снять тайм-аут"
@@ -14996,7 +15009,7 @@ msgstr "Заменить пользовательский фон"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Ответить"
@@ -15249,11 +15262,11 @@ msgstr "Подписаться снова"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Роль: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Роли"
@@ -17529,22 +17542,22 @@ msgstr "Отключить все упоминания ролей"
msgid "Suppress All Role @mentions"
msgstr "Отключить все упоминания ролей"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Отключить встраивание"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Отключить встраивание"
@@ -17822,8 +17835,8 @@ msgstr "Бот добавлен."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Искомый канал мог быть удалён или у тебя нет к нему доступа."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Искомое сообщество могло быть удалено или у тебя нет доступа к нему."
@@ -17921,11 +17934,11 @@ msgstr "Для этого канала не настроены вебхуки.
msgid "There was an error loading the emojis. Please try again."
msgstr "Ошибка при загрузке эмодзи. Попробуй ещё раз."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Ошибка при загрузке приглашений для этого канала. Попробуй ещё раз."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Ошибка при загрузке приглашений. Попробуй ещё раз."
@@ -18010,7 +18023,7 @@ msgstr "В этой категории уже максимальное коли
msgid "This channel does not support webhooks."
msgstr "Этот канал не поддерживает вебхуки."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "У этого канала ещё нет приглашений. Создай приглашение, чтобы пригласить людей."
@@ -18043,7 +18056,7 @@ msgstr "В этом канале может быть контент, непри
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Этот код ещё не использовался. Сначала заверши вход в браузере."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "В этом сообществе ещё нет приглашений. Перейди в канал и создай приглашение."
@@ -18180,8 +18193,8 @@ msgstr "Так выглядят сообщения"
msgid "This is not the channel you're looking for."
msgstr "Это не тот канал, который ты ищешь."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Это не то сообщество, которое ты ищешь."
@@ -18300,9 +18313,9 @@ msgstr "В этом голосовом канале достигнут лими
msgid "This was a @silent message."
msgstr "Это было @silent сообщение."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Это создаст разрыв в пространственно-временном континууме — и назад пути нет."
@@ -18371,7 +18384,7 @@ msgstr "Таймаут до {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Таймаут"
@@ -18659,8 +18672,7 @@ msgstr "Попробуй другое имя или используй преф
msgid "Try a different search query"
msgstr "Попробуй другой поисковый запрос"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Попробуй другой поисковый термин"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Попробуй другой термин поиска или фильтр"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Попробуй снова"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Открепить"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Формат файла не поддерживается. Исполь
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Показать встроенные элементы"
@@ -20573,8 +20585,8 @@ msgstr "Мы отправили ссылку для подтверждения
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Не удалось сейчас получить полную информацию об этом пользователе."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Мы всё запороли! Подожди, мы уже работаем над этим."
@@ -21084,7 +21096,7 @@ msgstr "Ты не можешь взаимодействовать с реакц
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Ты не можешь присоединиться, пока на тайм-ауте."
@@ -21169,7 +21181,7 @@ msgstr "Ты не можешь восстановить звук, потому
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Ты не можешь включить микрофон, потому что модератор тебя заглушил."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "У тебя нет доступа к каналу, где отправлено это сообщение."
@@ -21177,7 +21189,7 @@ msgstr "У тебя нет доступа к каналу, где отправл
msgid "You do not have permission to send messages in this channel."
msgstr "У тебя нет разрешения отправлять сообщения в этом канале."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "У тебя нет доступа ни к одному каналу в этом сообществе."
@@ -21468,7 +21480,7 @@ msgstr "Ты в голосовом канале"
msgid "You're sending messages too quickly"
msgstr "Ты отправляешь сообщения слишком быстро"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Ты просматриваешь более старые сообщения"
diff --git a/fluxer_app/src/locales/sv-SE/messages.po b/fluxer_app/src/locales/sv-SE/messages.po
index da511466..97a888ad 100644
--- a/fluxer_app/src/locales/sv-SE/messages.po
+++ b/fluxer_app/src/locales/sv-SE/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Styr när meddelandeförhandsvisningar visas i DM-listan"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Ofta använda"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-filändelse:"
@@ -56,7 +62,7 @@ msgstr "... aktiverar kompakt läge. Snyggt!"
msgid "(edited)"
msgstr "(redigerad)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(kunde inte ladda)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> startade ett samtal."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> är för närvarande endast tillgängligt för Fluxer-personal"
@@ -1647,7 +1653,7 @@ msgstr "Lägg till telefonnummerformulär"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Animerade emojis ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Är du säker på att du vill inaktivera SMS tvåfaktorsautentisering? Detta kommer att göra ditt konto mindre säkert."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Är du säker på att du vill aktivera inbjudningar? Detta kommer att tillåta användare att gå med i denna community via inbjudningslänkar igen."
@@ -2548,7 +2554,7 @@ msgstr "Är du säker på att du vill återkalla avstängningen för <0>{0}0>?
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Är du säker på att du vill återkalla den här inbjudan? Den här åtgärden kan inte ångras."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Är du säker på att du vill undertrycka alla länkinbäddningar i det här meddelandet? Den här åtgärden kommer att dölja alla inbäddningar från det här meddelandet."
@@ -3159,7 +3165,7 @@ msgstr "Bokmärkesgräns uppnådd"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Bokmärk meddelande"
@@ -3432,7 +3438,7 @@ msgstr "Kamerainställningar"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Ändra mitt grupps smeknamn"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Ändra smeknamn"
@@ -3775,7 +3781,7 @@ msgstr "Kanal"
msgid "Channel Access"
msgstr "Kanalåtkomst"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Kanalåtkomst nekad"
@@ -4142,7 +4148,7 @@ msgstr "Gör anspråk på ditt konto för att generera beta-koder."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Bekräfta ditt konto för att gå med i denna röstkanal."
@@ -4649,8 +4655,8 @@ msgstr "Community främjar eller underlättar olagliga aktiviteter"
msgid "Community Settings"
msgstr "Community-inställningar"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Community tillfälligt otillgänglig"
@@ -5179,20 +5185,20 @@ msgstr "Kopiera länk"
msgid "Copy Media"
msgstr "Kopiera media"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Kopiera meddelande"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Kopiera meddelande-ID"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Kopiera meddelandelänk"
@@ -5388,8 +5394,8 @@ msgstr "Skapa favoritkategoriformulär"
msgid "Create Group DM"
msgstr "Skapa grupp-DM"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Skapa inbjudan"
@@ -5978,11 +5984,11 @@ msgstr "Standard är att animera vid interaktion på mobil för att spara batter
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Standard är av på mobil för att spara batteri och datanvändning."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Radera emoji"
msgid "Delete media"
msgstr "Radera media"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Radera meddelande"
@@ -6595,7 +6601,7 @@ msgstr "Diskussion eller marknadsföring av olagliga aktiviteter"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Redigera media"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Redigera meddelande"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojis"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Aktivera behörighet för inspelningsövervakning"
msgid "Enable Invites"
msgstr "Aktivera inbjudningar"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Aktivera inbjudningar igen"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Aktivera inbjudningar för detta community"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Det gick inte att ladda presentlager"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Det gick inte att ladda inbjudningar"
@@ -8769,7 +8775,7 @@ msgstr "Glömt ditt lösenord?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Vidarebefordra"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Inbjudningar pausade"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Inbjudningar till <0>{0}0> är för närvarande inaktiverade"
@@ -10457,8 +10463,8 @@ msgstr "Jitter"
msgid "Join a Community"
msgstr "Gå med i ett community"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Gå med i ett community med klistermärken för att komma igång!"
@@ -10588,7 +10594,7 @@ msgstr "Hoppa"
msgid "Jump straight to the app to continue."
msgstr "Hoppa direkt till appen för att fortsätta."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Hoppa till {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Hoppa till äldsta olästa meddelandet"
msgid "Jump to page"
msgstr "Hoppa till sida"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Hoppa till nuet"
@@ -10612,15 +10618,15 @@ msgstr "Hoppa till nuet"
msgid "Jump to the channel of the active call"
msgstr "Hoppa till kanalen för det aktiva samtalet"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Hoppa till den länkade kanalen"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Hoppa till det länkade meddelandet"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Hoppa till meddelandet i {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Laddar fler..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Laddar platshållare"
@@ -11256,7 +11262,7 @@ msgstr "Hantera uttryckspaket"
msgid "Manage feature flags"
msgstr "Hantera funktionsflaggor"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Hantera gillefunktioner"
@@ -11353,7 +11359,7 @@ msgstr "Markera som spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Markera som oläst"
@@ -11822,7 +11828,7 @@ msgstr "Meddelanden & media"
msgid "Messages Deleted"
msgstr "Meddelanden raderade"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Meddelanden kunde inte laddas"
@@ -12471,7 +12477,7 @@ msgstr "Smeknamnet får inte överstiga 32 tecken"
msgid "Nickname updated"
msgstr "Smeknamn uppdaterat"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Inga tillgängliga kanaler"
@@ -12575,6 +12581,10 @@ msgstr "Ingen e-postadress angiven"
msgid "No emojis found matching your search."
msgstr "Inga emojis matchade din sökning."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Inga emojis matchar din sökning"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Inga paket installerade ännu."
msgid "No invite background"
msgstr "Ingen inbjudningsbakgrund"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Inga inbjudningslänkar"
@@ -12768,8 +12778,8 @@ msgstr "Inga inställningar hittades"
msgid "No specific scopes requested."
msgstr "Inga specifika scope har begärts."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Inga klistermärken tillgängliga"
@@ -12777,8 +12787,7 @@ msgstr "Inga klistermärken tillgängliga"
msgid "No stickers found"
msgstr "Inga klistermärken hittades"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Inga klistermärken hittades"
@@ -12786,6 +12795,10 @@ msgstr "Inga klistermärken hittades"
msgid "No stickers found matching your search."
msgstr "Inga klistermärken hittades som matchar din sökning."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Inga klistermärken matchar din sökning"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Ingen systemkanal"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Okej"
@@ -13764,7 +13777,7 @@ msgstr "Fäst den. Fäst den bra."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Fäst meddelande"
@@ -14678,7 +14691,7 @@ msgstr "Ta bort banner"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Ta bort klistermärke"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Ta bort timeout"
@@ -14996,7 +15009,7 @@ msgstr "Ersätt din anpassade bakgrund"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Svara"
@@ -15249,11 +15262,11 @@ msgstr "Prenumerera igen"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Roll: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Roller"
@@ -17529,22 +17542,22 @@ msgstr "Dölj alla roll-@omnämningar"
msgid "Suppress All Role @mentions"
msgstr "Dölj alla roll-@omnämningar"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Dölj inbäddningar"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Dölj inbäddningar"
@@ -17822,8 +17835,8 @@ msgstr "Botten har lagts till."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Kanalen du letar efter kan ha tagits bort eller så har du inte tillgång till den."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Communityn du letar efter kan ha tagits bort eller så har du inte tillgång till den."
@@ -17921,11 +17934,11 @@ msgstr "Det finns inga webhooks konfigurerade för den här kanalen. Skapa en we
msgid "There was an error loading the emojis. Please try again."
msgstr "Det uppstod ett fel vid laddning av emojis. Försök igen."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Det uppstod ett fel vid laddning av inbjudningslänkar för den här kanalen. Försök igen."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Det uppstod ett fel vid laddning av inbjudningar. Försök igen."
@@ -18010,7 +18023,7 @@ msgstr "Den här kategorin innehåller redan maximalt {MAX_CHANNELS_PER_CATEGORY
msgid "This channel does not support webhooks."
msgstr "Den här kanalen stöder inte webhooks."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Den här kanalen har inga inbjudningslänkar ännu. Skapa en för att bjuda in personer till den här kanalen."
@@ -18043,7 +18056,7 @@ msgstr "Den här kanalen kan innehålla innehåll som inte är arbetsplatsvänli
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Den här koden har inte använts ännu. Slutför inloggningen i din webbläsare först."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Den här gemenskapen har inga inbjudningslänkar ännu. Gå till en kanal och skapa en inbjudan för att bjuda in personer."
@@ -18180,8 +18193,8 @@ msgstr "Så här visas meddelanden"
msgid "This is not the channel you're looking for."
msgstr "Det här är inte kanalen du letar efter."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Det här är inte gemenskapen du letar efter."
@@ -18300,9 +18313,9 @@ msgstr "Den här röstkanalen har nått sin användargräns. Försök igen senar
msgid "This was a @silent message."
msgstr "Det här var ett @silent-meddelande."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Det här kommer att skapa en rift i rumtidskontinuumet och kan inte ångras."
@@ -18371,7 +18384,7 @@ msgstr "Utelåst tills {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Utelåsning"
@@ -18659,8 +18672,7 @@ msgstr "Prova ett annat namn eller använd @ / # / ! / * prefix för att filtrer
msgid "Try a different search query"
msgstr "Prova en annan sökfråga"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Prova en annan sökterm"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Prova en annan sökterm eller filter"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Försök igen"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Ta bort fäst"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Filtyp stöds inte. Använd JPG, PNG, GIF, WebP eller MP4."
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Visa inbäddningar"
@@ -20573,8 +20585,8 @@ msgstr "Vi skickade ett e-postmeddelande med en länk för att godkänna denna i
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Vi kunde inte hämta all information om denna användare just nu."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Vi fluxade till! Håll ut, vi jobbar på det."
@@ -21084,7 +21096,7 @@ msgstr "Du kan inte interagera med reaktioner i sökresultat eftersom det kan st
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Du kan inte gå med medan du är i timeout."
@@ -21169,7 +21181,7 @@ msgstr "Du kan inte återaktivera hörseln på dig själv eftersom du har dövat
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Du kan inte avtysta dig själv eftersom du har tystats av en moderator."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Du har inte åtkomst till kanalen där det här meddelandet skickades."
@@ -21177,7 +21189,7 @@ msgstr "Du har inte åtkomst till kanalen där det här meddelandet skickades."
msgid "You do not have permission to send messages in this channel."
msgstr "Du har inte behörighet att skicka meddelanden i den här kanalen."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Du har inte åtkomst till några kanaler i det här communityt."
@@ -21468,7 +21480,7 @@ msgstr "Du är i röstkanalen"
msgid "You're sending messages too quickly"
msgstr "Du skickar meddelanden för snabbt"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Du visar äldre meddelanden"
diff --git a/fluxer_app/src/locales/th/messages.po b/fluxer_app/src/locales/th/messages.po
index 2867ff10..b896fc9f 100644
--- a/fluxer_app/src/locales/th/messages.po
+++ b/fluxer_app/src/locales/th/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "ควบคุมการแสดงตัวอย่างข้อความในรายการ DM"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "ใช้บ่อย"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... เปิดโหมดแน่นแล้ว เยี่ยม!
msgid "(edited)"
msgstr "(แก้ไขแล้ว)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(โหลดไม่สำเร็จ)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> เริ่มการโทร"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> ขณะนี้เข้าถึงได้เฉพาะพนักงาน Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "แบบฟอร์มเพิ่มหมายเลขโทรศ
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "อีโมจิเคลื่อนไหว ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "แน่ใจไหมว่าต้องการปิดการยืนยันตัวตนสองชั้นผ่าน SMS? จะทำให้บัญชีคุณมีความปลอดภัยน้อยลง"
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "แน่ใจไหมว่าต้องการเปิดใช้งานการเชิญ? จะให้ผู้ใช้สามารถเข้าร่วมชุมชนนี้ผ่านลิงก์เชิญได้อีกครั้ง"
@@ -2548,7 +2554,7 @@ msgstr "แน่ใจไหมว่าต้องการยกเลิก
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "แน่ใจไหมว่าต้องการเพิกถอนคำเชิญนี้? การกระทำนี้ไม่สามารถย้อนกลับได้"
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "แน่ใจไหมว่าต้องการปิดการฝังลิงก์ทั้งหมดในข้อความนี้? การกระทำนี้จะซ่อนการฝังทั้งหมดออกจากข้อความนี้"
@@ -3159,7 +3165,7 @@ msgstr "ถึงขีดจำกัดบุ๊กมาร์กแล้ว
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "บุ๊กมาร์กข้อความ"
@@ -3432,7 +3438,7 @@ msgstr "การตั้งค่ากล้อง"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "เปลี่ยนนามแฝงกลุ่มของฉัน
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "เปลี่ยนนามแฝง"
@@ -3775,7 +3781,7 @@ msgstr "แชนแนล"
msgid "Channel Access"
msgstr "การเข้าถึงแชนแนล"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "ไม่อนุญาตให้เข้าถึงแชนแนล"
@@ -4142,7 +4148,7 @@ msgstr "ยืนยันบัญชีของคุณเพื่อสร
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "ยืนยันบัญชีของคุณเพื่อเข้าร่วมแชนแนลเสียงนี้"
@@ -4649,8 +4655,8 @@ msgstr "ชุมชนส่งเสริมหรืออำนวยคว
msgid "Community Settings"
msgstr "การตั้งค่าชุมชน"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "ชุมชนชั่วคราวไม่พร้อมใช้งาน"
@@ -5179,20 +5185,20 @@ msgstr "คัดลอกลิงก์"
msgid "Copy Media"
msgstr "คัดลอกสื่อ"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "คัดลอกข้อความ"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "คัดลอก ID ข้อความ"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "คัดลอกลิงก์ข้อความ"
@@ -5388,8 +5394,8 @@ msgstr "ฟอร์มสร้างหมวดหมู่ที่ชื่
msgid "Create Group DM"
msgstr "สร้างกลุ่มข้อความส่วนตัว"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "สร้างคำเชิญ"
@@ -5978,11 +5984,11 @@ msgstr "ค่าเริ่มต้นจะเล่นแอนิเมช
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "ค่าเริ่มต้นปิดใช้งานบนมือถือเพื่อประหยัดแบตเตอรี่และการใช้ข้อมูล"
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "ลบอิโมจิ"
msgid "Delete media"
msgstr "ลบสื่อ"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "ลบข้อความ"
@@ -6595,7 +6601,7 @@ msgstr "การพูดคุยหรือส่งเสริมกิจ
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "แก้ไขสื่อ"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "แก้ไขข้อความ"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "อีโมจิ"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "อนุญาตการตรวจสอบอินพุต"
msgid "Enable Invites"
msgstr "เปิดการเชิญ"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "เปิดการเชิญอีกครั้ง"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "เปิดการเชิญสำหรับชุมชนนี้"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "โหลดคลังของขวัญไม่สำเร็จ"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "โหลดคำเชิญไม่สำเร็จ"
@@ -8769,7 +8775,7 @@ msgstr "ลืมรหัสผ่านของคุณ?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "ส่งต่อ"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "คำเชิญถูกระงับ"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "คำเชิญไปที่ <0>{0}0> ถูกปิดใช้งานอยู่ในขณะนี้"
@@ -10457,8 +10463,8 @@ msgstr "การสั่น"
msgid "Join a Community"
msgstr "เข้าร่วมชุมชน"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "เข้าร่วมชุมชนที่มีสติกเกอร์เพื่อเริ่มต้น!"
@@ -10588,7 +10594,7 @@ msgstr "กระโดด"
msgid "Jump straight to the app to continue."
msgstr "กระโดดตรงไปยังแอปเพื่อดำเนินการต่อ"
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "กระโดดไปที่ {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "กระโดดไปยังข้อความที่ยัง
msgid "Jump to page"
msgstr "กระโดดไปยังหน้า"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "กระโดดไปยังปัจจุบัน"
@@ -10612,15 +10618,15 @@ msgstr "กระโดดไปยังปัจจุบัน"
msgid "Jump to the channel of the active call"
msgstr "กระโดดไปที่แชนแนลของการโทรที่กำลังใช้งาน"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "กระโดดไปที่แชนแนลที่ลิงก์"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "กระโดดไปที่ข้อความที่ลิงก์"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "กระโดดไปที่ข้อความใน {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "กำลังโหลดเพิ่มเติม..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "กำลังโหลดที่ว่าง"
@@ -11256,7 +11262,7 @@ msgstr "จัดการแพ็กการแสดงออก"
msgid "Manage feature flags"
msgstr "จัดการฟีเจอร์แฟล็ก"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "จัดการคุณสมบัติกิลด์"
@@ -11353,7 +11359,7 @@ msgstr "ทำเครื่องหมายว่าเป็นสปอย
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "ทำเครื่องหมายว่ายังไม่อ่าน"
@@ -11822,7 +11828,7 @@ msgstr "ข้อความและสื่อ"
msgid "Messages Deleted"
msgstr "ข้อความถูกลบ"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "โหลดข้อความไม่สำเร็จ"
@@ -12471,7 +12477,7 @@ msgstr "ชื่อเล่นต้องไม่เกิน 32 ตัว
msgid "Nickname updated"
msgstr "อัปเดตชื่อเล่นแล้ว"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "ไม่มีแชนแนลที่เข้าถึงได้"
@@ -12575,6 +12581,10 @@ msgstr "ยังไม่ได้ตั้งที่อยู่อีเม
msgid "No emojis found matching your search."
msgstr "ไม่พบอิโมจิที่ตรงกับการค้นหาของคุณ"
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "ไม่มีอิโมจิที่ตรงกับการค้นหาของคุณ"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "ยังไม่มีแพ็คที่ติดตั้ง"
msgid "No invite background"
msgstr "ไม่มีพื้นหลังคำเชิญ"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "ไม่มีลิงก์เชิญ"
@@ -12768,8 +12778,8 @@ msgstr "ไม่พบการตั้งค่า"
msgid "No specific scopes requested."
msgstr "ไม่ได้ระบุขอบเขตเฉพาะ"
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "ไม่มีสติกเกอร์"
@@ -12777,8 +12787,7 @@ msgstr "ไม่มีสติกเกอร์"
msgid "No stickers found"
msgstr "ไม่พบสติกเกอร์"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "ไม่พบสติกเกอร์"
@@ -12786,6 +12795,10 @@ msgstr "ไม่พบสติกเกอร์"
msgid "No stickers found matching your search."
msgstr "ไม่พบสติกเกอร์ที่ตรงกับการค้นหาของคุณ"
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "ไม่มีสติกเกอร์ที่ตรงกับการค้นหาของคุณ"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "ไม่มีแชนเนลระบบ"
@@ -13034,7 +13047,7 @@ msgstr "ตกลง"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "โอเค"
@@ -13764,7 +13777,7 @@ msgstr "ปักหมุดเลย ปักให้แน่น"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "ปักหมุดข้อความ"
@@ -14678,7 +14691,7 @@ msgstr "ลบแบนเนอร์"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "ลบสติกเกอร์"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "ลบการจำกัดเวลา"
@@ -14996,7 +15009,7 @@ msgstr "แทนที่พื้นหลังที่คุณกำหน
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "ตอบกลับ"
@@ -15249,11 +15262,11 @@ msgstr "สมัครรับใหม่"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "บทบาท: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "บทบาท"
@@ -17529,22 +17542,22 @@ msgstr "ปิดเสียงการกล่าวถึงทุกบท
msgid "Suppress All Role @mentions"
msgstr "ปิดเสียงการกล่าวถึงทุกบทบาท"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "ปิดการฝัง"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "ปิดการฝัง"
@@ -17822,8 +17835,8 @@ msgstr "บอทถูกเพิ่มแล้ว"
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "ช่องที่คุณค้นหาอาจถูกลบหรือคุณอาจไม่มีสิทธิ์เข้าถึง"
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "ชุมชนที่คุณค้นหาอาจถูกลบหรือคุณอาจไม่มีสิทธิ์เข้าถึง"
@@ -17921,11 +17934,11 @@ msgstr "ยังไม่มีการตั้งค่าเว็บฮุ
msgid "There was an error loading the emojis. Please try again."
msgstr "เกิดข้อผิดพลาดในการโหลดอีโมจิ กรุณาลองใหม่อีกครั้ง"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "เกิดข้อผิดพลาดในการโหลดลิงก์เชิญสำหรับช่องนี้ กรุณาลองใหม่อีกครั้ง"
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "เกิดข้อผิดพลาดในการโหลดคำเชิญ กรุณาลองใหม่อีกครั้ง"
@@ -18010,7 +18023,7 @@ msgstr "หมวดหมู่นี้มีจำนวนช่องสู
msgid "This channel does not support webhooks."
msgstr "ช่องนี้ไม่รองรับเว็บฮุก"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "ช่องนี้ยังไม่มีลิงก์เชิญ สร้างลิงก์เพื่อเชิญคนเข้าช่องนี้"
@@ -18043,7 +18056,7 @@ msgstr "ช่องนี้อาจมีเนื้อหาที่ไม
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "โค้ดนี้ยังไม่ได้ใช้งาน กรุณาล็อกอินผ่านเบราว์เซอร์ก่อน"
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "ชุมชนนี้ยังไม่มีลิงก์เชิญ ไปที่ช่องแล้วสร้างลิงก์เพื่อเชิญคน"
@@ -18180,8 +18193,8 @@ msgstr "นี่คือวิธีการแสดงข้อความ
msgid "This is not the channel you're looking for."
msgstr "นี่ไม่ใช่ช่องที่คุณกำลังหา"
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "นี่ไม่ใช่ชุมชนที่คุณกำลังหา"
@@ -18300,9 +18313,9 @@ msgstr "ช่องเสียงนี้ถึงจำนวนผู้ใ
msgid "This was a @silent message."
msgstr "ข้อความนี้เป็น @silent"
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "สิ่งนี้จะสร้างรอยแยกในมิติเวลาและไม่สามารถย้อนกลับได้"
@@ -18371,7 +18384,7 @@ msgstr "หมดเวลาไปจนถึง {0}"
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "หมดเวลา"
@@ -18659,8 +18672,7 @@ msgstr "ลองใช้ชื่ออื่นหรือลองใส่
msgid "Try a different search query"
msgstr "ลองค้นหาใหม่"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "ลองใช้คำค้นหาอื่น"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "ลองคำค้นหา/ตัวกรองอื่น"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "ลองอีกครั้ง"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "ปลดปักหมุด"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "รูปแบบไฟล์ไม่รองรับ กรุณ
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "แสดงเนื้อหาแบบฝัง"
@@ -20573,8 +20585,8 @@ msgstr "เราได้ส่งลิงก์เพื่ออนุญา
msgid "We failed to retrieve the full information about this user at this time."
msgstr "เราไม่สามารถดึงข้อมูลทั้งหมดของผู้ใช้นี้ได้ในตอนนี้"
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "เราเกิดข้อผิดพลาดขึ้น! รอสักครู่ เรากำลังแก้ไขอยู่"
@@ -21084,7 +21096,7 @@ msgstr "คุณไม่สามารถโต้ตอบกับรีแ
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "คุณไม่สามารถเข้าร่วมขณะที่อยู่ในช่วงพักเวลา"
@@ -21169,7 +21181,7 @@ msgstr "คุณไม่สามารถเปิดเสียงขาเ
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "คุณไม่สามารถเปิดเสียงไมโครโฟนได้เพราะถูกปิดโดยผู้ดูแล"
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "คุณไม่มีสิทธิ์เข้าถึงแชนแนลที่ส่งข้อความนี้"
@@ -21177,7 +21189,7 @@ msgstr "คุณไม่มีสิทธิ์เข้าถึงแชน
msgid "You do not have permission to send messages in this channel."
msgstr "คุณไม่มีสิทธิ์ส่งข้อความในแชนแนลนี้"
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "คุณไม่มีสิทธิ์เข้าถึงแชนแนลใด ๆ ในชุมชนนี้"
@@ -21468,7 +21480,7 @@ msgstr "คุณอยู่ในแชนแนลเสียง"
msgid "You're sending messages too quickly"
msgstr "คุณส่งข้อความเร็วเกินไป"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "คุณกำลังดูข้อความเก่า"
diff --git a/fluxer_app/src/locales/tr/messages.po b/fluxer_app/src/locales/tr/messages.po
index 6d5ec38b..71b6a960 100644
--- a/fluxer_app/src/locales/tr/messages.po
+++ b/fluxer_app/src/locales/tr/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Özel mesaj listesinde mesaj önizlemelerinin ne zaman gösterileceğini kontrol et"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Sık Kullanılanlar"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-uzantı:"
@@ -56,7 +62,7 @@ msgstr "... yoğun modu aç. Güzel!"
msgid "(edited)"
msgstr "(düzenlendi)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(yüklenemedi)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> bir çağrı başlattı."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> şu anda yalnızca Fluxer personeli tarafından erişilebilir"
@@ -1647,7 +1653,7 @@ msgstr "Telefon numarası ekleme formu"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Hareketli Emoji ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "SMS iki faktörlü kimlik doğrulamayı devre dışı bırakmak istediğine emin misin? Bu, hesabının güvenliğini azaltacak."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Davetleri etkinleştirmek istediğine emin misin? Bu, kullanıcıların bu topluluğa davet bağlantılarıyla yeniden katılmasına izin verecek."
@@ -2548,7 +2554,7 @@ msgstr "<0>{0}0> kullanıcısının yasağını kaldırmak istediğine emin mi
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Bu daveti iptal etmek istediğine emin misin? Bu işlem geri alınamaz."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Bu mesajdaki tüm bağlantı gömülülerini gizlemek istediğine emin misin? Bu işlem, bu mesajdaki tüm gömülüleri gizleyecek."
@@ -3159,7 +3165,7 @@ msgstr "Yer İmi Sınırına Ulaşıldı"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Mesajı Yer İmi Olarak Kaydet"
@@ -3432,7 +3438,7 @@ msgstr "Kamera Ayarları"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Grup Takma Adımı Değiştir"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Takma Adı Değiştir"
@@ -3775,7 +3781,7 @@ msgstr "Kanal"
msgid "Channel Access"
msgstr "Kanal Erişimi"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Kanal Erişimi Reddedildi"
@@ -4142,7 +4148,7 @@ msgstr "Beta kodları oluşturmak için hesabını talep et."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Bu ses kanalına katılmak için hesabınızı talep edin."
@@ -4649,8 +4655,8 @@ msgstr "Topluluk yasadışı faaliyetleri destekliyor veya kolaylaştırıyor"
msgid "Community Settings"
msgstr "Topluluk Ayarları"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Topluluk geçici olarak kullanılamıyor"
@@ -5179,20 +5185,20 @@ msgstr "Bağlantıyı Kopyala"
msgid "Copy Media"
msgstr "Medyayı Kopyala"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Mesajı Kopyala"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Mesaj Kimliğini Kopyala"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Mesaj Bağlantısını Kopyala"
@@ -5388,8 +5394,8 @@ msgstr "Favori kategori formu oluştur"
msgid "Create Group DM"
msgstr "Grup DM oluştur"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Davet oluştur"
@@ -5978,11 +5984,11 @@ msgstr "Pil ömrünü korumak için mobilde etkileşimde animasyon varsayıland
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Pil ömrünü ve veri kullanımını korumak için mobilde kapalı varsayılandır."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Emojiyi Sil"
msgid "Delete media"
msgstr "Medyayı sil"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Mesajı Sil"
@@ -6595,7 +6601,7 @@ msgstr "Yasadışı faaliyetlerin tartışılması veya teşvik edilmesi"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Medyayı düzenle"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Mesajı Düzenle"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Emojiler"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Girdi İzleme iznini etkinleştir"
msgid "Enable Invites"
msgstr "Davetleri Etkinleştir"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Davetleri Yeniden Etkinleştir"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Bu topluluk için davetleri etkinleştir"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Hediye envanteri yüklenemedi"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Davetler yüklenemedi"
@@ -8769,7 +8775,7 @@ msgstr "Şifrenizi mi unuttunuz?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "İlet"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Davetler Duraklatıldı"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "<0>{0}0> için davetler şu anda devre dışı"
@@ -10457,8 +10463,8 @@ msgstr "Titreşim"
msgid "Join a Community"
msgstr "Bir Topluluğa Katıl"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Başlamak için çıkartmaları olan bir topluluğa katılın!"
@@ -10588,7 +10594,7 @@ msgstr "Atla"
msgid "Jump straight to the app to continue."
msgstr "Devam etmek için doğrudan uygulamaya atlayın."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "{labelText} konumuna atla"
@@ -10604,7 +10610,7 @@ msgstr "En Eski Okunmamış Mesaja Atla"
msgid "Jump to page"
msgstr "Sayfaya atla"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Şimdiki Zamana Atla"
@@ -10612,15 +10618,15 @@ msgstr "Şimdiki Zamana Atla"
msgid "Jump to the channel of the active call"
msgstr "Aktif aramanın kanalına atla"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Bağlantılı kanala atla"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Bağlantılı mesaja atla"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "{labelText} içindeki mesaja atla"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Daha fazlası yükleniyor..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Yer tutucu yükleniyor"
@@ -11256,7 +11262,7 @@ msgstr "İfade paketlerini yönet"
msgid "Manage feature flags"
msgstr "Özellik bayraklarını yönet"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Lonca Özelliklerini Yönet"
@@ -11353,7 +11359,7 @@ msgstr "Spoiler olarak işaretle"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Okunmamış Olarak İşaretle"
@@ -11822,7 +11828,7 @@ msgstr "Mesajlar ve Medya"
msgid "Messages Deleted"
msgstr "Mesajlar Silindi"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Mesajlar yüklenemedi"
@@ -12471,7 +12477,7 @@ msgstr "Takma ad 32 karakteri geçmemeli"
msgid "Nickname updated"
msgstr "Takma ad güncellendi"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Erişilebilir kanal yok"
@@ -12575,6 +12581,10 @@ msgstr "E-posta adresi ayarlanmadı"
msgid "No emojis found matching your search."
msgstr "Aramanızla eşleşen emoji bulunamadı."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Aramanızla eşleşen emoji yok"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Henüz yüklü paket yok."
msgid "No invite background"
msgstr "Davet arka planı yok"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Davet bağlantısı yok"
@@ -12768,8 +12778,8 @@ msgstr "Ayar bulunamadı"
msgid "No specific scopes requested."
msgstr "Belirli bir kapsam istenmedi."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Kullanılabilir Çıkartma Yok"
@@ -12777,8 +12787,7 @@ msgstr "Kullanılabilir Çıkartma Yok"
msgid "No stickers found"
msgstr "Çıkartma bulunamadı"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Çıkartma Bulunamadı"
@@ -12786,6 +12795,10 @@ msgstr "Çıkartma Bulunamadı"
msgid "No stickers found matching your search."
msgstr "Aramanızla eşleşen çıkartma bulunamadı."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Aramanızla eşleşen çıkartma yok"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Sistem Kanalı Yok"
@@ -13034,7 +13047,7 @@ msgstr "Tamam"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Tamam"
@@ -13764,7 +13777,7 @@ msgstr "Sabitle. İyice sabitle."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Mesajı Sabitle"
@@ -14678,7 +14691,7 @@ msgstr "Bannerı Kaldır"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Çıkartmayı kaldır"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Zaman Aşımını Kaldır"
@@ -14996,7 +15009,7 @@ msgstr "Özel arka planınızı değiştirin"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Yanıtla"
@@ -15249,11 +15262,11 @@ msgstr "Yeniden Abone Ol"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Rol: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Roller"
@@ -17529,22 +17542,22 @@ msgstr "Tüm rol @bahsetmelerini bastır"
msgid "Suppress All Role @mentions"
msgstr "Tüm Rol @Bahsetmelerini Bastır"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Gömülüleri bastır"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Gömülüleri Bastır"
@@ -17822,8 +17835,8 @@ msgstr "Bot eklendi."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Aradığınız kanal silinmiş olabilir veya ona erişiminiz olmayabilir."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Aradığınız topluluk silinmiş olabilir veya ona erişiminiz olmayabilir."
@@ -17921,11 +17934,11 @@ msgstr "Bu kanal için yapılandırılmış webhook yok. Dış uygulamaların me
msgid "There was an error loading the emojis. Please try again."
msgstr "Emojiler yüklenirken bir hata oluştu. Lütfen tekrar deneyin."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Bu kanalın davet bağlantıları yüklenirken bir hata oluştu. Lütfen tekrar deneyin."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Davetler yüklenirken bir hata oluştu. Lütfen tekrar deneyin."
@@ -18010,7 +18023,7 @@ msgstr "Bu kategori zaten maksimum {MAX_CHANNELS_PER_CATEGORY} kanal içeriyor."
msgid "This channel does not support webhooks."
msgstr "Bu kanal webhook'ları desteklemiyor."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Bu kanalda henüz davet bağlantısı yok. Bu kanala insanları davet etmek için bir tane oluşturun."
@@ -18043,7 +18056,7 @@ msgstr "Bu kanal işyeri için güvenli olmayan veya bazı kullanıcılar için
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Bu kod henüz kullanılmadı. Lütfen önce tarayıcınızda girişi tamamlayın."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Bu toplulukta henüz davet bağlantısı yok. İnsanları davet etmek için bir kanala gidin ve bir davet oluşturun."
@@ -18180,8 +18193,8 @@ msgstr "Mesajlar bu şekilde görünür"
msgid "This is not the channel you're looking for."
msgstr "Bu aradığınız kanal değil."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Bu aradığınız topluluk değil."
@@ -18300,9 +18313,9 @@ msgstr "Bu ses kanalı kullanıcı sınırına ulaştı. Lütfen daha sonra tekr
msgid "This was a @silent message."
msgstr "Bu bir @sessiz mesajdı."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Bu, uzay-zaman sürekliliğinde bir yarık oluşturacak ve geri alınamaz."
@@ -18371,7 +18384,7 @@ msgstr "{0} tarihine kadar zaman aşımına uğradı."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Zaman Aşımı"
@@ -18659,8 +18672,7 @@ msgstr "Farklı bir isim deneyin veya sonuçları filtrelemek için @ / # / ! /
msgid "Try a different search query"
msgstr "Farklı bir arama sorgusu deneyin"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Farklı bir arama terimi deneyin"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Farklı bir arama terimi veya filtre deneyin"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Tekrar dene"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Sabitlemeyi kaldır"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Desteklenmeyen dosya formatı. Lütfen JPG, PNG, GIF, WebP veya MP4 kull
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Gömülü Öğeleri Kaldır"
@@ -20573,8 +20585,8 @@ msgstr "Bu girişi yetkilendirmek için bir bağlantı e-posta gönderdik. Lütf
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Şu anda bu kullanıcı hakkındaki tam bilgileri almayı başaramadık."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Bir şeyler ters gitti! Bekle, üzerinde çalışıyoruz."
@@ -21084,7 +21096,7 @@ msgstr "Uzay-zaman sürekliliğini bozabileceğinden arama sonuçlarındaki tepk
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Zaman aşımındayken katılamazsın."
@@ -21169,7 +21181,7 @@ msgstr "Bir moderatör tarafından susturulduğun için kendini duyurulamazsın.
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Bir moderatör tarafından susturulduğun için kendini sessizden çıkaramazsın."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Bu mesajın gönderildiği kanala erişimin yok."
@@ -21177,7 +21189,7 @@ msgstr "Bu mesajın gönderildiği kanala erişimin yok."
msgid "You do not have permission to send messages in this channel."
msgstr "Bu kanalda mesaj gönderme iznin yok."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Bu toplulukta hiçbir kanala erişimin yok."
@@ -21468,7 +21480,7 @@ msgstr "Ses kanalındasın"
msgid "You're sending messages too quickly"
msgstr "Mesajları çok hızlı gönderiyorsun"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Eski mesajları görüntülüyorsun"
diff --git a/fluxer_app/src/locales/uk/messages.po b/fluxer_app/src/locales/uk/messages.po
index 5728b227..5fc62993 100644
--- a/fluxer_app/src/locales/uk/messages.po
+++ b/fluxer_app/src/locales/uk/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Керуй, коли у списку особистих бесід показуються прев’ю повідомлень"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Часто використовуються"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-розширення:"
@@ -56,7 +62,7 @@ msgstr "... ввімкни компактний режим. Клас!"
msgid "(edited)"
msgstr "(змінено)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(не вдалося завантажити)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> розпочав дзвінок."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> наразі доступний лише працівникам Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Форма додавання номера телефону"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Анімовані емодзі ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Ти впевнений, що хочеш вимкнути SMS-двофакторну автентифікацію? Це зробить твій акаунт менш безпечним."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Ти впевнений, що хочеш увімкнути запрошення? Це дозволить користувачам знову приєднуватися через посилання."
@@ -2548,7 +2554,7 @@ msgstr "Ти впевнений, що хочеш скасувати бан дл
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Ти впевнений, що хочеш відкликати це запрошення? Цю дію не можна скасувати."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Ти впевнений, що хочеш приховати всі вставки посилань у цьому повідомленні? Ця дія сховає всі вставки."
@@ -3159,7 +3165,7 @@ msgstr "Досягнуто ліміт закладок"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Додати повідомлення до закладок"
@@ -3432,7 +3438,7 @@ msgstr "Налаштування камери"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Змінити моє групове прізвисько"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Змінити прізвисько"
@@ -3775,7 +3781,7 @@ msgstr "Канал"
msgid "Channel Access"
msgstr "Доступ до каналу"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Доступ до каналу заборонено"
@@ -4142,7 +4148,7 @@ msgstr "Претендуйте на свій обліковий запис, що
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Прив'яжіть свій акаунт, щоб приєднатися до цього голосового каналу."
@@ -4649,8 +4655,8 @@ msgstr "Спільнота пропагує або сприяє незаконн
msgid "Community Settings"
msgstr "Налаштування спільноти"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Спільнота тимчасово недоступна"
@@ -5179,20 +5185,20 @@ msgstr "Скопіювати посилання"
msgid "Copy Media"
msgstr "Скопіювати медіа"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Скопіювати повідомлення"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Скопіювати ID повідомлення"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Скопіювати посилання на повідомлення"
@@ -5388,8 +5394,8 @@ msgstr "Форма створення улюбленої категорії"
msgid "Create Group DM"
msgstr "Створити групове повідомлення"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Створити запрошення"
@@ -5978,11 +5984,11 @@ msgstr "За замовчуванням анімація при взаємоді
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "За замовчуванням вимкнено на мобільних пристроях, щоб зберігати заряд і трафік."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Видалити емодзі"
msgid "Delete media"
msgstr "Видалити медіа"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Видалити повідомлення"
@@ -6595,7 +6601,7 @@ msgstr "Обговорення або пропаганда незаконних
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Редагувати медіа"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Редагувати повідомлення"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Емодзі"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Надати дозвіл на моніторинг введення"
msgid "Enable Invites"
msgstr "Увімкнути запрошення"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Знову увімкнути запрошення"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Увімкнути запрошення для цієї спільноти"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Не вдалося завантажити подарунковий інвентар"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Не вдалося завантажити запрошення"
@@ -8769,7 +8775,7 @@ msgstr "Забули пароль?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Переслати"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Запрошення призупинено"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Запрошення до <0>{0}0> наразі вимкнено"
@@ -10457,8 +10463,8 @@ msgstr "Стрибки"
msgid "Join a Community"
msgstr "Приєднатися до спільноти"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Приєднайся до спільноти зі стікерами, щоб почати!"
@@ -10588,7 +10594,7 @@ msgstr "Перейти"
msgid "Jump straight to the app to continue."
msgstr "Переходь одразу до додатка, щоб продовжити."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Перейти до {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Перейти до найстарішого непрочитаного
msgid "Jump to page"
msgstr "Перейти до сторінки"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Перейти до теперішнього"
@@ -10612,15 +10618,15 @@ msgstr "Перейти до теперішнього"
msgid "Jump to the channel of the active call"
msgstr "Перейти до каналу активного виклику"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Перейти до пов’язаного каналу"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Перейти до пов’язаного повідомлення"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Перейти до повідомлення в {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Завантаження ще..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Завантаження заповнювача"
@@ -11256,7 +11262,7 @@ msgstr "Керування наборами виразів"
msgid "Manage feature flags"
msgstr "Керування прапорцями функцій"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Керування функціями гільдії"
@@ -11353,7 +11359,7 @@ msgstr "Позначити як спойлер"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Позначити як непрочитане"
@@ -11822,7 +11828,7 @@ msgstr "Повідомлення та медіа"
msgid "Messages Deleted"
msgstr "Повідомлення видалено"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Не вдалося завантажити повідомлення"
@@ -12471,7 +12477,7 @@ msgstr "Псевдонім має містити не більше 32 симво
msgid "Nickname updated"
msgstr "Псевдонім оновлено"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Немає доступних каналів"
@@ -12575,6 +12581,10 @@ msgstr "Електронну пошту не вказано"
msgid "No emojis found matching your search."
msgstr "За запитом емодзі не знайдено."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Немає емодзі, що відповідають вашому запиту"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Паків ще не встановлено."
msgid "No invite background"
msgstr "Фону запрошення немає"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Посилань на запрошення немає"
@@ -12768,8 +12778,8 @@ msgstr "Налаштувань не знайдено"
msgid "No specific scopes requested."
msgstr "Не запитано конкретних обсягів доступу."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Немає наклейок"
@@ -12777,8 +12787,7 @@ msgstr "Немає наклейок"
msgid "No stickers found"
msgstr "Наклейок не знайдено"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Наклейок не знайдено"
@@ -12786,6 +12795,10 @@ msgstr "Наклейок не знайдено"
msgid "No stickers found matching your search."
msgstr "Наклейок, що відповідають пошуку, не знайдено."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Немає стікерів, що відповідають вашому запиту"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Системний канал відсутній"
@@ -13034,7 +13047,7 @@ msgstr "ОК"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Гаразд"
@@ -13764,7 +13777,7 @@ msgstr "Закріпи це. Закріпи як слід."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Закріпити повідомлення"
@@ -14678,7 +14691,7 @@ msgstr "Видалити банер"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Видалити наклейку"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Видалити тайм-аут"
@@ -14996,7 +15009,7 @@ msgstr "Замінити власний фон"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Відповісти"
@@ -15249,11 +15262,11 @@ msgstr "Підписатися знову"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Роль: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Ролі"
@@ -17529,22 +17542,22 @@ msgstr "Приховати всі згадки ролей"
msgid "Suppress All Role @mentions"
msgstr "Приховати всі згадки ролей"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Приховати вставки"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Приховати вставки"
@@ -17822,8 +17835,8 @@ msgstr "Бота додано."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Канал, який ти шукаєш, міг бути видалений або у тебе немає до нього доступу."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Спільнота, яку ти шукаєш, могла бути видалена або у тебе немає до неї доступу."
@@ -17921,11 +17934,11 @@ msgstr "У цьому каналі не налаштовано вебхуків.
msgid "There was an error loading the emojis. Please try again."
msgstr "Сталася помилка завантаження емодзі. Спробуйте ще раз."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Сталася помилка завантаження запрошувальних посилань для цього каналу. Спробуйте ще раз."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Сталася помилка завантаження запрошень. Спробуйте ще раз."
@@ -18010,7 +18023,7 @@ msgstr "Ця категорія вже містить максимальну к
msgid "This channel does not support webhooks."
msgstr "Цей канал не підтримує вебхуки."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "У цьому каналі ще немає запрошувальних посилань. Створіть одне, щоб запросити людей."
@@ -18043,7 +18056,7 @@ msgstr "Цей канал може містити контент, що не пі
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Цей код ще не використовувався. Спочатку завершіть вхід у браузері."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Ця спільнота ще не має запрошувальних посилань. Перейдіть до каналу й створіть запрошення."
@@ -18180,8 +18193,8 @@ msgstr "Так виглядають повідомлення"
msgid "This is not the channel you're looking for."
msgstr "Це не той канал, який ви шукаєте."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Це не та спільнота, яку ви шукаєте."
@@ -18300,9 +18313,9 @@ msgstr "Цей голосовий канал досяг ліміту корис
msgid "This was a @silent message."
msgstr "Це було @silent повідомлення."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Це створить розрив у просторово-часовому континуумі, і його не можна буде скасувати."
@@ -18371,7 +18384,7 @@ msgstr "Таймаут до {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Таймаут"
@@ -18659,8 +18672,7 @@ msgstr "Спробуй інше ім’я або використай префі
msgid "Try a different search query"
msgstr "Спробуй інший запит пошуку"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Спробуй інший пошуковий термін"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Спробуй інший пошуковий термін або фільтр"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Спробуй ще раз"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Відкріпити"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Непідтримуваний формат файлу. Будь лас
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Показати вбудоване"
@@ -20573,8 +20585,8 @@ msgstr "Ми надіслали посилання для підтверджен
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Не вдалося отримати повні відомості про цього користувача зараз."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Ми щось наплутали! Трішки зачекай, ми над цим працюємо."
@@ -21084,7 +21096,7 @@ msgstr "Ти не можеш взаємодіяти з реакціями в р
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Ти не можеш приєднатися, коли на тайм-ауті."
@@ -21169,7 +21181,7 @@ msgstr "Ти не можеш увімкнути звук, бо модерато
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Ти не можеш увімкнути мікрофон, бо модератор заглушив тебе."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "У тебе немає доступу до каналу, де було надіслано це повідомлення."
@@ -21177,7 +21189,7 @@ msgstr "У тебе немає доступу до каналу, де було
msgid "You do not have permission to send messages in this channel."
msgstr "Ти не маєш дозволу надсилати повідомлення в цьому каналі."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "У тебе немає доступу до жодного каналу в цій спільноті."
@@ -21468,7 +21480,7 @@ msgstr "Ти в голосовому каналі"
msgid "You're sending messages too quickly"
msgstr "Ти надсилаєш повідомлення занадто швидко"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Ти переглядаєш старіші повідомлення"
diff --git a/fluxer_app/src/locales/vi/messages.po b/fluxer_app/src/locales/vi/messages.po
index 8eeb02e2..5cb935d6 100644
--- a/fluxer_app/src/locales/vi/messages.po
+++ b/fluxer_app/src/locales/vi/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "Kiểm soát khi xem trước tin nhắn hiển thị trong danh sách tin nhắn trực tiếp"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "Dùng thường xuyên"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-ext:"
@@ -56,7 +62,7 @@ msgstr "... bật chế độ dày đặc. Tuyệt!"
msgid "(edited)"
msgstr "(đã chỉnh sửa)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(tải không thành công)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> đã bắt đầu một cuộc gọi."
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> hiện chỉ dành cho nhân viên Fluxer"
@@ -1647,7 +1653,7 @@ msgstr "Biểu mẫu thêm số điện thoại"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "Biểu tượng cảm xúc hoạt hình ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "Bạn có chắc muốn tắt xác thực hai yếu tố qua SMS không? Điều này sẽ làm tài khoản bớt an toàn hơn."
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "Bạn có chắc muốn bật lời mời không? Điều này sẽ cho phép người dùng tham gia cộng đồng qua link mời trở lại."
@@ -2548,7 +2554,7 @@ msgstr "Bạn có chắc muốn thu hồi lệnh cấm cho <0>{0}0> không? H
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "Bạn có chắc muốn thu hồi lời mời này không? Hành động này không thể hoàn tác."
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "Bạn có chắc muốn ẩn mọi nhúng liên kết trong tin nhắn này không? Hành động này sẽ ẩn tất cả nhúng."
@@ -3159,7 +3165,7 @@ msgstr "Đã đạt giới hạn đánh dấu"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "Đánh dấu tin nhắn"
@@ -3432,7 +3438,7 @@ msgstr "Cài đặt camera"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "Thay biệt danh nhóm của tôi"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "Thay biệt danh"
@@ -3775,7 +3781,7 @@ msgstr "Kênh"
msgid "Channel Access"
msgstr "Quyền truy cập kênh"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "Không có quyền truy cập kênh"
@@ -4142,7 +4148,7 @@ msgstr "Đăng ký tài khoản của bạn để tạo mã beta."
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "Xác nhận tài khoản của bạn để tham gia kênh thoại này."
@@ -4649,8 +4655,8 @@ msgstr "Cộng đồng khuyến khích hoặc tạo điều kiện cho hoạt đ
msgid "Community Settings"
msgstr "Cài đặt cộng đồng"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "Cộng đồng tạm thời không khả dụng"
@@ -5179,20 +5185,20 @@ msgstr "Sao chép liên kết"
msgid "Copy Media"
msgstr "Sao chép nội dung phương tiện"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "Sao chép tin nhắn"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "Sao chép ID tin nhắn"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "Sao chép liên kết tin nhắn"
@@ -5388,8 +5394,8 @@ msgstr "Biểu mẫu tạo danh mục yêu thích"
msgid "Create Group DM"
msgstr "Tạo nhóm tin nhắn riêng"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "Tạo lời mời"
@@ -5978,11 +5984,11 @@ msgstr "Mặc định sẽ hoạt hình khi tương tác trên di động để
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "Mặc định tắt trên di động để tiết kiệm pin và dữ liệu."
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "Xóa biểu tượng cảm xúc"
msgid "Delete media"
msgstr "Xóa nội dung phương tiện"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "Xóa tin nhắn"
@@ -6595,7 +6601,7 @@ msgstr "Thảo luận hoặc quảng bá hoạt động bất hợp pháp"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "Chỉnh sửa phương tiện"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "Chỉnh sửa tin nhắn"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "Biểu tượng cảm xúc"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "Cho phép giám sát đầu vào"
msgid "Enable Invites"
msgstr "Bật lời mời"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "Cho phép gửi lời mời lại"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "Cho phép gửi lời mời cho cộng đồng này"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "Không thể tải kho quà"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "Không thể tải lời mời"
@@ -8769,7 +8775,7 @@ msgstr "Quên mật khẩu của bạn?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "Chuyển tiếp"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "Lời mời tạm dừng"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "Lời mời đến <0>{0}0> hiện đang bị vô hiệu"
@@ -10457,8 +10463,8 @@ msgstr "Độ lệch"
msgid "Join a Community"
msgstr "Tham gia một cộng đồng"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "Tham gia một cộng đồng có nhãn dán để bắt đầu!"
@@ -10588,7 +10594,7 @@ msgstr "Nhảy"
msgid "Jump straight to the app to continue."
msgstr "Nhảy thẳng vào app để tiếp tục."
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "Nhảy đến {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "Nhảy đến tin nhắn chưa đọc cũ nhất"
msgid "Jump to page"
msgstr "Nhảy đến trang"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "Nhảy đến hiện tại"
@@ -10612,15 +10618,15 @@ msgstr "Nhảy đến hiện tại"
msgid "Jump to the channel of the active call"
msgstr "Nhảy đến kênh của cuộc gọi đang hoạt động"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "Nhảy đến kênh liên kết"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "Nhảy đến tin nhắn liên kết"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "Nhảy đến tin nhắn trong {labelText}"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "Đang tải thêm..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "Chỗ giữ chỗ đang tải"
@@ -11256,7 +11262,7 @@ msgstr "Quản lý gói biểu cảm"
msgid "Manage feature flags"
msgstr "Quản lý cờ tính năng"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "Quản lý tính năng máy chủ"
@@ -11353,7 +11359,7 @@ msgstr "Đánh dấu spoiler"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "Đánh dấu chưa đọc"
@@ -11822,7 +11828,7 @@ msgstr "Tin nhắn & Phương tiện"
msgid "Messages Deleted"
msgstr "Tin nhắn đã xóa"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "Không tải được tin nhắn"
@@ -12471,7 +12477,7 @@ msgstr "Biệt danh không được quá 32 ký tự"
msgid "Nickname updated"
msgstr "Biệt danh đã được cập nhật"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "Không có kênh nào truy cập được"
@@ -12575,6 +12581,10 @@ msgstr "Chưa đặt địa chỉ email"
msgid "No emojis found matching your search."
msgstr "Không tìm thấy emoji phù hợp với tìm kiếm của bạn."
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "Không có biểu tượng cảm xúc nào phù hợp với tìm kiếm của bạn"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "Chưa cài gói nào."
msgid "No invite background"
msgstr "Không có nền lời mời"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "Không có liên kết lời mời"
@@ -12768,8 +12778,8 @@ msgstr "Không tìm thấy cài đặt nào"
msgid "No specific scopes requested."
msgstr "Không yêu cầu phạm vi cụ thể nào."
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "Không có nhãn dán nào"
@@ -12777,8 +12787,7 @@ msgstr "Không có nhãn dán nào"
msgid "No stickers found"
msgstr "Không tìm thấy nhãn dán"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "Không tìm thấy nhãn dán"
@@ -12786,6 +12795,10 @@ msgstr "Không tìm thấy nhãn dán"
msgid "No stickers found matching your search."
msgstr "Không có nhãn dán nào khớp với tìm kiếm của bạn."
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "Không có nhãn dán nào phù hợp với tìm kiếm của bạn"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "Không có kênh hệ thống"
@@ -13034,7 +13047,7 @@ msgstr "OK"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "Được"
@@ -13764,7 +13777,7 @@ msgstr "Ghim ngay. Ghim thật chuẩn."
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "Ghim tin nhắn"
@@ -14678,7 +14691,7 @@ msgstr "Xóa biểu ngữ"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "Gỡ nhãn dán"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "Hủy thời gian chờ"
@@ -14996,7 +15009,7 @@ msgstr "Thay nền tùy chỉnh của bạn"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "Trả lời"
@@ -15249,11 +15262,11 @@ msgstr "Đăng ký lại"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "Vai trò: {0}."
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "Vai trò"
@@ -17529,22 +17542,22 @@ msgstr "Chặn tất cả @mention vai trò"
msgid "Suppress All Role @mentions"
msgstr "Chặn tất cả @mention vai trò"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "Chặn nhúng"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "Chặn nhúng"
@@ -17822,8 +17835,8 @@ msgstr "Bot đã được thêm."
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "Kênh bạn đang tìm có thể đã bị xóa hoặc bạn không có quyền truy cập."
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "Cộng đồng bạn đang tìm có thể đã bị xóa hoặc bạn không có quyền truy cập."
@@ -17921,11 +17934,11 @@ msgstr "Chưa có webhook nào được cấu hình cho kênh này. Tạo webhoo
msgid "There was an error loading the emojis. Please try again."
msgstr "Đã có lỗi khi tải emoji. Vui lòng thử lại."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "Đã có lỗi khi tải liên kết mời cho kênh này. Vui lòng thử lại."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "Đã có lỗi khi tải lời mời. Vui lòng thử lại."
@@ -18010,7 +18023,7 @@ msgstr "Chuyên mục này đã chứa tối đa {MAX_CHANNELS_PER_CATEGORY} kê
msgid "This channel does not support webhooks."
msgstr "Kênh này không hỗ trợ webhook."
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "Kênh này chưa có liên kết mời nào. Tạo một liên kết để mời người khác vào kênh."
@@ -18043,7 +18056,7 @@ msgstr "Kênh này có thể chứa nội dung không phù hợp nơi làm việ
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "Mã này chưa được sử dụng. Vui lòng hoàn tất đăng nhập trên trình duyệt trước."
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "Cộng đồng này chưa có liên kết mời nào. Vào một kênh và tạo liên kết để mời mọi người."
@@ -18180,8 +18193,8 @@ msgstr "Đây là cách tin nhắn hiển thị"
msgid "This is not the channel you're looking for."
msgstr "Đây không phải kênh bạn đang tìm."
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "Đây không phải cộng đồng bạn đang tìm."
@@ -18300,9 +18313,9 @@ msgstr "Kênh thoại này đã đạt giới hạn người dùng. Vui lòng th
msgid "This was a @silent message."
msgstr "Đây là tin nhắn @silent."
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "Điều này sẽ tạo ra một vết nứt trong không-thời gian và không thể hoàn tác."
@@ -18371,7 +18384,7 @@ msgstr "Bị khóa đến {0}."
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "Thời gian chờ"
@@ -18659,8 +18672,7 @@ msgstr "Thử tên khác hoặc dùng tiền tố @ / # / ! / * để lọc kế
msgid "Try a different search query"
msgstr "Thử truy vấn tìm kiếm khác"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "Thử thuật ngữ tìm kiếm khác"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "Thử thuật ngữ hoặc bộ lọc tìm kiếm khác"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "Thử lại"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "Bỏ ghim"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "Định dạng tệp không được hỗ trợ. Vui lòng dùng JPG, PN
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "Cho phép hiển thị nhúng"
@@ -20573,8 +20585,8 @@ msgstr "Chúng tôi đã gửi một liên kết đến email để xác thực
msgid "We failed to retrieve the full information about this user at this time."
msgstr "Chúng tôi không thể lấy đầy đủ thông tin về người dùng này vào lúc này."
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "Chúng tôi bị lỗi! Giữ máy, chúng tôi đang xử lý."
@@ -21084,7 +21096,7 @@ msgstr "Bạn không thể tương tác với phản ứng trong kết quả tì
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "Bạn không thể tham gia khi đang bị timeout."
@@ -21169,7 +21181,7 @@ msgstr "Bạn không thể bật lại âm thanh đầu vào vì bạn đã bị
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "Bạn không thể bật lại tiếng vì bạn đã bị người điều hành tắt tiếng."
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "Bạn không có quyền truy cập vào kênh nơi tin nhắn này được gửi."
@@ -21177,7 +21189,7 @@ msgstr "Bạn không có quyền truy cập vào kênh nơi tin nhắn này đư
msgid "You do not have permission to send messages in this channel."
msgstr "Bạn không có quyền gửi tin nhắn trong kênh này."
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "Bạn không có quyền truy cập vào bất kỳ kênh nào trong cộng đồng này."
@@ -21468,7 +21480,7 @@ msgstr "Bạn đang ở trong kênh thoại"
msgid "You're sending messages too quickly"
msgstr "Bạn đang gửi tin nhắn quá nhanh"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "Bạn đang xem tin nhắn cũ hơn"
diff --git a/fluxer_app/src/locales/zh-CN/messages.po b/fluxer_app/src/locales/zh-CN/messages.po
index e1240a5b..4e15bac3 100644
--- a/fluxer_app/src/locales/zh-CN/messages.po
+++ b/fluxer_app/src/locales/zh-CN/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "控制私信列表中何时显示消息预览"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "常用"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-扩展名:"
@@ -56,7 +62,7 @@ msgstr "...开启密集模式。不错!"
msgid "(edited)"
msgstr "(已编辑)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(加载失败)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> 发起了一次通话。"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> 目前仅 Fluxer 工作人员可访问"
@@ -1647,7 +1653,7 @@ msgstr "添加电话号码表单"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "动画表情 ({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "确定要禁用短信双重认证吗?这将降低您账户的安全性。"
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "确定要启用邀请吗?这将允许用户再次通过邀请链接加入此社区。"
@@ -2548,7 +2554,7 @@ msgstr "确定要解除对 <0>{0}0> 的封禁吗?他们将能够重新加入
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "确定要撤销此邀请吗?此操作无法撤销。"
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "确定要屏蔽此消息中的所有链接嵌入内容吗?此操作将隐藏此消息中的所有嵌入内容。"
@@ -3159,7 +3165,7 @@ msgstr "书签数量已达上限"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "书签消息"
@@ -3432,7 +3438,7 @@ msgstr "摄像头设置"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "更改我的群组昵称"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "更改昵称"
@@ -3775,7 +3781,7 @@ msgstr "频道"
msgid "Channel Access"
msgstr "频道访问"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "频道访问被拒绝"
@@ -4142,7 +4148,7 @@ msgstr "索取您的账户以生成测试版代码。"
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "请验证您的帐户以加入此语音频道。"
@@ -4649,8 +4655,8 @@ msgstr "社区宣扬或协助非法活动"
msgid "Community Settings"
msgstr "社区设置"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "社区暂时不可用"
@@ -5179,20 +5185,20 @@ msgstr "复制链接"
msgid "Copy Media"
msgstr "复制媒体"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "复制消息"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "复制消息ID"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "复制消息链接"
@@ -5388,8 +5394,8 @@ msgstr "创建收藏分类表单"
msgid "Create Group DM"
msgstr "创建群组私信"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "创建邀请"
@@ -5978,11 +5984,11 @@ msgstr "默认为移动设备交互时启用动画以节省电量。"
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "默认为移动设备关闭以节省电量和数据使用。"
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "删除表情"
msgid "Delete media"
msgstr "删除媒体"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "删除消息"
@@ -6595,7 +6601,7 @@ msgstr "讨论或宣传非法活动"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "编辑媒体"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "编辑消息"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "表情符号"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "启用输入监控权限"
msgid "Enable Invites"
msgstr "启用邀请"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "再次启用邀请"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "为此社区启用邀请"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "加载礼物库存失败"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "加载邀请失败"
@@ -8769,7 +8775,7 @@ msgstr "忘记密码了?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "转发"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "邀请已暂停"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "向<0>{0}0>的邀请当前已禁用"
@@ -10457,8 +10463,8 @@ msgstr "抖动"
msgid "Join a Community"
msgstr "加入社区"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "加入一个有贴纸的社区来开始吧!"
@@ -10588,7 +10594,7 @@ msgstr "跳转"
msgid "Jump straight to the app to continue."
msgstr "直接跳转到应用以继续。"
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "跳转到 {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "跳转到最早未读消息"
msgid "Jump to page"
msgstr "跳转到页面"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "跳转到当前"
@@ -10612,15 +10618,15 @@ msgstr "跳转到当前"
msgid "Jump to the channel of the active call"
msgstr "跳转到活跃通话的频道"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "跳转到链接的频道"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "跳转到链接的消息"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "跳转到 {labelText} 中的消息"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "正在加载更多..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "加载占位符"
@@ -11256,7 +11262,7 @@ msgstr "管理表情包"
msgid "Manage feature flags"
msgstr "管理功能开关"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "管理公会功能"
@@ -11353,7 +11359,7 @@ msgstr "标记为剧透"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "标记为未读"
@@ -11822,7 +11828,7 @@ msgstr "消息和媒体"
msgid "Messages Deleted"
msgstr "消息已删除"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "消息加载失败"
@@ -12471,7 +12477,7 @@ msgstr "昵称不得超过32个字符"
msgid "Nickname updated"
msgstr "昵称已更新"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "无可访问的频道"
@@ -12575,6 +12581,10 @@ msgstr "未设置电子邮件地址"
msgid "No emojis found matching your search."
msgstr "未找到匹配搜索的表情符号。"
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "没有表情符号匹配您的搜索"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "尚未安装任何包。"
msgid "No invite background"
msgstr "没有邀请背景"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "没有邀请链接"
@@ -12768,8 +12778,8 @@ msgstr "未找到设置"
msgid "No specific scopes requested."
msgstr "未请求特定范围。"
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "无可用贴纸"
@@ -12777,8 +12787,7 @@ msgstr "无可用贴纸"
msgid "No stickers found"
msgstr "未找到贴纸"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "未找到贴纸"
@@ -12786,6 +12795,10 @@ msgstr "未找到贴纸"
msgid "No stickers found matching your search."
msgstr "未找到匹配您搜索的贴纸。"
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "没有贴纸匹配您的搜索"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "无系统频道"
@@ -13034,7 +13047,7 @@ msgstr "确定"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "好的"
@@ -13764,7 +13777,7 @@ msgstr "钉住它,好好钉住。"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "置顶消息"
@@ -14678,7 +14691,7 @@ msgstr "移除横幅"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "移除贴纸"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "移除超时"
@@ -14996,7 +15009,7 @@ msgstr "替换您的自定义背景"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "回复"
@@ -15249,11 +15262,11 @@ msgstr "重新订阅"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "角色:{0}。"
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "角色"
@@ -17529,22 +17542,22 @@ msgstr "屏蔽所有角色@提及"
msgid "Suppress All Role @mentions"
msgstr "屏蔽所有角色@提及"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "屏蔽嵌入内容"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "屏蔽嵌入内容"
@@ -17822,8 +17835,8 @@ msgstr "机器人已添加。"
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "你寻找的频道可能已被删除,或者你可能没有访问权限。"
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "你寻找的社区可能已被删除,或者你可能没有访问权限。"
@@ -17921,11 +17934,11 @@ msgstr "此频道未配置 Webhook。创建一个 Webhook 以允许外部应用
msgid "There was an error loading the emojis. Please try again."
msgstr "加载表情时出错,请重试。"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "加载此频道的邀请链接时出错,请重试。"
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "加载邀请时出错,请重试。"
@@ -18010,7 +18023,7 @@ msgstr "此分类已达到最大频道数 {MAX_CHANNELS_PER_CATEGORY}。"
msgid "This channel does not support webhooks."
msgstr "此频道不支持 Webhook。"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "此频道还没有邀请链接。创建一个来邀请他人加入此频道。"
@@ -18043,7 +18056,7 @@ msgstr "此频道可能包含不适宜工作或对某些用户不合适的内容
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "此代码尚未使用。请先在浏览器中完成登录。"
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "此社区还没有任何邀请链接。前往一个频道并创建邀请来邀请他人。"
@@ -18180,8 +18193,8 @@ msgstr "消息显示效果如下"
msgid "This is not the channel you're looking for."
msgstr "这不是您要找的频道。"
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "这不是您要找的社区。"
@@ -18300,9 +18313,9 @@ msgstr "此语音频道已达到用户上限。请稍后再试或加入其他频
msgid "This was a @silent message."
msgstr "这是一条@静默消息。"
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "这将在时空连续体中造成裂痕且无法撤销。"
@@ -18371,7 +18384,7 @@ msgstr "超时直至{0}。"
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "超时"
@@ -18659,8 +18672,7 @@ msgstr "尝试不同的名称或使用@ / # / ! / *前缀来筛选结果。"
msgid "Try a different search query"
msgstr "尝试不同的搜索查询"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "尝试不同的搜索词"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "尝试不同的搜索词或筛选器"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "重试"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "取消置顶"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "不支持的文件格式。请使用JPG、PNG、GIF、WebP或MP4。"
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "取消隐藏嵌入内容"
@@ -20573,8 +20585,8 @@ msgstr "我们已发送授权此登录的链接邮件。请打开您的收件箱
msgid "We failed to retrieve the full information about this user at this time."
msgstr "我们目前未能获取此用户的完整信息。"
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "我们搞砸了!稍等一下,我们正在处理。"
@@ -21084,7 +21096,7 @@ msgstr "你不能与搜索结果中的反应互动,因为这可能会扰乱时
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "你在禁言期间无法加入。"
@@ -21169,7 +21181,7 @@ msgstr "你无法取消自己的静音,因为你已被管理员设为静音。
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "你无法取消自己的禁言,因为你已被管理员禁言。"
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "你无权访问发送此消息的频道。"
@@ -21177,7 +21189,7 @@ msgstr "你无权访问发送此消息的频道。"
msgid "You do not have permission to send messages in this channel."
msgstr "你无权在此频道中发送消息。"
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "你无法访问此社区中的任何频道。"
@@ -21468,7 +21480,7 @@ msgstr "您在语音频道中"
msgid "You're sending messages too quickly"
msgstr "您发送消息的速度太快了"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "您正在查看较早的消息"
diff --git a/fluxer_app/src/locales/zh-TW/messages.po b/fluxer_app/src/locales/zh-TW/messages.po
index 3b60b0d0..575426cc 100644
--- a/fluxer_app/src/locales/zh-TW/messages.po
+++ b/fluxer_app/src/locales/zh-TW/messages.po
@@ -17,6 +17,12 @@ msgstr ""
msgid "Control when message previews are shown in the DM list"
msgstr "控制在私訊列表中何時顯示訊息預覽"
+#. js-lingui-explicit-id
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:56
+#: src/components/channel/emoji-picker/EmojiPickerCategoryList.tsx:98
+msgid "Frequently Used"
+msgstr "常用"
+
#: src/utils/SearchUtils.ts:341
msgid "-ext:"
msgstr "-副檔名:"
@@ -56,7 +62,7 @@ msgstr "...開啟密集模式。讚!"
msgid "(edited)"
msgstr "(已編輯)"
-#: src/lib/markdown/renderers/emoji-renderer.tsx:189
+#: src/lib/markdown/renderers/emoji-renderer.tsx:196
msgid "(failed to load)"
msgstr "(載入失敗)"
@@ -887,7 +893,7 @@ msgid "<0/> started a call."
msgstr "<0/> 開始了一場通話。"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:132
+#: src/components/layout/GuildLayout.tsx:131
msgid "<0>{0}0> is currently only accessible to Fluxer staff members"
msgstr "<0>{0}0> 目前只限 Fluxer 員工存取"
@@ -1647,7 +1653,7 @@ msgstr "新增電話號碼表單"
#: src/components/channel/MessageActionBar.tsx:450
#: src/components/channel/MessageActionBar.tsx:741
-#: src/components/channel/messageActionMenu.tsx:92
+#: src/components/channel/messageActionMenu.tsx:94
#: src/components/channel/MessageReactions.tsx:263
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:65
msgid "Add Reaction"
@@ -2199,7 +2205,7 @@ msgid "Animated Emoji ({0})"
msgstr "動畫表情符號({0})"
#: src/components/channel/embeds/media/EmbedGifv.tsx:237
-#: src/components/channel/embeds/media/EmbedGifv.tsx:749
+#: src/components/channel/embeds/media/EmbedGifv.tsx:752
#: src/components/modals/MediaViewerModal.tsx:294
#: src/components/modals/MediaViewerModal.tsx:362
msgid "Animated GIF"
@@ -2481,7 +2487,7 @@ msgid "Are you sure you want to disable SMS two-factor authentication? This will
msgstr "確定要停用簡訊雙重驗證嗎?這會降低你的帳號安全性。"
#: src/components/invites/DisableInvitesButton.tsx:49
-#: src/components/layout/GuildLayout.tsx:69
+#: src/components/layout/GuildLayout.tsx:68
msgid "Are you sure you want to enable invites? This will allow users to join this community through invite links again."
msgstr "確定要啟用邀請嗎?這將允許用戶再次透過邀請連結加入這個社群。"
@@ -2548,7 +2554,7 @@ msgstr "確定要解除對 <0>{0}0> 的封鎖嗎?他們將能重新加入社
msgid "Are you sure you want to revoke this invite? This action cannot be undone."
msgstr "確定要撤銷此邀請嗎?此操作無法復原。"
-#: src/components/channel/embeds/Embed.tsx:707
+#: src/components/channel/embeds/Embed.tsx:143
msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message."
msgstr "確定要隱藏這則訊息的所有連結嵌入嗎?此操作會隱藏該訊息的所有嵌入內容。"
@@ -3159,7 +3165,7 @@ msgstr "已達書籤上限"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Bookmark Message"
msgstr "加入書籤"
@@ -3432,7 +3438,7 @@ msgstr "相機設定"
#: src/components/channel/MentionEveryonePopout.tsx:125
#: src/components/emojis/EmojiListItem.tsx:120
#: src/components/invites/DisableInvitesButton.tsx:62
-#: src/components/layout/GuildLayout.tsx:76
+#: src/components/layout/GuildLayout.tsx:75
#: src/components/modals/AccountDeleteModal.tsx:89
#: src/components/modals/AccountDisableModal.tsx:63
#: src/components/modals/AddFavoriteMemeModal.tsx:99
@@ -3680,8 +3686,8 @@ msgstr "更改我的群組暱稱"
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/modals/UserProfileActionsSheet.tsx:225
#: src/components/uikit/ContextMenu/FavoritesChannelContextMenu.tsx:119
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:229
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:245
msgid "Change Nickname"
msgstr "更改暱稱"
@@ -3775,7 +3781,7 @@ msgstr "頻道"
msgid "Channel Access"
msgstr "頻道存取"
-#: src/lib/markdown/renderers/link-renderer.tsx:180
+#: src/lib/markdown/renderers/link-renderer.tsx:206
msgid "Channel Access Denied"
msgstr "頻道存取被拒"
@@ -4142,7 +4148,7 @@ msgstr "認領你的帳戶以生成測試代碼。"
#: src/components/layout/ChannelItem.tsx:208
#: src/components/layout/ChannelItem.tsx:382
-#: src/stores/voice/MediaEngineFacade.ts:537
+#: src/stores/voice/MediaEngineFacade.ts:541
msgid "Claim your account to join this voice channel."
msgstr "認領您的帳號以加入此語音頻道。"
@@ -4649,8 +4655,8 @@ msgstr "社群宣揚或促成非法活動"
msgid "Community Settings"
msgstr "社群設定"
-#: src/components/layout/GuildLayout.tsx:306
-#: src/components/layout/GuildLayout.tsx:353
+#: src/components/layout/GuildLayout.tsx:304
+#: src/components/layout/GuildLayout.tsx:345
msgid "Community temporarily unavailable"
msgstr "社群暫時無法使用"
@@ -5179,20 +5185,20 @@ msgstr "複製連結"
msgid "Copy Media"
msgstr "複製媒體"
-#: src/components/channel/messageActionMenu.tsx:174
+#: src/components/channel/messageActionMenu.tsx:176
msgid "Copy Message"
msgstr "複製訊息"
#: src/components/channel/MessageActionBar.tsx:580
#: src/components/channel/MessageActionBar.tsx:673
-#: src/components/channel/messageActionMenu.tsx:181
+#: src/components/channel/messageActionMenu.tsx:183
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:235
msgid "Copy Message ID"
msgstr "複製訊息 ID"
#: src/components/channel/MessageActionBar.tsx:570
#: src/components/channel/MessageActionBar.tsx:679
-#: src/components/channel/messageActionMenu.tsx:167
+#: src/components/channel/messageActionMenu.tsx:169
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:216
msgid "Copy Message Link"
msgstr "複製訊息連結"
@@ -5388,8 +5394,8 @@ msgstr "建立最愛分類表單"
msgid "Create Group DM"
msgstr "建立群組私訊"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:88
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:130
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:87
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:128
msgid "Create Invite"
msgstr "建立邀請"
@@ -5978,11 +5984,11 @@ msgstr "行動裝置上預設互動時會顯示動畫以節省電力。"
msgid "Defaults to off on mobile to preserve battery life and data usage."
msgstr "行動裝置上預設關閉以節省電力與資料用量。"
-#: src/actions/MessageActionCreators.tsx:394
+#: src/actions/MessageActionCreators.tsx:406
#: src/components/channel/embeds/media/EmbedAudio.tsx:227
#: src/components/channel/embeds/media/MediaContainer.tsx:115
-#: src/components/channel/Messages.tsx:442
-#: src/components/channel/Messages.tsx:522
+#: src/components/channel/Messages.tsx:447
+#: src/components/channel/Messages.tsx:527
#: src/components/channel/MobileMemesPicker.tsx:546
#: src/components/channel/pickers/memes/MemeGridItem.tsx:120
#: src/components/emojis/EmojiListItem.tsx:189
@@ -6091,14 +6097,14 @@ msgstr "刪除表情符號"
msgid "Delete media"
msgstr "刪除媒體"
-#: src/actions/MessageActionCreators.tsx:391
+#: src/actions/MessageActionCreators.tsx:403
#: src/components/channel/MessageActionBar.tsx:608
#: src/components/channel/MessageActionBar.tsx:787
#: src/components/channel/MessageActionBar.tsx:804
-#: src/components/channel/messageActionMenu.tsx:156
-#: src/components/channel/messageActionMenu.tsx:193
-#: src/components/channel/Messages.tsx:439
-#: src/components/channel/Messages.tsx:519
+#: src/components/channel/messageActionMenu.tsx:158
+#: src/components/channel/messageActionMenu.tsx:195
+#: src/components/channel/Messages.tsx:444
+#: src/components/channel/Messages.tsx:524
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273
msgid "Delete Message"
msgstr "刪除訊息"
@@ -6595,7 +6601,7 @@ msgstr "討論或宣傳非法活動"
#: src/components/layout/app-layout/nagbars/PremiumExpiredNagbar.tsx:73
#: src/components/layout/app-layout/nagbars/PremiumGracePeriodNagbar.tsx:79
#: src/components/layout/app-layout/nagbars/PremiumOnboardingNagbar.tsx:57
-#: src/components/layout/GuildLayout.tsx:106
+#: src/components/layout/GuildLayout.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:105
#: src/components/modals/GiftAcceptModal.tsx:131
#: src/components/modals/RequiredActionModal.tsx:475
@@ -6978,7 +6984,7 @@ msgstr "編輯媒體"
#: src/components/channel/MessageActionBar.tsx:463
#: src/components/channel/MessageActionBar.tsx:751
-#: src/components/channel/messageActionMenu.tsx:124
+#: src/components/channel/messageActionMenu.tsx:126
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:83
msgid "Edit Message"
msgstr "編輯訊息"
@@ -7224,7 +7230,7 @@ msgid "Emojis"
msgstr "表情符號"
#: src/components/invites/DisableInvitesButton.tsx:60
-#: src/components/layout/GuildLayout.tsx:74
+#: src/components/layout/GuildLayout.tsx:73
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:241
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:430
#: src/components/modals/tabs/AccountSecurityTab/SecurityTab.tsx:436
@@ -7299,12 +7305,12 @@ msgstr "啟用輸入監控權限"
msgid "Enable Invites"
msgstr "啟用邀請"
-#: src/components/layout/GuildLayout.tsx:111
+#: src/components/layout/GuildLayout.tsx:110
msgid "Enable Invites Again"
msgstr "重新啟用邀請"
#: src/components/invites/DisableInvitesButton.tsx:46
-#: src/components/layout/GuildLayout.tsx:67
+#: src/components/layout/GuildLayout.tsx:66
msgid "Enable invites for this community"
msgstr "為此社群啟用邀請"
@@ -7947,8 +7953,8 @@ msgid "Failed to load gift inventory"
msgstr "載入禮物庫存失敗"
#: src/components/alerts/InvitesLoadFailedModal.tsx:28
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:144
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:122
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:142
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:120
msgid "Failed to load invites"
msgstr "載入邀請失敗"
@@ -8769,7 +8775,7 @@ msgstr "忘記密碼了嗎?"
#: src/components/channel/MessageActionBar.tsx:489
#: src/components/channel/MessageActionBar.tsx:767
-#: src/components/channel/messageActionMenu.tsx:115
+#: src/components/channel/messageActionMenu.tsx:117
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:119
msgid "Forward"
msgstr "轉寄"
@@ -10416,7 +10422,7 @@ msgid "Invites Paused"
msgstr "邀請已暫停"
#. placeholder {0}: guild.name
-#: src/components/layout/GuildLayout.tsx:99
+#: src/components/layout/GuildLayout.tsx:98
msgid "Invites to <0>{0}0> are currently disabled"
msgstr "目前已停用對 <0>{0}0> 的邀請"
@@ -10457,8 +10463,8 @@ msgstr "延遲波動"
msgid "Join a Community"
msgstr "加入社群"
-#: src/components/channel/MobileStickersPicker.tsx:122
-#: src/components/channel/StickersPicker.tsx:198
+#: src/components/channel/MobileStickersPicker.tsx:132
+#: src/components/channel/StickersPicker.tsx:209
msgid "Join a community with stickers to get started!"
msgstr "加入有貼圖的社群開始吧!"
@@ -10588,7 +10594,7 @@ msgstr "跳轉"
msgid "Jump straight to the app to continue."
msgstr "直接跳回應用程式繼續。"
-#: src/lib/markdown/renderers/link-renderer.tsx:98
+#: src/lib/markdown/renderers/link-renderer.tsx:108
msgid "Jump to {labelText}"
msgstr "跳到 {labelText}"
@@ -10604,7 +10610,7 @@ msgstr "跳到最舊未讀訊息"
msgid "Jump to page"
msgstr "跳到頁面"
-#: src/components/channel/Messages.tsx:915
+#: src/components/channel/Messages.tsx:920
msgid "Jump to Present"
msgstr "跳到目前"
@@ -10612,15 +10618,15 @@ msgstr "跳到目前"
msgid "Jump to the channel of the active call"
msgstr "跳到正在通話的頻道"
-#: src/lib/markdown/renderers/link-renderer.tsx:99
+#: src/lib/markdown/renderers/link-renderer.tsx:109
msgid "Jump to the linked channel"
msgstr "跳到連結的頻道"
-#: src/lib/markdown/renderers/link-renderer.tsx:96
+#: src/lib/markdown/renderers/link-renderer.tsx:106
msgid "Jump to the linked message"
msgstr "跳到連結的訊息"
-#: src/lib/markdown/renderers/link-renderer.tsx:95
+#: src/lib/markdown/renderers/link-renderer.tsx:105
msgid "Jump to the message in {labelText}"
msgstr "跳到 {labelText} 中的訊息"
@@ -11024,7 +11030,7 @@ msgid "Loading more..."
msgstr "正在載入更多..."
#: src/components/channel/embeds/media/EmbedGifv.tsx:493
-#: src/components/channel/embeds/media/EmbedGifv.tsx:745
+#: src/components/channel/embeds/media/EmbedGifv.tsx:748
msgid "Loading placeholder"
msgstr "載入中佔位符"
@@ -11256,7 +11262,7 @@ msgstr "管理表情包"
msgid "Manage feature flags"
msgstr "管理功能標記"
-#: src/components/layout/GuildLayout.tsx:138
+#: src/components/layout/GuildLayout.tsx:137
msgid "Manage Guild Features"
msgstr "管理公會功能"
@@ -11353,7 +11359,7 @@ msgstr "標記為爆雷"
#: src/components/channel/MessageActionBar.tsx:530
#: src/components/channel/MessageActionBar.tsx:701
-#: src/components/channel/messageActionMenu.tsx:99
+#: src/components/channel/messageActionMenu.tsx:101
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:311
msgid "Mark as Unread"
msgstr "標記為未讀"
@@ -11822,7 +11828,7 @@ msgstr "訊息與媒體"
msgid "Messages Deleted"
msgstr "訊息已刪除"
-#: src/components/channel/Messages.tsx:936
+#: src/components/channel/Messages.tsx:941
msgid "Messages failed to load"
msgstr "訊息載入失敗"
@@ -12471,7 +12477,7 @@ msgstr "暱稱不得超過 32 個字元"
msgid "Nickname updated"
msgstr "暱稱已更新"
-#: src/components/layout/GuildLayout.tsx:397
+#: src/components/layout/GuildLayout.tsx:385
msgid "No accessible channels"
msgstr "沒有可存取的頻道"
@@ -12575,6 +12581,10 @@ msgstr "未設定電子郵件地址"
msgid "No emojis found matching your search."
msgstr "找不到符合搜尋的表情符號。"
+#: src/components/channel/EmojiPicker.tsx:283
+msgid "No emojis match your search"
+msgstr "沒有符合您搜尋的表情符號"
+
#: src/components/common/FriendSelector.tsx:211
#: src/components/modals/shared/RecipientList.tsx:191
msgid "No friends found"
@@ -12613,8 +12623,8 @@ msgstr "尚未安裝任何套件。"
msgid "No invite background"
msgstr "沒有邀請背景"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:120
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:107
msgid "No invite links"
msgstr "沒有邀請連結"
@@ -12768,8 +12778,8 @@ msgstr "找不到設定"
msgid "No specific scopes requested."
msgstr "未指定任何範圍。"
-#: src/components/channel/MobileStickersPicker.tsx:121
-#: src/components/channel/StickersPicker.tsx:197
+#: src/components/channel/MobileStickersPicker.tsx:131
+#: src/components/channel/StickersPicker.tsx:208
msgid "No Stickers Available"
msgstr "沒有可用貼圖"
@@ -12777,8 +12787,7 @@ msgstr "沒有可用貼圖"
msgid "No stickers found"
msgstr "找不到貼圖"
-#: src/components/channel/MobileStickersPicker.tsx:147
-#: src/components/channel/StickersPicker.tsx:226
+#: src/components/channel/MobileStickersPicker.tsx:157
msgid "No Stickers Found"
msgstr "找不到貼圖"
@@ -12786,6 +12795,10 @@ msgstr "找不到貼圖"
msgid "No stickers found matching your search."
msgstr "找不到符合搜尋條件的貼圖。"
+#: src/components/channel/StickersPicker.tsx:285
+msgid "No stickers match your search"
+msgstr "沒有符合您搜尋的貼圖"
+
#: src/components/modals/guildTabs/GuildOverviewTab/sections/SystemWelcomeSection.tsx:40
msgid "No System Channel"
msgstr "無系統頻道"
@@ -13034,7 +13047,7 @@ msgstr "確定"
#: src/components/alerts/SlowmodeRateLimitedModal.tsx:65
#: src/lib/KeybindManager.ts:495
#: src/lib/KeybindManager.ts:520
-#: src/lib/markdown/renderers/link-renderer.tsx:182
+#: src/lib/markdown/renderers/link-renderer.tsx:208
msgid "Okay"
msgstr "好的"
@@ -13764,7 +13777,7 @@ msgstr "釘上去。釘得很棒。"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:159
msgid "Pin Message"
msgstr "釘選訊息"
@@ -14678,7 +14691,7 @@ msgstr "移除橫幅"
#: src/components/channel/MessageActionBar.tsx:518
#: src/components/channel/MessageActionBar.tsx:708
-#: src/components/channel/messageActionMenu.tsx:140
+#: src/components/channel/messageActionMenu.tsx:142
#: src/components/modals/BookmarksBottomSheet.tsx:93
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:140
msgid "Remove Bookmark"
@@ -14797,7 +14810,7 @@ msgstr "移除貼圖"
#: src/components/modals/RemoveTimeoutModal.tsx:61
#: src/components/modals/RemoveTimeoutModal.tsx:75
#: src/components/modals/TimeoutMemberSheet.tsx:101
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Remove Timeout"
msgstr "移除限制"
@@ -14996,7 +15009,7 @@ msgstr "替換您的自訂背景"
#: src/components/channel/MessageActionBar.tsx:476
#: src/components/channel/MessageActionBar.tsx:759
-#: src/components/channel/messageActionMenu.tsx:107
+#: src/components/channel/messageActionMenu.tsx:109
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:101
msgid "Reply"
msgstr "回覆"
@@ -15249,11 +15262,11 @@ msgstr "重新訂閱"
#: src/components/alerts/RateLimitedConfirmModal.tsx:73
#: src/components/auth/IpAuthorizationScreen.tsx:161
#: src/components/channel/MessageActionBar.tsx:798
-#: src/components/channel/messageActionMenu.tsx:187
+#: src/components/channel/messageActionMenu.tsx:189
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:126
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
#: src/components/modals/guildTabs/GuildWebhooksTab.tsx:137
#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:559
@@ -15425,7 +15438,7 @@ msgstr "身分組:{0}。"
#: src/components/modals/guildTabs/GuildRolesTab.tsx:928
#: src/components/modals/shared/AddOverridePopout.tsx:144
#: src/components/popouts/UserProfileShared.tsx:147
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:166
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:173
msgid "Roles"
msgstr "身分組"
@@ -17529,22 +17542,22 @@ msgstr "隱藏所有角色提及"
msgid "Suppress All Role @mentions"
msgstr "隱藏所有角色提及"
-#: src/components/channel/embeds/Embed.tsx:799
-#: src/components/channel/embeds/Embed.tsx:835
-#: src/components/channel/embeds/Embed.tsx:859
-#: src/components/channel/embeds/Embed.tsx:904
-#: src/components/channel/embeds/Embed.tsx:940
-#: src/components/channel/embeds/Embed.tsx:981
-#: src/components/channel/embeds/Embed.tsx:1017
-#: src/components/channel/embeds/Embed.tsx:1059
+#: src/components/channel/embeds/Embed.tsx:800
+#: src/components/channel/embeds/Embed.tsx:836
+#: src/components/channel/embeds/Embed.tsx:860
+#: src/components/channel/embeds/Embed.tsx:905
+#: src/components/channel/embeds/Embed.tsx:941
+#: src/components/channel/embeds/Embed.tsx:982
+#: src/components/channel/embeds/Embed.tsx:1018
+#: src/components/channel/embeds/Embed.tsx:1060
msgid "Suppress embeds"
msgstr "隱藏嵌入內容"
-#: src/components/channel/embeds/Embed.tsx:705
-#: src/components/channel/embeds/Embed.tsx:712
+#: src/components/channel/embeds/Embed.tsx:141
+#: src/components/channel/embeds/Embed.tsx:148
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Suppress Embeds"
msgstr "隱藏嵌入內容"
@@ -17822,8 +17835,8 @@ msgstr "機器人已加入。"
msgid "The channel you're looking for may have been deleted or you may not have access to it."
msgstr "你尋找的頻道可能已被刪除,或你沒有存取權限。"
-#: src/components/layout/GuildLayout.tsx:313
-#: src/components/layout/GuildLayout.tsx:376
+#: src/components/layout/GuildLayout.tsx:311
+#: src/components/layout/GuildLayout.tsx:366
msgid "The community you're looking for may have been deleted or you may not have access to it."
msgstr "你尋找的社群可能已被刪除,或你沒有存取權限。"
@@ -17921,11 +17934,11 @@ msgstr "此頻道尚未設定 webhook。建立 webhook 後即可讓外部應用
msgid "There was an error loading the emojis. Please try again."
msgstr "載入表情符號時發生錯誤,請再試一次。"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:145
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:143
msgid "There was an error loading the invite links for this channel. Please try again."
msgstr "載入此頻道的邀請連結時發生錯誤,請再試一次。"
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:123
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:121
msgid "There was an error loading the invites. Please try again."
msgstr "載入邀請時發生錯誤,請再試一次。"
@@ -18010,7 +18023,7 @@ msgstr "此類別已達到最多 {MAX_CHANNELS_PER_CATEGORY} 個頻道。"
msgid "This channel does not support webhooks."
msgstr "此頻道不支援 webhook。"
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:124
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:122
msgid "This channel doesn't have any invite links yet. Create one to invite people to this channel."
msgstr "此頻道尚未有邀請連結。建立一個即可邀請他人加入。"
@@ -18043,7 +18056,7 @@ msgstr "此頻道可能包含不宜在工作場所或部分使用者無法接受
msgid "This code hasn't been used yet. Please complete login in your browser first."
msgstr "此代碼尚未使用。請先在瀏覽器完成登入。"
-#: src/components/modals/guildTabs/GuildInvitesTab.tsx:111
+#: src/components/modals/guildTabs/GuildInvitesTab.tsx:109
msgid "This community doesn't have any invite links yet. Go to a channel and create an invite to invite people."
msgstr "此社群尚未有邀請連結。前往頻道建立邀請即可邀請他人。"
@@ -18180,8 +18193,8 @@ msgstr "訊息即是如此顯示"
msgid "This is not the channel you're looking for."
msgstr "這不是你要找的頻道。"
-#: src/components/layout/GuildLayout.tsx:312
-#: src/components/layout/GuildLayout.tsx:375
+#: src/components/layout/GuildLayout.tsx:310
+#: src/components/layout/GuildLayout.tsx:365
msgid "This is not the community you're looking for."
msgstr "這不是你要找的社群。"
@@ -18300,9 +18313,9 @@ msgstr "此語音頻道已達使用上限。請稍後再試或加入其他頻道
msgid "This was a @silent message."
msgstr "這是一則 @silent 訊息。"
-#: src/actions/MessageActionCreators.tsx:392
-#: src/components/channel/Messages.tsx:440
-#: src/components/channel/Messages.tsx:520
+#: src/actions/MessageActionCreators.tsx:404
+#: src/components/channel/Messages.tsx:445
+#: src/components/channel/Messages.tsx:525
msgid "This will create a rift in the space-time continuum and cannot be undone."
msgstr "這會在時空連續體中創造裂縫,無法還原。"
@@ -18371,7 +18384,7 @@ msgstr "超時至 {0}。"
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:288
#: src/components/modals/TimeoutMemberModal.tsx:207
#: src/components/modals/TimeoutMemberSheet.tsx:90
-#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:272
+#: src/components/uikit/ContextMenu/items/GuildMemberMenuItems.tsx:288
msgid "Timeout"
msgstr "超時"
@@ -18659,8 +18672,7 @@ msgstr "試試不同名稱或使用 @ / # / ! / * 前綴來篩選結果。"
msgid "Try a different search query"
msgstr "試試不同的搜尋字串"
-#: src/components/channel/MobileStickersPicker.tsx:148
-#: src/components/channel/StickersPicker.tsx:227
+#: src/components/channel/MobileStickersPicker.tsx:158
msgid "Try a different search term"
msgstr "試試不同的搜尋詞"
@@ -18670,14 +18682,14 @@ msgid "Try a different search term or filter"
msgstr "試試不同的搜尋詞或篩選條件"
#: src/components/auth/HandoffCodeDisplay.tsx:67
-#: src/components/channel/Messages.tsx:937
+#: src/components/channel/Messages.tsx:942
msgid "Try again"
msgstr "再試一次"
#: src/components/BootstrapErrorScreen.tsx:68
#: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:301
#: src/components/channel/ChannelSearchResults.tsx:663
-#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:148
+#: src/components/modals/channelTabs/ChannelInvitesTab.tsx:146
#: src/components/modals/channelTabs/ChannelWebhooksTab.tsx:159
#: src/components/NetworkErrorScreen.tsx:56
msgid "Try Again"
@@ -19307,7 +19319,7 @@ msgstr "解除釘選"
#: src/components/channel/MessageActionBar.tsx:505
#: src/components/channel/MessageActionBar.tsx:716
-#: src/components/channel/messageActionMenu.tsx:132
+#: src/components/channel/messageActionMenu.tsx:134
#: src/components/channel/messageActionUtils.tsx:234
#: src/components/shared/ChannelPinsContent.tsx:92
#: src/components/shared/ChannelPinsContent.tsx:245
@@ -19355,7 +19367,7 @@ msgstr "不支援的檔案格式,請使用 JPG、PNG、GIF、WebP 或 MP4。"
#: src/components/channel/MessageActionBar.tsx:542
#: src/components/channel/MessageActionBar.tsx:694
-#: src/components/channel/messageActionMenu.tsx:148
+#: src/components/channel/messageActionMenu.tsx:150
#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:178
msgid "Unsuppress Embeds"
msgstr "取消嵌入壓抑"
@@ -20573,8 +20585,8 @@ msgstr "我們已寄送授權此登入的連結,請檢查 {0} 的收件匣。"
msgid "We failed to retrieve the full information about this user at this time."
msgstr "目前無法取得此使用者的完整資訊。"
-#: src/components/layout/GuildLayout.tsx:307
-#: src/components/layout/GuildLayout.tsx:354
+#: src/components/layout/GuildLayout.tsx:305
+#: src/components/layout/GuildLayout.tsx:346
msgid "We fluxed up! Hang tight, we're working on it."
msgstr "我們出了一點狀況!請稍候,我們正在處理。"
@@ -21084,7 +21096,7 @@ msgstr "您無法在搜尋結果中與反應互動,以免干擾時空連續體
#: src/components/layout/ChannelItem.tsx:206
#: src/components/layout/ChannelItem.tsx:375
#: src/stores/voice/MediaEngineFacade.ts:154
-#: src/stores/voice/MediaEngineFacade.ts:529
+#: src/stores/voice/MediaEngineFacade.ts:533
msgid "You can't join while you're on timeout."
msgstr "您在冷卻期間無法加入。"
@@ -21169,7 +21181,7 @@ msgstr "您無法自行取消靜音,因為您已被版主靜音。"
msgid "You cannot unmute yourself because you have been muted by a moderator."
msgstr "您無法自行解除靜音,因為您已被版主靜音。"
-#: src/lib/markdown/renderers/link-renderer.tsx:181
+#: src/lib/markdown/renderers/link-renderer.tsx:207
msgid "You do not have access to the channel where this message was sent."
msgstr "您沒有存取此訊息所送出的頻道。"
@@ -21177,7 +21189,7 @@ msgstr "您沒有存取此訊息所送出的頻道。"
msgid "You do not have permission to send messages in this channel."
msgstr "您沒有權限在此頻道發送訊息。"
-#: src/components/layout/GuildLayout.tsx:398
+#: src/components/layout/GuildLayout.tsx:386
msgid "You don't have access to any channels in this community."
msgstr "您在此社群沒有任何頻道的存取權。"
@@ -21468,7 +21480,7 @@ msgstr "您在語音頻道中"
msgid "You're sending messages too quickly"
msgstr "您傳送訊息的速度過快"
-#: src/components/channel/Messages.tsx:907
+#: src/components/channel/Messages.tsx:912
msgid "You're viewing older messages"
msgstr "您正在查看較舊的訊息"
diff --git a/fluxer_app/src/stores/EmojiStore.tsx b/fluxer_app/src/stores/EmojiStore.tsx
index 1e3dfe11..917c57e3 100644
--- a/fluxer_app/src/stores/EmojiStore.tsx
+++ b/fluxer_app/src/stores/EmojiStore.tsx
@@ -53,6 +53,10 @@ type GuildEmojiContext = Readonly<{
usableEmojis: ReadonlyArray;
}>;
+export function normalizeEmojiSearchQuery(query: string): string {
+ return query.trim().replace(/^:+/, '').replace(/:+$/, '');
+}
+
class EmojiDisambiguations {
private static _lastInstance: EmojiDisambiguations | null = null;
private readonly guildId: string | null;
@@ -299,7 +303,8 @@ class EmojiStore {
}
search(channel: ChannelRecord | null, query: string, count = 0): ReadonlyArray {
- const lowerCasedQuery = query.toLowerCase();
+ const normalizedQuery = normalizeEmojiSearchQuery(query);
+ const lowerCasedQuery = normalizedQuery.toLowerCase();
if (!lowerCasedQuery) {
const allEmojis = this.getAllEmojis(channel);
const sorted = [...allEmojis].sort(
diff --git a/fluxer_app/src/stores/LocalPresenceStore.tsx b/fluxer_app/src/stores/LocalPresenceStore.tsx
index ceb55c06..e1bebf0f 100644
--- a/fluxer_app/src/stores/LocalPresenceStore.tsx
+++ b/fluxer_app/src/stores/LocalPresenceStore.tsx
@@ -17,7 +17,7 @@
* along with Fluxer. If not, see .
*/
-import {makeAutoObservable} from 'mobx';
+import {makeAutoObservable, reaction} from 'mobx';
import type {StatusType} from '~/Constants';
import {StatusTypes} from '~/Constants';
import {
@@ -44,15 +44,26 @@ class LocalPresenceStore {
since: number = 0;
+ afk: boolean = false;
+
+ mobile: boolean = false;
+
customStatus: CustomStatus | null = null;
constructor() {
makeAutoObservable(this, {}, {autoBind: true});
+
+ reaction(
+ () => MobileLayoutStore.isMobileLayout(),
+ () => this.updatePresence(),
+ );
}
updatePresence(): void {
const userStatus = UserSettingsStore.status;
const idleSince = IdleStore.getIdleSince();
+ const isMobile = MobileLayoutStore.isMobileLayout();
+ const afk = this.computeAfk(idleSince, isMobile);
const effectiveStatus = userStatus === StatusTypes.ONLINE && idleSince > 0 ? StatusTypes.IDLE : userStatus;
@@ -60,6 +71,8 @@ class LocalPresenceStore {
this.customStatus = normalizedCustomStatus ? {...normalizedCustomStatus} : null;
this.status = effectiveStatus;
this.since = idleSince;
+ this.afk = afk;
+ this.mobile = isMobile;
}
getStatus(): StatusType {
@@ -67,24 +80,23 @@ class LocalPresenceStore {
}
getPresence(): Presence {
- const isMobile = MobileLayoutStore.isMobileLayout();
- const idleSince = IdleStore.getIdleSince();
- const afkTimeout = UserSettingsStore.getAfkTimeout();
-
- const timeSinceLastActivity = idleSince > 0 ? Date.now() - idleSince : 0;
- const afk = !isMobile && timeSinceLastActivity > afkTimeout * 1000;
-
return {
status: this.status,
since: this.since,
- afk,
- mobile: isMobile,
+ afk: this.afk,
+ mobile: this.mobile,
custom_status: toGatewayCustomStatus(this.customStatus),
};
}
get presenceFingerprint(): string {
- return `${this.status}|${customStatusToKey(this.customStatus)}`;
+ return `${this.status}|${customStatusToKey(this.customStatus)}|afk:${this.afk ? '1' : '0'}`;
+ }
+
+ private computeAfk(idleSince: number, isMobile: boolean): boolean {
+ if (isMobile || idleSince <= 0) return false;
+ const afkTimeout = UserSettingsStore.getAfkTimeout();
+ return Date.now() - idleSince > afkTimeout * 1000;
}
}
diff --git a/fluxer_app/src/stores/voice/MediaEngineFacade.ts b/fluxer_app/src/stores/voice/MediaEngineFacade.ts
index 17771a88..804c8697 100644
--- a/fluxer_app/src/stores/voice/MediaEngineFacade.ts
+++ b/fluxer_app/src/stores/voice/MediaEngineFacade.ts
@@ -305,7 +305,11 @@ class MediaEngineFacade {
VoiceStateManager.handleGatewayVoiceStateDelete(guildId, userId);
}
getCurrentUserVoiceState(guildId?: string | null): VoiceState | null {
- return VoiceStateManager.getCurrentUserVoiceState(guildId, UserStore.getCurrentUser()?.id);
+ return VoiceStateManager.getCurrentUserVoiceState(
+ guildId,
+ UserStore.getCurrentUser()?.id,
+ VoiceConnectionManager.connectionId,
+ );
}
getVoiceState(guildId: string | null, userId?: string): VoiceState | null {
return VoiceStateManager.getVoiceState(guildId, userId, UserStore.getCurrentUser()?.id);
diff --git a/fluxer_app/src/stores/voice/VoiceStateManager.ts b/fluxer_app/src/stores/voice/VoiceStateManager.ts
index 48c083ad..f3f222be 100644
--- a/fluxer_app/src/stores/voice/VoiceStateManager.ts
+++ b/fluxer_app/src/stores/voice/VoiceStateManager.ts
@@ -95,7 +95,22 @@ class VoiceStateManager {
this.gatewayHandler.handleGuildDelete(deletedGuildId);
}
- getCurrentUserVoiceState(guildId?: string | null, currentUserId?: string): VoiceState | null {
+ getCurrentUserVoiceState(
+ guildId?: string | null,
+ currentUserId?: string,
+ connectionId?: string | null,
+ ): VoiceState | null {
+ const requestedGuildKey = guildId ?? ME;
+
+ if (connectionId) {
+ const byConnection = this.connectionVoiceStates[connectionId];
+ if (byConnection) {
+ if (!guildId || byConnection.guild_id === requestedGuildKey) {
+ return byConnection;
+ }
+ }
+ }
+
if (!currentUserId) {
logger.debug('[VoiceStateManager] Cannot get current user voice state: no user ID provided');
return null;
diff --git a/fluxer_app/src/styles/Message.module.css b/fluxer_app/src/styles/Message.module.css
index eccbca74..9df5ef7b 100644
--- a/fluxer_app/src/styles/Message.module.css
+++ b/fluxer_app/src/styles/Message.module.css
@@ -682,7 +682,7 @@
.repliedUsername {
position: relative;
- margin-right: var(--message-compact-username-gap);
+ margin-right: calc(var(--message-compact-username-gap) - 2px);
display: inline;
flex-shrink: 0;
cursor: pointer;
@@ -747,7 +747,7 @@
.repliedTextContent h5,
.repliedTextContent h6,
.repliedTextContent p,
-.repliedTextContent div,
+.repliedTextContent div:not([data-jump-link-guild-icon]),
.repliedTextContent ul,
.repliedTextContent ol,
.repliedTextContent li,